[Others] eth_getProof
Returns the account and storage values of the specified account including the Merkle-proof. This call can be used to verify that the data you are pulling from is not tampered with.
JSONRPC: eth_getProof
Request
- application/json
Body
Array [
- Address
- Keys
]
params
object[]
anyOf
Address of the account
string
Array of storage-keys which should be proofed and included
string
Responses
- 200
A account object
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
error
object
result
object
Object - A account object
the balance of the account. See eth_getBalance
hash of the code of the account. For a simple Account without code it will return
nonce of the account. See eth_getTransactionCount
SHA3 of the StorageRoot. All storage will deliver a MerkleProof starting with this rootHash.
Array of rlp-serialized MerkleTree-Nodes, starting with the stateRoot-Node, following the path of the SHA3 (address) as key.
storageProof
object[]
required
Array of storage-entries as requested. Each entry is an object with these properties
the requested storage key
the storage value
Array of rlp-serialized MerkleTree-Nodes, starting with the storageHash-Node, following the path of the SHA3 (key) as path.
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": {
"balance": "string",
"codeHash": "string",
"nonce": "string",
"storageHash": "string",
"accountProof": [
"string"
],
"storageProof": [
{
"key": "string",
"value": "string",
"proof": [
"string"
]
}
]
}
}
- 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": "eth_getProof",
"id": 1,
"jsonrpc": "2.0",
"params": [
"0xe5cB067E90D5Cd1F8052B83562Ae670bA4A211a8",
["0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421"],
"latest"
]
}'
- CURL
curl -L 'https://public-en-kairos.node.kaia.io/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"method": "eth_getProof",
"id": 1,
"jsonrpc": "2.0",
"params": [
"0xe5cB067E90D5Cd1F8052B83562Ae670bA4A211a8",
[
"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421"
],
"latest"
]
}'