POST

/

id
jsonrpc
method
params
curl --request POST \
  --url https://rpc1.taurus.axiomesh.io/

GetProof returns the Merkle-proof for a given account and optionally some storage keys.

Body

id
number

Serves as a unique identifier for the request

jsonrpc
string

Indicates the version of JSON-RPC being used

method
string

Represents the name of the remote procedure or method to be called

params
array

Contains the list of parameters passed to the remote method

address
string

Address of the account

storageKeys
array

An array of storage-keys that should be proofed and included.

block
string

A hexadecimal block number, or the string “latest”, “earliest” or “pending” or the hash (32 bytes) of a block

Response

id
number

Returns unique identifier for the request

jsonrpc
string

Returns the version of JSON-RPC being used

result
object

A account object

curl  'https://example-rpc.axiomesh.io' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "method": "eth_getProof",
    "params": ["0xfaE0FE655D27B5c0584479E982D5d8f7dFD057d8",[],"latest"],
    "id": 1
}'
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "address": "0xfae0fe655d27b5c0584479e982d5d8f7dfd057d8",
        "accountProof": [
            "EuQECiQKIJmX/up/FSWQfdexS299EvEDFBXE+qJgMlD2raw78qD9ECEKJAogo9TO+5gyChTgyvCePj5R6bIFYAlEHVULjoS0vbxU28EQDgokCiB8lUSmsvZRuzmUDAA1YXmmjpeowqdf3lCW+N4NU70fWRANCiQKIHgFHk5yTUyufzz2VLFH1/TMwVSdXCEj7csQ9MyngG9JEBwKJAogwo8axC7FxN/+OBQUmPZhKl47TH1o/p1P/5eMfaLzE00QHgomCiDsaDTyyJw8nR8l7lNwagRoz3mDAM1lvKPC/VPZanFHlBAHGAEKJgog+ydoT3FHHMKup5OLwcQX0VJpzkamPmJoIyIkIxa5lp8QChgBCiQKIOKAIzHQ7zsj4bpZ7naPfYvjK1kzz7+JF5E3tyMT6lPoEAEKJAoglTCqzkLthr0QFRi3r76/YSfFbOOWXfER2o3uhLKrvy4QDgokCiDC6JfbOvOXPN6BIA7CaUeSLO2X2CCicyrtnsA2HN/hmBAbCiQKIOgUD2HX9ek3OlGTf9SJGFNLFiHc/XVp9f8iARRUBNOqEBkKJAogwAzrYX4ZyffFhoB80hkz0sSnV/+bX1tdFMGa4OC16okQBQokCiB8ksKFnARx0SvYvMG+p03cfuhgJEqAB5tqrvfCImSKrRAhCiQKIKhAwxQTQljOFLiZfuu8WEnxSXHYpaJ0WbXZ/4+51+FqECAKJAogbsRbDVax3AvSjKuu9t9tV073WJRjdqJU9B1kYoTesLoQHAokCiBixlryhnquU4VDygOFL88kBsNPkPbd06oo+nOkHhhklhAh",
            "EtwBCiYKIFn2A8h0t5pB3cdCuwQahcICO5j/RoS/sz3CFCc+5lWiEB8YAQoACgAKJgogDdrmpXe0yiZt2g6S3PrYSsL5xPASIJUKIewDwHbEnxcQARgBCgAKAAoACiYKIDqW/0tYTz9IY3JKtcBO21dNbWptcRBI+K8HKQXipzLGEA0YAQoACgAKJAogf3uGvbvk+B24gLN6Yp9PWoyBj4uD8wbyARdCnvNQwx4QIQoACgAKAAoACiYKIPNgdmC+jjFW9+DY/i7YoNJ06ikfo4Hhz6Bb5JO2dp9dEAkYAQ==",
            "EmwKAAoACgAKAAoACgAKAAoACgAKAAoACiYKIHwrk8vX5yYf8y5zVq7m8w2iO2l7rGqmqQLfst78ijO1ECEYAQoACgAKJgog5+8a1KNUx2XJuNBJdvVgC0hN2X3rf/yj3xekQtQG9ZEQIRgBCgA=",
            "CAESRgoU+uD+ZV0ntcBYRHnpgtXY99/QV9gSDBIKAgYEbzfllFwAABog5+8a1KNUx2XJuNBJdvVgC0hN2X3rf/yj3xekQtQG9ZE="
        ],
        "balance": "0x6046f37e5945c0000",
        "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
        "nonce": "0x0",
        "storageHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
        "storageProof": null
    }
}