get_daily_active_addresses
Retrieve the daily count of unique active wallet addresses interacting with Solana memecoin launchpads, sourced from Dune Analytics, formatted in a markdown table for easy analysis.
Instructions
Fetch the daily count of active wallet addresses interacting with Solana memecoin launchpads.
This tool retrieves data from a Dune Analytics query and pivots it to show the number of unique
active wallets 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 active wallets 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_active_addressesArguments",
"type": "object"
}