@gala-chain/launchpad-mcp-server 1.22.2 → 1.22.3
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 +13 -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,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.22.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: return raw price impact values with full precision instead of rounding to 2 decimals
|
|
8
|
+
|
|
9
|
+
Changed price impact return format from `.toFixed(2)` to `.toString()` to preserve the full
|
|
10
|
+
precision of GSwap SDK's price impact calculations. This allows consumers to see the actual price
|
|
11
|
+
impact values without rounding loss.
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @gala-chain/launchpad-sdk@3.27.3
|
|
15
|
+
|
|
3
16
|
## 1.22.2
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gala-chain/launchpad-mcp-server",
|
|
3
|
-
"version": "1.22.
|
|
3
|
+
"version": "1.22.3",
|
|
4
4
|
"description": "MCP server for Gala Launchpad - 62 tools (pool management, GSwap DEX trading, price history, token creation, wallet management) supporting optional wallet (read-only and full-access modes). Production-grade AI agent integration for Claude Desktop with comprehensive validation and 80%+ test coverage",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"@gala-chain/api": "^2.4.3",
|
|
75
75
|
"@gala-chain/connect": "^2.4.3",
|
|
76
|
-
"@gala-chain/launchpad-sdk": "^3.27.
|
|
76
|
+
"@gala-chain/launchpad-sdk": "^3.27.3",
|
|
77
77
|
"@modelcontextprotocol/sdk": "^0.5.0",
|
|
78
78
|
"axios": "^1.12.2",
|
|
79
79
|
"bignumber.js": "^9.1.2",
|