query-contract-raw
Query raw contract storage data on the Osmosis blockchain by specifying the contract address and storage key.
Instructions
Queries raw contract storage by key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contractAddress | Yes | The contract address to query | |
key | Yes | The storage key (hex encoded) |
Input Schema (JSON Schema)
{
"properties": {
"contractAddress": {
"description": "The contract address to query",
"type": "string"
},
"key": {
"description": "The storage key (hex encoded)",
"type": "string"
}
},
"required": [
"contractAddress",
"key"
],
"type": "object"
}