eth_getStorageAt - Ethereum
Retrieve the value of a storage position at a specified address using eth_getStorageAt. Essential for accessing specific data stored within smart contracts on the Ethereum blockchain
Supported Networks
Parameters
Request
https://go.getblock.io/<ACCESS-TOKEN>/curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "eth_getStorageAt",
"params": [
"0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125",
"0x0",
"latest"
],
"id": "getblock.io"
}'wscat -c wss://go.getblock.io/<ACCESS-TOKEN>/
# wait for connection and send the request body
{"jsonrpc": "2.0",
"method": "eth_getStorageAt",
"params": ["0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125", "0x0", "latest"],
"id": "getblock.io"}Response
Response Description
Use Case
Code Example
Last updated
Was this helpful?