evm_gettopprofitablewalletpertoken
Identify the most profitable wallets for a specific ERC20 token by analyzing trading activity across Ethereum, Polygon, Binance Smart Chain, and other supported blockchains.
Instructions
List the most profitable wallets that have traded a specific ERC20 token.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The ERC20 token address. | |
chain | No | The chain to query | |
days | No | Timeframe in days for which profitability is calculated, Options include 'all', '7', '30' default is 'all'. |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The ERC20 token address.",
"type": "string"
},
"chain": {
"description": "The chain to query",
"enum": [
"eth",
"mainnet",
"0x1",
"matic",
"0x89",
"polygon",
"bsc",
"binance",
"0x38",
"fantom",
"ftm",
"0xfa",
"arbitrum",
"0xa4b1",
"optimism",
"0xa",
"base",
"0x2105",
"linea",
"0xe708",
"0x7e4",
"ronin"
],
"type": "string"
},
"days": {
"description": "Timeframe in days for which profitability is calculated, Options include 'all', '7', '30' default is 'all'.",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}