get_recently_updated_tokens
Retrieve details of recently updated tokens, including optional network filters, to support real-time trading decisions and market analysis in decentralized finance.
Instructions
Get recently updated tokens with their information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include | No | Attributes to include: 'network' (optional) | |
network | No | Network ID to filter by (optional, e.g., 'eth', 'bsc', 'polygon_pos') |
Input Schema (JSON Schema)
{
"properties": {
"include": {
"description": "Attributes to include: 'network' (optional)",
"enum": [
"network"
],
"type": "string"
},
"network": {
"description": "Network ID to filter by (optional, e.g., 'eth', 'bsc', 'polygon_pos')",
"type": "string"
}
},
"required": [],
"type": "object"
}