@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
14 lines • 556 B
JavaScript
;
/**
* Get Address Tool (45% code reduction via factory pattern)
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.getAddressTool = void 0;
const tool_factory_js_1 = require("../../utils/tool-factory.js");
exports.getAddressTool = (0, tool_factory_js_1.createNoParamTool)({
name: 'gala_launchpad_get_address',
description: 'Get the GalaChain address format (eth|0x...) for the authenticated wallet.',
handler: (sdk) => sdk.getAddress(),
resultKey: 'address',
});
//# sourceMappingURL=getAddress.js.map