@gala-chain/launchpad-mcp-server 1.17.2 → 1.17.4
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 +48 -0
- package/dist/generated/version.d.ts +1 -1
- package/dist/generated/version.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.17.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add intelligent DEX fallback for ungraduated tokens in fetchTokenSpotPrice. When querying spot
|
|
8
|
+
prices with tokenId format for ungraduated tokens (which return 400/404 from DEX API), the SDK now
|
|
9
|
+
intelligently extracts the token name from GalaChain metadata and falls back to launchpad pricing.
|
|
10
|
+
This provides seamless support for both graduated (DEX) and ungraduated (launchpad) tokens via the
|
|
11
|
+
same tokenId parameter.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @gala-chain/launchpad-sdk@3.22.4
|
|
14
|
+
|
|
15
|
+
## 1.17.3
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- docs: update changelogs for v3.22.2 and v1.17.2 releases
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @gala-chain/launchpad-sdk@3.22.3
|
|
22
|
+
|
|
23
|
+
## 1.17.2
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Dependency bump: @gala-chain/launchpad-sdk@3.22.2
|
|
28
|
+
|
|
29
|
+
Includes fix for GalaChain FetchTokenClasses endpoint authentication issue. The endpoint is public
|
|
30
|
+
but rejects authenticated requests. SDK now uses unauthenticated axios for public token metadata
|
|
31
|
+
queries.
|
|
32
|
+
|
|
33
|
+
**Result:**
|
|
34
|
+
- Token details now fetch correctly for all token types
|
|
35
|
+
- Launchpad token metadata queries no longer fail with 404 errors
|
|
36
|
+
- All 1131 SDK tests passing
|
|
37
|
+
|
|
38
|
+
## 1.17.1
|
|
39
|
+
|
|
40
|
+
### Patch Changes
|
|
41
|
+
|
|
42
|
+
- Dependency bump: @gala-chain/launchpad-sdk@3.22.1
|
|
43
|
+
|
|
44
|
+
Includes fix for GalaChainService response parsing. The FetchTokenClasses endpoint returns
|
|
45
|
+
`Data: TokenClass[]` directly, not `Data: { results: TokenClass[] }`.
|
|
46
|
+
|
|
47
|
+
**Result:**
|
|
48
|
+
- Token metadata queries return correct data instead of "Token not found" errors
|
|
49
|
+
- All 1131 SDK tests passing
|
|
50
|
+
|
|
3
51
|
## 1.17.0
|
|
4
52
|
|
|
5
53
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gala-chain/launchpad-mcp-server",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.4",
|
|
4
4
|
"description": "MCP server for Gala Launchpad SDK with 55 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": {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@gala-chain/api": "^2.4.3",
|
|
66
66
|
"@gala-chain/connect": "^2.4.3",
|
|
67
|
-
"@gala-chain/launchpad-sdk": "^3.22.
|
|
67
|
+
"@gala-chain/launchpad-sdk": "^3.22.4",
|
|
68
68
|
"@modelcontextprotocol/sdk": "^0.5.0",
|
|
69
69
|
"axios": "^1.12.2",
|
|
70
70
|
"bignumber.js": "^9.1.2",
|