From 4939fd2ac2bbe945cb446c123086d098d822ab03 Mon Sep 17 00:00:00 2001 From: Iker Alustiza Date: Thu, 19 Jun 2025 11:32:41 +0200 Subject: [PATCH] removing 'experimental' label for every occurrence of 'EXPERIMENTAL_changes' --- docs/integrations/balance.md | 2 +- .../api/rpc/access-keys/view-access-key-changes-all/index.mdx | 4 ++-- .../access-keys/view-access-key-changes-all/request-bash.mdx | 2 +- .../access-keys/view-access-key-changes-all/request-json.mdx | 2 +- .../rpc/access-keys/view-access-key-changes-single/index.mdx | 4 ++-- .../view-access-key-changes-single/request-bash.mdx | 2 +- .../view-access-key-changes-single/request-json.mdx | 2 +- .../docs/api/rpc/contracts/view-account-changes/index.mdx | 4 ++-- .../api/rpc/contracts/view-account-changes/request-bash.mdx | 2 +- .../api/rpc/contracts/view-account-changes/request-json.mdx | 2 +- .../api/rpc/contracts/view-contract-code-changes/index.mdx | 4 ++-- .../rpc/contracts/view-contract-code-changes/request-bash.mdx | 2 +- .../rpc/contracts/view-contract-code-changes/request-json.mdx | 2 +- .../api/rpc/contracts/view-contract-state-changes/index.mdx | 4 ++-- .../contracts/view-contract-state-changes/request-bash.mdx | 2 +- .../contracts/view-contract-state-changes/request-json.mdx | 2 +- 16 files changed, 21 insertions(+), 21 deletions(-) diff --git a/docs/integrations/balance.md b/docs/integrations/balance.md index ba3fe101be..b5ac19c6b9 100644 --- a/docs/integrations/balance.md +++ b/docs/integrations/balance.md @@ -56,7 +56,7 @@ https://testnet.nearblocks.io/txns/4To336bYcoGc3LMucJPMk6fMk5suKfCrdNotrRtTxqDy ```bash http post https://rpc.testnet.near.org jsonrpc=2.0 id=dontcare \ - method=EXPERIMENTAL_changes \ + method=changes \ 'params:={ "block_id": "CJ24svU3C9FaULVjcNVnWuVZjK6mNaQ8p6AMyUDMqB37", "changes_type": "account_changes", diff --git a/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-all/index.mdx b/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-all/index.mdx index ef06ab707d..539d31db16 100644 --- a/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-all/index.mdx +++ b/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-all/index.mdx @@ -14,7 +14,7 @@ import ErrorSchemaTable from './error-schema-table.mdx'; Returns changes to all access keys of a specific block. Multiple accounts can be quereied by passing an array of `account_ids`. -- method: `EXPERIMENTAL_changes` +- method: `changes` - params: - `changes_type`: `all_access_key_changes` - `account_ids`: `[ "example.testnet", "example2.testnet"]` @@ -47,6 +47,6 @@ Example: Here is the exhaustive list of the error variants that can be returned -by `EXPERIMENTAL_changes` method: +by `changes` method: diff --git a/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-all/request-bash.mdx b/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-all/request-bash.mdx index 6b53ccf58f..cdf264e4b0 100644 --- a/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-all/request-bash.mdx +++ b/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-all/request-bash.mdx @@ -2,7 +2,7 @@ http POST https://archival-rpc.testnet.near.org \ jsonrpc=2.0 \ id=dontcare \ - method=EXPERIMENTAL_changes \ + method=changes \ params:='{ "changes_type": "all_access_key_changes", "account_ids": ["account.rpc-examples.testnet"], diff --git a/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-all/request-json.mdx b/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-all/request-json.mdx index 52e87121b9..be22698d8f 100644 --- a/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-all/request-json.mdx +++ b/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-all/request-json.mdx @@ -2,7 +2,7 @@ { "jsonrpc": "2.0", "id": "dontcare", - "method": "EXPERIMENTAL_changes", + "method": "changes", "params": { "changes_type": "all_access_key_changes", "account_ids": ["account.rpc-examples.testnet"], diff --git a/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-single/index.mdx b/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-single/index.mdx index 575e97a18c..09decc3a9f 100644 --- a/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-single/index.mdx +++ b/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-single/index.mdx @@ -14,7 +14,7 @@ import ErrorSchemaTable from './error-schema-table.mdx'; Returns individual access key changes in a specific block. You can query multiple keys by passing an array of objects containing the `account_id` and `public_key`. -- method: `EXPERIMENTAL_changes` +- method: `changes` - params: - `changes_type`: `single_access_key_changes` - `keys`: `[{ account_id, public_key }]` @@ -47,6 +47,6 @@ Example: Here is the exhaustive list of the error variants that can be returned -by `EXPERIMENTAL_changes_in_block` method: +by `changes` method: diff --git a/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-single/request-bash.mdx b/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-single/request-bash.mdx index 9aa4bd339e..20d5cd0151 100644 --- a/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-single/request-bash.mdx +++ b/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-single/request-bash.mdx @@ -2,7 +2,7 @@ http POST https://archival-rpc.testnet.near.org \ jsonrpc=2.0 \ id=dontcare \ - method=EXPERIMENTAL_changes \ + method=changes \ params:='{ "changes_type": "single_access_key_changes", "keys": [ diff --git a/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-single/request-json.mdx b/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-single/request-json.mdx index e0a00d30c4..da3c5ffb41 100644 --- a/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-single/request-json.mdx +++ b/website/src/components/docs/api/rpc/access-keys/view-access-key-changes-single/request-json.mdx @@ -2,7 +2,7 @@ { "jsonrpc": "2.0", "id": "dontcare", - "method": "EXPERIMENTAL_changes", + "method": "changes", "params": { "changes_type": "single_access_key_changes", "keys": [ diff --git a/website/src/components/docs/api/rpc/contracts/view-account-changes/index.mdx b/website/src/components/docs/api/rpc/contracts/view-account-changes/index.mdx index 775ccbdaf8..510a77cbea 100644 --- a/website/src/components/docs/api/rpc/contracts/view-account-changes/index.mdx +++ b/website/src/components/docs/api/rpc/contracts/view-account-changes/index.mdx @@ -13,7 +13,7 @@ import ErrorSchemaDescription from '../../_general/error-schema-description.mdx' > Returns account changes from transactions in a given account. -- method: `EXPERIMENTAL_changes` +- method: `changes` - params: - `changes_type`: `account_changes` - `account_ids`: [`"example.testnet"`] @@ -46,6 +46,6 @@ Example: Here is the exhaustive list of the error variants that can be returned by -`EXPERIMENTAL_changes` method: +`changes` method: diff --git a/website/src/components/docs/api/rpc/contracts/view-account-changes/request-bash.mdx b/website/src/components/docs/api/rpc/contracts/view-account-changes/request-bash.mdx index 69aacbefff..7f0fd604b9 100644 --- a/website/src/components/docs/api/rpc/contracts/view-account-changes/request-bash.mdx +++ b/website/src/components/docs/api/rpc/contracts/view-account-changes/request-bash.mdx @@ -2,7 +2,7 @@ http POST https://archival-rpc.testnet.near.org \ jsonrpc=2.0 \ id=dontcare \ - method=EXPERIMENTAL_changes \ + method=changes \ params:='{ "changes_type": "account_changes", "account_ids": ["contract.rpc-examples.testnet"], diff --git a/website/src/components/docs/api/rpc/contracts/view-account-changes/request-json.mdx b/website/src/components/docs/api/rpc/contracts/view-account-changes/request-json.mdx index a8043c82c3..c351f59436 100644 --- a/website/src/components/docs/api/rpc/contracts/view-account-changes/request-json.mdx +++ b/website/src/components/docs/api/rpc/contracts/view-account-changes/request-json.mdx @@ -2,7 +2,7 @@ { "jsonrpc": "2.0", "id": "dontcare", - "method": "EXPERIMENTAL_changes", + "method": "changes", "params": { "changes_type": "account_changes", "account_ids": ["contract.rpc-examples.testnet"], diff --git a/website/src/components/docs/api/rpc/contracts/view-contract-code-changes/index.mdx b/website/src/components/docs/api/rpc/contracts/view-contract-code-changes/index.mdx index 5ebc85658d..8fabf491e3 100644 --- a/website/src/components/docs/api/rpc/contracts/view-contract-code-changes/index.mdx +++ b/website/src/components/docs/api/rpc/contracts/view-contract-code-changes/index.mdx @@ -14,7 +14,7 @@ import ErrorSchemaDescription from '../../_general/error-schema-description.mdx' > Returns code changes made when deploying a contract. Change is returned is a > base64 encoded WASM file. -- method: `EXPERIMENTAL_changes` +- method: `changes` - params: - `changes_type`: `contract_code_changes` - `account_ids`: `["example.testnet"]`, @@ -46,6 +46,6 @@ Example: -Here is the exhaustive list of the error variants that can be returned by `EXPERIMENTAL_changes` method: +Here is the exhaustive list of the error variants that can be returned by `changes` method: diff --git a/website/src/components/docs/api/rpc/contracts/view-contract-code-changes/request-bash.mdx b/website/src/components/docs/api/rpc/contracts/view-contract-code-changes/request-bash.mdx index 35b3df1cb5..90a65f6b91 100644 --- a/website/src/components/docs/api/rpc/contracts/view-contract-code-changes/request-bash.mdx +++ b/website/src/components/docs/api/rpc/contracts/view-contract-code-changes/request-bash.mdx @@ -2,7 +2,7 @@ http POST https://archival-rpc.testnet.near.org \ jsonrpc=2.0 \ id=dontcare \ - method=EXPERIMENTAL_changes \ + method=changes \ params:='{ "changes_type": "contract_code_changes", "account_ids": ["contract.rpc-examples.testnet"], diff --git a/website/src/components/docs/api/rpc/contracts/view-contract-code-changes/request-json.mdx b/website/src/components/docs/api/rpc/contracts/view-contract-code-changes/request-json.mdx index c8f7488fac..d86dc3dc9f 100644 --- a/website/src/components/docs/api/rpc/contracts/view-contract-code-changes/request-json.mdx +++ b/website/src/components/docs/api/rpc/contracts/view-contract-code-changes/request-json.mdx @@ -2,7 +2,7 @@ { "jsonrpc": "2.0", "id": "dontcare", - "method": "EXPERIMENTAL_changes", + "method": "changes", "params": { "changes_type": "contract_code_changes", "account_ids": ["contract.rpc-examples.testnet"], diff --git a/website/src/components/docs/api/rpc/contracts/view-contract-state-changes/index.mdx b/website/src/components/docs/api/rpc/contracts/view-contract-state-changes/index.mdx index 3fd040f3a1..55eb2f126c 100644 --- a/website/src/components/docs/api/rpc/contracts/view-contract-state-changes/index.mdx +++ b/website/src/components/docs/api/rpc/contracts/view-contract-state-changes/index.mdx @@ -15,7 +15,7 @@ import ErrorSchemaDescription from '../../_general/error-schema-description.mdx' > (encoded to base64). Pass an empty string for this param if you would like > to return all state changes. -- method: `EXPERIMENTAL_changes` +- method: `changes` - params: - `changes_type`: `data_changes` - `account_ids`: `["example.testnet"]`, @@ -48,6 +48,6 @@ Example: -Here is the exhaustive list of the error variants that can be returned by `EXPERIMENTAL_changes` method: +Here is the exhaustive list of the error variants that can be returned by `changes` method: diff --git a/website/src/components/docs/api/rpc/contracts/view-contract-state-changes/request-bash.mdx b/website/src/components/docs/api/rpc/contracts/view-contract-state-changes/request-bash.mdx index cc72e7835f..2163c92966 100644 --- a/website/src/components/docs/api/rpc/contracts/view-contract-state-changes/request-bash.mdx +++ b/website/src/components/docs/api/rpc/contracts/view-contract-state-changes/request-bash.mdx @@ -2,7 +2,7 @@ http POST https://archival-rpc.testnet.near.org \ jsonrpc=2.0 \ id=dontcare \ - method=EXPERIMENTAL_changes \ + method=changes \ params:='{ "changes_type": "data_changes", "account_ids": ["contract.rpc-examples.testnet"], diff --git a/website/src/components/docs/api/rpc/contracts/view-contract-state-changes/request-json.mdx b/website/src/components/docs/api/rpc/contracts/view-contract-state-changes/request-json.mdx index 89a3533742..852283f32c 100644 --- a/website/src/components/docs/api/rpc/contracts/view-contract-state-changes/request-json.mdx +++ b/website/src/components/docs/api/rpc/contracts/view-contract-state-changes/request-json.mdx @@ -2,7 +2,7 @@ { "jsonrpc": "2.0", "id": "dontcare", - "method": "EXPERIMENTAL_changes", + "method": "changes", "params": { "changes_type": "data_changes", "account_ids": ["contract.rpc-examples.testnet"],