@gala-chain/launchpad-sdk 5.0.4-beta.1 → 5.0.4-beta.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/README.md +5 -0
- package/dist/ai-docs.json +647 -290
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +4 -0
- 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 +79 -0
- package/dist/src/LaunchpadSDK.d.ts.map +1 -1
- package/dist/src/constants/nft-fees.d.ts +30 -0
- package/dist/src/constants/nft-fees.d.ts.map +1 -0
- package/dist/src/constants/version.generated.d.ts +1 -1
- package/dist/src/index.d.ts +4 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/schemas/files.d.ts +22 -22
- package/dist/src/schemas/files.d.ts.map +1 -1
- package/dist/src/schemas/launchpad.d.ts +45 -170
- package/dist/src/schemas/launchpad.d.ts.map +1 -1
- package/dist/src/schemas/pagination.d.ts +21 -103
- package/dist/src/schemas/pagination.d.ts.map +1 -1
- package/dist/src/schemas/primitives.d.ts +13 -6
- package/dist/src/schemas/primitives.d.ts.map +1 -1
- package/dist/src/schemas/trade.d.ts +53 -105
- package/dist/src/schemas/trade.d.ts.map +1 -1
- package/dist/src/schemas/user.d.ts +26 -170
- package/dist/src/schemas/user.d.ts.map +1 -1
- package/dist/src/schemas/validators.d.ts +21 -21
- package/dist/src/services/NftCollectionService.d.ts +123 -0
- package/dist/src/services/NftCollectionService.d.ts.map +1 -0
- package/dist/src/types/nft.dto.d.ts +155 -0
- package/dist/src/types/nft.dto.d.ts.map +1 -0
- package/dist/src/utils/nft-helpers.d.ts +62 -0
- package/dist/src/utils/nft-helpers.d.ts.map +1 -0
- package/package.json +12 -8
package/README.md
CHANGED
|
@@ -2700,6 +2700,11 @@ npm run lint
|
|
|
2700
2700
|
- [Liquidity Response Structures](./docs/LIQUIDITY_RESPONSES.md) - Detailed reference for all liquidity operation response formats and error handling
|
|
2701
2701
|
- [GSwap SDK Integration](./docs/GSWAP_INTEGRATION.md) - Deep dive into GSwap patterns, token formats, and advanced trading workflows
|
|
2702
2702
|
|
|
2703
|
+
### NFT Collection Management
|
|
2704
|
+
|
|
2705
|
+
- [NFT Quick Reference](./docs/NFT_QUICK_REFERENCE.md) - Quick lookup for NFT collection, token class, and minting operations with fee schedules
|
|
2706
|
+
- [NFT Operations Guide](./docs/NFT_OPERATIONS.md) - Complete guide for claiming collections, creating token classes, minting NFTs, and querying NFT data
|
|
2707
|
+
|
|
2703
2708
|
### Demo Scripts
|
|
2704
2709
|
|
|
2705
2710
|
The SDK includes 36 comprehensive demo scripts organized into logical categories for easy discovery and learning.
|