fetch_token_balance
Retrieve token balance from EVM chains using token address, chain ID, and wallet address for accurate on-chain insights.
Instructions
Get the balance of a token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
tokenAddress | Yes | ||
walletAddress | Yes |
Input Schema (JSON Schema)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "number"
},
"tokenAddress": {
"pattern": "^0x.*",
"type": "string"
},
"walletAddress": {
"pattern": "^0x.*",
"type": "string"
}
},
"required": [
"tokenAddress",
"chainId",
"walletAddress"
],
"type": "object"
}