Skip to main content

eth_getStorageAt

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

Use Cases#

  • Contract analysis - Read raw storage values
  • State verification - Verify contract state
  • Security auditing - Analyze storage layout for institutional RWA tokenization ($18B+ transfer volume), gaming subnets, and enterprise blockchains
  • Protocol monitoring - Track state changes

Parameters#

ParameterTypeRequiredDescription
addressDATAYes20-byte contract address
positionQUANTITYYesStorage slot position
blockParameterQUANTITY|TAGYesBlock number or tag

Request#

{
"jsonrpc": "2.0",
"method": "eth_getStorageAt",
"params": [
"0x09383137c1eee3e1a8bc781228e4199f6b4a9bbf",
"0x0",
"latest"
],
"id": 1
}

Code Examples#

curl -X POST https://api-avalanche-mainnet-archive.n.dwellir.com/YOUR_API_KEY/ext/bc/C/rpc \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_getStorageAt",
"params": [
"0x09383137c1eee3e1a8bc781228e4199f6b4a9bbf",
"0x0",
"latest"
],
"id": 1
}'