get_daily_tokens_deployed
Retrieve daily token deployment counts from Solana memecoin launchpads. This tool fetches and formats data from Dune Analytics, presenting it as a markdown table. Optional percentage-based insights are available for total daily deployments.
Instructions
Retrieve the daily count of tokens deployed by Solana memecoin launchpads.
This tool fetches data from a Dune Analytics query and pivots it to show the number of tokens
deployed per day by each platform. Optionally, it can return the data as percentages of the
total daily deployments.
Args:
return_percent (bool, optional): If True, returns the data as percentages of total daily
deployments for each platform. Defaults to False.
limit (int, optional): Maximum number of rows to fetch from the Dune query. Defaults to 1000.
Returns:
str: A markdown-formatted table of daily token deployments by platform, or an error message
if the query fails.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
return_percent | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 1000,
"title": "Limit",
"type": "integer"
},
"return_percent": {
"default": false,
"title": "Return Percent",
"type": "boolean"
}
},
"title": "get_daily_tokens_deployedArguments",
"type": "object"
}