@gala-chain/launchpad-mcp-server
Version:
MCP server for Gala Launchpad - 102 tools (pool management, event watchers, GSwap DEX trading, price history, token creation, wallet management, DEX pool discovery, liquidity positions, token locks, locked token queries, composite pool data, cross-chain b
40 lines • 1.35 kB
TypeScript
/**
* DEX Leaderboard Prompts
*
* Slash commands for discovering DEX leaderboard seasons and player rankings.
* Provides access to seasonal competitions, rankings, and achievement tracking.
*/
import type { MCPPrompt } from '../types/mcp.js';
/**
* Fetch All DEX Seasons
*
* Returns all available leaderboard seasons with dates and rules.
* Used to explore which seasons have occurred and their date ranges.
*/
export declare const fetchAllDexSeasonsPrompt: MCPPrompt;
/**
* Fetch Current DEX Season
*
* Returns the currently active leaderboard season.
* Automatically determines which season is active based on current date.
*/
export declare const fetchCurrentDexSeasonPrompt: MCPPrompt;
/**
* Fetch DEX Leaderboard by Season ID
*
* Returns the complete leaderboard rankings for a specific season.
* Includes player ranks, XP metrics, and mastery achievements.
*/
export declare const fetchDexLeaderboardBySeasonIdPrompt: MCPPrompt;
/**
* Fetch Current DEX Leaderboard
*
* Returns the leaderboard rankings for the currently active season.
* Combines current season detection with leaderboard retrieval.
*/
export declare const fetchCurrentDexLeaderboardPrompt: MCPPrompt;
/**
* Export all DEX leaderboard prompts
*/
export declare const dexLeaderboardPrompts: MCPPrompt[];
//# sourceMappingURL=dex-leaderboard.d.ts.map