@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.75 kB
TypeScript
/**
* Bridge Prompts (Slash Commands)
*
* Cross-chain bridging commands for GalaChain ↔ Ethereum and GalaChain ↔ Solana
*/
import type { MCPPrompt } from '../types/mcp.js';
/**
* Get Supported Bridge Tokens - List all tokens supported for cross-chain bridging
*/
export declare const supportedBridgeTokensPrompt: MCPPrompt;
/**
* Estimate Bridge Fee - Estimate fees for bridging tokens to Ethereum or Solana
*/
export declare const estimateBridgeFeePrompt: MCPPrompt;
/**
* Bridge Out - Bridge tokens from GalaChain to Ethereum or Solana
*/
export declare const bridgeOutPrompt: MCPPrompt;
/**
* Bridge In - Bridge tokens from Ethereum or Solana to GalaChain
*/
export declare const bridgeInPrompt: MCPPrompt;
/**
* Get Bridge Status - Check the status of a bridge transaction
*/
export declare const bridgeStatusPrompt: MCPPrompt;
/**
* Fetch Ethereum Token Balance - Get single ERC-20 token balance
*/
export declare const ethereumTokenBalancePrompt: MCPPrompt;
/**
* Fetch Ethereum Native Balance - Get native ETH balance only
*/
export declare const ethereumNativeBalancePrompt: MCPPrompt;
/**
* Fetch Solana Token Balance - Get single SPL token balance
*/
export declare const solanaTokenBalancePrompt: MCPPrompt;
/**
* Fetch Solana Native Balance - Get native SOL balance only
*/
export declare const solanaNativeBalancePrompt: MCPPrompt;
/**
* Fetch All Ethereum Wallet Balances - Get all supported token balances on Ethereum
*/
export declare const ethereumAllBalancesPrompt: MCPPrompt;
/**
* Fetch All Solana Wallet Balances - Get all supported token balances on Solana
*/
export declare const solanaAllBalancesPrompt: MCPPrompt;
export declare const bridgePrompts: MCPPrompt[];
//# sourceMappingURL=bridge.d.ts.map