get_token_info_by_ticker
Retrieve token details including contract address and decimals using the ticker symbol on the VeChain blockchain network.
Instructions
Get information about a configured token (like contract address and decimals) by its ticker symbol.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ticker": {
"type": "string"
}
},
"required": [
"ticker"
],
"type": "object"
}