get_token_balances_on_network
Retrieve all token balances for a specific address on a chosen blockchain network to monitor asset holdings and verify wallet activity.
Instructions
Gets all token balances for a given address on a specific network
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to check token balances for | |
network | Yes | The blockchain network (e.g., "ethereum", "base") |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "The address to check token balances for",
"type": "string"
},
"network": {
"description": "The blockchain network (e.g., \"ethereum\", \"base\")",
"type": "string"
}
},
"required": [
"network",
"address"
],
"type": "object"
}