compare_balances
Compare native token balances for any address across multiple EVM blockchain networks to analyze cross-chain holdings and distribution patterns.
Instructions
Compare native token balance for an address across multiple EVM chains
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address to check | |
blockchains | No | List of blockchain names (optional, defaults to all EVM chains) | |
network | No | Network type (defaults to mainnet) |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address to check",
"type": "string"
},
"blockchains": {
"description": "List of blockchain names (optional, defaults to all EVM chains)",
"items": {
"type": "string"
},
"type": "array"
},
"network": {
"description": "Network type (defaults to mainnet)",
"enum": [
"mainnet",
"testnet"
],
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}