Skip to main content

eth_getProof

Returns the account and storage values of the specified account including the Merkle-proof.

Params

(3)

1. account (required)

string

2. keys (required)

array[string]

3. block_number (required)

(any of)
integer
>= 0

Result

(MonadEthGetProofResult)
balance
integer
required
>= 0
code_hash
string
required
nonce
integer
required
>= 0
storage_hash
string
required
account_proof
array[string]
required
storage_proof
array[StorageProof]
required
key
string
required
value
string
required
proof
array[string]
required

Params

account

keys

block_number


Request

await window.ethereum.request({
"method": "eth_getProof",
"params": [
null,
null,
null
]
});