get_daily_graduates
Retrieve daily graduate metrics from Solana memecoin launchpads. Formats data as a markdown table showing successful token sales or projects per platform.
Instructions
Fetch the daily number of graduates from Solana memecoin launchpads.
This tool retrieves data from a Dune Analytics query and pivots it to show the number of
successful graduates (e.g., completed token sales or projects) per day by each platform.
Args:
limit (int, optional): Maximum number of rows to fetch from the Dune query. Defaults to 1000.
Returns:
str: A markdown-formatted table of daily graduates by platform, 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_daily_graduatesArguments",
"type": "object"
}