@gala-chain/launchpad-sdk 4.0.17-beta.8 → 4.0.18
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/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +5 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/src/LaunchpadSDK.d.ts +174 -95
- package/dist/src/LaunchpadSDK.d.ts.map +1 -1
- package/dist/src/bridge/constants/tokens.d.ts +31 -1
- package/dist/src/bridge/constants/tokens.d.ts.map +1 -1
- package/dist/src/bridge/types/bridgeable-token.dto.d.ts +0 -34
- package/dist/src/bridge/types/bridgeable-token.dto.d.ts.map +1 -1
- package/dist/src/bridge/types/eip712.d.ts +9 -0
- package/dist/src/bridge/types/eip712.d.ts.map +1 -1
- package/dist/src/constants/endpoints.d.ts +20 -0
- package/dist/src/constants/endpoints.d.ts.map +1 -1
- package/dist/src/constants/version.generated.d.ts +1 -1
- package/dist/src/constants/version.generated.d.ts.map +1 -1
- package/dist/src/index.d.ts +5 -3
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/services/BridgeableTokenService.d.ts +1 -65
- package/dist/src/services/BridgeableTokenService.d.ts.map +1 -1
- package/dist/src/services/GalaChainService.d.ts +9 -0
- package/dist/src/services/GalaChainService.d.ts.map +1 -1
- package/dist/src/services/WrapService.d.ts +159 -0
- package/dist/src/services/WrapService.d.ts.map +1 -0
- package/dist/src/services/WrappableTokenService.d.ts +1 -61
- package/dist/src/services/WrappableTokenService.d.ts.map +1 -1
- package/dist/src/types/user.dto.d.ts +12 -0
- package/dist/src/types/user.dto.d.ts.map +1 -1
- package/dist/src/types/wrappable-token.dto.d.ts +110 -20
- package/dist/src/types/wrappable-token.dto.d.ts.map +1 -1
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gala-chain/launchpad-sdk",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.18",
|
|
4
4
|
"description": "TypeScript SDK for Gala Launchpad Backend API - 100+ public methods with 373+ fully documented APIs supporting optional wallet (read-only and full-access modes). Production-ready DeFi token launchpad integration with AgentConfig setup, GalaChain trading, GSwap DEX integration, price history, token creation, DEX pool discovery, WebSocket event watchers, and comprehensive user operations. Multi-format output (ESM, CJS, UMD).",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -117,6 +117,9 @@
|
|
|
117
117
|
"demo:bridge:balances": "tsx examples/bridge/wallet-balances.ts",
|
|
118
118
|
"demo:bridge:bridgeable": "tsx examples/bridge/bridgeable-tokens.ts",
|
|
119
119
|
"demo:bridge:tx-status": "tsx examples/bridge/transaction-status.ts",
|
|
120
|
+
"demo:wrap": "tsx examples/bridge/wrap-unwrap.ts",
|
|
121
|
+
"demo:wrap:discovery": "tsx examples/bridge/wrap-discovery.ts",
|
|
122
|
+
"demo:wrap:fees": "tsx examples/bridge/wrap-fee-estimation.ts",
|
|
120
123
|
"test:demos:core": "npm run demo && npm run demo:read-only && npm run demo:authenticated && npm run demo:privatekey-override",
|
|
121
124
|
"test:demos:dex": "npm run demo:dex:pools && npm run demo:dex:pricing && npm run demo:dex:quotes && npm run demo:dex && npm run demo:dex:roundtrip",
|
|
122
125
|
"test:demos:liquidity": "npm run demo:liquidity:all",
|