get_sip010_info
Retrieve comprehensive SIP-010 token details including name, symbol, decimals, total supply, and metadata URI from Stacks blockchain contracts.
Instructions
Get complete information about a SIP-010 fungible token including name, symbol, decimals, total supply, and metadata URI.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contractAddress | Yes | The contract address | |
contractName | Yes | The contract name of the SIP-010 token | |
network | Yes | The Stacks network |
Input Schema (JSON Schema)
{
"properties": {
"contractAddress": {
"description": "The contract address",
"type": "string"
},
"contractName": {
"description": "The contract name of the SIP-010 token",
"type": "string"
},
"network": {
"description": "The Stacks network",
"enum": [
"mainnet",
"testnet",
"devnet"
],
"type": "string"
}
},
"required": [
"contractAddress",
"contractName",
"network"
],
"type": "object"
}