eth_getStorageAt
Defined in the Ethereum JSON-RPC Specification
Returns the value from a storage position at a given address.
Parameters
type GetStorageAtParams = [string, string, string]
- The address of the storage
- Integer of the position in the storage (hexadecimal)
- Block number or tag (as hexadecimal string)
Valid tags: "earliest"
, "latest"
, "pending"
, "safe"
, "finalized"
Returns
string
The value at this storage position.
Example
"0x0000000000000000000000000000000000000000000000000000000000000004"
Errors
Code | Message |
---|---|
4200 | Unsupported method |