evm_getwalletprofitabilitysummary
Analyze wallet profitability by retrieving a profit and loss summary for a specific address over a chosen timeframe using blockchain data.
Instructions
Get a profit and loss summary for a given wallet, over a specified timeframe (days
).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The wallet address for which profitability summary is to be retrieved. | |
chain | No | The chain to query | |
days | No | Timeframe in days for the profitability summary. Options include 'all', '7', '30', '60', '90' default is 'all'. |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The wallet address for which profitability summary is to be retrieved.",
"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 the profitability summary. Options include 'all', '7', '30', '60', '90' default is 'all'.",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}