eth_getStorageAt
Retrieve storage values from smart contracts on EVM blockchains by specifying contract address and storage position to access contract state data.
Instructions
Returns the value from a storage position at a given address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Contract address | |
blockNumber | No | Block number or 'latest', 'earliest', 'pending' | latest |
position | Yes | Storage position (hex string) |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Contract address",
"type": "string"
},
"blockNumber": {
"default": "latest",
"description": "Block number or 'latest', 'earliest', 'pending'",
"type": "string"
},
"position": {
"description": "Storage position (hex string)",
"type": "string"
}
},
"required": [
"address",
"position"
],
"type": "object"
}