eth_getStorageAt
Returns the value from a storage position at a given address, or in other words, returns the state of the contract's storage, which may not be exposed via the contract's methods.
Params
- a string array containing (required):DATA(hex string, required)
, 20 Bytes - address of the storage.QUANTITY(hex string, required)
- integer of the position in the storage.QUANTITY|TAG(hex string|string, required)
- integer block number in hex string format, or the string"latest"
,"earliest"
or"pending"
, see the default block parameter
DATA(hex string)
- the value at this storage position.curl
TypeScript
curl https://api.blockvision.org/v1/<api key> \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_getStorageAt",
"params": [
"0x295a70b2de5e3953354a6a8344e616ed314d7251",
"0x0",
"latest"
],
"id": 1
}'
import { BlockVisionProvider, BvNetwork } from 'blockvision.js'
// Optional parameters, but default to eth-mainnet and default api-key.
const bv = new BlockVisionProvider(BvNetwork.ETH_MAINNET)
// Access standard Ethers.js JSON-RPC node request
bv.getStorageAt('0x295a70b2de5e3953354a6a8344e616ed314d7251', '0x0', 'latest').then(console.log)
{
"id": 1,
"jsonrpc": "2.0",
"result": "0x00000000000000000000000000000000000000000000000000000000000004d2"
}
Last modified 1mo ago