get_wallet_balance
Query cryptocurrency wallet balances across EVM and Solana blockchains by providing a valid wallet address. Returns token amounts and USD values in a formatted table.
Instructions
Query the balance of a specified wallet address across supported EVM and Solana blockchains.
Parameters:
wallet_address (str): The wallet address to query (e.g., '0x123...' for EVM chains like Ethereum,
Polygon, BSC, or 'DYw8jCT...' for Solana). Must be a valid address for the target chain.
Returns:
str: Formatted table with balance information (chain, token amount, USD value) for supported chains or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
wallet_address | Yes |
Input Schema (JSON Schema)
{
"properties": {
"wallet_address": {
"title": "Wallet Address",
"type": "string"
}
},
"required": [
"wallet_address"
],
"type": "object"
}