Returns the value from a storage position at a given address
curl --request POST \ --url https://api.mainnet.abs.xyz/eth_getStorageAt \ --header 'Content-Type: application/json' \ --data '{ "jsonrpc": "2.0", "id": 1, "method": "eth_getStorageAt", "params": [ "0x8fe5810cd78eb8d8b9abad8527dfc1265bee6c56", "0x0", "latest" ] }'
{ "jsonrpc": "2.0", "id": 1, "result": "0x0000000000000000000000000000000000000000000000000000000000000000" }
JSON-RPC version
The method to call
Address, storage position, and block parameter
Request identifier
"2.0"
1
The value at the storage position
"0x0000000000000000000000000000000000000000000000000000000000000000"
Was this page helpful?