UNPKG

@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

21 lines 815 B
"use strict"; /** * Create Wallet Tool (45% code reduction via factory pattern) */ Object.defineProperty(exports, "__esModule", { value: true }); exports.createWalletTool = void 0; const launchpad_sdk_1 = require("@gala-chain/launchpad-sdk"); const tool_factory_js_1 = require("../../utils/tool-factory.js"); exports.createWalletTool = (0, tool_factory_js_1.createNoParamTool)({ name: 'gala_launchpad_create_wallet', description: 'Create a new wallet with a random private key. Returns wallet address and private key.', handler: () => { const wallet = (0, launchpad_sdk_1.createWallet)(); return { address: wallet.address, privateKey: wallet.privateKey, galaAddress: wallet.galaAddress, }; }, }); //# sourceMappingURL=createWallet.js.map