@gala-chain/launchpad-mcp-server 1.16.2 → 1.16.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 +26 -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,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.16.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fetch token symbol metadata from DEX API instead of deriving from type field
|
|
8
|
+
|
|
9
|
+
Instead of trusting the type field for token symbols (which doesn't always align with actual token
|
|
10
|
+
symbols), now properly fetch token metadata from /v1/tokens endpoint to get the correct symbol.
|
|
11
|
+
Includes graceful fallback to type field if metadata fetch fails.
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @gala-chain/launchpad-sdk@3.21.4
|
|
15
|
+
|
|
16
|
+
## 1.16.3
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Fix GALA token symbol display in DEX pricing
|
|
21
|
+
|
|
22
|
+
When fetching GALA price from DEX Backend API, the symbol was showing as 'NONE' instead of 'GALA'
|
|
23
|
+
because the type field is 'none'. Added special handling to use the collection name as the symbol
|
|
24
|
+
for GALA tokens.
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @gala-chain/launchpad-sdk@3.21.3
|
|
28
|
+
|
|
3
29
|
## 1.16.2
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gala-chain/launchpad-mcp-server",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.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.21.
|
|
67
|
+
"@gala-chain/launchpad-sdk": "^3.21.4",
|
|
68
68
|
"@modelcontextprotocol/sdk": "^0.5.0",
|
|
69
69
|
"axios": "^1.12.2",
|
|
70
70
|
"bignumber.js": "^9.1.2",
|