get_token_balance
Retrieve the token balance and USD value for a wallet address using a specified token contract, powered by SailFish as the price oracle.
Instructions
Get the token balance of a wallet address with USD value using SailFish as price oracle
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tokenAddress | Yes | Token contract address | |
walletAddress | Yes | Wallet address to check |
Input Schema (JSON Schema)
{
"properties": {
"tokenAddress": {
"description": "Token contract address",
"type": "string"
},
"walletAddress": {
"description": "Wallet address to check",
"type": "string"
}
},
"required": [
"tokenAddress",
"walletAddress"
],
"type": "object"
}