@gala-chain/launchpad-mcp-server 1.7.3 → 1.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.7.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Update SDK dependency to v3.11.4 with complete type safety improvements
|
|
8
|
+
|
|
9
|
+
## 1.7.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Fix demo script failures caused by missing tokenName field in poolDetails response.
|
|
14
|
+
|
|
15
|
+
**Root Causes:**
|
|
16
|
+
- GalaChainService response transformation broke property access after Phase 2 type safety changes
|
|
17
|
+
- fetchPoolDetails didn't include tokenName field that demo code expects
|
|
18
|
+
|
|
19
|
+
**Changes:**
|
|
20
|
+
- Add tokenName field to fetchPoolDetails return value for convenience
|
|
21
|
+
- Fix GalaChainService response transformation to preserve structure using type assertion patterns
|
|
22
|
+
- Maintain type safety throughout with proper TypeScript patterns
|
|
23
|
+
|
|
24
|
+
**Impact:**
|
|
25
|
+
- Resolves 9 failing demo scenarios with "Token name is required" validation errors
|
|
26
|
+
- All calculation methods (calculateBuyAmountLocal, calculateSellAmountLocal, calculateBuyAmount)
|
|
27
|
+
now work correctly
|
|
28
|
+
- Demo script runs without validation errors
|
|
29
|
+
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
- @gala-chain/launchpad-sdk@3.11.3
|
|
32
|
+
|
|
3
33
|
## 1.7.3
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gala-chain/launchpad-mcp-server",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.5",
|
|
4
4
|
"description": "MCP server for Gala Launchpad SDK with 50 tools + 14 slash commands - Production-grade AI agent integration with comprehensive validation, optimized performance, and 80%+ test coverage",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@gala-chain/api": "^2.4.3",
|
|
64
64
|
"@gala-chain/connect": "^2.4.3",
|
|
65
|
-
"@gala-chain/launchpad-sdk": "^3.11.
|
|
65
|
+
"@gala-chain/launchpad-sdk": "^3.11.4",
|
|
66
66
|
"@modelcontextprotocol/sdk": "^0.5.0",
|
|
67
67
|
"axios": "^1.12.2",
|
|
68
68
|
"bignumber.js": "^9.1.2",
|