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"
}
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"
}
Returns the storage value at the given position
The response is of type object
.
Was this page helpful?