@gala-chain/launchpad-sdk 3.22.7 → 3.23.0
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 +19 -0
- package/README.md +1 -1
- package/dist/constants/version.generated.d.ts +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,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.23.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- **BREAKING CHANGE:** Default environment changed from `development` to `production`
|
|
8
|
+
|
|
9
|
+
All SDK and MCP initialization now defaults to production environment
|
|
10
|
+
(`lpad-backend-prod1.defi.gala.com`) instead of development. To use development environment,
|
|
11
|
+
explicitly set `env: 'DEVELOPMENT'` or `ENVIRONMENT=development`.
|
|
12
|
+
|
|
13
|
+
Changes include:
|
|
14
|
+
- SDK `AgentConfig.detectEnvironment()` defaults to 'production'
|
|
15
|
+
- MCP Server environment defaults to 'production'
|
|
16
|
+
- All examples and documentation updated to show production as default
|
|
17
|
+
- All installation instructions updated accordingly
|
|
18
|
+
|
|
19
|
+
Users relying on implicit development environment must now explicitly set the environment
|
|
20
|
+
variable.
|
|
21
|
+
|
|
3
22
|
## 3.22.7
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -307,7 +307,7 @@ claude mcp add "galachain-launchpad-readonly" -- env ENVIRONMENT=development npx
|
|
|
307
307
|
|
|
308
308
|
**Environment Variables:**
|
|
309
309
|
- `PRIVATE_KEY` (optional) - Your wallet private key (omit for read-only mode)
|
|
310
|
-
- `ENVIRONMENT` - Backend environment: `development` | `production` (default:
|
|
310
|
+
- `ENVIRONMENT` - Backend environment: `development` | `production` (default: production)
|
|
311
311
|
- `DEBUG` - Enable debug logging: `true` | `false` (default: false)
|
|
312
312
|
- `TIMEOUT` - Request timeout in milliseconds (default: 30000)
|
|
313
313
|
|