get_weekly_trading_volume_by_frontend
Fetch 7-day trading volume data by frontend from Dune Analytics, returning results as a markdown-formatted table sorted by volume. Use to track and analyze decentralized exchange metrics efficiently.
Instructions
Retrieve 7-day trading volume by frontend.
This tool fetches 7-day trading volume data for different frontends from a Dune Analytics query and returns it in a markdown-formatted table, sorted by volume in descending order.
Args:
limit (int, optional): Maximum number of rows to retrieve from the query. Defaults to 1000.
Returns:
str: A markdown-formatted table of trading volume data, or an error message if the query fails.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 1000,
"title": "Limit",
"type": "integer"
}
},
"title": "get_weekly_trading_volume_by_frontendArguments",
"type": "object"
}