get_daily_graduation_rate
Retrieve daily graduation rates for Solana memecoin launchpads, showing the percentage of projects achieving their goals. Data is extracted from Dune Analytics and presented in a markdown table.
Instructions
Fetch the daily graduation rate of Solana memecoin launchpads.
This tool retrieves data from a Dune Analytics query and pivots it to show the graduation rate
(e.g., percentage of projects that successfully complete their goals) 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 graduation rates 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_graduation_rateArguments",
"type": "object"
}