eth_getStorageAt
Returns content of the storage at given address
Parameters
1、The address to get the storage from.
2、The index position of the storage.
3、(optional) If you pass this parameter it will not use the default block set with web3.eth.defaultBlock. Pre-defined block numbers as "earliest"
, "latest"
and "pending"
can also be used.
4、(optional) Optional callback, returns an error object as first parameter and the result as second.
Returns
The value in storage at the given position.
Example
Last updated