curl --request POST \
--url https://rpc.mainnet.near.org/EXPERIMENTAL_changes_in_block \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"jsonrpc": "<string>",
"method": "EXPERIMENTAL_changes_in_block",
"params": {
"block_id": 1
}
}
'{
"result": {
"block_hash": "<string>",
"changes": [
{
"account_id": "<string>",
"type": "account_touched"
}
]
},
"id": "<string>",
"jsonrpc": "<string>"
}[Deprecated] Returns changes in block for given block height or hash over all transactions for all the types. Includes changes like account_touched, access_key_touched, data_touched, contract_code_touched. Consider using block_effects instead
curl --request POST \
--url https://rpc.mainnet.near.org/EXPERIMENTAL_changes_in_block \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"jsonrpc": "<string>",
"method": "EXPERIMENTAL_changes_in_block",
"params": {
"block_id": 1
}
}
'{
"result": {
"block_hash": "<string>",
"changes": [
{
"account_id": "<string>",
"type": "account_touched"
}
]
},
"id": "<string>",
"jsonrpc": "<string>"
}