eth_getStorageAt RPC MethodCopyAsk AIReads a single storage slot from a contract at the specified position. Parameters#stringrequiredAccount address, 20 bytes, hex-encoded.stringrequiredStorage slot index, hex-encoded 256-bit integer.stringrequiredBlock identifier — a tag (latest, safe, finalized, pending) or a 32-byte block hash.Result#string - The data stored at the requested slot, hex-encoded.Code sample#{ "jsonrpc": "2.0", "method": "eth_getStorageAt", "params": [ "0x6b175474e89094c44da98b954eedeac495271d0f", "0x0", "latest" ], "id": 1 } Response#{ "jsonrpc": "2.0", "id": 1, "result": "0x0000000000000000000000000000000000000000000000000000000000000000" } Try ItEndpointMainnetCustom{ "jsonrpc": "2.0", "method": "eth_getStorageAt", "params": [ "0x6b175474e89094c44da98b954eedeac495271d0f", "0x0", "latest" ], "id": 1 }RunPreviouseth_getLogsNexteth_getTransactionByBlockHashAndIndex