本页面使用机器翻译自英语,可能包含错误或不清楚的语言。如需最准确的信息,请参阅英文原文。由于更新频繁,部分内容可能与英文原文有出入。请加入我们在 Crowdin 上的努力,帮助我们改进本页面的翻译。 (Crowdin translation page, Contributing guide)
[Inspection] debug_getModifiedAccountsByHash
Returns all accounts that have changed between the two blocks specified by their block hashes. Changes made in endBlockHash are included, but changes made in startBlockHash are not. If endBlockHash is not given, it returns the accounts modified in the startBlockHash. A change is defined as a difference in nonce, balance, code hash, or storage hash.
JSONRPC: debug_getModifiedAccountsByHash
Request
- application/json
Body
Array [
]
params
undefined[]
required
StartBlockHash 32-byte DATA
The first block number of the range to check.
EndBlockHash 32-byte DATA
(optional) The last block number of the range.
Responses
- 200
Return the list of addresses modified between the given range.
- application/json
- Schema
- Example (from schema)
Schema
error
object
result 20-byte DATA[]
The list of addresses modified between the given range.
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": [
"0x31b93ca83b5ad17582e886c400667c6f698b8ccd",
"0xb7fe15c42e66bd71835b07dc6e7daee7729f6235",
"0xe31a0edb11357dba71377e625fc6174da4ef4321",
"0x16b11cf9c2186a117b0da38315b42b1eaa03bbe5",
"0xd3ec3c7e4cad042dbdcb6a7e0fdbc55a92276f12",
"0xa4e0d726ce51572e66295756ad93206592c43a59",
"0xf65e07b6626ab43ecea744803fa46bd4a89bfdb6",
"0xaac56dfe44f9894d4f536cd17acfbc44bf81a843",
"0x3855407fa65c4c5104648b3a9e495072df62b585",
"0x61a7cbdd597848494fa85cbb76f9c63ad9c06cad",
"0xa4845491cb0dad5bd6707a33c02af0d9db435c15",
"0x026e8f70a26b6e5c8bec25e23869846edfdd6728",
"0x3cf3e8caea91501321feee0f0692fcd98f1c6292",
"0x18822790d7baf2fa6bbca6ad8baa46985abeb81b"
]
}
- curl
- python
- nodejs
- java
- Curl
curl -X 'POST' \
'https://public-en-kairos.node.kaia.io' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"method": "debug_getModifiedAccountsByHash",
"id": 1,
"jsonrpc": "2.0",
"params": ["0x165c29e453dff6e1d9838d9e975a438b6f11a2c0a281b0d5b97c8d3110a79ac5", "0x2a8acdc3e9bb735918dc6a0141b9939976f446fde0b39336d74278da93b8d41d"]
}'
- CURL
curl -L 'https://public-en-kairos.node.kaia.io/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"method": "debug_getModifiedAccountsByHash",
"id": 1,
"jsonrpc": "2.0",
"params": [
"0xcc1ac1e244f9f83b812b5d77ada1c399f02ea7b61e72ff31789d9ef6dad45442",
"0x437e92b2d30a0a828dfdd23b837a8ddf8c8b79c222e191d16c47afbf5a6aaed7"
]
}'
ResponseClear