eth_getStorageAt
Returns the value from a storage position at a given address.
Parameters
Address(string)requiredhex encoded address
Storage slot(string)requiredhex encoded 256 bit unsigned integer
Block(object)requiredBlock number, tag, or block hash
Returns
hex encoded bytes
Example request
await provider.request({
method: "eth_getStorageAt",
params: [
"0xfe3b557e8fb62b89f4916b721be55ceb828dbd73",
"0x0",
"latest"
]
});
Example response
{
"id": 1,
"jsonrpc": "2.0",
"result": "0x0000000000000000000000000000000000000000000000000000000000000000"
}