@gala-chain/launchpad-sdk 3.11.6 → 3.11.8
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 +34 -1
- package/README.md +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.11.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix: Update STAGE environment launchpadFrontendUrl from lpad-frontend-dev1 to lpad-frontend-test1
|
|
8
|
+
to correct MCP tool URL generation for token frontend links
|
|
9
|
+
|
|
10
|
+
## 3.11.7
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Update documentation across all files to reference correct SDK and MCP versions (3.11.7 and 1.7.7)
|
|
15
|
+
- Add comprehensive Token Distribution Patterns section to CLAUDE.md
|
|
16
|
+
- Update explainSdkUsage tool to show v3.11.7
|
|
17
|
+
|
|
18
|
+
## 3.11.6
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Fix TypeScript declaration file output structure. The tsconfig.json `rootDir` was incorrectly set
|
|
23
|
+
to "." instead of "src", causing declaration files to output to `dist/src/index.d.ts` instead of
|
|
24
|
+
`dist/index.d.ts`. Restored original working configuration with `rootDir: "src"` and added test
|
|
25
|
+
file exclusion patterns.
|
|
26
|
+
|
|
27
|
+
**Key improvements:**
|
|
28
|
+
- Restored correct TypeScript compilation structure
|
|
29
|
+
- Added `**/*.test.ts` and `**/*.spec.ts` to exclude patterns
|
|
30
|
+
- Declaration files now output to correct location (`dist/index.d.ts`)
|
|
31
|
+
- MCP server builds successfully with proper SDK type imports
|
|
32
|
+
|
|
33
|
+
**Breaking change:** None - This fixes a configuration regression that was preventing proper type
|
|
34
|
+
resolution
|
|
35
|
+
|
|
3
36
|
## 3.11.5
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
|
@@ -491,7 +524,7 @@ await sdk.uploadProfileImage({ file, address });
|
|
|
491
524
|
|
|
492
525
|
- Added `launchpadFrontendUrl` to EnvironmentConfig
|
|
493
526
|
- PROD: `https://lpad-frontend-prod1.defi.gala.com`
|
|
494
|
-
- STAGE: `https://lpad-frontend-
|
|
527
|
+
- STAGE: `https://lpad-frontend-test1.defi.gala.com`
|
|
495
528
|
- Supports custom URL override in LaunchpadSDKConfig
|
|
496
529
|
|
|
497
530
|
### Documentation
|
package/README.md
CHANGED
|
@@ -214,7 +214,7 @@ console.log(`Profile name: ${profile.fullName || 'Not set'}`);
|
|
|
214
214
|
// URL Utilities - Generate frontend URLs
|
|
215
215
|
const tokenUrl = sdk.getUrlByTokenName('dragnrkti');
|
|
216
216
|
console.log(`View token: ${tokenUrl}`);
|
|
217
|
-
// Output: https://lpad-frontend-
|
|
217
|
+
// Output: https://lpad-frontend-test1.defi.gala.com/buy-sell/dragnrkti
|
|
218
218
|
```
|
|
219
219
|
|
|
220
220
|
## Auto-Pagination Feature
|