@gala-chain/launchpad-mcp-server 1.15.0 → 1.15.2

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 CHANGED
@@ -1,5 +1,31 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.15.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix isGraduated flag calculation to use correct saleStatus value
8
+
9
+ **Bug Fix:**
10
+ - Fixed `GalaChainService` calculation of `isGraduated` flag
11
+ - Was: `isGraduated = response.Data.saleStatus === 'Completed'` ❌
12
+ - Now: `isGraduated = response.Data.saleStatus === 'Finished'` ✅
13
+ - Backend actually returns `saleStatus: "Finished"` for graduated tokens, not `"Completed"`
14
+ - `DexService` now correctly uses reliable `isGraduated` flag for graduation detection
15
+
16
+ **Impact:**
17
+ - `fetchLaunchpadTokenSpotPrice()` now correctly identifies graduated tokens using `isGraduated`
18
+ - Tokens with `isGraduated: true` (saleStatus: "Finished") use `/v1/trade/price` DEX endpoint
19
+ - Ensures accurate spot pricing for graduated launchpad tokens like GALADOG
20
+ - No breaking changes - behavior corrected to match backend state progression
21
+
22
+ **Result:**
23
+ - GALADOG: `isGraduated: true` (saleStatus: "Finished") → Uses DEX endpoint ✅
24
+ - Other tokens: `isGraduated: false` (saleStatus: "Ongoing") → Uses bonding curve ✅
25
+
26
+ - Updated dependencies
27
+ - @gala-chain/launchpad-sdk@3.20.1
28
+
3
29
  ## 1.15.0
4
30
 
5
31
  ### Minor Changes
@@ -3,5 +3,5 @@
3
3
  * This file is generated by scripts/inject-version.ts during build
4
4
  * DO NOT EDIT MANUALLY
5
5
  */
6
- export declare const MCP_SERVER_VERSION = "1.15.0";
6
+ export declare const MCP_SERVER_VERSION = "1.15.2";
7
7
  //# sourceMappingURL=version.d.ts.map
@@ -6,5 +6,5 @@
6
6
  */
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
8
  exports.MCP_SERVER_VERSION = void 0;
9
- exports.MCP_SERVER_VERSION = '1.15.0';
9
+ exports.MCP_SERVER_VERSION = '1.15.2';
10
10
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gala-chain/launchpad-mcp-server",
3
- "version": "1.15.0",
3
+ "version": "1.15.2",
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.20.0",
67
+ "@gala-chain/launchpad-sdk": "^3.20.2",
68
68
  "@modelcontextprotocol/sdk": "^0.5.0",
69
69
  "axios": "^1.12.2",
70
70
  "bignumber.js": "^9.1.2",