coingeckotokeninfoagent_get_top_token_holders
Retrieve the top 50 token holder addresses for a specific token on a designated blockchain network, enabling insights into token distribution and wallet activity.
Instructions
Get top 50 token holder addresses for a token on a specific network.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Token contract address | |
network | Yes | Network ID (e.g., base) |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Token contract address",
"type": "string"
},
"network": {
"description": "Network ID (e.g., base)",
"type": "string"
}
},
"required": [
"network",
"address"
],
"type": "object"
}