get-token-info
Retrieve detailed metadata for a specific token denomination on the Osmosis blockchain, including its properties and usage, by querying the token's unique identifier.
Instructions
Returns metadata about a specific token denomination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
denom | Yes | The token denomination (e.g., 'uosmo', 'ibc/...') |
Input Schema (JSON Schema)
{
"properties": {
"denom": {
"description": "The token denomination (e.g., 'uosmo', 'ibc/...')",
"type": "string"
}
},
"required": [
"denom"
],
"type": "object"
}