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