@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
52 lines • 1.63 kB
TypeScript
/**
* Trading Calculations Prompts
*
* Slash commands for trading calculations, amounts, and related operations
*/
import type { MCPPrompt } from '../types/mcp.js';
/**
* Calculate Buy Amount - Buy cost calculation
*/
export declare const calculateBuyAmountPrompt: MCPPrompt;
/**
* Calculate Sell Amount - Sell proceeds calculation
*/
export declare const calculateSellAmountPrompt: MCPPrompt;
/**
* Fetch Trades - Trade history query
*/
export declare const fetchTradesPrompt: MCPPrompt;
/**
* Calculate Initial Buy - Pre-buy calculation
*/
export declare const calculateInitialBuyPrompt: MCPPrompt;
/**
* Get Bundler Transaction Result - Transaction status lookup
*/
export declare const getBundlerTransactionResultPrompt: MCPPrompt;
/**
* Calculate Buy Amount for Graduation - Graduation cost
*/
export declare const calculateBuyAmountForGraduationPrompt: MCPPrompt;
/**
* Calculate Buy Amount (Local) - LOCAL bonding curve calc
*/
export declare const calculateBuyAmountLocalPrompt: MCPPrompt;
/**
* Calculate Buy Amount (External) - EXTERNAL bonding curve calc
*/
export declare const calculateBuyAmountExternalPrompt: MCPPrompt;
/**
* Calculate Sell Amount (Local) - LOCAL sell calc
*/
export declare const calculateSellAmountLocalPrompt: MCPPrompt;
/**
* Calculate Sell Amount (External) - EXTERNAL sell calc
*/
export declare const calculateSellAmountExternalPrompt: MCPPrompt;
/**
* Is Token Graduated - Graduation status check
*/
export declare const isTokenGraduatedPrompt: MCPPrompt;
export declare const tradingCalculationPrompts: MCPPrompt[];
//# sourceMappingURL=trading-calculations.d.ts.map