@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.
Files changed (34) hide show
  1. package/README.md +5 -0
  2. package/dist/ai-docs.json +647 -290
  3. package/dist/index.cjs.js +1 -1
  4. package/dist/index.d.ts +4 -0
  5. package/dist/index.d.ts.map +1 -1
  6. package/dist/index.esm.js +1 -1
  7. package/dist/index.js +1 -1
  8. package/dist/src/LaunchpadSDK.d.ts +79 -0
  9. package/dist/src/LaunchpadSDK.d.ts.map +1 -1
  10. package/dist/src/constants/nft-fees.d.ts +30 -0
  11. package/dist/src/constants/nft-fees.d.ts.map +1 -0
  12. package/dist/src/constants/version.generated.d.ts +1 -1
  13. package/dist/src/index.d.ts +4 -0
  14. package/dist/src/index.d.ts.map +1 -1
  15. package/dist/src/schemas/files.d.ts +22 -22
  16. package/dist/src/schemas/files.d.ts.map +1 -1
  17. package/dist/src/schemas/launchpad.d.ts +45 -170
  18. package/dist/src/schemas/launchpad.d.ts.map +1 -1
  19. package/dist/src/schemas/pagination.d.ts +21 -103
  20. package/dist/src/schemas/pagination.d.ts.map +1 -1
  21. package/dist/src/schemas/primitives.d.ts +13 -6
  22. package/dist/src/schemas/primitives.d.ts.map +1 -1
  23. package/dist/src/schemas/trade.d.ts +53 -105
  24. package/dist/src/schemas/trade.d.ts.map +1 -1
  25. package/dist/src/schemas/user.d.ts +26 -170
  26. package/dist/src/schemas/user.d.ts.map +1 -1
  27. package/dist/src/schemas/validators.d.ts +21 -21
  28. package/dist/src/services/NftCollectionService.d.ts +123 -0
  29. package/dist/src/services/NftCollectionService.d.ts.map +1 -0
  30. package/dist/src/types/nft.dto.d.ts +155 -0
  31. package/dist/src/types/nft.dto.d.ts.map +1 -0
  32. package/dist/src/utils/nft-helpers.d.ts +62 -0
  33. package/dist/src/utils/nft-helpers.d.ts.map +1 -0
  34. 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.