curl --request POST \
--url https://base-mainnet.core.chainstack.com/2fc1de7f08c0465f6a28e3c355e0cb14 \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "debug_getModifiedAccountsByHash",
"id": 1,
"params": [
"0x5208b53713adbfe3397055946b487b16c45f018dee8213df81b3f4ccb9b3142d"
]
}'
{
"jsonrpc": "<string>",
"id": 123,
"result": [
"<string>"
]
}
curl --request POST \
--url https://base-mainnet.core.chainstack.com/2fc1de7f08c0465f6a28e3c355e0cb14 \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "debug_getModifiedAccountsByHash",
"id": 1,
"params": [
"0x5208b53713adbfe3397055946b487b16c45f018dee8213df81b3f4ccb9b3142d"
]
}'
{
"jsonrpc": "<string>",
"id": 123,
"result": [
"<string>"
]
}
debug_getModifiedAccountsByHash
RPC method retrieves a list of accounts that were modified in a specific block, identified by the block’s hash. This method is useful for developers and analysts who need to track changes to the state of accounts within a particular block for debugging or analytical purposes.
debug_getModifiedAccountsByHash
, you should send a POST request with a JSON RPC call in the body.
string
): The hash of the block for which to retrieve the list of modified accounts.array
): The addresses of the accounts modified in the specified block.debug_getModifiedAccountsByHash
method is essential for:
A list of accounts modified in the specified block
The response is of type object
.