eth_getStorageAt - Flow EVM RPC Method
Read contract storage on Flow EVM Gateway. Essential for analyzing contract state for consumer NFTs (NBA Top Shot, Disney Pinnacle), gaming dApps, and hybrid Cadence-EVM applications.
Returns the value from a storage position at a given address on Flow EVM Gateway.
Use Cases
- Contract analysis - Read raw storage values
- State verification - Verify contract state
- Security auditing - Analyze storage layout for consumer NFTs (NBA Top Shot, Disney Pinnacle), gaming dApps, and hybrid Cadence-EVM applications
- Protocol monitoring - Track state changes
Request Parameters
20-byte contract address
Storage slot position
Block number or tag
Response Body
Code Examples
curl -X POST https://api-flow-evm-gateway-mainnet.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_getStorageAt",
"params": [
"0xd3bF53DAC106A0290B0483EcBC89d40FcC961f3e",
"0x0",
"latest"
],
"id": 1
}'import { JsonRpcProvider } from 'ethers';
const provider = new JsonRpcProvider('https://api-flow-evm-gateway-mainnet.n.dwellir.com/YOUR_API_KEY');
const address = '0xd3bF53DAC106A0290B0483EcBC89d40FcC961f3e';
const slot = 0;
const storage = await provider.getStorage(address, slot);
console.log('Storage at slot 0:', storage);from web3 import Web3
w3 = Web3(Web3.HTTPProvider('https://api-flow-evm-gateway-mainnet.n.dwellir.com/YOUR_API_KEY'))
address = '0xd3bF53DAC106A0290B0483EcBC89d40FcC961f3e'
storage = w3.eth.get_storage_at(address, 0)
print(f'Storage at slot 0: {storage.hex()}')Related Methods
eth_getCode- Get contract bytecodeeth_call- Call contract functions
eth_getCode
Get contract bytecode on Flow EVM Gateway. Essential for verifying smart contracts for consumer NFTs (NBA Top Shot, Disney Pinnacle), gaming dApps, and hybrid Cadence-EVM applications.
eth_getTransactionCount
Get account nonce on Flow EVM Gateway. Essential for transaction ordering for consumer NFTs (NBA Top Shot, Disney Pinnacle), gaming dApps, and hybrid Cadence-EVM applications.