Granite Upgrade Activates in12d:17h:00m:52s
Eth

eth_getStorageAt

Returns the value from a storage position at a given address.

POST
/ext/bc/C/rpc#eth_getStorageAt

JSON-RPC request

jsonrpcstring
methodstring
params

[address, storagePosition, blockParameter]

Items3 <= items <= 3
idinteger

Response Body

application/json

application/json

curl -X POST "https://api.avax.network/ext/bc/C/rpc#eth_getStorageAt" \  -H "Content-Type: application/json" \  -d '{    "jsonrpc": "2.0",    "method": "eth_getStorageAt",    "params": [      "0x295a70b2de5e3953354a6a8344e616ed314d7251",      "0x0",      "latest"    ],    "id": 1  }'
{
  "jsonrpc": "2.0",
  "result": null,
  "error": {
    "code": 0,
    "message": "string",
    "data": null
  },
  "id": 1
}
{
  "jsonrpc": "2.0",
  "error": {
    "code": 0,
    "message": "string",
    "data": null
  },
  "id": 1
}

Is this guide helpful?