provider_get_storage_at
Query Ethereum or EVM-compatible blockchain storage for a specific address and position. Retrieve stored data using optional block tags for precise blockchain state analysis.
Instructions
Get the storage at a position for an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to get storage from | |
blockTag | No | Optional block tag (latest, pending, etc.) | |
position | Yes | The storage position |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address to get storage from",
"type": "string"
},
"blockTag": {
"description": "Optional block tag (latest, pending, etc.)",
"type": "string"
},
"position": {
"description": "The storage position",
"type": "string"
}
},
"required": [
"address",
"position"
],
"type": "object"
}