@gala-chain/launchpad-sdk 5.0.4-beta.6 → 5.0.4-beta.60
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 +82 -0
- package/EXAMPLES.md +99 -0
- package/README.md +163 -49
- package/README.md.bak +3174 -0
- package/dist/LaunchpadSDK.d.ts +10615 -0
- package/dist/LaunchpadSDK.d.ts.map +1 -0
- package/dist/ai-docs.json +5081 -1052
- package/dist/api/LaunchpadAPI.d.ts +930 -0
- package/dist/api/LaunchpadAPI.d.ts.map +1 -0
- package/dist/api/dto/BondingCurveDTOs.d.ts +145 -0
- package/dist/api/dto/BondingCurveDTOs.d.ts.map +1 -0
- package/dist/api/dto/BurnTokensDto.d.ts +89 -0
- package/dist/api/dto/BurnTokensDto.d.ts.map +1 -0
- package/dist/api/dto/LockTokenDto.d.ts +97 -0
- package/dist/api/dto/LockTokenDto.d.ts.map +1 -0
- package/dist/api/dto/TransferTokenDto.d.ts +76 -0
- package/dist/api/dto/TransferTokenDto.d.ts.map +1 -0
- package/dist/api/dto/UnlockTokenDto.d.ts +86 -0
- package/dist/api/dto/UnlockTokenDto.d.ts.map +1 -0
- package/dist/auth/JwtAuth.d.ts +183 -0
- package/dist/auth/JwtAuth.d.ts.map +1 -0
- package/dist/auth/SessionAuthService.d.ts +151 -0
- package/dist/auth/SessionAuthService.d.ts.map +1 -0
- package/dist/auth/SignatureAuth.d.ts +181 -0
- package/dist/auth/SignatureAuth.d.ts.map +1 -0
- package/dist/auth/storage.d.ts +66 -0
- package/dist/auth/storage.d.ts.map +1 -0
- package/dist/auth/types.d.ts +50 -0
- package/dist/auth/types.d.ts.map +1 -0
- package/dist/bridge/BridgeService.d.ts +484 -0
- package/dist/bridge/BridgeService.d.ts.map +1 -0
- package/dist/bridge/GalaConnectClient.d.ts +170 -0
- package/dist/bridge/GalaConnectClient.d.ts.map +1 -0
- package/dist/bridge/constants/index.d.ts +7 -0
- package/dist/bridge/constants/index.d.ts.map +1 -0
- package/dist/bridge/constants/tokens.d.ts +212 -0
- package/dist/bridge/constants/tokens.d.ts.map +1 -0
- package/dist/bridge/index.d.ts +24 -0
- package/dist/bridge/index.d.ts.map +1 -0
- package/dist/bridge/strategies/BridgeStrategy.d.ts +160 -0
- package/dist/bridge/strategies/BridgeStrategy.d.ts.map +1 -0
- package/dist/bridge/strategies/EthereumBridgeStrategy.d.ts +200 -0
- package/dist/bridge/strategies/EthereumBridgeStrategy.d.ts.map +1 -0
- package/dist/bridge/strategies/SolanaBridgeStrategy.d.ts +258 -0
- package/dist/bridge/strategies/SolanaBridgeStrategy.d.ts.map +1 -0
- package/dist/bridge/types/bridge.dto.d.ts +772 -0
- package/dist/bridge/types/bridge.dto.d.ts.map +1 -0
- package/dist/bridge/types/bridgeable-token.dto.d.ts +205 -0
- package/dist/bridge/types/bridgeable-token.dto.d.ts.map +1 -0
- package/dist/bridge/types/eip712.d.ts +66 -0
- package/dist/bridge/types/eip712.d.ts.map +1 -0
- package/dist/bridge/types/index.d.ts +8 -0
- package/dist/bridge/types/index.d.ts.map +1 -0
- package/dist/bridge/utils/RateLimiter.d.ts +34 -0
- package/dist/bridge/utils/RateLimiter.d.ts.map +1 -0
- package/dist/bridge/utils/address-formatter.d.ts +25 -0
- package/dist/bridge/utils/address-formatter.d.ts.map +1 -0
- package/dist/bridge/utils/addressValidation.d.ts +200 -0
- package/dist/bridge/utils/addressValidation.d.ts.map +1 -0
- package/dist/bridge/utils/balanceHelpers.d.ts +215 -0
- package/dist/bridge/utils/balanceHelpers.d.ts.map +1 -0
- package/dist/bridge/utils/bridgeErrors.d.ts +98 -0
- package/dist/bridge/utils/bridgeErrors.d.ts.map +1 -0
- package/dist/bridge/utils/bridgeOutHelpers.d.ts +68 -0
- package/dist/bridge/utils/bridgeOutHelpers.d.ts.map +1 -0
- package/dist/bridge/utils/bridgePayload.d.ts +98 -0
- package/dist/bridge/utils/bridgePayload.d.ts.map +1 -0
- package/dist/bridge/utils/bridgeStatusParser.d.ts +75 -0
- package/dist/bridge/utils/bridgeStatusParser.d.ts.map +1 -0
- package/dist/bridge/utils/eip712Helpers.d.ts +66 -0
- package/dist/bridge/utils/eip712Helpers.d.ts.map +1 -0
- package/dist/bridge/utils/index.d.ts +19 -0
- package/dist/bridge/utils/index.d.ts.map +1 -0
- package/dist/bridge/utils/retry.d.ts +112 -0
- package/dist/bridge/utils/retry.d.ts.map +1 -0
- package/dist/bridge/utils/strategyDelegation.d.ts +69 -0
- package/dist/bridge/utils/strategyDelegation.d.ts.map +1 -0
- package/dist/bridge/utils/tokenIdUtils.d.ts +86 -0
- package/dist/bridge/utils/tokenIdUtils.d.ts.map +1 -0
- package/dist/bridge/utils/tokenMath.d.ts +39 -0
- package/dist/bridge/utils/tokenMath.d.ts.map +1 -0
- package/dist/bridge/utils/tokenMetadataResolver.d.ts +97 -0
- package/dist/bridge/utils/tokenMetadataResolver.d.ts.map +1 -0
- package/dist/config/environments.d.ts +49 -0
- package/dist/config/environments.d.ts.map +1 -0
- package/dist/constants/bondingCurve.d.ts +102 -0
- package/dist/constants/bondingCurve.d.ts.map +1 -0
- package/dist/constants/config.d.ts +30 -0
- package/dist/constants/config.d.ts.map +1 -0
- package/dist/constants/decimals.d.ts +63 -0
- package/dist/constants/decimals.d.ts.map +1 -0
- package/dist/constants/endpoints.d.ts +776 -0
- package/dist/constants/endpoints.d.ts.map +1 -0
- package/dist/constants/enums.d.ts +65 -0
- package/dist/constants/enums.d.ts.map +1 -0
- package/dist/constants/error-messages.d.ts +61 -0
- package/dist/constants/error-messages.d.ts.map +1 -0
- package/dist/constants/events.d.ts +53 -0
- package/dist/constants/events.d.ts.map +1 -0
- package/dist/constants/jwt.d.ts +41 -0
- package/dist/constants/jwt.d.ts.map +1 -0
- package/dist/constants/nft-fees.d.ts +30 -0
- package/dist/constants/nft-fees.d.ts.map +1 -0
- package/dist/constants/pagination.d.ts +66 -0
- package/dist/constants/pagination.d.ts.map +1 -0
- package/dist/constants/query-fields.d.ts +51 -0
- package/dist/constants/query-fields.d.ts.map +1 -0
- package/dist/constants/sdk-defaults.d.ts +37 -0
- package/dist/constants/sdk-defaults.d.ts.map +1 -0
- package/dist/constants/version.d.ts +6 -0
- package/dist/constants/version.d.ts.map +1 -0
- package/dist/constants/version.generated.d.ts +7 -0
- package/dist/constants/version.generated.d.ts.map +1 -0
- package/dist/examples/admin/api-key-advanced.d.ts +43 -0
- package/dist/examples/admin/api-key-advanced.d.ts.map +1 -0
- package/dist/examples/admin/moderator-invite-complete.d.ts +41 -0
- package/dist/examples/admin/moderator-invite-complete.d.ts.map +1 -0
- package/dist/examples/admin/overseer-management-advanced.d.ts +38 -0
- package/dist/examples/admin/overseer-management-advanced.d.ts.map +1 -0
- package/dist/examples/admin/overseer-page-stats.d.ts +26 -0
- package/dist/examples/admin/overseer-page-stats.d.ts.map +1 -0
- package/dist/examples/admin/token-ban-complete.d.ts +44 -0
- package/dist/examples/admin/token-ban-complete.d.ts.map +1 -0
- package/dist/examples/ai-moderation/ai-moderation-demo.d.ts +32 -0
- package/dist/examples/ai-moderation/ai-moderation-demo.d.ts.map +1 -0
- package/dist/examples/ai-moderation/flag-ai-verdicts-demo.d.ts +30 -0
- package/dist/examples/ai-moderation/flag-ai-verdicts-demo.d.ts.map +1 -0
- package/dist/examples/analytics/index.d.ts +23 -0
- package/dist/examples/analytics/index.d.ts.map +1 -0
- package/dist/examples/analytics/market-analysis-tools.d.ts +28 -0
- package/dist/examples/analytics/market-analysis-tools.d.ts.map +1 -0
- package/dist/examples/analytics/portfolio-performance-tracking.d.ts +25 -0
- package/dist/examples/analytics/portfolio-performance-tracking.d.ts.map +1 -0
- package/dist/examples/analytics/trading-analytics-advanced.d.ts +27 -0
- package/dist/examples/analytics/trading-analytics-advanced.d.ts.map +1 -0
- package/dist/examples/api-keys/advanced-configuration.d.ts +19 -0
- package/dist/examples/api-keys/advanced-configuration.d.ts.map +1 -0
- package/dist/examples/api-keys/complete-lifecycle.d.ts +18 -0
- package/dist/examples/api-keys/complete-lifecycle.d.ts.map +1 -0
- package/dist/examples/api-keys/crud.d.ts +22 -0
- package/dist/examples/api-keys/crud.d.ts.map +1 -0
- package/dist/examples/api-keys/token-delegation.d.ts +24 -0
- package/dist/examples/api-keys/token-delegation.d.ts.map +1 -0
- package/dist/examples/api-keys/user-api-key-auth.d.ts +24 -0
- package/dist/examples/api-keys/user-api-key-auth.d.ts.map +1 -0
- package/dist/examples/auth/auth-permissions-checking.d.ts +32 -0
- package/dist/examples/auth/auth-permissions-checking.d.ts.map +1 -0
- package/dist/examples/auth/auth-token-management.d.ts +32 -0
- package/dist/examples/auth/auth-token-management.d.ts.map +1 -0
- package/dist/examples/auth/auth-validation-workflows.d.ts +32 -0
- package/dist/examples/auth/auth-validation-workflows.d.ts.map +1 -0
- package/dist/examples/bans/ban-management.d.ts +24 -0
- package/dist/examples/bans/ban-management.d.ts.map +1 -0
- package/dist/examples/bans/demo-global-user-bans.d.ts +27 -0
- package/dist/examples/bans/demo-global-user-bans.d.ts.map +1 -0
- package/dist/examples/bonding/token-graduation-workflow.d.ts +21 -0
- package/dist/examples/bonding/token-graduation-workflow.d.ts.map +1 -0
- package/dist/examples/bonding-curve/basic-trading.d.ts +20 -0
- package/dist/examples/bonding-curve/basic-trading.d.ts.map +1 -0
- package/dist/examples/bonding-curve/graduation-workflow.d.ts +18 -0
- package/dist/examples/bonding-curve/graduation-workflow.d.ts.map +1 -0
- package/dist/examples/bonding-curve/pagination-variants.d.ts +17 -0
- package/dist/examples/bonding-curve/pagination-variants.d.ts.map +1 -0
- package/dist/examples/bonding-curve/pool-analysis.d.ts +18 -0
- package/dist/examples/bonding-curve/pool-analysis.d.ts.map +1 -0
- package/dist/examples/bonding-curve/pool-creator-filtering.d.ts +17 -0
- package/dist/examples/bonding-curve/pool-creator-filtering.d.ts.map +1 -0
- package/dist/examples/bonding-curve/pool-discovery.d.ts +19 -0
- package/dist/examples/bonding-curve/pool-discovery.d.ts.map +1 -0
- package/dist/examples/bonding-curve/price-impact.d.ts +18 -0
- package/dist/examples/bonding-curve/price-impact.d.ts.map +1 -0
- package/dist/examples/bonding-curve/token-launch.d.ts +18 -0
- package/dist/examples/bonding-curve/token-launch.d.ts.map +1 -0
- package/dist/examples/bonding-curve/user-holder-context.d.ts +18 -0
- package/dist/examples/bonding-curve/user-holder-context.d.ts.map +1 -0
- package/dist/examples/bonding-curve/volume-trading.d.ts +18 -0
- package/dist/examples/bonding-curve/volume-trading.d.ts.map +1 -0
- package/dist/examples/bridge/bridge-ethereum-specific.d.ts +18 -0
- package/dist/examples/bridge/bridge-ethereum-specific.d.ts.map +1 -0
- package/dist/examples/bridge/bridge-generic-operations.d.ts +18 -0
- package/dist/examples/bridge/bridge-generic-operations.d.ts.map +1 -0
- package/dist/examples/bridge/bridge-multi-chain-routing.d.ts +31 -0
- package/dist/examples/bridge/bridge-multi-chain-routing.d.ts.map +1 -0
- package/dist/examples/bridge/bridge-network-methods.d.ts +31 -0
- package/dist/examples/bridge/bridge-network-methods.d.ts.map +1 -0
- package/dist/examples/bridge/bridge-network-tokens.d.ts +18 -0
- package/dist/examples/bridge/bridge-network-tokens.d.ts.map +1 -0
- package/dist/examples/bridge/bridge-network-validation.d.ts +33 -0
- package/dist/examples/bridge/bridge-network-validation.d.ts.map +1 -0
- package/dist/examples/bridge/bridge-operations.d.ts +27 -0
- package/dist/examples/bridge/bridge-operations.d.ts.map +1 -0
- package/dist/examples/bridge/bridge-solana-specific.d.ts +18 -0
- package/dist/examples/bridge/bridge-solana-specific.d.ts.map +1 -0
- package/dist/examples/bridge/bridge-status-monitoring.d.ts +30 -0
- package/dist/examples/bridge/bridge-status-monitoring.d.ts.map +1 -0
- package/dist/examples/bridge/bridge-wrapped-token-operations.d.ts +30 -0
- package/dist/examples/bridge/bridge-wrapped-token-operations.d.ts.map +1 -0
- package/dist/examples/bridge/bridgeable-tokens.d.ts +27 -0
- package/dist/examples/bridge/bridgeable-tokens.d.ts.map +1 -0
- package/dist/examples/bridge/check-balances.d.ts +13 -0
- package/dist/examples/bridge/check-balances.d.ts.map +1 -0
- package/dist/examples/bridge/ethereum-in.d.ts +17 -0
- package/dist/examples/bridge/ethereum-in.d.ts.map +1 -0
- package/dist/examples/bridge/ethereum-out.d.ts +17 -0
- package/dist/examples/bridge/ethereum-out.d.ts.map +1 -0
- package/dist/examples/bridge/ethereum-roundtrip.d.ts +20 -0
- package/dist/examples/bridge/ethereum-roundtrip.d.ts.map +1 -0
- package/dist/examples/bridge/external-balances.d.ts +29 -0
- package/dist/examples/bridge/external-balances.d.ts.map +1 -0
- package/dist/examples/bridge/fee-estimation.d.ts +14 -0
- package/dist/examples/bridge/fee-estimation.d.ts.map +1 -0
- package/dist/examples/bridge/solana-in.d.ts +18 -0
- package/dist/examples/bridge/solana-in.d.ts.map +1 -0
- package/dist/examples/bridge/solana-out.d.ts +18 -0
- package/dist/examples/bridge/solana-out.d.ts.map +1 -0
- package/dist/examples/bridge/solana-roundtrip.d.ts +21 -0
- package/dist/examples/bridge/solana-roundtrip.d.ts.map +1 -0
- package/dist/examples/bridge/status-tracking.d.ts +16 -0
- package/dist/examples/bridge/status-tracking.d.ts.map +1 -0
- package/dist/examples/bridge/supported-tokens.d.ts +14 -0
- package/dist/examples/bridge/supported-tokens.d.ts.map +1 -0
- package/dist/examples/bridge/test-debug-unwrap.d.ts +13 -0
- package/dist/examples/bridge/test-debug-unwrap.d.ts.map +1 -0
- package/dist/examples/bridge/test-unwrap-execution.d.ts +13 -0
- package/dist/examples/bridge/test-unwrap-execution.d.ts.map +1 -0
- package/dist/examples/bridge/test-wrap-debug.d.ts +13 -0
- package/dist/examples/bridge/test-wrap-debug.d.ts.map +1 -0
- package/dist/examples/bridge/test-wrap-execution.d.ts +13 -0
- package/dist/examples/bridge/test-wrap-execution.d.ts.map +1 -0
- package/dist/examples/bridge/test-wrap-roundtrip.d.ts +13 -0
- package/dist/examples/bridge/test-wrap-roundtrip.d.ts.map +1 -0
- package/dist/examples/bridge/transaction-status.d.ts +26 -0
- package/dist/examples/bridge/transaction-status.d.ts.map +1 -0
- package/dist/examples/bridge/wallet-balances.d.ts +24 -0
- package/dist/examples/bridge/wallet-balances.d.ts.map +1 -0
- package/dist/examples/bridge/wrap-discovery.d.ts +16 -0
- package/dist/examples/bridge/wrap-discovery.d.ts.map +1 -0
- package/dist/examples/bridge/wrap-fee-estimation.d.ts +16 -0
- package/dist/examples/bridge/wrap-fee-estimation.d.ts.map +1 -0
- package/dist/examples/bridge/wrap-unwrap.d.ts +18 -0
- package/dist/examples/bridge/wrap-unwrap.d.ts.map +1 -0
- package/dist/examples/bridge/wrap-utilities.d.ts +21 -0
- package/dist/examples/bridge/wrap-utilities.d.ts.map +1 -0
- package/dist/examples/calculations/calculation-methods-comprehensive.d.ts +24 -0
- package/dist/examples/calculations/calculation-methods-comprehensive.d.ts.map +1 -0
- package/dist/examples/calculations/external-calculations-demo.d.ts +23 -0
- package/dist/examples/calculations/external-calculations-demo.d.ts.map +1 -0
- package/dist/examples/calculations/local-calculations-demo.d.ts +24 -0
- package/dist/examples/calculations/local-calculations-demo.d.ts.map +1 -0
- package/dist/examples/calculations/pool-calculation-context.d.ts +19 -0
- package/dist/examples/calculations/pool-calculation-context.d.ts.map +1 -0
- package/dist/examples/chat/basic-chat.d.ts +17 -0
- package/dist/examples/chat/basic-chat.d.ts.map +1 -0
- package/dist/examples/chat/chat-admin-controls.d.ts +41 -0
- package/dist/examples/chat/chat-admin-controls.d.ts.map +1 -0
- package/dist/examples/chat/chat-demo.d.ts +25 -0
- package/dist/examples/chat/chat-demo.d.ts.map +1 -0
- package/dist/examples/chat/chat-engagement-stats.d.ts +44 -0
- package/dist/examples/chat/chat-engagement-stats.d.ts.map +1 -0
- package/dist/examples/chat/chat-lifecycle.d.ts +26 -0
- package/dist/examples/chat/chat-lifecycle.d.ts.map +1 -0
- package/dist/examples/chat/chat-message-management.d.ts +18 -0
- package/dist/examples/chat/chat-message-management.d.ts.map +1 -0
- package/dist/examples/chat/chat-pinning-workflow.d.ts +37 -0
- package/dist/examples/chat/chat-pinning-workflow.d.ts.map +1 -0
- package/dist/examples/chat/demo-pin-messages.d.ts +17 -0
- package/dist/examples/chat/demo-pin-messages.d.ts.map +1 -0
- package/dist/examples/chat/multi-user-chat-test.d.ts +19 -0
- package/dist/examples/chat/multi-user-chat-test.d.ts.map +1 -0
- package/dist/examples/chat/quick-reaction-test.d.ts +4 -0
- package/dist/examples/chat/quick-reaction-test.d.ts.map +1 -0
- package/dist/examples/chat/typing-indicators.d.ts +23 -0
- package/dist/examples/chat/typing-indicators.d.ts.map +1 -0
- package/dist/examples/chat/websocket-chat.d.ts +21 -0
- package/dist/examples/chat/websocket-chat.d.ts.map +1 -0
- package/dist/examples/comments/basic-comments.d.ts +19 -0
- package/dist/examples/comments/basic-comments.d.ts.map +1 -0
- package/dist/examples/comments/comments-demo.d.ts +34 -0
- package/dist/examples/comments/comments-demo.d.ts.map +1 -0
- package/dist/examples/comments/comments-lifecycle.d.ts +24 -0
- package/dist/examples/comments/comments-lifecycle.d.ts.map +1 -0
- package/dist/examples/comments/comments-update-workflow.d.ts +35 -0
- package/dist/examples/comments/comments-update-workflow.d.ts.map +1 -0
- package/dist/examples/content/content-categorization.d.ts +51 -0
- package/dist/examples/content/content-categorization.d.ts.map +1 -0
- package/dist/examples/content/content-publishing-workflow.d.ts +45 -0
- package/dist/examples/content/content-publishing-workflow.d.ts.map +1 -0
- package/dist/examples/content/content-versioning.d.ts +52 -0
- package/dist/examples/content/content-versioning.d.ts.map +1 -0
- package/dist/examples/content-flags/comprehensive-flag-workflow.d.ts +40 -0
- package/dist/examples/content-flags/comprehensive-flag-workflow.d.ts.map +1 -0
- package/dist/examples/content-flags/flag-management.d.ts +28 -0
- package/dist/examples/content-flags/flag-management.d.ts.map +1 -0
- package/dist/examples/content-reactions/advanced-reactions.d.ts +24 -0
- package/dist/examples/content-reactions/advanced-reactions.d.ts.map +1 -0
- package/dist/examples/content-reactions/basic-reactions.d.ts +21 -0
- package/dist/examples/content-reactions/basic-reactions.d.ts.map +1 -0
- package/dist/examples/content-reactions/comprehensive-reactions-workflow.d.ts +41 -0
- package/dist/examples/content-reactions/comprehensive-reactions-workflow.d.ts.map +1 -0
- package/dist/examples/content-reactions/content-reactions-advanced.d.ts +40 -0
- package/dist/examples/content-reactions/content-reactions-advanced.d.ts.map +1 -0
- package/dist/examples/core/authenticated-operations.d.ts +14 -0
- package/dist/examples/core/authenticated-operations.d.ts.map +1 -0
- package/dist/examples/core/complete-sdk-demo.d.ts +22 -0
- package/dist/examples/core/complete-sdk-demo.d.ts.map +1 -0
- package/dist/examples/core/image-uploads.d.ts +28 -0
- package/dist/examples/core/image-uploads.d.ts.map +1 -0
- package/dist/examples/core/privatekey-override-pattern.d.ts +16 -0
- package/dist/examples/core/privatekey-override-pattern.d.ts.map +1 -0
- package/dist/examples/core/read-only-operations.d.ts +16 -0
- package/dist/examples/core/read-only-operations.d.ts.map +1 -0
- package/dist/examples/core/session-auth-demo.d.ts +15 -0
- package/dist/examples/core/session-auth-demo.d.ts.map +1 -0
- package/dist/examples/core/session-auth-lifecycle.d.ts +19 -0
- package/dist/examples/core/session-auth-lifecycle.d.ts.map +1 -0
- package/dist/examples/core/test-pagination-fix.d.ts +14 -0
- package/dist/examples/core/test-pagination-fix.d.ts.map +1 -0
- package/dist/examples/core/token-refresh-utilities.d.ts +18 -0
- package/dist/examples/core/token-refresh-utilities.d.ts.map +1 -0
- package/dist/examples/core/token-validation.d.ts +18 -0
- package/dist/examples/core/token-validation.d.ts.map +1 -0
- package/dist/examples/core/wallet-management.d.ts +23 -0
- package/dist/examples/core/wallet-management.d.ts.map +1 -0
- package/dist/examples/debug/check-recorded-bridge-tx.d.ts +8 -0
- package/dist/examples/debug/check-recorded-bridge-tx.d.ts.map +1 -0
- package/dist/examples/debug/debug-comment.d.ts +2 -0
- package/dist/examples/debug/debug-comment.d.ts.map +1 -0
- package/dist/examples/debug/test-volume-data-bounds-prod.d.ts +15 -0
- package/dist/examples/debug/test-volume-data-bounds-prod.d.ts.map +1 -0
- package/dist/examples/debug/test-volume-data-bounds.d.ts +14 -0
- package/dist/examples/debug/test-volume-data-bounds.d.ts.map +1 -0
- package/dist/examples/debug/websocket-event-discovery.d.ts +26 -0
- package/dist/examples/debug/websocket-event-discovery.d.ts.map +1 -0
- package/dist/examples/debug/websocket-monitor.d.ts +15 -0
- package/dist/examples/debug/websocket-monitor.d.ts.map +1 -0
- package/dist/examples/debug-single-trade.d.ts +6 -0
- package/dist/examples/debug-single-trade.d.ts.map +1 -0
- package/dist/examples/demo-librarian.d.ts +18 -0
- package/dist/examples/demo-librarian.d.ts.map +1 -0
- package/dist/examples/demo-runner.d.ts +22 -0
- package/dist/examples/demo-runner.d.ts.map +1 -0
- package/dist/examples/dex/demo-roundtrip-liquidity.d.ts +16 -0
- package/dist/examples/dex/demo-roundtrip-liquidity.d.ts.map +1 -0
- package/dist/examples/dex/dex-impermanent-loss-analysis.d.ts +28 -0
- package/dist/examples/dex/dex-impermanent-loss-analysis.d.ts.map +1 -0
- package/dist/examples/dex/dex-liquidity-management-advanced.d.ts +27 -0
- package/dist/examples/dex/dex-liquidity-management-advanced.d.ts.map +1 -0
- package/dist/examples/dex/dex-multi-hop-swaps.d.ts +32 -0
- package/dist/examples/dex/dex-multi-hop-swaps.d.ts.map +1 -0
- package/dist/examples/dex/dex-pool-pricing.d.ts +20 -0
- package/dist/examples/dex/dex-pool-pricing.d.ts.map +1 -0
- package/dist/examples/dex/dex-quote-calculations.d.ts +21 -0
- package/dist/examples/dex/dex-quote-calculations.d.ts.map +1 -0
- package/dist/examples/dex/dex-seasons-leaderboard.d.ts +22 -0
- package/dist/examples/dex/dex-seasons-leaderboard.d.ts.map +1 -0
- package/dist/examples/dex/dex-slippage-protection.d.ts +28 -0
- package/dist/examples/dex/dex-slippage-protection.d.ts.map +1 -0
- package/dist/examples/dex/dex-tokens-discovery.d.ts +20 -0
- package/dist/examples/dex/dex-tokens-discovery.d.ts.map +1 -0
- package/dist/examples/dex/dex-volume-analytics.d.ts +19 -0
- package/dist/examples/dex/dex-volume-analytics.d.ts.map +1 -0
- package/dist/examples/dex/leaderboard.d.ts +12 -0
- package/dist/examples/dex/leaderboard.d.ts.map +1 -0
- package/dist/examples/dex/pool-discovery.d.ts +25 -0
- package/dist/examples/dex/pool-discovery.d.ts.map +1 -0
- package/dist/examples/dex/pools-with-pricing.d.ts +28 -0
- package/dist/examples/dex/pools-with-pricing.d.ts.map +1 -0
- package/dist/examples/dex/quote-comparison.d.ts +16 -0
- package/dist/examples/dex/quote-comparison.d.ts.map +1 -0
- package/dist/examples/dex/swap-user-assets-comprehensive.d.ts +20 -0
- package/dist/examples/dex/swap-user-assets-comprehensive.d.ts.map +1 -0
- package/dist/examples/dex/swap-workflow.d.ts +20 -0
- package/dist/examples/dex/swap-workflow.d.ts.map +1 -0
- package/dist/examples/dex/token-discovery.d.ts +27 -0
- package/dist/examples/dex/token-discovery.d.ts.map +1 -0
- package/dist/examples/dex/volume-summary.d.ts +12 -0
- package/dist/examples/dex/volume-summary.d.ts.map +1 -0
- package/dist/examples/error-handling/error-recovery-patterns.d.ts +42 -0
- package/dist/examples/error-handling/error-recovery-patterns.d.ts.map +1 -0
- package/dist/examples/error-handling/timeout-management.d.ts +43 -0
- package/dist/examples/error-handling/timeout-management.d.ts.map +1 -0
- package/dist/examples/events/event-aggregation-analysis.d.ts +40 -0
- package/dist/examples/events/event-aggregation-analysis.d.ts.map +1 -0
- package/dist/examples/events/event-emission-patterns.d.ts +35 -0
- package/dist/examples/events/event-emission-patterns.d.ts.map +1 -0
- package/dist/examples/events/subscription-management-advanced.d.ts +38 -0
- package/dist/examples/events/subscription-management-advanced.d.ts.map +1 -0
- package/dist/examples/fees/complete-fee-test.d.ts +13 -0
- package/dist/examples/fees/complete-fee-test.d.ts.map +1 -0
- package/dist/examples/fees/demo-fee-generation-and-collection.d.ts +27 -0
- package/dist/examples/fees/demo-fee-generation-and-collection.d.ts.map +1 -0
- package/dist/examples/fees/demo-fees-high-volume.d.ts +13 -0
- package/dist/examples/fees/demo-fees-high-volume.d.ts.map +1 -0
- package/dist/examples/fees/demo-multi-wallet-fee-generation.d.ts +13 -0
- package/dist/examples/fees/demo-multi-wallet-fee-generation.d.ts.map +1 -0
- package/dist/examples/fees/trade-and-collect-fees.d.ts +13 -0
- package/dist/examples/fees/trade-and-collect-fees.d.ts.map +1 -0
- package/dist/examples/galachain/bundler-transactions.d.ts +28 -0
- package/dist/examples/galachain/bundler-transactions.d.ts.map +1 -0
- package/dist/examples/galachain/galachain-token-resolution.d.ts +28 -0
- package/dist/examples/galachain/galachain-token-resolution.d.ts.map +1 -0
- package/dist/examples/galachain/galachain-tokens.d.ts +28 -0
- package/dist/examples/galachain/galachain-tokens.d.ts.map +1 -0
- package/dist/examples/galachain/galachain-transfers.d.ts +25 -0
- package/dist/examples/galachain/galachain-transfers.d.ts.map +1 -0
- package/dist/examples/global-feed-demo.d.ts +17 -0
- package/dist/examples/global-feed-demo.d.ts.map +1 -0
- package/dist/examples/global-feed-filtering-demo.d.ts +20 -0
- package/dist/examples/global-feed-filtering-demo.d.ts.map +1 -0
- package/dist/examples/launchpad/demo-socials.d.ts +16 -0
- package/dist/examples/launchpad/demo-socials.d.ts.map +1 -0
- package/dist/examples/launchpad/fetch-token-stats.d.ts +18 -0
- package/dist/examples/launchpad/fetch-token-stats.d.ts.map +1 -0
- package/dist/examples/launchpad/update-token-config.d.ts +17 -0
- package/dist/examples/launchpad/update-token-config.d.ts.map +1 -0
- package/dist/examples/liquidity/apr-calculator.d.ts +18 -0
- package/dist/examples/liquidity/apr-calculator.d.ts.map +1 -0
- package/dist/examples/liquidity/demo-bundler-operations.d.ts +15 -0
- package/dist/examples/liquidity/demo-bundler-operations.d.ts.map +1 -0
- package/dist/examples/liquidity/demo-fetch-all-positions.d.ts +2 -0
- package/dist/examples/liquidity/demo-fetch-all-positions.d.ts.map +1 -0
- package/dist/examples/liquidity/demo-position-direct.d.ts +14 -0
- package/dist/examples/liquidity/demo-position-direct.d.ts.map +1 -0
- package/dist/examples/liquidity/demo-positions-with-chunked-pricing.d.ts +26 -0
- package/dist/examples/liquidity/demo-positions-with-chunked-pricing.d.ts.map +1 -0
- package/dist/examples/liquidity/demo-roundtrip-remove.d.ts +21 -0
- package/dist/examples/liquidity/demo-roundtrip-remove.d.ts.map +1 -0
- package/dist/examples/liquidity/detailed.d.ts +21 -0
- package/dist/examples/liquidity/detailed.d.ts.map +1 -0
- package/dist/examples/liquidity/errors.d.ts +18 -0
- package/dist/examples/liquidity/errors.d.ts.map +1 -0
- package/dist/examples/liquidity/fee-collection.d.ts +22 -0
- package/dist/examples/liquidity/fee-collection.d.ts.map +1 -0
- package/dist/examples/liquidity/liquidity-position-details.d.ts +21 -0
- package/dist/examples/liquidity/liquidity-position-details.d.ts.map +1 -0
- package/dist/examples/liquidity/liquidity-removal-estimation.d.ts +19 -0
- package/dist/examples/liquidity/liquidity-removal-estimation.d.ts.map +1 -0
- package/dist/examples/liquidity/multi-position.d.ts +22 -0
- package/dist/examples/liquidity/multi-position.d.ts.map +1 -0
- package/dist/examples/liquidity/positions-cli.d.ts +41 -0
- package/dist/examples/liquidity/positions-cli.d.ts.map +1 -0
- package/dist/examples/liquidity/ticks.d.ts +18 -0
- package/dist/examples/liquidity/ticks.d.ts.map +1 -0
- package/dist/examples/locks/burn-tokens.d.ts +25 -0
- package/dist/examples/locks/burn-tokens.d.ts.map +1 -0
- package/dist/examples/locks/lock-unlock-workflow.d.ts +20 -0
- package/dist/examples/locks/lock-unlock-workflow.d.ts.map +1 -0
- package/dist/examples/messages/messages-lifecycle.d.ts +37 -0
- package/dist/examples/messages/messages-lifecycle.d.ts.map +1 -0
- package/dist/examples/messages/messages-pinning.d.ts +37 -0
- package/dist/examples/messages/messages-pinning.d.ts.map +1 -0
- package/dist/examples/moderators/claim-invite.d.ts +28 -0
- package/dist/examples/moderators/claim-invite.d.ts.map +1 -0
- package/dist/examples/moderators/invite-management.d.ts +30 -0
- package/dist/examples/moderators/invite-management.d.ts.map +1 -0
- package/dist/examples/moderators/moderated-tokens-portfolio.d.ts +18 -0
- package/dist/examples/moderators/moderated-tokens-portfolio.d.ts.map +1 -0
- package/dist/examples/monitoring/demo-stream-events.d.ts +17 -0
- package/dist/examples/monitoring/demo-stream-events.d.ts.map +1 -0
- package/dist/examples/monitoring/demo-watch-pools.d.ts +18 -0
- package/dist/examples/monitoring/demo-watch-pools.d.ts.map +1 -0
- package/dist/examples/monitoring/demo-watch-tokens.d.ts +18 -0
- package/dist/examples/monitoring/demo-watch-tokens.d.ts.map +1 -0
- package/dist/examples/monitoring/fees-collection-e2e.d.ts +36 -0
- package/dist/examples/monitoring/fees-collection-e2e.d.ts.map +1 -0
- package/dist/examples/monitoring/fees-collection-guaranteed.d.ts +49 -0
- package/dist/examples/monitoring/fees-collection-guaranteed.d.ts.map +1 -0
- package/dist/examples/monitoring/liquidity-e2e-test.d.ts +15 -0
- package/dist/examples/monitoring/liquidity-e2e-test.d.ts.map +1 -0
- package/dist/examples/monitoring/liquidity-monitor.d.ts +17 -0
- package/dist/examples/monitoring/liquidity-monitor.d.ts.map +1 -0
- package/dist/examples/monitoring/pool-creation-integration.d.ts +27 -0
- package/dist/examples/monitoring/pool-creation-integration.d.ts.map +1 -0
- package/dist/examples/monitoring/pool-liquidity-tracker.d.ts +15 -0
- package/dist/examples/monitoring/pool-liquidity-tracker.d.ts.map +1 -0
- package/dist/examples/monitoring/subscribe-liquidity-added.d.ts +30 -0
- package/dist/examples/monitoring/subscribe-liquidity-added.d.ts.map +1 -0
- package/dist/examples/monitoring/subscribe-liquidity-removed.d.ts +30 -0
- package/dist/examples/monitoring/subscribe-liquidity-removed.d.ts.map +1 -0
- package/dist/examples/monitoring/subscribe-pool-creations.d.ts +29 -0
- package/dist/examples/monitoring/subscribe-pool-creations.d.ts.map +1 -0
- package/dist/examples/monitoring/subscribe-token-creations.d.ts +21 -0
- package/dist/examples/monitoring/subscribe-token-creations.d.ts.map +1 -0
- package/dist/examples/monitoring/token-creation-integration.d.ts +32 -0
- package/dist/examples/monitoring/token-creation-integration.d.ts.map +1 -0
- package/dist/examples/monitoring/websocket-event-handlers.d.ts +22 -0
- package/dist/examples/monitoring/websocket-event-handlers.d.ts.map +1 -0
- package/dist/examples/nft/demo-collection-management.d.ts +13 -0
- package/dist/examples/nft/demo-collection-management.d.ts.map +1 -0
- package/dist/examples/nft/demo-fee-calculations.d.ts +14 -0
- package/dist/examples/nft/demo-fee-calculations.d.ts.map +1 -0
- package/dist/examples/nft/demo-minting.d.ts +13 -0
- package/dist/examples/nft/demo-minting.d.ts.map +1 -0
- package/dist/examples/nft/demo-portfolio-query.d.ts +14 -0
- package/dist/examples/nft/demo-portfolio-query.d.ts.map +1 -0
- package/dist/examples/nft/nft-collection-lifecycle.d.ts +22 -0
- package/dist/examples/nft/nft-collection-lifecycle.d.ts.map +1 -0
- package/dist/examples/nft/nft-data-queries.d.ts +22 -0
- package/dist/examples/nft/nft-data-queries.d.ts.map +1 -0
- package/dist/examples/nft/nft-fee-estimation.d.ts +23 -0
- package/dist/examples/nft/nft-fee-estimation.d.ts.map +1 -0
- package/dist/examples/nft/nft-token-creation.d.ts +22 -0
- package/dist/examples/nft/nft-token-creation.d.ts.map +1 -0
- package/dist/examples/nft/nft-utilities.d.ts +23 -0
- package/dist/examples/nft/nft-utilities.d.ts.map +1 -0
- package/dist/examples/orchestrator-master.d.ts +22 -0
- package/dist/examples/orchestrator-master.d.ts.map +1 -0
- package/dist/examples/orchestrator-tasks.d.ts +38 -0
- package/dist/examples/orchestrator-tasks.d.ts.map +1 -0
- package/dist/examples/overseers/claim-invite.d.ts +31 -0
- package/dist/examples/overseers/claim-invite.d.ts.map +1 -0
- package/dist/examples/overseers/demo-list-users.d.ts +19 -0
- package/dist/examples/overseers/demo-list-users.d.ts.map +1 -0
- package/dist/examples/overseers/direct-promotion.d.ts +39 -0
- package/dist/examples/overseers/direct-promotion.d.ts.map +1 -0
- package/dist/examples/overseers/invite-management.d.ts +38 -0
- package/dist/examples/overseers/invite-management.d.ts.map +1 -0
- package/dist/examples/overseers/restricted-names-management.d.ts +27 -0
- package/dist/examples/overseers/restricted-names-management.d.ts.map +1 -0
- package/dist/examples/performance/caching-strategies-advanced.d.ts +28 -0
- package/dist/examples/performance/caching-strategies-advanced.d.ts.map +1 -0
- package/dist/examples/performance/performance-optimization-patterns.d.ts +28 -0
- package/dist/examples/performance/performance-optimization-patterns.d.ts.map +1 -0
- package/dist/examples/persistence/data-backup-recovery.d.ts +119 -0
- package/dist/examples/persistence/data-backup-recovery.d.ts.map +1 -0
- package/dist/examples/persistence/local-storage-patterns.d.ts +86 -0
- package/dist/examples/persistence/local-storage-patterns.d.ts.map +1 -0
- package/dist/examples/queries/advanced-sorting.d.ts +28 -0
- package/dist/examples/queries/advanced-sorting.d.ts.map +1 -0
- package/dist/examples/queries/complex-filtering.d.ts +27 -0
- package/dist/examples/queries/complex-filtering.d.ts.map +1 -0
- package/dist/examples/security/security-audit-trail.d.ts +42 -0
- package/dist/examples/security/security-audit-trail.d.ts.map +1 -0
- package/dist/examples/security/security-content-moderation-advanced.d.ts +42 -0
- package/dist/examples/security/security-content-moderation-advanced.d.ts.map +1 -0
- package/dist/examples/security/security-token-safety-checks.d.ts +41 -0
- package/dist/examples/security/security-token-safety-checks.d.ts.map +1 -0
- package/dist/examples/security/security-user-restrictions-advanced.d.ts +42 -0
- package/dist/examples/security/security-user-restrictions-advanced.d.ts.map +1 -0
- package/dist/examples/site-config-demo.d.ts +20 -0
- package/dist/examples/site-config-demo.d.ts.map +1 -0
- package/dist/examples/streaming/admin-controls.d.ts +30 -0
- package/dist/examples/streaming/admin-controls.d.ts.map +1 -0
- package/dist/examples/streaming/advanced-stream-demo.d.ts +28 -0
- package/dist/examples/streaming/advanced-stream-demo.d.ts.map +1 -0
- package/dist/examples/streaming/basic-stream.d.ts +17 -0
- package/dist/examples/streaming/basic-stream.d.ts.map +1 -0
- package/dist/examples/streaming/demo-countdown.d.ts +16 -0
- package/dist/examples/streaming/demo-countdown.d.ts.map +1 -0
- package/dist/examples/streaming/demo-get-stream-credentials.d.ts +29 -0
- package/dist/examples/streaming/demo-get-stream-credentials.d.ts.map +1 -0
- package/dist/examples/streaming/demo-platform-config.d.ts +20 -0
- package/dist/examples/streaming/demo-platform-config.d.ts.map +1 -0
- package/dist/examples/streaming/engagement-stats.d.ts +25 -0
- package/dist/examples/streaming/engagement-stats.d.ts.map +1 -0
- package/dist/examples/streaming/recordings.d.ts +16 -0
- package/dist/examples/streaming/recordings.d.ts.map +1 -0
- package/dist/examples/streaming/simulcast.d.ts +19 -0
- package/dist/examples/streaming/simulcast.d.ts.map +1 -0
- package/dist/examples/streaming/stream-access-control.d.ts +30 -0
- package/dist/examples/streaming/stream-access-control.d.ts.map +1 -0
- package/dist/examples/streaming/stream-control.d.ts +25 -0
- package/dist/examples/streaming/stream-control.d.ts.map +1 -0
- package/dist/examples/streaming/stream-countdown.d.ts +31 -0
- package/dist/examples/streaming/stream-countdown.d.ts.map +1 -0
- package/dist/examples/streaming/stream-enable-disable.d.ts +31 -0
- package/dist/examples/streaming/stream-enable-disable.d.ts.map +1 -0
- package/dist/examples/streaming/stream-key-management.d.ts +21 -0
- package/dist/examples/streaming/stream-key-management.d.ts.map +1 -0
- package/dist/examples/streaming/stream-recording-management.d.ts +29 -0
- package/dist/examples/streaming/stream-recording-management.d.ts.map +1 -0
- package/dist/examples/streaming/stream-simulcast-multi-platform.d.ts +38 -0
- package/dist/examples/streaming/stream-simulcast-multi-platform.d.ts.map +1 -0
- package/dist/examples/streaming/stream-viewer-analytics.d.ts +43 -0
- package/dist/examples/streaming/stream-viewer-analytics.d.ts.map +1 -0
- package/dist/examples/streaming/streaming-lifecycle.d.ts +26 -0
- package/dist/examples/streaming/streaming-lifecycle.d.ts.map +1 -0
- package/dist/examples/streaming-premium/stream-monetization-setup.d.ts +47 -0
- package/dist/examples/streaming-premium/stream-monetization-setup.d.ts.map +1 -0
- package/dist/examples/streaming-premium/stream-revenue-analytics.d.ts +56 -0
- package/dist/examples/streaming-premium/stream-revenue-analytics.d.ts.map +1 -0
- package/dist/examples/streaming-premium/stream-vip-management.d.ts +56 -0
- package/dist/examples/streaming-premium/stream-vip-management.d.ts.map +1 -0
- package/dist/examples/swap-monitoring/arbitrage-monitor.d.ts +20 -0
- package/dist/examples/swap-monitoring/arbitrage-monitor.d.ts.map +1 -0
- package/dist/examples/swap-monitoring/e2e-trading-demo.d.ts +50 -0
- package/dist/examples/swap-monitoring/e2e-trading-demo.d.ts.map +1 -0
- package/dist/examples/swap-monitoring/health-monitor.d.ts +10 -0
- package/dist/examples/swap-monitoring/health-monitor.d.ts.map +1 -0
- package/dist/examples/swap-monitoring/volume-monitor.d.ts +20 -0
- package/dist/examples/swap-monitoring/volume-monitor.d.ts.map +1 -0
- package/dist/examples/testing/demo-test-runner.d.ts +33 -0
- package/dist/examples/testing/demo-test-runner.d.ts.map +1 -0
- package/dist/examples/testing/error-classifier.d.ts +23 -0
- package/dist/examples/testing/error-classifier.d.ts.map +1 -0
- package/dist/examples/testing/index.d.ts +14 -0
- package/dist/examples/testing/index.d.ts.map +1 -0
- package/dist/examples/testing/memory-manager.d.ts +31 -0
- package/dist/examples/testing/memory-manager.d.ts.map +1 -0
- package/dist/examples/testing/report-generator.d.ts +31 -0
- package/dist/examples/testing/report-generator.d.ts.map +1 -0
- package/dist/examples/testing/test-result-types.d.ts +158 -0
- package/dist/examples/testing/test-result-types.d.ts.map +1 -0
- package/dist/examples/token-bans/token-ban-management.d.ts +32 -0
- package/dist/examples/token-bans/token-ban-management.d.ts.map +1 -0
- package/dist/examples/token-creation/token-launch-complete.d.ts +20 -0
- package/dist/examples/token-creation/token-launch-complete.d.ts.map +1 -0
- package/dist/examples/token-creation/token-validation-comprehensive.d.ts +22 -0
- package/dist/examples/token-creation/token-validation-comprehensive.d.ts.map +1 -0
- package/dist/examples/token-info/token-name-resolution.d.ts +30 -0
- package/dist/examples/token-info/token-name-resolution.d.ts.map +1 -0
- package/dist/examples/token-info/token-operations-comprehensive.d.ts +22 -0
- package/dist/examples/token-info/token-operations-comprehensive.d.ts.map +1 -0
- package/dist/examples/token-metadata/token-description-versioning.d.ts +33 -0
- package/dist/examples/token-metadata/token-description-versioning.d.ts.map +1 -0
- package/dist/examples/token-metadata/token-image-management.d.ts +34 -0
- package/dist/examples/token-metadata/token-image-management.d.ts.map +1 -0
- package/dist/examples/token-metadata/token-social-links-management.d.ts +34 -0
- package/dist/examples/token-metadata/token-social-links-management.d.ts.map +1 -0
- package/dist/examples/trading/buy-sell-aliases.d.ts +20 -0
- package/dist/examples/trading/buy-sell-aliases.d.ts.map +1 -0
- package/dist/examples/trading/volume-data-demo.d.ts +20 -0
- package/dist/examples/trading/volume-data-demo.d.ts.map +1 -0
- package/dist/examples/trading-advanced/dollar-cost-averaging.d.ts +35 -0
- package/dist/examples/trading-advanced/dollar-cost-averaging.d.ts.map +1 -0
- package/dist/examples/trading-advanced/limit-orders-advanced.d.ts +34 -0
- package/dist/examples/trading-advanced/limit-orders-advanced.d.ts.map +1 -0
- package/dist/examples/trading-advanced/stop-loss-orders.d.ts +34 -0
- package/dist/examples/trading-advanced/stop-loss-orders.d.ts.map +1 -0
- package/dist/examples/trading-advanced/trading-history-analysis.d.ts +35 -0
- package/dist/examples/trading-advanced/trading-history-analysis.d.ts.map +1 -0
- package/dist/examples/users/balance-queries.d.ts +28 -0
- package/dist/examples/users/balance-queries.d.ts.map +1 -0
- package/dist/examples/users/fetch-user-balances.d.ts +19 -0
- package/dist/examples/users/fetch-user-balances.d.ts.map +1 -0
- package/dist/examples/users/fetch-user-report.d.ts +21 -0
- package/dist/examples/users/fetch-user-report.d.ts.map +1 -0
- package/dist/examples/users/profile-images.d.ts +24 -0
- package/dist/examples/users/profile-images.d.ts.map +1 -0
- package/dist/examples/users/profile-management.d.ts +22 -0
- package/dist/examples/users/profile-management.d.ts.map +1 -0
- package/dist/examples/users/referrals-comprehensive.d.ts +26 -0
- package/dist/examples/users/referrals-comprehensive.d.ts.map +1 -0
- package/dist/examples/users/wallet-balances-external.d.ts +28 -0
- package/dist/examples/users/wallet-balances-external.d.ts.map +1 -0
- package/dist/examples/utilities/account.d.ts +19 -0
- package/dist/examples/utilities/account.d.ts.map +1 -0
- package/dist/examples/utilities/balance.d.ts +5 -0
- package/dist/examples/utilities/balance.d.ts.map +1 -0
- package/dist/examples/utilities/balances.d.ts +7 -0
- package/dist/examples/utilities/balances.d.ts.map +1 -0
- package/dist/examples/utilities/demo-cache.d.ts +13 -0
- package/dist/examples/utilities/demo-cache.d.ts.map +1 -0
- package/dist/examples/utilities/demo-token-supply.d.ts +14 -0
- package/dist/examples/utilities/demo-token-supply.d.ts.map +1 -0
- package/dist/examples/utilities/key-derivation.d.ts +12 -0
- package/dist/examples/utilities/key-derivation.d.ts.map +1 -0
- package/dist/examples/utilities/multi-token-portfolio.d.ts +18 -0
- package/dist/examples/utilities/multi-token-portfolio.d.ts.map +1 -0
- package/dist/examples/utilities/pool-discovery-advanced.d.ts +36 -0
- package/dist/examples/utilities/pool-discovery-advanced.d.ts.map +1 -0
- package/dist/examples/utilities/pool-pair-analysis.d.ts +37 -0
- package/dist/examples/utilities/pool-pair-analysis.d.ts.map +1 -0
- package/dist/examples/utilities/price-history.d.ts +22 -0
- package/dist/examples/utilities/price-history.d.ts.map +1 -0
- package/dist/examples/utilities/referrals.d.ts +21 -0
- package/dist/examples/utilities/referrals.d.ts.map +1 -0
- package/dist/examples/utilities/token-classification.d.ts +38 -0
- package/dist/examples/utilities/token-classification.d.ts.map +1 -0
- package/dist/examples/utilities/token-discovery.d.ts +26 -0
- package/dist/examples/utilities/token-discovery.d.ts.map +1 -0
- package/dist/examples/utilities/token-metadata-advanced.d.ts +37 -0
- package/dist/examples/utilities/token-metadata-advanced.d.ts.map +1 -0
- package/dist/examples/utilities/token-validation-complete.d.ts +41 -0
- package/dist/examples/utilities/token-validation-complete.d.ts.map +1 -0
- package/dist/examples/utilities/trade-history.d.ts +19 -0
- package/dist/examples/utilities/trade-history.d.ts.map +1 -0
- package/dist/examples/utilities/transfers.d.ts +29 -0
- package/dist/examples/utilities/transfers.d.ts.map +1 -0
- package/dist/examples/utilities/validation-and-error-handling.d.ts +27 -0
- package/dist/examples/utilities/validation-and-error-handling.d.ts.map +1 -0
- package/dist/examples/utilities/wrappable-tokens.d.ts +27 -0
- package/dist/examples/utilities/wrappable-tokens.d.ts.map +1 -0
- package/dist/examples/utility/auth-utilities.d.ts +30 -0
- package/dist/examples/utility/auth-utilities.d.ts.map +1 -0
- package/dist/examples/utility/pool-utilities.d.ts +29 -0
- package/dist/examples/utility/pool-utilities.d.ts.map +1 -0
- package/dist/examples/utility/sdk-configuration.d.ts +29 -0
- package/dist/examples/utility/sdk-configuration.d.ts.map +1 -0
- package/dist/examples/utility/wallet-management-advanced.d.ts +32 -0
- package/dist/examples/utility/wallet-management-advanced.d.ts.map +1 -0
- package/dist/examples/utils/auth-bootstrap.d.ts +123 -0
- package/dist/examples/utils/auth-bootstrap.d.ts.map +1 -0
- package/dist/examples/utils/balance-checking.d.ts +158 -0
- package/dist/examples/utils/balance-checking.d.ts.map +1 -0
- package/dist/examples/utils/bridge-formatters.d.ts +188 -0
- package/dist/examples/utils/bridge-formatters.d.ts.map +1 -0
- package/dist/examples/utils/bridge-setup.d.ts +235 -0
- package/dist/examples/utils/bridge-setup.d.ts.map +1 -0
- package/dist/examples/utils/bridge-transaction-logger.d.ts +42 -0
- package/dist/examples/utils/bridge-transaction-logger.d.ts.map +1 -0
- package/dist/examples/utils/cli-input.d.ts +41 -0
- package/dist/examples/utils/cli-input.d.ts.map +1 -0
- package/dist/examples/utils/demo-config.d.ts +155 -0
- package/dist/examples/utils/demo-config.d.ts.map +1 -0
- package/dist/examples/utils/demo-registry.d.ts +155 -0
- package/dist/examples/utils/demo-registry.d.ts.map +1 -0
- package/dist/examples/utils/error-handler.d.ts +85 -0
- package/dist/examples/utils/error-handler.d.ts.map +1 -0
- package/dist/examples/utils/formatting.d.ts +195 -0
- package/dist/examples/utils/formatting.d.ts.map +1 -0
- package/dist/examples/utils/get-environment.d.ts +17 -0
- package/dist/examples/utils/get-environment.d.ts.map +1 -0
- package/dist/examples/utils/index.d.ts +44 -0
- package/dist/examples/utils/index.d.ts.map +1 -0
- package/dist/examples/utils/indexing.d.ts +48 -0
- package/dist/examples/utils/indexing.d.ts.map +1 -0
- package/dist/examples/utils/load-env.d.ts +90 -0
- package/dist/examples/utils/load-env.d.ts.map +1 -0
- package/dist/examples/utils/logger.d.ts +52 -0
- package/dist/examples/utils/logger.d.ts.map +1 -0
- package/dist/examples/utils/pool-helpers.d.ts +226 -0
- package/dist/examples/utils/pool-helpers.d.ts.map +1 -0
- package/dist/examples/utils/punchlist.d.ts +104 -0
- package/dist/examples/utils/punchlist.d.ts.map +1 -0
- package/dist/examples/utils/sdk-setup.d.ts +423 -0
- package/dist/examples/utils/sdk-setup.d.ts.map +1 -0
- package/dist/examples/utils/suppress-logging.d.ts +11 -0
- package/dist/examples/utils/suppress-logging.d.ts.map +1 -0
- package/dist/examples/utils/token-naming.d.ts +117 -0
- package/dist/examples/utils/token-naming.d.ts.map +1 -0
- package/dist/examples/utils/trade-helpers.d.ts +195 -0
- package/dist/examples/utils/trade-helpers.d.ts.map +1 -0
- package/dist/examples/utils/transaction-helpers.d.ts +92 -0
- package/dist/examples/utils/transaction-helpers.d.ts.map +1 -0
- package/dist/examples/wallet/wallet-initialization-complete.d.ts +31 -0
- package/dist/examples/wallet/wallet-initialization-complete.d.ts.map +1 -0
- package/dist/examples/wallet/wallet-key-rotation.d.ts +28 -0
- package/dist/examples/wallet/wallet-key-rotation.d.ts.map +1 -0
- package/dist/examples/wallet/wallet-recovery-patterns.d.ts +29 -0
- package/dist/examples/wallet/wallet-recovery-patterns.d.ts.map +1 -0
- package/dist/examples/wallet/wallet-signature-operations.d.ts +28 -0
- package/dist/examples/wallet/wallet-signature-operations.d.ts.map +1 -0
- package/dist/examples/wallet-tracking/wallet-balance-monitoring.d.ts +21 -0
- package/dist/examples/wallet-tracking/wallet-balance-monitoring.d.ts.map +1 -0
- package/dist/examples/wallet-tracking/wallet-portfolio-alerts.d.ts +21 -0
- package/dist/examples/wallet-tracking/wallet-portfolio-alerts.d.ts.map +1 -0
- package/dist/examples/wallet-tracking/wallet-transaction-tracking.d.ts +21 -0
- package/dist/examples/wallet-tracking/wallet-transaction-tracking.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-chat-advanced.d.ts +26 -0
- package/dist/examples/websocket/websocket-chat-advanced.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-chat-events-detailed.d.ts +28 -0
- package/dist/examples/websocket/websocket-chat-events-detailed.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-chat-events.d.ts +26 -0
- package/dist/examples/websocket/websocket-chat-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-combined-events.d.ts +28 -0
- package/dist/examples/websocket/websocket-combined-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-comprehensive.d.ts +25 -0
- package/dist/examples/websocket/websocket-comprehensive.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-connected-clients.d.ts +30 -0
- package/dist/examples/websocket/websocket-connected-clients.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-connection-management.d.ts +28 -0
- package/dist/examples/websocket/websocket-connection-management.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-content-events.d.ts +28 -0
- package/dist/examples/websocket/websocket-content-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-core-events.d.ts +27 -0
- package/dist/examples/websocket/websocket-core-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-dex-events.d.ts +40 -0
- package/dist/examples/websocket/websocket-dex-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-dex-pools.d.ts +23 -0
- package/dist/examples/websocket/websocket-dex-pools.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-download-recording.d.ts +26 -0
- package/dist/examples/websocket/websocket-download-recording.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-interactions.d.ts +25 -0
- package/dist/examples/websocket/websocket-interactions.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-moderation-events.d.ts +26 -0
- package/dist/examples/websocket/websocket-moderation-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-recording-events.d.ts +24 -0
- package/dist/examples/websocket/websocket-recording-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-room-events.d.ts +27 -0
- package/dist/examples/websocket/websocket-room-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-room-management.d.ts +27 -0
- package/dist/examples/websocket/websocket-room-management.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-simulcast-events.d.ts +26 -0
- package/dist/examples/websocket/websocket-simulcast-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-stream-auth.d.ts +23 -0
- package/dist/examples/websocket/websocket-stream-auth.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-stream-countdown.d.ts +38 -0
- package/dist/examples/websocket/websocket-stream-countdown.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-stream-events.d.ts +26 -0
- package/dist/examples/websocket/websocket-stream-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-stream-status.d.ts +39 -0
- package/dist/examples/websocket/websocket-stream-status.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-subscription-management.d.ts +27 -0
- package/dist/examples/websocket/websocket-subscription-management.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-token-creation-events.d.ts +22 -0
- package/dist/examples/websocket/websocket-token-creation-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-token-events.d.ts +24 -0
- package/dist/examples/websocket/websocket-token-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-token-subscription.d.ts +26 -0
- package/dist/examples/websocket/websocket-token-subscription.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-token-viewers.d.ts +29 -0
- package/dist/examples/websocket/websocket-token-viewers.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-unsubscribe.d.ts +25 -0
- package/dist/examples/websocket/websocket-unsubscribe.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-user-events.d.ts +40 -0
- package/dist/examples/websocket/websocket-user-events.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-user-presence.d.ts +29 -0
- package/dist/examples/websocket/websocket-user-presence.d.ts.map +1 -0
- package/dist/examples/websocket/websocket-viewer-analytics.d.ts +38 -0
- package/dist/examples/websocket/websocket-viewer-analytics.d.ts.map +1 -0
- package/dist/examples/wrap/wrap-status-tracking.d.ts +19 -0
- package/dist/examples/wrap/wrap-status-tracking.d.ts.map +1 -0
- package/dist/examples/wrap/wrap-token-discovery.d.ts +20 -0
- package/dist/examples/wrap/wrap-token-discovery.d.ts.map +1 -0
- package/dist/helpers/sdk.d.ts +87 -0
- package/dist/helpers/sdk.d.ts.map +1 -0
- package/dist/helpers/wallet.d.ts +151 -0
- package/dist/helpers/wallet.d.ts.map +1 -0
- package/dist/index.browser.d.ts +147 -0
- package/dist/index.browser.d.ts.map +1 -0
- package/dist/index.browser.esm.js +1 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +6 -115
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.node.d.ts +13 -0
- package/dist/index.node.d.ts.map +1 -0
- package/dist/polyfills/file-global.d.ts +12 -0
- package/dist/polyfills/file-global.d.ts.map +1 -0
- package/dist/react/WalletContext.d.ts +60 -0
- package/dist/react/WalletContext.d.ts.map +1 -0
- package/dist/react/index.d.ts +65 -0
- package/dist/react/index.d.ts.map +1 -0
- package/dist/react/types.d.ts +76 -0
- package/dist/react/types.d.ts.map +1 -0
- package/dist/react/useWallet.d.ts +123 -0
- package/dist/react/useWallet.d.ts.map +1 -0
- package/dist/react/useWalletConnection.d.ts +89 -0
- package/dist/react/useWalletConnection.d.ts.map +1 -0
- package/dist/react/useWalletDetection.d.ts +81 -0
- package/dist/react/useWalletDetection.d.ts.map +1 -0
- package/dist/react.cjs +1 -0
- package/dist/react.esm.js +1 -0
- package/dist/schemas/files.d.ts +83 -0
- package/dist/schemas/files.d.ts.map +1 -0
- package/dist/schemas/index.d.ts +83 -0
- package/dist/schemas/index.d.ts.map +1 -0
- package/dist/schemas/launchpad.d.ts +135 -0
- package/dist/schemas/launchpad.d.ts.map +1 -0
- package/dist/schemas/pagination.d.ts +107 -0
- package/dist/schemas/pagination.d.ts.map +1 -0
- package/dist/schemas/primitives.d.ts +142 -0
- package/dist/schemas/primitives.d.ts.map +1 -0
- package/dist/schemas/trade.d.ts +140 -0
- package/dist/schemas/trade.d.ts.map +1 -0
- package/dist/schemas/user.d.ts +99 -0
- package/dist/schemas/user.d.ts.map +1 -0
- package/dist/schemas/validators.d.ts +332 -0
- package/dist/schemas/validators.d.ts.map +1 -0
- package/dist/scripts/derive-public-key-from-private-key.d.ts +8 -0
- package/dist/scripts/derive-public-key-from-private-key.d.ts.map +1 -0
- package/dist/scripts/eslint-fixer.d.ts +7 -0
- package/dist/scripts/eslint-fixer.d.ts.map +1 -0
- package/dist/scripts/final-fixer.d.ts +7 -0
- package/dist/scripts/final-fixer.d.ts.map +1 -0
- package/dist/scripts/fix-all-remaining-boolean.d.ts +7 -0
- package/dist/scripts/fix-all-remaining-boolean.d.ts.map +1 -0
- package/dist/scripts/fix-boolean-expressions-advanced.d.ts +7 -0
- package/dist/scripts/fix-boolean-expressions-advanced.d.ts.map +1 -0
- package/dist/scripts/fix-boolean-expressions-ast.d.ts +9 -0
- package/dist/scripts/fix-boolean-expressions-ast.d.ts.map +1 -0
- package/dist/scripts/fix-boolean-expressions-auto.d.ts +7 -0
- package/dist/scripts/fix-boolean-expressions-auto.d.ts.map +1 -0
- package/dist/scripts/fix-final-aggressive.d.ts +6 -0
- package/dist/scripts/fix-final-aggressive.d.ts.map +1 -0
- package/dist/scripts/fix-final-boolean.d.ts +7 -0
- package/dist/scripts/fix-final-boolean.d.ts.map +1 -0
- package/dist/scripts/fix-remaining-boolean.d.ts +7 -0
- package/dist/scripts/fix-remaining-boolean.d.ts.map +1 -0
- package/dist/scripts/fix-strict-boolean-comprehensive.d.ts +3 -0
- package/dist/scripts/fix-strict-boolean-comprehensive.d.ts.map +1 -0
- package/dist/scripts/fix-strict-boolean-expressions.d.ts +2 -0
- package/dist/scripts/fix-strict-boolean-expressions.d.ts.map +1 -0
- package/dist/scripts/fix-strict-boolean-final.d.ts +13 -0
- package/dist/scripts/fix-strict-boolean-final.d.ts.map +1 -0
- package/dist/scripts/fixer-aggressive.d.ts +7 -0
- package/dist/scripts/fixer-aggressive.d.ts.map +1 -0
- package/dist/scripts/fixer-conservative.d.ts +7 -0
- package/dist/scripts/fixer-conservative.d.ts.map +1 -0
- package/dist/scripts/fixer-direct.d.ts +7 -0
- package/dist/scripts/fixer-direct.d.ts.map +1 -0
- package/dist/scripts/generate-demo-registry.d.ts +14 -0
- package/dist/scripts/generate-demo-registry.d.ts.map +1 -0
- package/dist/scripts/inject-version.d.ts +8 -0
- package/dist/scripts/inject-version.d.ts.map +1 -0
- package/dist/scripts/strict-boolean-fixer.d.ts +9 -0
- package/dist/scripts/strict-boolean-fixer.d.ts.map +1 -0
- package/dist/scripts/validate-demo-registry.d.ts +17 -0
- package/dist/scripts/validate-demo-registry.d.ts.map +1 -0
- package/dist/services/AIModerationService.d.ts +217 -0
- package/dist/services/AIModerationService.d.ts.map +1 -0
- package/dist/services/AbstractCacheService.d.ts +227 -0
- package/dist/services/AbstractCacheService.d.ts.map +1 -0
- package/dist/services/AbstractTokenFetchService.d.ts +150 -0
- package/dist/services/AbstractTokenFetchService.d.ts.map +1 -0
- package/dist/services/ApiKeyService.d.ts +211 -0
- package/dist/services/ApiKeyService.d.ts.map +1 -0
- package/dist/services/BanService.d.ts +312 -0
- package/dist/services/BanService.d.ts.map +1 -0
- package/dist/services/BaseService.d.ts +116 -0
- package/dist/services/BaseService.d.ts.map +1 -0
- package/dist/services/BatchedCacheService.d.ts +133 -0
- package/dist/services/BatchedCacheService.d.ts.map +1 -0
- package/dist/services/BridgeableTokenCache.d.ts +120 -0
- package/dist/services/BridgeableTokenCache.d.ts.map +1 -0
- package/dist/services/BridgeableTokenService.d.ts +218 -0
- package/dist/services/BridgeableTokenService.d.ts.map +1 -0
- package/dist/services/BundleService.d.ts +245 -0
- package/dist/services/BundleService.d.ts.map +1 -0
- package/dist/services/BundlerClientFactory.d.ts +32 -0
- package/dist/services/BundlerClientFactory.d.ts.map +1 -0
- package/dist/services/ChartService.d.ts +106 -0
- package/dist/services/ChartService.d.ts.map +1 -0
- package/dist/services/ContentFlagService.d.ts +218 -0
- package/dist/services/ContentFlagService.d.ts.map +1 -0
- package/dist/services/ContentReactionService.d.ts +175 -0
- package/dist/services/ContentReactionService.d.ts.map +1 -0
- package/dist/services/DexBackendClient.d.ts +225 -0
- package/dist/services/DexBackendClient.d.ts.map +1 -0
- package/dist/services/DexPoolService.d.ts +137 -0
- package/dist/services/DexPoolService.d.ts.map +1 -0
- package/dist/services/DexQuoteService.d.ts +446 -0
- package/dist/services/DexQuoteService.d.ts.map +1 -0
- package/dist/services/DexService.d.ts +433 -0
- package/dist/services/DexService.d.ts.map +1 -0
- package/dist/services/EventsBatcherService.d.ts +111 -0
- package/dist/services/EventsBatcherService.d.ts.map +1 -0
- package/dist/services/GSwapAssetService.d.ts +96 -0
- package/dist/services/GSwapAssetService.d.ts.map +1 -0
- package/dist/services/GSwapLiquidityMutationService.d.ts +138 -0
- package/dist/services/GSwapLiquidityMutationService.d.ts.map +1 -0
- package/dist/services/GSwapLiquidityQueryService.d.ts +75 -0
- package/dist/services/GSwapLiquidityQueryService.d.ts.map +1 -0
- package/dist/services/GSwapPoolCalculationService.d.ts +187 -0
- package/dist/services/GSwapPoolCalculationService.d.ts.map +1 -0
- package/dist/services/GSwapPoolQueryService.d.ts +115 -0
- package/dist/services/GSwapPoolQueryService.d.ts.map +1 -0
- package/dist/services/GSwapService.d.ts +1207 -0
- package/dist/services/GSwapService.d.ts.map +1 -0
- package/dist/services/GSwapSwapService.d.ts +68 -0
- package/dist/services/GSwapSwapService.d.ts.map +1 -0
- package/dist/services/GalaChainBalanceService.d.ts +155 -0
- package/dist/services/GalaChainBalanceService.d.ts.map +1 -0
- package/dist/services/GalaChainGatewayClient.d.ts +227 -0
- package/dist/services/GalaChainGatewayClient.d.ts.map +1 -0
- package/dist/services/GalaChainLockService.d.ts +144 -0
- package/dist/services/GalaChainLockService.d.ts.map +1 -0
- package/dist/services/GalaChainService.d.ts +399 -0
- package/dist/services/GalaChainService.d.ts.map +1 -0
- package/dist/services/GalaChainTokenService.d.ts +108 -0
- package/dist/services/GalaChainTokenService.d.ts.map +1 -0
- package/dist/services/GalaChainTransferService.d.ts +205 -0
- package/dist/services/GalaChainTransferService.d.ts.map +1 -0
- package/dist/services/HolderService.d.ts +181 -0
- package/dist/services/HolderService.d.ts.map +1 -0
- package/dist/services/ImageService.d.ts +173 -0
- package/dist/services/ImageService.d.ts.map +1 -0
- package/dist/services/LaunchpadService.d.ts +343 -0
- package/dist/services/LaunchpadService.d.ts.map +1 -0
- package/dist/services/MessagesService.d.ts +251 -0
- package/dist/services/MessagesService.d.ts.map +1 -0
- package/dist/services/ModeratorService.d.ts +311 -0
- package/dist/services/ModeratorService.d.ts.map +1 -0
- package/dist/services/MultiPoolStateManager.d.ts +289 -0
- package/dist/services/MultiPoolStateManager.d.ts.map +1 -0
- package/dist/services/NetworkKeyedCacheService.d.ts +185 -0
- package/dist/services/NetworkKeyedCacheService.d.ts.map +1 -0
- package/dist/services/NftCollectionService.d.ts +121 -0
- package/dist/services/NftCollectionService.d.ts.map +1 -0
- package/dist/services/OEmbedService.d.ts +152 -0
- package/dist/services/OEmbedService.d.ts.map +1 -0
- package/dist/services/OverseerService.d.ts +524 -0
- package/dist/services/OverseerService.d.ts.map +1 -0
- package/dist/services/PlatformConfigService.d.ts +149 -0
- package/dist/services/PlatformConfigService.d.ts.map +1 -0
- package/dist/services/PlatformStatsService.d.ts +72 -0
- package/dist/services/PlatformStatsService.d.ts.map +1 -0
- package/dist/services/PoolCacheManager.d.ts +258 -0
- package/dist/services/PoolCacheManager.d.ts.map +1 -0
- package/dist/services/PoolService.d.ts +316 -0
- package/dist/services/PoolService.d.ts.map +1 -0
- package/dist/services/PoolStateManager.d.ts +176 -0
- package/dist/services/PoolStateManager.d.ts.map +1 -0
- package/dist/services/PriceHistoryService.d.ts +207 -0
- package/dist/services/PriceHistoryService.d.ts.map +1 -0
- package/dist/services/RestrictedNamesService.d.ts +80 -0
- package/dist/services/RestrictedNamesService.d.ts.map +1 -0
- package/dist/services/SignatureService.d.ts +113 -0
- package/dist/services/SignatureService.d.ts.map +1 -0
- package/dist/services/StreamChatService.d.ts +259 -0
- package/dist/services/StreamChatService.d.ts.map +1 -0
- package/dist/services/StreamTokenServiceBase.d.ts +404 -0
- package/dist/services/StreamTokenServiceBase.d.ts.map +1 -0
- package/dist/services/StreamWebSocketService.d.ts +586 -0
- package/dist/services/StreamWebSocketService.d.ts.map +1 -0
- package/dist/services/StreamingEventService.d.ts +441 -0
- package/dist/services/StreamingEventService.d.ts.map +1 -0
- package/dist/services/StreamingService.d.ts +573 -0
- package/dist/services/StreamingService.d.ts.map +1 -0
- package/dist/services/SwapEventQueue.d.ts +192 -0
- package/dist/services/SwapEventQueue.d.ts.map +1 -0
- package/dist/services/TokenBanService.d.ts +217 -0
- package/dist/services/TokenBanService.d.ts.map +1 -0
- package/dist/services/TokenClassKeyService.d.ts +162 -0
- package/dist/services/TokenClassKeyService.d.ts.map +1 -0
- package/dist/services/TokenMetadataCache.d.ts +310 -0
- package/dist/services/TokenMetadataCache.d.ts.map +1 -0
- package/dist/services/TokenMetadataService.d.ts +509 -0
- package/dist/services/TokenMetadataService.d.ts.map +1 -0
- package/dist/services/TokenResolverService.d.ts +329 -0
- package/dist/services/TokenResolverService.d.ts.map +1 -0
- package/dist/services/TradeService.d.ts +286 -0
- package/dist/services/TradeService.d.ts.map +1 -0
- package/dist/services/TradingQuotesService.d.ts +162 -0
- package/dist/services/TradingQuotesService.d.ts.map +1 -0
- package/dist/services/UserService.d.ts +352 -0
- package/dist/services/UserService.d.ts.map +1 -0
- package/dist/services/WebSocketAdminService.d.ts +587 -0
- package/dist/services/WebSocketAdminService.d.ts.map +1 -0
- package/dist/services/WebSocketService.d.ts +189 -0
- package/dist/services/WebSocketService.d.ts.map +1 -0
- package/dist/services/WeeklyChallengeService.d.ts +114 -0
- package/dist/services/WeeklyChallengeService.d.ts.map +1 -0
- package/dist/services/WrapService.d.ts +172 -0
- package/dist/services/WrapService.d.ts.map +1 -0
- package/dist/services/WrappableTokenCache.d.ts +100 -0
- package/dist/services/WrappableTokenCache.d.ts.map +1 -0
- package/dist/services/WrappableTokenService.d.ts +130 -0
- package/dist/services/WrappableTokenService.d.ts.map +1 -0
- package/dist/services/__mocks__/logger.mock.d.ts +24 -0
- package/dist/services/__mocks__/logger.mock.d.ts.map +1 -0
- package/dist/services/shared/cache-helpers.d.ts +188 -0
- package/dist/services/shared/cache-helpers.d.ts.map +1 -0
- package/dist/services/shared/http-helpers.d.ts +146 -0
- package/dist/services/shared/http-helpers.d.ts.map +1 -0
- package/dist/services/shared/pagination-helpers.d.ts +167 -0
- package/dist/services/shared/pagination-helpers.d.ts.map +1 -0
- package/dist/services/shared/service-validators.d.ts +137 -0
- package/dist/services/shared/service-validators.d.ts.map +1 -0
- package/dist/services/shared/websocket-helpers.d.ts +158 -0
- package/dist/services/shared/websocket-helpers.d.ts.map +1 -0
- package/dist/setup.d.ts +8 -0
- package/dist/setup.d.ts.map +1 -0
- package/dist/src/LaunchpadSDK.d.ts +2192 -404
- package/dist/src/LaunchpadSDK.d.ts.map +1 -1
- package/dist/src/api/LaunchpadAPI.d.ts +15 -8
- package/dist/src/api/LaunchpadAPI.d.ts.map +1 -1
- package/dist/src/api/dto/BondingCurveDTOs.d.ts.map +1 -1
- package/dist/src/api/dto/BurnTokensDto.d.ts +1 -1
- package/dist/src/api/dto/BurnTokensDto.d.ts.map +1 -1
- package/dist/src/api/dto/LockTokenDto.d.ts +1 -1
- package/dist/src/api/dto/LockTokenDto.d.ts.map +1 -1
- package/dist/src/api/dto/TransferTokenDto.d.ts +1 -1
- package/dist/src/api/dto/TransferTokenDto.d.ts.map +1 -1
- package/dist/src/api/dto/UnlockTokenDto.d.ts +1 -1
- package/dist/src/api/dto/UnlockTokenDto.d.ts.map +1 -1
- package/dist/src/auth/JwtAuth.d.ts +43 -5
- package/dist/src/auth/JwtAuth.d.ts.map +1 -1
- package/dist/src/auth/SessionAuthService.d.ts +11 -6
- package/dist/src/auth/SessionAuthService.d.ts.map +1 -1
- package/dist/src/auth/SignatureAuth.d.ts +64 -3
- package/dist/src/auth/SignatureAuth.d.ts.map +1 -1
- package/dist/src/auth/storage.d.ts +66 -0
- package/dist/src/auth/storage.d.ts.map +1 -0
- package/dist/src/auth/types.d.ts +11 -2
- package/dist/src/auth/types.d.ts.map +1 -1
- package/dist/src/bridge/BridgeService.d.ts +1 -1
- package/dist/src/bridge/BridgeService.d.ts.map +1 -1
- package/dist/src/bridge/GalaConnectClient.d.ts +1 -1
- package/dist/src/bridge/GalaConnectClient.d.ts.map +1 -1
- package/dist/src/bridge/constants/tokens.d.ts +1 -1
- package/dist/src/bridge/constants/tokens.d.ts.map +1 -1
- package/dist/src/bridge/index.d.ts +10 -10
- package/dist/src/bridge/index.d.ts.map +1 -1
- package/dist/src/bridge/strategies/BridgeStrategy.d.ts.map +1 -1
- package/dist/src/bridge/strategies/EthereumBridgeStrategy.d.ts +1 -1
- package/dist/src/bridge/strategies/EthereumBridgeStrategy.d.ts.map +1 -1
- package/dist/src/bridge/strategies/SolanaBridgeStrategy.d.ts +1 -1
- package/dist/src/bridge/strategies/SolanaBridgeStrategy.d.ts.map +1 -1
- package/dist/src/bridge/utils/addressValidation.d.ts.map +1 -1
- package/dist/src/bridge/utils/balanceHelpers.d.ts +1 -1
- package/dist/src/bridge/utils/balanceHelpers.d.ts.map +1 -1
- package/dist/src/bridge/utils/bridgeErrors.d.ts.map +1 -1
- package/dist/src/bridge/utils/bridgeOutHelpers.d.ts +1 -1
- package/dist/src/bridge/utils/bridgeOutHelpers.d.ts.map +1 -1
- package/dist/src/bridge/utils/bridgePayload.d.ts +2 -11
- package/dist/src/bridge/utils/bridgePayload.d.ts.map +1 -1
- package/dist/src/bridge/utils/bridgeStatusParser.d.ts.map +1 -1
- package/dist/src/bridge/utils/eip712Helpers.d.ts.map +1 -1
- package/dist/src/bridge/utils/index.d.ts +9 -9
- package/dist/src/bridge/utils/index.d.ts.map +1 -1
- package/dist/src/bridge/utils/tokenIdUtils.d.ts +1 -1
- package/dist/src/bridge/utils/tokenIdUtils.d.ts.map +1 -1
- package/dist/src/bridge/utils/tokenMetadataResolver.d.ts +1 -1
- package/dist/src/bridge/utils/tokenMetadataResolver.d.ts.map +1 -1
- package/dist/src/config/environments.d.ts +1 -1
- package/dist/src/config/environments.d.ts.map +1 -1
- package/dist/src/constants/endpoints.d.ts +522 -260
- package/dist/src/constants/endpoints.d.ts.map +1 -1
- package/dist/src/constants/events.d.ts +53 -0
- package/dist/src/constants/events.d.ts.map +1 -0
- package/dist/src/constants/pagination.d.ts +23 -13
- package/dist/src/constants/pagination.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/helpers/sdk.d.ts.map +1 -1
- package/dist/src/helpers/wallet.d.ts.map +1 -1
- package/dist/src/index.browser.d.ts +147 -0
- package/dist/src/index.browser.d.ts.map +1 -0
- package/dist/src/index.d.ts +6 -115
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.node.d.ts +13 -0
- package/dist/src/index.node.d.ts.map +1 -0
- package/dist/src/react/WalletContext.d.ts +60 -0
- package/dist/src/react/WalletContext.d.ts.map +1 -0
- package/dist/src/react/index.d.ts +65 -0
- package/dist/src/react/index.d.ts.map +1 -0
- package/dist/src/react/types.d.ts +76 -0
- package/dist/src/react/types.d.ts.map +1 -0
- package/dist/src/react/useWallet.d.ts +123 -0
- package/dist/src/react/useWallet.d.ts.map +1 -0
- package/dist/src/react/useWalletConnection.d.ts +89 -0
- package/dist/src/react/useWalletConnection.d.ts.map +1 -0
- package/dist/src/react/useWalletDetection.d.ts +81 -0
- package/dist/src/react/useWalletDetection.d.ts.map +1 -0
- package/dist/src/schemas/files.d.ts.map +1 -1
- package/dist/src/schemas/index.d.ts +4 -3
- package/dist/src/schemas/index.d.ts.map +1 -1
- package/dist/src/schemas/launchpad.d.ts +1 -0
- package/dist/src/schemas/launchpad.d.ts.map +1 -1
- package/dist/src/schemas/pagination.d.ts +16 -19
- package/dist/src/schemas/pagination.d.ts.map +1 -1
- package/dist/src/schemas/primitives.d.ts +1 -1
- package/dist/src/schemas/primitives.d.ts.map +1 -1
- package/dist/src/schemas/trade.d.ts +2 -2
- package/dist/src/schemas/trade.d.ts.map +1 -1
- package/dist/src/schemas/user.d.ts +2 -2
- package/dist/src/schemas/user.d.ts.map +1 -1
- package/dist/src/schemas/validators.d.ts +6 -5
- package/dist/src/schemas/validators.d.ts.map +1 -1
- package/dist/src/services/AIModerationService.d.ts +217 -0
- package/dist/src/services/AIModerationService.d.ts.map +1 -0
- package/dist/src/services/AbstractTokenFetchService.d.ts +1 -1
- package/dist/src/services/AbstractTokenFetchService.d.ts.map +1 -1
- package/dist/src/services/ApiKeyService.d.ts +14 -9
- package/dist/src/services/ApiKeyService.d.ts.map +1 -1
- package/dist/src/services/BanService.d.ts +132 -16
- package/dist/src/services/BanService.d.ts.map +1 -1
- package/dist/src/services/BaseService.d.ts +1 -1
- package/dist/src/services/BaseService.d.ts.map +1 -1
- package/dist/src/services/BatchedCacheService.d.ts.map +1 -1
- package/dist/src/services/BridgeableTokenCache.d.ts +1 -1
- package/dist/src/services/BridgeableTokenCache.d.ts.map +1 -1
- package/dist/src/services/BridgeableTokenService.d.ts +4 -4
- package/dist/src/services/BridgeableTokenService.d.ts.map +1 -1
- package/dist/src/services/BundleService.d.ts +5 -5
- package/dist/src/services/BundleService.d.ts.map +1 -1
- package/dist/src/services/BundlerClientFactory.d.ts.map +1 -1
- package/dist/src/services/ChartService.d.ts +106 -0
- package/dist/src/services/ChartService.d.ts.map +1 -0
- package/dist/src/services/ContentFlagService.d.ts +13 -7
- package/dist/src/services/ContentFlagService.d.ts.map +1 -1
- package/dist/src/services/ContentReactionService.d.ts +3 -3
- package/dist/src/services/ContentReactionService.d.ts.map +1 -1
- package/dist/src/services/DexBackendClient.d.ts +1 -1
- package/dist/src/services/DexBackendClient.d.ts.map +1 -1
- package/dist/src/services/DexPoolService.d.ts +9 -11
- package/dist/src/services/DexPoolService.d.ts.map +1 -1
- package/dist/src/services/DexQuoteService.d.ts +5 -6
- package/dist/src/services/DexQuoteService.d.ts.map +1 -1
- package/dist/src/services/DexService.d.ts +6 -6
- package/dist/src/services/DexService.d.ts.map +1 -1
- package/dist/src/services/EventsBatcherService.d.ts +111 -0
- package/dist/src/services/EventsBatcherService.d.ts.map +1 -0
- package/dist/src/services/GSwapAssetService.d.ts +18 -2
- package/dist/src/services/GSwapAssetService.d.ts.map +1 -1
- package/dist/src/services/GSwapLiquidityMutationService.d.ts +4 -6
- package/dist/src/services/GSwapLiquidityMutationService.d.ts.map +1 -1
- package/dist/src/services/GSwapLiquidityQueryService.d.ts +2 -14
- package/dist/src/services/GSwapLiquidityQueryService.d.ts.map +1 -1
- package/dist/src/services/GSwapPoolCalculationService.d.ts +0 -13
- package/dist/src/services/GSwapPoolCalculationService.d.ts.map +1 -1
- package/dist/src/services/GSwapPoolQueryService.d.ts +2 -3
- package/dist/src/services/GSwapPoolQueryService.d.ts.map +1 -1
- package/dist/src/services/GSwapService.d.ts +11 -11
- package/dist/src/services/GSwapService.d.ts.map +1 -1
- package/dist/src/services/GSwapSwapService.d.ts +2 -2
- package/dist/src/services/GSwapSwapService.d.ts.map +1 -1
- package/dist/src/services/GalaChainBalanceService.d.ts +2 -2
- package/dist/src/services/GalaChainBalanceService.d.ts.map +1 -1
- package/dist/src/services/GalaChainGatewayClient.d.ts +3 -3
- package/dist/src/services/GalaChainGatewayClient.d.ts.map +1 -1
- package/dist/src/services/GalaChainLockService.d.ts +3 -3
- package/dist/src/services/GalaChainLockService.d.ts.map +1 -1
- package/dist/src/services/GalaChainService.d.ts +10 -13
- package/dist/src/services/GalaChainService.d.ts.map +1 -1
- package/dist/src/services/GalaChainTokenService.d.ts +3 -3
- package/dist/src/services/GalaChainTokenService.d.ts.map +1 -1
- package/dist/src/services/GalaChainTransferService.d.ts +4 -4
- package/dist/src/services/GalaChainTransferService.d.ts.map +1 -1
- package/dist/src/services/HolderService.d.ts +181 -0
- package/dist/src/services/HolderService.d.ts.map +1 -0
- package/dist/src/services/ImageService.d.ts +2 -15
- package/dist/src/services/ImageService.d.ts.map +1 -1
- package/dist/src/services/LaunchpadService.d.ts +67 -24
- package/dist/src/services/LaunchpadService.d.ts.map +1 -1
- package/dist/src/services/MessagesService.d.ts +251 -0
- package/dist/src/services/MessagesService.d.ts.map +1 -0
- package/dist/src/services/ModeratorService.d.ts +58 -22
- package/dist/src/services/ModeratorService.d.ts.map +1 -1
- package/dist/src/services/MultiPoolStateManager.d.ts +17 -10
- package/dist/src/services/MultiPoolStateManager.d.ts.map +1 -1
- package/dist/src/services/NetworkKeyedCacheService.d.ts.map +1 -1
- package/dist/src/services/NftCollectionService.d.ts +3 -5
- package/dist/src/services/NftCollectionService.d.ts.map +1 -1
- package/dist/src/services/OEmbedService.d.ts +152 -0
- package/dist/src/services/OEmbedService.d.ts.map +1 -0
- package/dist/src/services/OverseerService.d.ts +230 -35
- package/dist/src/services/OverseerService.d.ts.map +1 -1
- package/dist/src/services/PlatformConfigService.d.ts +149 -0
- package/dist/src/services/PlatformConfigService.d.ts.map +1 -0
- package/dist/src/services/PlatformStatsService.d.ts +72 -0
- package/dist/src/services/PlatformStatsService.d.ts.map +1 -0
- package/dist/src/services/PoolCacheManager.d.ts +3 -10
- package/dist/src/services/PoolCacheManager.d.ts.map +1 -1
- package/dist/src/services/PoolService.d.ts +108 -25
- package/dist/src/services/PoolService.d.ts.map +1 -1
- package/dist/src/services/PoolStateManager.d.ts +2 -2
- package/dist/src/services/PoolStateManager.d.ts.map +1 -1
- package/dist/src/services/PriceHistoryService.d.ts +11 -12
- package/dist/src/services/PriceHistoryService.d.ts.map +1 -1
- package/dist/src/services/RestrictedNamesService.d.ts +80 -0
- package/dist/src/services/RestrictedNamesService.d.ts.map +1 -0
- package/dist/src/services/SignatureService.d.ts.map +1 -1
- package/dist/src/services/StreamChatService.d.ts +68 -187
- package/dist/src/services/StreamChatService.d.ts.map +1 -1
- package/dist/src/services/StreamTokenServiceBase.d.ts +45 -12
- package/dist/src/services/StreamTokenServiceBase.d.ts.map +1 -1
- package/dist/src/services/StreamWebSocketService.d.ts +335 -17
- package/dist/src/services/StreamWebSocketService.d.ts.map +1 -1
- package/dist/src/services/StreamingEventService.d.ts +16 -6
- package/dist/src/services/StreamingEventService.d.ts.map +1 -1
- package/dist/src/services/StreamingService.d.ts +66 -40
- package/dist/src/services/StreamingService.d.ts.map +1 -1
- package/dist/src/services/SwapEventQueue.d.ts +1 -1
- package/dist/src/services/SwapEventQueue.d.ts.map +1 -1
- package/dist/src/services/TokenBanService.d.ts +18 -16
- package/dist/src/services/TokenBanService.d.ts.map +1 -1
- package/dist/src/services/TokenClassKeyService.d.ts.map +1 -1
- package/dist/src/services/TokenMetadataCache.d.ts.map +1 -1
- package/dist/src/services/TokenMetadataService.d.ts +4 -4
- package/dist/src/services/TokenMetadataService.d.ts.map +1 -1
- package/dist/src/services/TokenResolverService.d.ts +197 -24
- package/dist/src/services/TokenResolverService.d.ts.map +1 -1
- package/dist/src/services/TradeService.d.ts +19 -19
- package/dist/src/services/TradeService.d.ts.map +1 -1
- package/dist/src/services/TradingQuotesService.d.ts +162 -0
- package/dist/src/services/TradingQuotesService.d.ts.map +1 -0
- package/dist/src/services/UserService.d.ts +83 -23
- package/dist/src/services/UserService.d.ts.map +1 -1
- package/dist/src/services/WebSocketAdminService.d.ts +587 -0
- package/dist/src/services/WebSocketAdminService.d.ts.map +1 -0
- package/dist/src/services/WebSocketService.d.ts +7 -1
- package/dist/src/services/WebSocketService.d.ts.map +1 -1
- package/dist/src/services/WeeklyChallengeService.d.ts +114 -0
- package/dist/src/services/WeeklyChallengeService.d.ts.map +1 -0
- package/dist/src/services/WrapService.d.ts +5 -5
- package/dist/src/services/WrapService.d.ts.map +1 -1
- package/dist/src/services/WrappableTokenService.d.ts +3 -3
- package/dist/src/services/WrappableTokenService.d.ts.map +1 -1
- package/dist/src/services/__mocks__/logger.mock.d.ts +14 -7
- package/dist/src/services/__mocks__/logger.mock.d.ts.map +1 -1
- package/dist/src/services/shared/cache-helpers.d.ts.map +1 -1
- package/dist/src/services/shared/http-helpers.d.ts.map +1 -1
- package/dist/src/services/shared/pagination-helpers.d.ts +19 -19
- package/dist/src/services/shared/pagination-helpers.d.ts.map +1 -1
- package/dist/src/services/shared/service-validators.d.ts +1 -1
- package/dist/src/services/shared/service-validators.d.ts.map +1 -1
- package/dist/src/setup.d.ts +2 -2
- package/dist/src/types/ai-moderation.dto.d.ts +294 -0
- package/dist/src/types/ai-moderation.dto.d.ts.map +1 -0
- package/dist/src/types/api-key.dto.d.ts +82 -9
- package/dist/src/types/api-key.dto.d.ts.map +1 -1
- package/dist/src/types/ban.dto.d.ts +174 -3
- package/dist/src/types/ban.dto.d.ts.map +1 -1
- package/dist/src/types/cache-management.dto.d.ts +44 -0
- package/dist/src/types/cache-management.dto.d.ts.map +1 -0
- package/dist/src/types/chat-messages.dto.d.ts +7 -7
- package/dist/src/types/chat-messages.dto.d.ts.map +1 -1
- package/dist/src/types/comment.dto.d.ts +3 -7
- package/dist/src/types/comment.dto.d.ts.map +1 -1
- package/dist/src/types/comments.dto.d.ts +9 -9
- package/dist/src/types/comments.dto.d.ts.map +1 -1
- package/dist/src/types/common.d.ts +115 -27
- package/dist/src/types/common.d.ts.map +1 -1
- package/dist/src/types/composite-pool.dto.d.ts +4 -4
- package/dist/src/types/composite-pool.dto.d.ts.map +1 -1
- package/dist/src/types/constraints.d.ts +6 -2
- package/dist/src/types/constraints.d.ts.map +1 -1
- package/dist/src/types/content-flag.dto.d.ts +43 -4
- package/dist/src/types/content-flag.dto.d.ts.map +1 -1
- package/dist/src/types/content-reactions.dto.d.ts +4 -4
- package/dist/src/types/content-reactions.dto.d.ts.map +1 -1
- package/dist/src/types/dex-pool.dto.d.ts +20 -7
- package/dist/src/types/dex-pool.dto.d.ts.map +1 -1
- package/dist/src/types/dto.d.ts +5 -1
- package/dist/src/types/dto.d.ts.map +1 -1
- package/dist/src/types/engagement-stats.dto.d.ts +62 -0
- package/dist/src/types/engagement-stats.dto.d.ts.map +1 -0
- package/dist/src/types/events.dto.d.ts +80 -0
- package/dist/src/types/events.dto.d.ts.map +1 -0
- package/dist/src/types/global-feed.dto.d.ts +203 -0
- package/dist/src/types/global-feed.dto.d.ts.map +1 -0
- package/dist/src/types/gswap-responses.types.d.ts +14 -14
- package/dist/src/types/gswap-responses.types.d.ts.map +1 -1
- package/dist/src/types/gswap.dto.d.ts +12 -5
- package/dist/src/types/gswap.dto.d.ts.map +1 -1
- package/dist/src/types/holder.types.d.ts +106 -0
- package/dist/src/types/holder.types.d.ts.map +1 -0
- package/dist/src/types/launchpad.dto.d.ts +154 -77
- package/dist/src/types/launchpad.dto.d.ts.map +1 -1
- package/dist/src/types/launchpad.validation.d.ts.map +1 -1
- package/dist/src/types/lock.dto.d.ts +1 -1
- package/dist/src/types/lock.dto.d.ts.map +1 -1
- package/dist/src/types/messages.dto.d.ts +386 -0
- package/dist/src/types/messages.dto.d.ts.map +1 -0
- package/dist/src/types/moderator.dto.d.ts +38 -5
- package/dist/src/types/moderator.dto.d.ts.map +1 -1
- package/dist/src/types/oembed.dto.d.ts +160 -0
- package/dist/src/types/oembed.dto.d.ts.map +1 -0
- package/dist/src/types/options.dto.d.ts +9 -1
- package/dist/src/types/options.dto.d.ts.map +1 -1
- package/dist/src/types/overseer.dto.d.ts +152 -35
- package/dist/src/types/overseer.dto.d.ts.map +1 -1
- package/dist/src/types/platform-config.dto.d.ts +89 -0
- package/dist/src/types/platform-config.dto.d.ts.map +1 -0
- package/dist/src/types/platform-stats.dto.d.ts +40 -0
- package/dist/src/types/platform-stats.dto.d.ts.map +1 -0
- package/dist/src/types/pool-state-delta.dto.d.ts.map +1 -1
- package/dist/src/types/pool.dto.d.ts +6 -1
- package/dist/src/types/pool.dto.d.ts.map +1 -1
- package/dist/src/types/priceHistory.dto.d.ts +6 -2
- package/dist/src/types/priceHistory.dto.d.ts.map +1 -1
- package/dist/src/types/restricted-names.dto.d.ts +50 -0
- package/dist/src/types/restricted-names.dto.d.ts.map +1 -0
- package/dist/src/types/session-auth.dto.d.ts +9 -1
- package/dist/src/types/session-auth.dto.d.ts.map +1 -1
- package/dist/src/types/stream-chat.dto.d.ts +4 -9
- package/dist/src/types/stream-chat.dto.d.ts.map +1 -1
- package/dist/src/types/streaming-events.dto.d.ts +20 -1
- package/dist/src/types/streaming-events.dto.d.ts.map +1 -1
- package/dist/src/types/streaming.dto.d.ts +64 -20
- package/dist/src/types/streaming.dto.d.ts.map +1 -1
- package/dist/src/types/token-ban.dto.d.ts +7 -8
- package/dist/src/types/token-ban.dto.d.ts.map +1 -1
- package/dist/src/types/token-config.dto.d.ts +117 -0
- package/dist/src/types/token-config.dto.d.ts.map +1 -0
- package/dist/src/types/token.types.d.ts +336 -0
- package/dist/src/types/token.types.d.ts.map +1 -0
- package/dist/src/types/trade.dto.d.ts +5 -1
- package/dist/src/types/trade.dto.d.ts.map +1 -1
- package/dist/src/types/trades-query.dto.d.ts +8 -2
- package/dist/src/types/trades-query.dto.d.ts.map +1 -1
- package/dist/src/types/transfer.dto.d.ts.map +1 -1
- package/dist/src/types/user.dto.d.ts +218 -48
- package/dist/src/types/user.dto.d.ts.map +1 -1
- package/dist/src/types/websocket-admin.dto.d.ts +390 -0
- package/dist/src/types/websocket-admin.dto.d.ts.map +1 -0
- package/dist/src/types/websocket-events.dto.d.ts +472 -0
- package/dist/src/types/websocket-events.dto.d.ts.map +1 -0
- package/dist/src/types/weekly-challenge.dto.d.ts +130 -0
- package/dist/src/types/weekly-challenge.dto.d.ts.map +1 -0
- package/dist/src/types/wrappable-token.dto.d.ts +1 -1
- package/dist/src/types/wrappable-token.dto.d.ts.map +1 -1
- package/dist/src/utils/LiquidityEventExtractor.d.ts +7 -0
- package/dist/src/utils/LiquidityEventExtractor.d.ts.map +1 -1
- package/dist/src/utils/Logger.d.ts.map +1 -1
- package/dist/src/utils/MonitoringMetrics.d.ts +0 -1
- package/dist/src/utils/MonitoringMetrics.d.ts.map +1 -1
- package/dist/src/utils/SignatureHelper.d.ts.map +1 -1
- package/dist/src/utils/SwapEventExtractor.d.ts.map +1 -1
- package/dist/src/utils/adapters.d.ts +1 -1
- package/dist/src/utils/adapters.d.ts.map +1 -1
- package/dist/src/utils/address-formatter.d.ts +7 -6
- package/dist/src/utils/address-formatter.d.ts.map +1 -1
- package/dist/src/utils/agent-config.d.ts.map +1 -1
- package/dist/src/utils/amount-validator.d.ts.map +1 -1
- package/dist/src/utils/api-patterns.d.ts +1 -1
- package/dist/src/utils/api-patterns.d.ts.map +1 -1
- package/dist/src/utils/assetUrls.d.ts +450 -0
- package/dist/src/utils/assetUrls.d.ts.map +1 -0
- package/dist/src/utils/auto-pagination.d.ts +89 -0
- package/dist/src/utils/auto-pagination.d.ts.map +1 -1
- package/dist/src/utils/bignumber-helpers.d.ts.map +1 -1
- package/dist/src/utils/bignumber-pool-cache.d.ts.map +1 -1
- package/dist/src/utils/composite-pool-converter.d.ts +4 -4
- package/dist/src/utils/composite-pool-converter.d.ts.map +1 -1
- package/dist/src/utils/crypto-compat.d.ts +40 -0
- package/dist/src/utils/crypto-compat.d.ts.map +1 -0
- package/dist/src/utils/delimiter-parser.d.ts +1 -1
- package/dist/src/utils/delimiter-parser.d.ts.map +1 -1
- package/dist/src/utils/error-factories.d.ts +1 -1
- package/dist/src/utils/error-factories.d.ts.map +1 -1
- package/dist/src/utils/error-handling-patterns.d.ts +1 -1
- package/dist/src/utils/error-handling-patterns.d.ts.map +1 -1
- package/dist/src/utils/error-patterns.d.ts.map +1 -1
- package/dist/src/utils/error-utils.d.ts +1 -1
- package/dist/src/utils/error-utils.d.ts.map +1 -1
- package/dist/src/utils/errors.d.ts +2 -2
- package/dist/src/utils/errors.d.ts.map +1 -1
- package/dist/src/utils/http.d.ts +2 -2
- package/dist/src/utils/http.d.ts.map +1 -1
- package/dist/src/utils/load-env.d.ts.map +1 -1
- package/dist/src/utils/multipart.d.ts.map +1 -1
- package/dist/src/utils/nft-helpers.d.ts.map +1 -1
- package/dist/src/utils/numeric-patterns.d.ts.map +1 -1
- package/dist/src/utils/numeric-wrappers.d.ts +3 -0
- package/dist/src/utils/numeric-wrappers.d.ts.map +1 -1
- package/dist/src/utils/pagination-validation.d.ts +88 -0
- package/dist/src/utils/pagination-validation.d.ts.map +1 -0
- package/dist/src/utils/pool-state-validator.d.ts +1 -1
- package/dist/src/utils/pool-state-validator.d.ts.map +1 -1
- package/dist/src/utils/primitives.d.ts +76 -0
- package/dist/src/utils/primitives.d.ts.map +1 -0
- package/dist/src/utils/query-params.d.ts +6 -6
- package/dist/src/utils/query-params.d.ts.map +1 -1
- package/dist/src/utils/response-handlers.d.ts.map +1 -1
- package/dist/src/utils/response-normalizers.d.ts.map +1 -1
- package/dist/src/utils/safe-parsers.d.ts.map +1 -1
- package/dist/src/utils/service-validators.d.ts.map +1 -1
- package/dist/src/utils/slippage-utils.d.ts.map +1 -1
- package/dist/src/utils/string-patterns.d.ts +3 -3
- package/dist/src/utils/string-patterns.d.ts.map +1 -1
- package/dist/src/utils/swap-delta-calculator.d.ts +2 -2
- package/dist/src/utils/swap-delta-calculator.d.ts.map +1 -1
- package/dist/src/utils/tick-crossing-handler.d.ts.map +1 -1
- package/dist/src/utils/token-format-converter.d.ts +1 -1
- package/dist/src/utils/token-format-converter.d.ts.map +1 -1
- package/dist/src/utils/token-stringification.d.ts.map +1 -1
- package/dist/src/utils/tokenNormalizer.d.ts +1 -1
- package/dist/src/utils/tokenNormalizer.d.ts.map +1 -1
- package/dist/src/utils/trade-transformers.d.ts +1 -1
- package/dist/src/utils/trade-transformers.d.ts.map +1 -1
- package/dist/src/utils/validation-helpers.d.ts +5 -97
- package/dist/src/utils/validation-helpers.d.ts.map +1 -1
- package/dist/src/utils/validation-patterns.d.ts.map +1 -1
- package/dist/src/utils/validation.d.ts +1 -1
- package/dist/src/utils/validation.d.ts.map +1 -1
- package/dist/src/utils/wallet.d.ts.map +1 -1
- package/dist/src/utils/websocket-patterns.d.ts +1 -2
- package/dist/src/utils/websocket-patterns.d.ts.map +1 -1
- package/dist/src/utils/websocket-validators.d.ts +1 -1
- package/dist/src/utils/websocket-validators.d.ts.map +1 -1
- package/dist/src/wallet/ExternalWalletProvider.d.ts +109 -0
- package/dist/src/wallet/ExternalWalletProvider.d.ts.map +1 -0
- package/dist/src/wallet/GalaChainConnectProvider.d.ts +125 -0
- package/dist/src/wallet/GalaChainConnectProvider.d.ts.map +1 -0
- package/dist/src/wallet/GalaWalletProvider.d.ts +139 -0
- package/dist/src/wallet/GalaWalletProvider.d.ts.map +1 -0
- package/dist/src/wallet/PrivateKeyProvider.d.ts +90 -0
- package/dist/src/wallet/PrivateKeyProvider.d.ts.map +1 -0
- package/dist/src/wallet/detection.d.ts +107 -0
- package/dist/src/wallet/detection.d.ts.map +1 -0
- package/dist/src/wallet/index.d.ts +52 -0
- package/dist/src/wallet/index.d.ts.map +1 -0
- package/dist/src/wallet/types.d.ts +267 -0
- package/dist/src/wallet/types.d.ts.map +1 -0
- package/dist/src/wallet/utils.d.ts +117 -0
- package/dist/src/wallet/utils.d.ts.map +1 -0
- package/dist/test-constants.d.ts +29 -0
- package/dist/test-constants.d.ts.map +1 -0
- package/dist/types/ai-moderation.dto.d.ts +294 -0
- package/dist/types/ai-moderation.dto.d.ts.map +1 -0
- package/dist/types/api-key.dto.d.ts +373 -0
- package/dist/types/api-key.dto.d.ts.map +1 -0
- package/dist/types/backend-responses.d.ts +235 -0
- package/dist/types/backend-responses.d.ts.map +1 -0
- package/dist/types/ban.dto.d.ts +577 -0
- package/dist/types/ban.dto.d.ts.map +1 -0
- package/dist/types/burn.dto.d.ts +170 -0
- package/dist/types/burn.dto.d.ts.map +1 -0
- package/dist/types/cache-management.dto.d.ts +44 -0
- package/dist/types/cache-management.dto.d.ts.map +1 -0
- package/dist/types/chat-messages.dto.d.ts +193 -0
- package/dist/types/chat-messages.dto.d.ts.map +1 -0
- package/dist/types/comment.dto.d.ts +176 -0
- package/dist/types/comment.dto.d.ts.map +1 -0
- package/dist/types/comments.dto.d.ts +198 -0
- package/dist/types/comments.dto.d.ts.map +1 -0
- package/dist/types/common.d.ts +602 -0
- package/dist/types/common.d.ts.map +1 -0
- package/dist/types/composite-pool.dto.d.ts +103 -0
- package/dist/types/composite-pool.dto.d.ts.map +1 -0
- package/dist/types/constraints.d.ts +378 -0
- package/dist/types/constraints.d.ts.map +1 -0
- package/dist/types/content-flag.dto.d.ts +337 -0
- package/dist/types/content-flag.dto.d.ts.map +1 -0
- package/dist/types/content-reactions.dto.d.ts +132 -0
- package/dist/types/content-reactions.dto.d.ts.map +1 -0
- package/dist/types/dex-pool.dto.d.ts +214 -0
- package/dist/types/dex-pool.dto.d.ts.map +1 -0
- package/dist/types/dto.d.ts +183 -0
- package/dist/types/dto.d.ts.map +1 -0
- package/dist/types/engagement-stats.dto.d.ts +62 -0
- package/dist/types/engagement-stats.dto.d.ts.map +1 -0
- package/dist/types/events.dto.d.ts +80 -0
- package/dist/types/events.dto.d.ts.map +1 -0
- package/dist/types/galachain-api.types.d.ts +297 -0
- package/dist/types/galachain-api.types.d.ts.map +1 -0
- package/dist/types/global-feed.dto.d.ts +203 -0
- package/dist/types/global-feed.dto.d.ts.map +1 -0
- package/dist/types/gswap-responses.types.d.ts +369 -0
- package/dist/types/gswap-responses.types.d.ts.map +1 -0
- package/dist/types/gswap.dto.d.ts +448 -0
- package/dist/types/gswap.dto.d.ts.map +1 -0
- package/dist/types/holder.types.d.ts +106 -0
- package/dist/types/holder.types.d.ts.map +1 -0
- package/dist/types/launchpad.dto.d.ts +1264 -0
- package/dist/types/launchpad.dto.d.ts.map +1 -0
- package/dist/types/launchpad.validation.d.ts +43 -0
- package/dist/types/launchpad.validation.d.ts.map +1 -0
- package/dist/types/liquidity-monitor.dto.d.ts +177 -0
- package/dist/types/liquidity-monitor.dto.d.ts.map +1 -0
- package/dist/types/lock.dto.d.ts +261 -0
- package/dist/types/lock.dto.d.ts.map +1 -0
- package/dist/types/messages.dto.d.ts +386 -0
- package/dist/types/messages.dto.d.ts.map +1 -0
- package/dist/types/moderator.dto.d.ts +607 -0
- package/dist/types/moderator.dto.d.ts.map +1 -0
- package/dist/types/nft.dto.d.ts +155 -0
- package/dist/types/nft.dto.d.ts.map +1 -0
- package/dist/types/oembed.dto.d.ts +160 -0
- package/dist/types/oembed.dto.d.ts.map +1 -0
- package/dist/types/options.dto.d.ts +485 -0
- package/dist/types/options.dto.d.ts.map +1 -0
- package/dist/types/overseer.dto.d.ts +530 -0
- package/dist/types/overseer.dto.d.ts.map +1 -0
- package/dist/types/platform-config.dto.d.ts +89 -0
- package/dist/types/platform-config.dto.d.ts.map +1 -0
- package/dist/types/platform-stats.dto.d.ts +40 -0
- package/dist/types/platform-stats.dto.d.ts.map +1 -0
- package/dist/types/pool-state-delta.dto.d.ts +246 -0
- package/dist/types/pool-state-delta.dto.d.ts.map +1 -0
- package/dist/types/pool.dto.d.ts +111 -0
- package/dist/types/pool.dto.d.ts.map +1 -0
- package/dist/types/priceHistory.dto.d.ts +165 -0
- package/dist/types/priceHistory.dto.d.ts.map +1 -0
- package/dist/types/restricted-names.dto.d.ts +50 -0
- package/dist/types/restricted-names.dto.d.ts.map +1 -0
- package/dist/types/result.types.d.ts +104 -0
- package/dist/types/result.types.d.ts.map +1 -0
- package/dist/types/session-auth.dto.d.ts +99 -0
- package/dist/types/session-auth.dto.d.ts.map +1 -0
- package/dist/types/stream-chat.dto.d.ts +810 -0
- package/dist/types/stream-chat.dto.d.ts.map +1 -0
- package/dist/types/streaming-events.dto.d.ts +605 -0
- package/dist/types/streaming-events.dto.d.ts.map +1 -0
- package/dist/types/streaming.dto.d.ts +1178 -0
- package/dist/types/streaming.dto.d.ts.map +1 -0
- package/dist/types/swap-monitor.dto.d.ts +256 -0
- package/dist/types/swap-monitor.dto.d.ts.map +1 -0
- package/dist/types/token-ban.dto.d.ts +194 -0
- package/dist/types/token-ban.dto.d.ts.map +1 -0
- package/dist/types/token-config.dto.d.ts +117 -0
- package/dist/types/token-config.dto.d.ts.map +1 -0
- package/dist/types/token.types.d.ts +336 -0
- package/dist/types/token.types.d.ts.map +1 -0
- package/dist/types/trade.dto.d.ts +457 -0
- package/dist/types/trade.dto.d.ts.map +1 -0
- package/dist/types/trades-query.dto.d.ts +133 -0
- package/dist/types/trades-query.dto.d.ts.map +1 -0
- package/dist/types/transfer.dto.d.ts +156 -0
- package/dist/types/transfer.dto.d.ts.map +1 -0
- package/dist/types/user.dto.d.ts +880 -0
- package/dist/types/user.dto.d.ts.map +1 -0
- package/dist/types/websocket-admin.dto.d.ts +390 -0
- package/dist/types/websocket-admin.dto.d.ts.map +1 -0
- package/dist/types/websocket-data.types.d.ts +35 -0
- package/dist/types/websocket-data.types.d.ts.map +1 -0
- package/dist/types/websocket-events.dto.d.ts +472 -0
- package/dist/types/websocket-events.dto.d.ts.map +1 -0
- package/dist/types/websocket.types.d.ts +118 -0
- package/dist/types/websocket.types.d.ts.map +1 -0
- package/dist/types/weekly-challenge.dto.d.ts +130 -0
- package/dist/types/weekly-challenge.dto.d.ts.map +1 -0
- package/dist/types/wrappable-token.dto.d.ts +305 -0
- package/dist/types/wrappable-token.dto.d.ts.map +1 -0
- package/dist/utils/LiquidityEventExtractor.d.ts +106 -0
- package/dist/utils/LiquidityEventExtractor.d.ts.map +1 -0
- package/dist/utils/Logger.d.ts +136 -0
- package/dist/utils/Logger.d.ts.map +1 -0
- package/dist/utils/MonitoringMetrics.d.ts +151 -0
- package/dist/utils/MonitoringMetrics.d.ts.map +1 -0
- package/dist/utils/PoolKeyNormalizer.d.ts +135 -0
- package/dist/utils/PoolKeyNormalizer.d.ts.map +1 -0
- package/dist/utils/ReconnectionManager.d.ts +142 -0
- package/dist/utils/ReconnectionManager.d.ts.map +1 -0
- package/dist/utils/SignatureHelper.d.ts +140 -0
- package/dist/utils/SignatureHelper.d.ts.map +1 -0
- package/dist/utils/SwapEventExtractor.d.ts +152 -0
- package/dist/utils/SwapEventExtractor.d.ts.map +1 -0
- package/dist/utils/adapters.d.ts +111 -0
- package/dist/utils/adapters.d.ts.map +1 -0
- package/dist/utils/address-formatter.d.ts +318 -0
- package/dist/utils/address-formatter.d.ts.map +1 -0
- package/dist/utils/agent-config.d.ts +288 -0
- package/dist/utils/agent-config.d.ts.map +1 -0
- package/dist/utils/amount-validator.d.ts +268 -0
- package/dist/utils/amount-validator.d.ts.map +1 -0
- package/dist/utils/api-patterns.d.ts +347 -0
- package/dist/utils/api-patterns.d.ts.map +1 -0
- package/dist/utils/array-helpers.d.ts +115 -0
- package/dist/utils/array-helpers.d.ts.map +1 -0
- package/dist/utils/assetUrls.d.ts +450 -0
- package/dist/utils/assetUrls.d.ts.map +1 -0
- package/dist/utils/async-patterns.d.ts +272 -0
- package/dist/utils/async-patterns.d.ts.map +1 -0
- package/dist/utils/auto-pagination.d.ts +549 -0
- package/dist/utils/auto-pagination.d.ts.map +1 -0
- package/dist/utils/bignumber-helpers.d.ts +446 -0
- package/dist/utils/bignumber-helpers.d.ts.map +1 -0
- package/dist/utils/bignumber-pool-cache.d.ts +169 -0
- package/dist/utils/bignumber-pool-cache.d.ts.map +1 -0
- package/dist/utils/bondingCurveCalculations.d.ts +144 -0
- package/dist/utils/bondingCurveCalculations.d.ts.map +1 -0
- package/dist/utils/cacheWarmingHelpers.d.ts +110 -0
- package/dist/utils/cacheWarmingHelpers.d.ts.map +1 -0
- package/dist/utils/composite-pool-converter.d.ts +121 -0
- package/dist/utils/composite-pool-converter.d.ts.map +1 -0
- package/dist/utils/crypto-compat.d.ts +40 -0
- package/dist/utils/crypto-compat.d.ts.map +1 -0
- package/dist/utils/data-transform-patterns.d.ts +393 -0
- package/dist/utils/data-transform-patterns.d.ts.map +1 -0
- package/dist/utils/date-utils.d.ts +205 -0
- package/dist/utils/date-utils.d.ts.map +1 -0
- package/dist/utils/delimiter-parser.d.ts +139 -0
- package/dist/utils/delimiter-parser.d.ts.map +1 -0
- package/dist/utils/error-factories.d.ts +701 -0
- package/dist/utils/error-factories.d.ts.map +1 -0
- package/dist/utils/error-handling-patterns.d.ts +390 -0
- package/dist/utils/error-handling-patterns.d.ts.map +1 -0
- package/dist/utils/error-patterns.d.ts +360 -0
- package/dist/utils/error-patterns.d.ts.map +1 -0
- package/dist/utils/error-utils.d.ts +458 -0
- package/dist/utils/error-utils.d.ts.map +1 -0
- package/dist/utils/error-wrapper.d.ts +208 -0
- package/dist/utils/error-wrapper.d.ts.map +1 -0
- package/dist/utils/errors.d.ts +548 -0
- package/dist/utils/errors.d.ts.map +1 -0
- package/dist/utils/http-factory.d.ts +36 -0
- package/dist/utils/http-factory.d.ts.map +1 -0
- package/dist/utils/http.d.ts +97 -0
- package/dist/utils/http.d.ts.map +1 -0
- package/dist/utils/load-env.d.ts +31 -0
- package/dist/utils/load-env.d.ts.map +1 -0
- package/dist/utils/multipart-helpers.d.ts +38 -0
- package/dist/utils/multipart-helpers.d.ts.map +1 -0
- package/dist/utils/multipart.d.ts +63 -0
- package/dist/utils/multipart.d.ts.map +1 -0
- package/dist/utils/nft-helpers.d.ts +62 -0
- package/dist/utils/nft-helpers.d.ts.map +1 -0
- package/dist/utils/numeric-patterns.d.ts +289 -0
- package/dist/utils/numeric-patterns.d.ts.map +1 -0
- package/dist/utils/numeric-wrappers.d.ts +149 -0
- package/dist/utils/numeric-wrappers.d.ts.map +1 -0
- package/dist/utils/object-extractors.d.ts +115 -0
- package/dist/utils/object-extractors.d.ts.map +1 -0
- package/dist/utils/object-patterns.d.ts +81 -0
- package/dist/utils/object-patterns.d.ts.map +1 -0
- package/dist/utils/pagination-helpers.d.ts +161 -0
- package/dist/utils/pagination-helpers.d.ts.map +1 -0
- package/dist/utils/pagination-validation.d.ts +88 -0
- package/dist/utils/pagination-validation.d.ts.map +1 -0
- package/dist/utils/pool-pair-parser.d.ts +57 -0
- package/dist/utils/pool-pair-parser.d.ts.map +1 -0
- package/dist/utils/pool-state-validator.d.ts +207 -0
- package/dist/utils/pool-state-validator.d.ts.map +1 -0
- package/dist/utils/position-filters.d.ts +252 -0
- package/dist/utils/position-filters.d.ts.map +1 -0
- package/dist/utils/primitives.d.ts +76 -0
- package/dist/utils/primitives.d.ts.map +1 -0
- package/dist/utils/query-params.d.ts +89 -0
- package/dist/utils/query-params.d.ts.map +1 -0
- package/dist/utils/response-handlers.d.ts +225 -0
- package/dist/utils/response-handlers.d.ts.map +1 -0
- package/dist/utils/response-helpers.d.ts +28 -0
- package/dist/utils/response-helpers.d.ts.map +1 -0
- package/dist/utils/response-normalizers.d.ts +115 -0
- package/dist/utils/response-normalizers.d.ts.map +1 -0
- package/dist/utils/safe-parsers.d.ts +487 -0
- package/dist/utils/safe-parsers.d.ts.map +1 -0
- package/dist/utils/service-validators.d.ts +268 -0
- package/dist/utils/service-validators.d.ts.map +1 -0
- package/dist/utils/slippage-utils.d.ts +70 -0
- package/dist/utils/slippage-utils.d.ts.map +1 -0
- package/dist/utils/string-patterns.d.ts +404 -0
- package/dist/utils/string-patterns.d.ts.map +1 -0
- package/dist/utils/string-transforms.d.ts +89 -0
- package/dist/utils/string-transforms.d.ts.map +1 -0
- package/dist/utils/string-utils.d.ts +108 -0
- package/dist/utils/string-utils.d.ts.map +1 -0
- package/dist/utils/swap-delta-calculator.d.ts +231 -0
- package/dist/utils/swap-delta-calculator.d.ts.map +1 -0
- package/dist/utils/tick-crossing-handler.d.ts +250 -0
- package/dist/utils/tick-crossing-handler.d.ts.map +1 -0
- package/dist/utils/token-format-converter.d.ts +175 -0
- package/dist/utils/token-format-converter.d.ts.map +1 -0
- package/dist/utils/token-parser.d.ts +235 -0
- package/dist/utils/token-parser.d.ts.map +1 -0
- package/dist/utils/token-stringification.d.ts +168 -0
- package/dist/utils/token-stringification.d.ts.map +1 -0
- package/dist/utils/tokenNameNormalizer.d.ts +96 -0
- package/dist/utils/tokenNameNormalizer.d.ts.map +1 -0
- package/dist/utils/tokenNormalizer.d.ts +167 -0
- package/dist/utils/tokenNormalizer.d.ts.map +1 -0
- package/dist/utils/trade-transformers.d.ts +28 -0
- package/dist/utils/trade-transformers.d.ts.map +1 -0
- package/dist/utils/transfer-validation.d.ts +58 -0
- package/dist/utils/transfer-validation.d.ts.map +1 -0
- package/dist/utils/type-guard-factory.d.ts +260 -0
- package/dist/utils/type-guard-factory.d.ts.map +1 -0
- package/dist/utils/unique-key-generator.d.ts +148 -0
- package/dist/utils/unique-key-generator.d.ts.map +1 -0
- package/dist/utils/validation-helpers.d.ts +1074 -0
- package/dist/utils/validation-helpers.d.ts.map +1 -0
- package/dist/utils/validation-patterns.d.ts +768 -0
- package/dist/utils/validation-patterns.d.ts.map +1 -0
- package/dist/utils/validation.d.ts +140 -0
- package/dist/utils/validation.d.ts.map +1 -0
- package/dist/utils/wallet.d.ts +185 -0
- package/dist/utils/wallet.d.ts.map +1 -0
- package/dist/utils/websocket-errors.d.ts +30 -0
- package/dist/utils/websocket-errors.d.ts.map +1 -0
- package/dist/utils/websocket-patterns.d.ts +680 -0
- package/dist/utils/websocket-patterns.d.ts.map +1 -0
- package/dist/utils/websocket-validators.d.ts +30 -0
- package/dist/utils/websocket-validators.d.ts.map +1 -0
- package/dist/wallet/ExternalWalletProvider.d.ts +109 -0
- package/dist/wallet/ExternalWalletProvider.d.ts.map +1 -0
- package/dist/wallet/GalaChainConnectProvider.d.ts +125 -0
- package/dist/wallet/GalaChainConnectProvider.d.ts.map +1 -0
- package/dist/wallet/GalaWalletProvider.d.ts +139 -0
- package/dist/wallet/GalaWalletProvider.d.ts.map +1 -0
- package/dist/wallet/PrivateKeyProvider.d.ts +90 -0
- package/dist/wallet/PrivateKeyProvider.d.ts.map +1 -0
- package/dist/wallet/detection.d.ts +107 -0
- package/dist/wallet/detection.d.ts.map +1 -0
- package/dist/wallet/index.d.ts +52 -0
- package/dist/wallet/index.d.ts.map +1 -0
- package/dist/wallet/types.d.ts +267 -0
- package/dist/wallet/types.d.ts.map +1 -0
- package/dist/wallet/utils.d.ts +117 -0
- package/dist/wallet/utils.d.ts.map +1 -0
- package/dist/wallet.cjs +1 -0
- package/dist/wallet.esm.js +1 -0
- package/package.json +131 -33
- package/dist/index.cjs.js +0 -1
- package/dist/src/services/ChatMessagesService.d.ts +0 -152
- package/dist/src/services/ChatMessagesService.d.ts.map +0 -1
- package/dist/src/services/CommentService.d.ts +0 -119
- package/dist/src/services/CommentService.d.ts.map +0 -1
- package/dist/src/services/CommentsService.d.ts +0 -155
- package/dist/src/services/CommentsService.d.ts.map +0 -1
|
@@ -9,24 +9,63 @@
|
|
|
9
9
|
* @since 3.6.0
|
|
10
10
|
*/
|
|
11
11
|
/**
|
|
12
|
-
* Launchpad Backend API Endpoints
|
|
12
|
+
* Launchpad Backend API Endpoints (v1 token-centric structure)
|
|
13
13
|
*/
|
|
14
14
|
export declare const ENDPOINTS: {
|
|
15
|
-
|
|
16
|
-
readonly
|
|
17
|
-
|
|
18
|
-
readonly
|
|
19
|
-
|
|
20
|
-
readonly
|
|
21
|
-
/**
|
|
22
|
-
readonly
|
|
23
|
-
|
|
24
|
-
readonly
|
|
25
|
-
|
|
26
|
-
readonly
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
15
|
+
/** POST /v1/tokens/:tokenName/image - Upload token image (JWT owner only) */
|
|
16
|
+
readonly UPLOAD_IMAGE: "/v1/tokens/:tokenName/image";
|
|
17
|
+
/** GET /v1/tokens - Fetch paginated token pools (Public) */
|
|
18
|
+
readonly FETCH_POOLS: "/v1/tokens";
|
|
19
|
+
/** GET /v1/tokens/:tokenName - Get full token pool data with streaming fields (Public) */
|
|
20
|
+
readonly GET_TOKEN: "/v1/tokens/:tokenName";
|
|
21
|
+
/** GET /v1/holders?tokenName=X - Get token distribution with percentages (Public) */
|
|
22
|
+
readonly GET_TOKEN_DISTRIBUTION: "/v1/holders";
|
|
23
|
+
/** GET /v1/tokens/:tokenName/badges - Get token badges (Public) */
|
|
24
|
+
readonly GET_TOKEN_BADGES: "/v1/tokens/:tokenName/badges";
|
|
25
|
+
/** GET /v1/chart?tokenName=X&from=Y&to=Z&resolution=W - Get historical chart data (Public) */
|
|
26
|
+
readonly CHART: "/v1/chart";
|
|
27
|
+
/** GET /v1/tokens/:tokenName/recordings/:assetId - Get recording details (JWT) */
|
|
28
|
+
readonly GET_RECORDING_DETAILS: "/v1/tokens/:tokenName/recordings/:assetId";
|
|
29
|
+
/** GET /v1/tokens/:tokenName/trades - Get trades for a specific token (Public) */
|
|
30
|
+
readonly GET_TRADES: "/v1/tokens/:tokenName/trades";
|
|
31
|
+
/** GET /v1/users/:address - Get user profile (Public) */
|
|
32
|
+
readonly GET_PROFILE: "/v1/users/:address";
|
|
33
|
+
/** PUT /v1/users/me - Update own profile (JWT) */
|
|
34
|
+
readonly UPDATE_PROFILE: "/v1/users/me";
|
|
35
|
+
/** GET /v1/users/me - Get current authenticated user profile (JWT) */
|
|
36
|
+
readonly GET_CURRENT_USER: "/v1/users/me";
|
|
37
|
+
/** GET /v1/users/:address/tokens - Get user's created tokens (Public) */
|
|
38
|
+
readonly GET_TOKEN_LIST: "/v1/users/:address/tokens";
|
|
39
|
+
/** GET /v1/users/:address/tokens - Get tokens user holds (Public) */
|
|
40
|
+
readonly GET_TOKENS_HELD: "/v1/users/:address/tokens";
|
|
41
|
+
/** GET /v1/users/:address/gala-balance - Get user's GALA balance (Public) */
|
|
42
|
+
readonly GET_GALA_BALANCE: "/v1/users/:address/gala-balance";
|
|
43
|
+
/** GET /v1/users/:address/balances - Get user's token balances (Public) */
|
|
44
|
+
readonly USER_BALANCES: "/v1/users/:address/balances";
|
|
45
|
+
/** GET /v1/users/:address/report - Get user profile report (Overseer only) */
|
|
46
|
+
readonly USER_REPORT: "/v1/users/:address/report";
|
|
47
|
+
/** GET /v1/users/me/managed-tokens - Get all tokens user can manage (JWT) */
|
|
48
|
+
readonly GET_MANAGED_TOKENS: "/v1/users/me/managed-tokens";
|
|
49
|
+
/** POST /v1/utils/validate-token - Validate token name and symbol availability (Public) */
|
|
50
|
+
readonly VALIDATE_TOKEN: "/v1/utils/validate-token";
|
|
51
|
+
/** POST /v1/tokens/:tokenName - Update token config (Owner/Admin) */
|
|
52
|
+
readonly UPDATE_TOKEN_CONFIG: "/v1/tokens/:tokenName";
|
|
53
|
+
/** GET /v1/tokens/:tokenName/stats - Get token engagement stats (Public) */
|
|
54
|
+
readonly TOKEN_STATS: "/v1/tokens/:tokenName/stats";
|
|
55
|
+
/** PUT /v1/tokens/:tokenName - Update token config (Owner/Admin) */
|
|
56
|
+
readonly TOKEN_CONFIG: "/v1/tokens/:tokenName";
|
|
57
|
+
/** GET /v1/tokens/:tokenName/holders - Get top holders or specific user holder data (Public) */
|
|
58
|
+
readonly GET_HOLDERS: "/v1/tokens/:tokenName/holders";
|
|
59
|
+
/** GET /oembed - Get oEmbed data for general endpoint (Public, bot agents) */
|
|
60
|
+
readonly OEMBED: "/oembed";
|
|
61
|
+
/** GET /oembed/buy-sell/:tokenName - Get oEmbed for buy/sell view (Public, bot agents) */
|
|
62
|
+
readonly OEMBED_BUY_SELL: "/oembed/buy-sell/:tokenName";
|
|
63
|
+
/** GET /oembed/t/:tokenName - Get oEmbed for token view (Public, bot agents) */
|
|
64
|
+
readonly OEMBED_TOKEN: "/oembed/t/:tokenName";
|
|
65
|
+
/** GET /oembed/profile/:address - Get oEmbed for user profile (Public, bot agents) */
|
|
66
|
+
readonly OEMBED_PROFILE: "/oembed/profile/:address";
|
|
67
|
+
/** GET /oembed/u/:address - Get oEmbed for user view (Public, bot agents) */
|
|
68
|
+
readonly OEMBED_USER: "/oembed/u/:address";
|
|
30
69
|
};
|
|
31
70
|
/**
|
|
32
71
|
* Type-safe endpoint keys
|
|
@@ -51,8 +90,6 @@ export declare const DEX_API_ENDPOINTS: {
|
|
|
51
90
|
readonly GET_REFERRALS: "/v1/users/referrals";
|
|
52
91
|
/** Get user's referrals summary (counts and reward totals) */
|
|
53
92
|
readonly GET_REFERRALS_SUMMARY: "/v1/users/referrals/summary";
|
|
54
|
-
/** Register account for trading */
|
|
55
|
-
readonly REGISTER_ACCOUNT: "/v1/registered";
|
|
56
93
|
};
|
|
57
94
|
/**
|
|
58
95
|
* Type-safe DEX API endpoint keys
|
|
@@ -63,101 +100,61 @@ export type DexApiEndpointKey = keyof typeof DEX_API_ENDPOINTS;
|
|
|
63
100
|
*/
|
|
64
101
|
export type DexApiEndpointValue = typeof DEX_API_ENDPOINTS[DexApiEndpointKey];
|
|
65
102
|
/**
|
|
66
|
-
* Live Streaming Endpoints (v5.1.0+)
|
|
103
|
+
* Live Streaming Endpoints (v5.1.0+, migrated to /v1/tokens/:tokenName/ structure in v7.x.0+)
|
|
67
104
|
*
|
|
68
|
-
* Base path: /
|
|
69
|
-
* Controller:
|
|
105
|
+
* Base path: /v1/tokens/:tokenName/
|
|
106
|
+
* Controller: StreamActionsController, RecordingController
|
|
70
107
|
*
|
|
71
|
-
*
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
readonly START_STREAM: "/live/:tokenName/start";
|
|
76
|
-
/** POST /live/:tokenName/stop - Stop an active stream (JWT) */
|
|
77
|
-
readonly STOP_STREAM: "/live/:tokenName/stop";
|
|
78
|
-
/** GET /live/:tokenName - Get stream info (Public) */
|
|
79
|
-
readonly GET_STREAM_INFO: "/live/:tokenName";
|
|
80
|
-
/** POST /live/:tokenName/disable - Disable stream (Admin) */
|
|
81
|
-
readonly DISABLE_STREAM: "/live/:tokenName/disable";
|
|
82
|
-
/** POST /live/:tokenName/enable - Enable stream (Admin) */
|
|
83
|
-
readonly ENABLE_STREAM: "/live/:tokenName/enable";
|
|
84
|
-
/** POST /live/:tokenName/reset-key - Reset stream key (JWT) */
|
|
85
|
-
readonly RESET_STREAM_KEY: "/live/:tokenName/reset-key";
|
|
86
|
-
/** GET /live/:tokenName/recordings - Get recordings (Public) */
|
|
87
|
-
readonly GET_RECORDINGS: "/live/:tokenName/recordings";
|
|
88
|
-
/** GET /live/:tokenName/recordings/:assetId/download - Get download status/URL (JWT) */
|
|
89
|
-
readonly GET_RECORDING_DOWNLOAD: "/live/:tokenName/recordings/:assetId/download";
|
|
90
|
-
/** DELETE /live/:tokenName/recordings/:assetId - Delete recording (JWT) */
|
|
91
|
-
readonly DELETE_RECORDING: "/live/:tokenName/recordings/:assetId";
|
|
92
|
-
/** GET /live/:tokenName/simulcast - Get simulcast targets (Public) */
|
|
93
|
-
readonly GET_SIMULCAST_TARGETS: "/live/:tokenName/simulcast";
|
|
94
|
-
/** POST /live/:tokenName/simulcast - Add simulcast target (JWT) */
|
|
95
|
-
readonly ADD_SIMULCAST_TARGET: "/live/:tokenName/simulcast";
|
|
96
|
-
/** DELETE /live/:tokenName/simulcast/:targetId - Remove target (JWT) */
|
|
97
|
-
readonly REMOVE_SIMULCAST_TARGET: "/live/:tokenName/simulcast/:targetId";
|
|
98
|
-
/** GET /live/global/streaming/status - Get global status (Public) */
|
|
99
|
-
readonly GET_GLOBAL_STREAMING_STATUS: "/live/global/streaming/status";
|
|
100
|
-
/** POST /live/global/streaming/disable - Disable globally (Admin) */
|
|
101
|
-
readonly DISABLE_GLOBAL_STREAMING: "/live/global/streaming/disable";
|
|
102
|
-
/** POST /live/global/streaming/enable - Enable globally (Admin) */
|
|
103
|
-
readonly ENABLE_GLOBAL_STREAMING: "/live/global/streaming/enable";
|
|
104
|
-
/** POST /live/:tokenName/stream/countdown - Set next live stream time (Admin or JWT) */
|
|
105
|
-
readonly SET_STREAM_COUNTDOWN: "/live/:tokenName/stream/countdown";
|
|
106
|
-
/** DELETE /live/:tokenName/stream/countdown - Clear countdown (Admin or JWT) */
|
|
107
|
-
readonly CLEAR_STREAM_COUNTDOWN: "/live/:tokenName/stream/countdown";
|
|
108
|
-
/** PUT /live/:tokenName/stream/language - Set stream language (Admin or JWT) */
|
|
109
|
-
readonly SET_STREAM_LANGUAGE: "/live/:tokenName/stream/language";
|
|
110
|
-
/** GET /live/:tokenName/role - Get user's role for stream (Optional JWT) */
|
|
111
|
-
readonly GET_STREAM_ROLE: "/live/:tokenName/role";
|
|
112
|
-
/** GET /live/roles - Get all available roles and permissions (Public) */
|
|
113
|
-
readonly GET_AVAILABLE_ROLES: "/live/roles";
|
|
114
|
-
/** GET /live/:tokenName/access - Check user's studio access (Optional JWT) */
|
|
115
|
-
readonly GET_TOKEN_ACCESS: "/live/:tokenName/access";
|
|
116
|
-
};
|
|
117
|
-
/**
|
|
118
|
-
* Stream Chat Endpoints (v5.1.0+)
|
|
119
|
-
*
|
|
120
|
-
* Base path: /live/
|
|
121
|
-
* Controller: StreamChatController
|
|
108
|
+
* Migration (v7.x.0+): Stream action endpoints moved from nested /stream/ path to action-based naming
|
|
109
|
+
* - /v1/tokens/:tokenName/stream/start → /v1/tokens/:tokenName/start-stream
|
|
110
|
+
* - /v1/tokens/:tokenName/stream/stop → /v1/tokens/:tokenName/stop-stream
|
|
111
|
+
* - /v1/tokens/:tokenName/stream/reset-key → /v1/tokens/:tokenName/reset-key
|
|
122
112
|
*
|
|
123
113
|
* @since 5.1.0
|
|
114
|
+
* @since 7.x.0 - Modernized to action-based naming pattern
|
|
124
115
|
*/
|
|
125
|
-
export declare const
|
|
126
|
-
/**
|
|
127
|
-
readonly
|
|
128
|
-
/** POST /
|
|
129
|
-
readonly
|
|
130
|
-
/**
|
|
131
|
-
readonly
|
|
132
|
-
/**
|
|
133
|
-
readonly
|
|
134
|
-
/** POST /
|
|
135
|
-
readonly
|
|
136
|
-
/**
|
|
137
|
-
readonly
|
|
138
|
-
/** GET /
|
|
139
|
-
readonly
|
|
140
|
-
/**
|
|
141
|
-
readonly
|
|
142
|
-
/**
|
|
143
|
-
readonly
|
|
144
|
-
/**
|
|
145
|
-
readonly
|
|
146
|
-
/**
|
|
147
|
-
readonly
|
|
148
|
-
/**
|
|
149
|
-
readonly
|
|
150
|
-
/**
|
|
151
|
-
readonly
|
|
116
|
+
export declare const STREAMING_ENDPOINTS: {
|
|
117
|
+
/** POST /v1/tokens/:tokenName/start-stream - Start a stream (JWT) */
|
|
118
|
+
readonly START_STREAM: "/v1/tokens/:tokenName/start-stream";
|
|
119
|
+
/** POST /v1/tokens/:tokenName/stop-stream - Stop an active stream (JWT) */
|
|
120
|
+
readonly STOP_STREAM: "/v1/tokens/:tokenName/stop-stream";
|
|
121
|
+
/** POST /v1/tokens/:tokenName/stream/disable - Disable stream (Admin) */
|
|
122
|
+
readonly DISABLE_STREAM: "/v1/tokens/:tokenName/stream/disable";
|
|
123
|
+
/** POST /v1/tokens/:tokenName/stream/enable - Enable stream (Admin) */
|
|
124
|
+
readonly ENABLE_STREAM: "/v1/tokens/:tokenName/stream/enable";
|
|
125
|
+
/** POST /v1/tokens/:tokenName/reset-key - Reset stream key (JWT) */
|
|
126
|
+
readonly RESET_STREAM_KEY: "/v1/tokens/:tokenName/reset-key";
|
|
127
|
+
/** GET /v1/tokens/:tokenName/recordings - Get recordings (Public) */
|
|
128
|
+
readonly GET_RECORDINGS: "/v1/tokens/:tokenName/recordings";
|
|
129
|
+
/** GET /v1/tokens/:tokenName/recordings/:assetId/download - Get download status/URL (JWT) */
|
|
130
|
+
readonly GET_RECORDING_DOWNLOAD: "/v1/tokens/:tokenName/recordings/:assetId/download";
|
|
131
|
+
/** DELETE /v1/tokens/:tokenName/recordings/:assetId - Delete recording (JWT) */
|
|
132
|
+
readonly DELETE_RECORDING: "/v1/tokens/:tokenName/recordings/:assetId";
|
|
133
|
+
/** GET /v1/tokens/:tokenName/stream/simulcast - Get simulcast targets (Public) */
|
|
134
|
+
readonly GET_SIMULCAST_TARGETS: "/v1/tokens/:tokenName/stream/simulcast";
|
|
135
|
+
/** POST /v1/tokens/:tokenName/stream/simulcast - Add simulcast target (JWT) */
|
|
136
|
+
readonly ADD_SIMULCAST_TARGET: "/v1/tokens/:tokenName/stream/simulcast";
|
|
137
|
+
/** DELETE /v1/tokens/:tokenName/stream/simulcast/:targetId - Remove target (JWT) */
|
|
138
|
+
readonly REMOVE_SIMULCAST_TARGET: "/v1/tokens/:tokenName/stream/simulcast/:targetId";
|
|
139
|
+
/** GET /v1/config - Get global status (Public) */
|
|
140
|
+
readonly GET_GLOBAL_STREAMING_STATUS: "/v1/config";
|
|
141
|
+
/** POST /v1/config - Update global config (Admin) */
|
|
142
|
+
readonly DISABLE_GLOBAL_STREAMING: "/v1/config";
|
|
143
|
+
/** POST /v1/config - Update global config (Admin) */
|
|
144
|
+
readonly ENABLE_GLOBAL_STREAMING: "/v1/config";
|
|
145
|
+
/** GET /v1/tokens/:tokenName/role - Get user's role for stream (Optional JWT) */
|
|
146
|
+
readonly GET_STREAM_ROLE: "/v1/tokens/:tokenName/role";
|
|
147
|
+
/** GET /v1/roles - Get all available roles and permissions (Public) */
|
|
148
|
+
readonly GET_AVAILABLE_ROLES: "/v1/roles";
|
|
149
|
+
/** GET /v1/tokens/:tokenName/access - Check user's studio access (Optional JWT) */
|
|
150
|
+
readonly GET_TOKEN_ACCESS: "/v1/tokens/:tokenName/access";
|
|
151
|
+
/** GET /v1/tokens/:tokenName/credentials - Get stream credentials (JWT, requires START_STREAM permission) */
|
|
152
|
+
readonly GET_STREAM_CREDENTIALS: "/v1/tokens/:tokenName/credentials";
|
|
152
153
|
};
|
|
153
154
|
/**
|
|
154
155
|
* Type-safe streaming endpoint keys
|
|
155
156
|
*/
|
|
156
157
|
export type StreamingEndpointKey = keyof typeof STREAMING_ENDPOINTS;
|
|
157
|
-
/**
|
|
158
|
-
* Type-safe chat endpoint keys
|
|
159
|
-
*/
|
|
160
|
-
export type ChatEndpointKey = keyof typeof CHAT_ENDPOINTS;
|
|
161
158
|
/**
|
|
162
159
|
* Session Authentication Endpoints (v5.2.0+)
|
|
163
160
|
*
|
|
@@ -187,32 +184,56 @@ export declare const AUTH_ENDPOINTS: {
|
|
|
187
184
|
*/
|
|
188
185
|
export type AuthEndpointKey = keyof typeof AUTH_ENDPOINTS;
|
|
189
186
|
/**
|
|
190
|
-
*
|
|
187
|
+
* Token Ban Endpoints (v5.5.0+, migrated to /v1/tokens/:tokenName/bans structure)
|
|
191
188
|
*
|
|
192
|
-
* Base path: /
|
|
189
|
+
* Base path: /v1/tokens/:tokenName/bans/
|
|
193
190
|
* Controller: UserBanController
|
|
194
191
|
*
|
|
195
192
|
* Per-token bans: Owner (JWT) or Admin (API key) can manage
|
|
196
|
-
* Global bans: Admin only (not exposed in SDK - backend admin tool)
|
|
197
193
|
*
|
|
198
194
|
* @since 5.5.0
|
|
199
195
|
*/
|
|
200
196
|
export declare const BAN_ENDPOINTS: {
|
|
201
|
-
/** POST /
|
|
202
|
-
readonly CREATE_BAN: "/
|
|
203
|
-
/** GET /
|
|
204
|
-
readonly LIST_BANS: "/
|
|
205
|
-
/** GET /
|
|
206
|
-
readonly GET_BAN: "/
|
|
207
|
-
/** DELETE /
|
|
208
|
-
readonly REMOVE_BAN: "/
|
|
209
|
-
/** GET /
|
|
210
|
-
readonly GET_ACTIVE_USERS: "/
|
|
197
|
+
/** POST /v1/tokens/:tokenName/bans - Create a ban (JWT or Admin) */
|
|
198
|
+
readonly CREATE_BAN: "/v1/tokens/:tokenName/bans";
|
|
199
|
+
/** GET /v1/tokens/:tokenName/bans - List all bans (JWT or Admin) */
|
|
200
|
+
readonly LIST_BANS: "/v1/tokens/:tokenName/bans";
|
|
201
|
+
/** GET /v1/tokens/:tokenName/bans/:userAddress - Get ban status (JWT or Admin) */
|
|
202
|
+
readonly GET_BAN: "/v1/tokens/:tokenName/bans/:userAddress";
|
|
203
|
+
/** DELETE /v1/tokens/:tokenName/bans/:userAddress - Remove a ban (JWT or Admin) */
|
|
204
|
+
readonly REMOVE_BAN: "/v1/tokens/:tokenName/bans/:userAddress";
|
|
205
|
+
/** GET /v1/tokens/:tokenName/active-users - Get active users (JWT or Admin) */
|
|
206
|
+
readonly GET_ACTIVE_USERS: "/v1/tokens/:tokenName/active-users";
|
|
207
|
+
};
|
|
208
|
+
/**
|
|
209
|
+
* Global User Ban Endpoints (v6.x.0+)
|
|
210
|
+
*
|
|
211
|
+
* Base path: /v1/user-bans
|
|
212
|
+
* Controller: GlobalUserBanController
|
|
213
|
+
*
|
|
214
|
+
* Platform-wide user bans for blocking users across all tokens.
|
|
215
|
+
* Authorization: Admin API key OR authenticated Overseer (JWT)
|
|
216
|
+
*
|
|
217
|
+
* @since 6.x.0
|
|
218
|
+
*/
|
|
219
|
+
export declare const USER_BAN_ENDPOINTS: {
|
|
220
|
+
/** POST /v1/user-bans - Ban user globally (Admin OR Overseer) */
|
|
221
|
+
readonly CREATE_GLOBAL_BAN: "/v1/user-bans";
|
|
222
|
+
/** GET /v1/user-bans - List global user bans (Admin OR Overseer) */
|
|
223
|
+
readonly LIST_GLOBAL_BANS: "/v1/user-bans";
|
|
224
|
+
/** GET /v1/user-bans/:userAddress - Get global ban status (Public) */
|
|
225
|
+
readonly GET_GLOBAL_BAN: "/v1/user-bans/:userAddress";
|
|
226
|
+
/** DELETE /v1/user-bans/:userAddress - Remove global ban (Admin OR Overseer) */
|
|
227
|
+
readonly REMOVE_GLOBAL_BAN: "/v1/user-bans/:userAddress";
|
|
211
228
|
};
|
|
212
229
|
/**
|
|
213
230
|
* Type-safe ban endpoint keys
|
|
214
231
|
*/
|
|
215
232
|
export type BanEndpointKey = keyof typeof BAN_ENDPOINTS;
|
|
233
|
+
/**
|
|
234
|
+
* Type-safe global user ban endpoint keys
|
|
235
|
+
*/
|
|
236
|
+
export type UserBanEndpointKey = keyof typeof USER_BAN_ENDPOINTS;
|
|
216
237
|
/**
|
|
217
238
|
* API Key Management Endpoints (v5.6.0+)
|
|
218
239
|
*
|
|
@@ -243,72 +264,87 @@ export declare const API_KEY_ENDPOINTS: {
|
|
|
243
264
|
*/
|
|
244
265
|
export type ApiKeyEndpointKey = keyof typeof API_KEY_ENDPOINTS;
|
|
245
266
|
/**
|
|
246
|
-
* Moderator Invite Endpoints (v5.7.0+)
|
|
267
|
+
* Moderator Invite Endpoints (v5.7.0+, flattened in v6.0.0+)
|
|
247
268
|
*
|
|
248
|
-
* Base path: /v1/
|
|
249
|
-
*
|
|
269
|
+
* Base path: /v1/moderator-invites
|
|
270
|
+
* Controllers: ModeratorInvitesController, ModeratedTokensController
|
|
250
271
|
*
|
|
251
272
|
* Magic link-based moderator delegation for stream management.
|
|
252
273
|
* Token owners create invites, share links, moderators claim access.
|
|
274
|
+
* Flattened API routes for cleaner REST structure.
|
|
253
275
|
*
|
|
254
276
|
* @since 5.7.0
|
|
277
|
+
* @since 6.0.0 - Flattened routes: /v1/moderators → /v1/moderator-invites and /v1/moderated-tokens
|
|
255
278
|
*/
|
|
256
279
|
export declare const MODERATOR_ENDPOINTS: {
|
|
257
|
-
/** POST /v1/
|
|
258
|
-
readonly CREATE_INVITE: "/v1/
|
|
259
|
-
/** POST /v1/
|
|
260
|
-
readonly CLAIM_INVITE: "/v1/
|
|
261
|
-
/** GET /v1/
|
|
262
|
-
readonly GET_MODERATED_TOKENS: "/v1/
|
|
263
|
-
/** GET /v1/
|
|
264
|
-
readonly LIST_INVITES: "/v1/
|
|
265
|
-
/** DELETE /v1/
|
|
266
|
-
readonly REVOKE_INVITE: "/v1/
|
|
267
|
-
/** PATCH /v1/
|
|
268
|
-
readonly UPDATE_INVITE_ROLE: "/v1/
|
|
269
|
-
/**
|
|
270
|
-
readonly
|
|
280
|
+
/** POST /v1/moderator-invites - Create a moderator invite (JWT owner) */
|
|
281
|
+
readonly CREATE_INVITE: "/v1/moderator-invites";
|
|
282
|
+
/** POST /v1/moderator-invites/claim - Claim an invite (JWT) */
|
|
283
|
+
readonly CLAIM_INVITE: "/v1/moderator-invites/claim";
|
|
284
|
+
/** GET /v1/moderated-tokens - Get tokens user moderates (JWT) */
|
|
285
|
+
readonly GET_MODERATED_TOKENS: "/v1/moderated-tokens";
|
|
286
|
+
/** GET /v1/moderator-invites - List invites for a token (JWT owner) */
|
|
287
|
+
readonly LIST_INVITES: "/v1/moderator-invites";
|
|
288
|
+
/** DELETE /v1/moderator-invites/:id - Revoke an invite (JWT owner) */
|
|
289
|
+
readonly REVOKE_INVITE: "/v1/moderator-invites/:id";
|
|
290
|
+
/** PATCH /v1/moderator-invites/:id/role - Update invite role (JWT owner) */
|
|
291
|
+
readonly UPDATE_INVITE_ROLE: "/v1/moderator-invites/:id/role";
|
|
292
|
+
/** PATCH /v1/moderator-invites/:id - Update invite role and/or description (JWT owner) */
|
|
293
|
+
readonly UPDATE_INVITE: "/v1/moderator-invites/:id";
|
|
294
|
+
/** GET /v1/moderator-invites/code/:code - Get invite by code (Public) */
|
|
295
|
+
readonly GET_INVITE_BY_CODE: "/v1/moderator-invites/code/:code";
|
|
271
296
|
};
|
|
272
297
|
/**
|
|
273
298
|
* Type-safe moderator endpoint keys
|
|
274
299
|
*/
|
|
275
300
|
export type ModeratorEndpointKey = keyof typeof MODERATOR_ENDPOINTS;
|
|
276
301
|
/**
|
|
277
|
-
* Content Flag/Report Endpoints (v5.8.0
|
|
302
|
+
* Unified Content Flag/Report Endpoints (v5.8.0+, consolidated in v6.1.0, flattened in v6.2.0)
|
|
303
|
+
*
|
|
304
|
+
* Unified endpoint for all flag operations (formerly split across token-scoped and global).
|
|
278
305
|
*
|
|
279
|
-
*
|
|
280
|
-
*
|
|
306
|
+
* Authorization model:
|
|
307
|
+
* - Overseers/Admins: Can list ALL flags without tokenName filter
|
|
308
|
+
* - Token Owners/Moderators: Can list flags for specific tokens (tokenName required in query)
|
|
309
|
+
* - Anyone: Can create flags (tokenName provided in request body)
|
|
281
310
|
*
|
|
282
311
|
* Two-tier flag system:
|
|
283
312
|
* - Chat/Comment: One-click flag (reason optional) - Owner/Moderator review
|
|
284
313
|
* - Stream: Modal required (reason required) - Admin API key only
|
|
285
314
|
*
|
|
286
315
|
* @since 5.8.0
|
|
316
|
+
* @since 6.1.0 - Consolidated token-scoped and global endpoints into single /v1/flags
|
|
317
|
+
* @since 6.2.0 - Flattened to /v1/content-flags with tokenName in body/query
|
|
287
318
|
*/
|
|
288
319
|
export declare const FLAG_ENDPOINTS: {
|
|
289
|
-
/** POST /v1/flags - Create a flag/report (JWT) */
|
|
290
|
-
readonly CREATE: "/v1/flags";
|
|
291
|
-
/** GET /v1/flags
|
|
292
|
-
readonly
|
|
293
|
-
/**
|
|
294
|
-
readonly
|
|
295
|
-
/** POST /v1/flags/:id/
|
|
296
|
-
readonly
|
|
297
|
-
/** POST /v1/flags/:id/action - Take action on flag (Admin API key OR JWT owner/mod) */
|
|
298
|
-
readonly ACTION: "/v1/flags/:id/action";
|
|
320
|
+
/** POST /v1/content-flags - Create a flag/report (JWT - any user, tokenName in body) */
|
|
321
|
+
readonly CREATE: "/v1/content-flags";
|
|
322
|
+
/** GET /v1/content-flags - List flags (Overseer sees all; non-overseer must provide tokenName query param) */
|
|
323
|
+
readonly LIST: "/v1/content-flags";
|
|
324
|
+
/** POST /v1/content-flags/:id/dismiss - Dismiss a flag (Admin OR Overseer OR Token Owner/Moderator) */
|
|
325
|
+
readonly DISMISS: "/v1/content-flags/:id/dismiss";
|
|
326
|
+
/** POST /v1/content-flags/:id/action - Take action on flag (Admin OR Overseer OR Token Owner/Moderator) */
|
|
327
|
+
readonly ACTION: "/v1/content-flags/:id/action";
|
|
299
328
|
};
|
|
300
329
|
/**
|
|
301
330
|
* Type-safe flag endpoint keys
|
|
302
331
|
*/
|
|
303
332
|
export type FlagEndpointKey = keyof typeof FLAG_ENDPOINTS;
|
|
304
333
|
/**
|
|
305
|
-
* Overseer Endpoints (v5.9.0+)
|
|
334
|
+
* Overseer Endpoints (v5.9.0+, flattened in v6.0.0+)
|
|
335
|
+
*
|
|
336
|
+
* Base paths:
|
|
337
|
+
* - /v1/overseer-invites - Invite management
|
|
338
|
+
* - /v1/overseers - Overseer management
|
|
339
|
+
* - /v1/overseer-summary - Platform summary
|
|
340
|
+
* - /v1/users - User list (merged from /v1/overseer/users)
|
|
341
|
+
* - /v1/users/:address/summary - User admin summary (merged from /v1/overseer/users/:address)
|
|
306
342
|
*
|
|
307
|
-
*
|
|
308
|
-
* Controller: OverseerController
|
|
343
|
+
* Controllers: OverseerInvitesController, OverseerController, OverseerSummaryController, UserController
|
|
309
344
|
*
|
|
310
345
|
* Global platform oversight for Gala employees with MANAGER-level access to ALL tokens.
|
|
311
346
|
* Unlike moderators (token-scoped), overseers have platform-wide access.
|
|
347
|
+
* Flattened API routes for cleaner REST structure.
|
|
312
348
|
*
|
|
313
349
|
* Authorization:
|
|
314
350
|
* - Invite management: Admin API key OR existing Overseer (JWT)
|
|
@@ -317,30 +353,53 @@ export type FlagEndpointKey = keyof typeof FLAG_ENDPOINTS;
|
|
|
317
353
|
* - Check own status: Any authenticated user (JWT)
|
|
318
354
|
*
|
|
319
355
|
* @since 5.9.0
|
|
356
|
+
* @since 6.0.0 - Flattened routes: /v1/overseer → /v1/overseer-invites, /v1/overseers, /v1/overseer-summary, /v1/users
|
|
320
357
|
*/
|
|
321
358
|
export declare const OVERSEER_ENDPOINTS: {
|
|
322
|
-
/** POST /v1/overseer
|
|
323
|
-
readonly CREATE_INVITE: "/v1/overseer
|
|
324
|
-
/** GET /v1/overseer
|
|
325
|
-
readonly LIST_INVITES: "/v1/overseer
|
|
326
|
-
/** GET /v1/overseer
|
|
327
|
-
readonly GET_INVITE_BY_CODE: "/v1/overseer
|
|
328
|
-
/** POST /v1/overseer
|
|
329
|
-
readonly CLAIM_INVITE: "/v1/overseer
|
|
330
|
-
/** DELETE /v1/overseer
|
|
331
|
-
readonly REVOKE_INVITE: "/v1/overseer
|
|
332
|
-
/** GET /v1/
|
|
333
|
-
readonly LIST_OVERSEERS: "/v1/
|
|
334
|
-
/**
|
|
335
|
-
readonly
|
|
336
|
-
/**
|
|
337
|
-
readonly
|
|
338
|
-
/** GET /v1/
|
|
339
|
-
readonly
|
|
340
|
-
/** GET /v1/overseer
|
|
341
|
-
readonly
|
|
342
|
-
/** GET /v1/overseer/
|
|
343
|
-
readonly
|
|
359
|
+
/** POST /v1/overseer-invites - Create an overseer invite (Admin OR Overseer) */
|
|
360
|
+
readonly CREATE_INVITE: "/v1/overseer-invites";
|
|
361
|
+
/** GET /v1/overseer-invites - List overseer invites (Admin OR Overseer) */
|
|
362
|
+
readonly LIST_INVITES: "/v1/overseer-invites";
|
|
363
|
+
/** GET /v1/overseer-invites/code/:code - Get invite by code (Public) */
|
|
364
|
+
readonly GET_INVITE_BY_CODE: "/v1/overseer-invites/code/:code";
|
|
365
|
+
/** POST /v1/overseer-invites/claim - Claim an invite (JWT) */
|
|
366
|
+
readonly CLAIM_INVITE: "/v1/overseer-invites/claim";
|
|
367
|
+
/** DELETE /v1/overseer-invites/:id - Revoke an invite (Admin OR Overseer) */
|
|
368
|
+
readonly REVOKE_INVITE: "/v1/overseer-invites/:id";
|
|
369
|
+
/** GET /v1/overseers - List all overseers (Admin OR Overseer) */
|
|
370
|
+
readonly LIST_OVERSEERS: "/v1/overseers";
|
|
371
|
+
/** POST /v1/overseers - Create overseer directly (Admin OR Overseer) */
|
|
372
|
+
readonly CREATE_OVERSEER_DIRECT: "/v1/overseers";
|
|
373
|
+
/** DELETE /v1/overseers/:address - Revoke an overseer (Admin OR Overseer) */
|
|
374
|
+
readonly REVOKE_OVERSEER: "/v1/overseers/:address";
|
|
375
|
+
/** GET /v1/overseers/me - Check own overseer status (JWT) */
|
|
376
|
+
readonly GET_MY_STATUS: "/v1/overseers/me";
|
|
377
|
+
/** GET /v1/overseer-summary - Get platform summary (Admin OR Overseer) */
|
|
378
|
+
readonly GET_SUMMARY: "/v1/overseer-summary";
|
|
379
|
+
/** GET /v1/overseer-summary/bans - Get ban stats (Admin OR Overseer) */
|
|
380
|
+
readonly GET_BAN_STATS: "/v1/overseer-summary/bans";
|
|
381
|
+
/** GET /v1/overseer-summary/token-bans - Get token ban stats (Admin OR Overseer) */
|
|
382
|
+
readonly GET_TOKEN_BAN_STATS: "/v1/overseer-summary/token-bans";
|
|
383
|
+
/** GET /v1/overseer-summary/invites - Get invite stats (Admin OR Overseer) */
|
|
384
|
+
readonly GET_INVITE_STATS: "/v1/overseer-summary/invites";
|
|
385
|
+
/** GET /v1/overseer-summary/flags - Get flag stats (Admin OR Overseer) */
|
|
386
|
+
readonly GET_FLAG_STATS: "/v1/overseer-summary/flags";
|
|
387
|
+
/** GET /v1/overseer-summary/users - Get user stats (Admin OR Overseer) */
|
|
388
|
+
readonly GET_USER_STATS: "/v1/overseer-summary/users";
|
|
389
|
+
/** GET /v1/users - List users with activity metrics (Admin OR Overseer) */
|
|
390
|
+
readonly LIST_USERS: "/v1/users";
|
|
391
|
+
/** GET /v1/users/:address/summary - Get user profile and summary (Admin OR Overseer) */
|
|
392
|
+
readonly GET_USER_SUMMARY: "/v1/users/:address/summary";
|
|
393
|
+
/** DELETE /v1/cache/flush/address/:address - Flush cache by address (Admin OR Overseer) */
|
|
394
|
+
readonly FLUSH_CACHE_BY_ADDRESS: "/v1/cache/flush/address/:address";
|
|
395
|
+
/** DELETE /v1/cache/flush/token/:tokenName - Flush cache by token (Admin OR Overseer) */
|
|
396
|
+
readonly FLUSH_CACHE_BY_TOKEN: "/v1/cache/flush/token/:tokenName";
|
|
397
|
+
/** DELETE /v1/cache/flush/all - Flush all cache (Admin OR Overseer, requires confirm=true) */
|
|
398
|
+
readonly FLUSH_ALL_CACHE: "/v1/cache/flush/all";
|
|
399
|
+
/** DELETE /v1/cache/flush/wallet-aliases/:address - Flush wallet-alias cache for one address (Admin OR Overseer) */
|
|
400
|
+
readonly FLUSH_WALLET_ALIAS_BY_ADDRESS: "/v1/cache/flush/wallet-aliases/:address";
|
|
401
|
+
/** DELETE /v1/cache/flush/wallet-aliases - Flush all wallet-alias cache entries (Admin OR Overseer, requires confirm=true) */
|
|
402
|
+
readonly FLUSH_WALLET_ALIASES: "/v1/cache/flush/wallet-aliases";
|
|
344
403
|
};
|
|
345
404
|
/**
|
|
346
405
|
* Type-safe overseer endpoint keys
|
|
@@ -349,7 +408,7 @@ export type OverseerEndpointKey = keyof typeof OVERSEER_ENDPOINTS;
|
|
|
349
408
|
/**
|
|
350
409
|
* Token Ban Endpoints (v6.x.0+)
|
|
351
410
|
*
|
|
352
|
-
* Base path: /v1/
|
|
411
|
+
* Base path: /v1/token-bans
|
|
353
412
|
* Controller: TokenBanController
|
|
354
413
|
*
|
|
355
414
|
* Platform-wide token banning for overseers. Banned tokens are hidden from ALL
|
|
@@ -361,58 +420,38 @@ export type OverseerEndpointKey = keyof typeof OVERSEER_ENDPOINTS;
|
|
|
361
420
|
* @since 6.x.0
|
|
362
421
|
*/
|
|
363
422
|
export declare const TOKEN_BAN_ENDPOINTS: {
|
|
364
|
-
/** POST /v1/
|
|
365
|
-
readonly CREATE_BAN: "/v1/
|
|
366
|
-
/** GET /v1/
|
|
367
|
-
readonly LIST_BANS: "/v1/
|
|
368
|
-
/** GET /v1/
|
|
369
|
-
readonly GET_BAN: "/v1/
|
|
370
|
-
/** DELETE /v1/
|
|
371
|
-
readonly REMOVE_BAN: "/v1/
|
|
423
|
+
/** POST /v1/token-bans - Ban a token (Admin OR Overseer) */
|
|
424
|
+
readonly CREATE_BAN: "/v1/token-bans";
|
|
425
|
+
/** GET /v1/token-bans - List all token bans (Admin OR Overseer) */
|
|
426
|
+
readonly LIST_BANS: "/v1/token-bans";
|
|
427
|
+
/** GET /v1/token-bans/:tokenName - Get ban details (Admin OR Overseer) */
|
|
428
|
+
readonly GET_BAN: "/v1/token-bans/:tokenName";
|
|
429
|
+
/** DELETE /v1/token-bans/:tokenName - Remove token ban (Admin OR Overseer) */
|
|
430
|
+
readonly REMOVE_BAN: "/v1/token-bans/:tokenName";
|
|
372
431
|
};
|
|
373
432
|
/**
|
|
374
433
|
* Type-safe token ban endpoint keys
|
|
375
434
|
*/
|
|
376
435
|
export type TokenBanEndpointKey = keyof typeof TOKEN_BAN_ENDPOINTS;
|
|
377
436
|
/**
|
|
378
|
-
*
|
|
437
|
+
* Content Reaction Endpoints (v5.12.0+, deprecated)
|
|
379
438
|
*
|
|
380
|
-
* Base path: /
|
|
381
|
-
* Controller: CommentsController
|
|
382
|
-
*
|
|
383
|
-
* Pool comments - identified by tokenName.
|
|
384
|
-
* Creating and deleting requires JWT authentication.
|
|
385
|
-
*
|
|
386
|
-
* @since 5.9.0
|
|
387
|
-
*/
|
|
388
|
-
export declare const COMMENT_ENDPOINTS: {
|
|
389
|
-
/** GET /token/comment - Fetch paginated comments (Public) */
|
|
390
|
-
readonly GET_COMMENTS: "/token/comment";
|
|
391
|
-
/** POST /token/comment - Post a new comment (JWT) */
|
|
392
|
-
readonly POST_COMMENT: "/token/comment";
|
|
393
|
-
/** DELETE /token/comment/:commentId - Delete own comment (JWT) */
|
|
394
|
-
readonly DELETE_COMMENT: "/token/comment/:commentId";
|
|
395
|
-
};
|
|
396
|
-
/**
|
|
397
|
-
* Type-safe comment endpoint keys
|
|
398
|
-
*/
|
|
399
|
-
export type CommentEndpointKey = keyof typeof COMMENT_ENDPOINTS;
|
|
400
|
-
/**
|
|
401
|
-
* Content Reaction Endpoints (v5.12.0+)
|
|
402
|
-
*
|
|
403
|
-
* Base path: /reactions
|
|
439
|
+
* Base path: /reactions (legacy)
|
|
404
440
|
* Controller: ContentReactionsController
|
|
405
441
|
*
|
|
406
442
|
* Persistent reactions on pool messages (chat and comments).
|
|
407
443
|
* Unlike stream reactions (ephemeral emoji bursts), content reactions
|
|
408
444
|
* are stored and displayed as counts/previews on messages.
|
|
409
445
|
*
|
|
446
|
+
* Deprecated: Use TOKEN_REACTION_ENDPOINTS instead
|
|
447
|
+
*
|
|
410
448
|
* @since 5.12.0
|
|
449
|
+
* @deprecated Use TOKEN_REACTION_ENDPOINTS
|
|
411
450
|
*/
|
|
412
451
|
export declare const REACTION_ENDPOINTS: {
|
|
413
|
-
/**
|
|
452
|
+
/** Deprecated: Use TOKEN_REACTION_ENDPOINTS.ADD_REACTION instead */
|
|
414
453
|
readonly ADD_REACTION: "/reactions";
|
|
415
|
-
/**
|
|
454
|
+
/** Deprecated: Use TOKEN_REACTION_ENDPOINTS.REMOVE_REACTION instead */
|
|
416
455
|
readonly REMOVE_REACTION: "/reactions/:messageId/:reactionType";
|
|
417
456
|
};
|
|
418
457
|
/**
|
|
@@ -420,25 +459,31 @@ export declare const REACTION_ENDPOINTS: {
|
|
|
420
459
|
*/
|
|
421
460
|
export type ReactionEndpointKey = keyof typeof REACTION_ENDPOINTS;
|
|
422
461
|
/**
|
|
423
|
-
*
|
|
462
|
+
* Token-Agnostic Content Reaction Endpoints (v6.x.0+, migrated to /v1/reactions in v9.x.0+)
|
|
463
|
+
*
|
|
464
|
+
* Base path: /v1/reactions
|
|
465
|
+
* Controller: ContentReactionsController
|
|
466
|
+
*
|
|
467
|
+
* Persistent reactions on messages (chat and comments).
|
|
468
|
+
* Unlike stream reactions (ephemeral emoji bursts), content reactions
|
|
469
|
+
* are stored and displayed as counts/previews on messages.
|
|
424
470
|
*
|
|
425
|
-
*
|
|
426
|
-
*
|
|
471
|
+
* Token context is resolved from the messageId on the backend,
|
|
472
|
+
* so tokenName is optional in request bodies.
|
|
427
473
|
*
|
|
428
|
-
* @since 6.
|
|
474
|
+
* @since 6.x.0
|
|
475
|
+
* @since 9.x.0 - Migrated from /v1/tokens/:tokenName/reactions to /v1/reactions
|
|
429
476
|
*/
|
|
430
|
-
export declare const
|
|
431
|
-
/**
|
|
432
|
-
readonly
|
|
433
|
-
/**
|
|
434
|
-
readonly
|
|
435
|
-
/** GET /v1/trades - Fetch trades with tokenName/userAddress filters (Public) */
|
|
436
|
-
readonly GET_TRADES: "/v1/trades";
|
|
477
|
+
export declare const TOKEN_REACTION_ENDPOINTS: {
|
|
478
|
+
/** POST /v1/reactions - Add a reaction (JWT or API key) */
|
|
479
|
+
readonly ADD_REACTION: "/v1/reactions";
|
|
480
|
+
/** DELETE /v1/reactions - Remove reaction (JWT or API key) */
|
|
481
|
+
readonly REMOVE_REACTION: "/v1/reactions";
|
|
437
482
|
};
|
|
438
483
|
/**
|
|
439
|
-
* Type-safe
|
|
484
|
+
* Type-safe token reaction endpoint keys
|
|
440
485
|
*/
|
|
441
|
-
export type
|
|
486
|
+
export type TokenReactionEndpointKey = keyof typeof TOKEN_REACTION_ENDPOINTS;
|
|
442
487
|
/**
|
|
443
488
|
* Trades Query Endpoints (v6.2.0+)
|
|
444
489
|
*
|
|
@@ -456,59 +501,276 @@ export declare const TRADES_QUERY_ENDPOINTS: {
|
|
|
456
501
|
*/
|
|
457
502
|
export type TradesQueryEndpointKey = keyof typeof TRADES_QUERY_ENDPOINTS;
|
|
458
503
|
/**
|
|
459
|
-
*
|
|
504
|
+
* Unified Messages Endpoints (v7.0.0+)
|
|
505
|
+
*
|
|
506
|
+
* Base path: /v1/messages
|
|
507
|
+
* Controller: MessagesController
|
|
508
|
+
*
|
|
509
|
+
* Unified endpoint for all message types (CHAT and COMMENT).
|
|
510
|
+
* Replaces the separate /v1/comments, /v1/chat-messages, and
|
|
511
|
+
* /v1/tokens/:tokenName/messages endpoints.
|
|
512
|
+
*
|
|
513
|
+
* Query parameters:
|
|
514
|
+
* - type: 'CHAT' | 'COMMENT' - Filter by message type
|
|
515
|
+
* - tokenName: string - Filter by token
|
|
516
|
+
* - userAddress: string - Filter by user
|
|
517
|
+
* - limit: number - Pagination limit
|
|
518
|
+
* - cursor: string - Pagination cursor
|
|
519
|
+
*
|
|
520
|
+
* @since 7.0.0
|
|
521
|
+
*/
|
|
522
|
+
export declare const MESSAGES_ENDPOINTS: {
|
|
523
|
+
/** GET /v1/messages - Query messages with type/tokenName/userAddress filters (Public) */
|
|
524
|
+
readonly GET_MESSAGES: "/v1/messages";
|
|
525
|
+
/** POST /v1/messages - Create a message (JWT) - type required in body */
|
|
526
|
+
readonly CREATE_MESSAGE: "/v1/messages";
|
|
527
|
+
/** PUT /v1/messages/:id - Update a message (JWT, author only) */
|
|
528
|
+
readonly UPDATE_MESSAGE: "/v1/messages/:id";
|
|
529
|
+
/** DELETE /v1/messages/:id - Delete a message (JWT or API key) */
|
|
530
|
+
readonly DELETE_MESSAGE: "/v1/messages/:id";
|
|
531
|
+
/** GET /v1/messages/pinned - Get pinned message for a token (Public) */
|
|
532
|
+
readonly GET_PINNED: "/v1/messages/pinned";
|
|
533
|
+
/** POST /v1/messages/:id/pin - Pin a message (Owner/Mod) */
|
|
534
|
+
readonly PIN_MESSAGE: "/v1/messages/:id/pin";
|
|
535
|
+
/** POST /v1/messages/:id/unpin - Unpin a message (Owner/Mod) */
|
|
536
|
+
readonly UNPIN_MESSAGE: "/v1/messages/:id/unpin";
|
|
537
|
+
/** GET /v1/messages/stats - Get platform-wide message statistics (Admin OR Overseer) */
|
|
538
|
+
readonly GET_MESSAGE_STATS: "/v1/messages/stats";
|
|
539
|
+
};
|
|
540
|
+
/**
|
|
541
|
+
* Type-safe messages endpoint keys
|
|
542
|
+
*/
|
|
543
|
+
export type MessagesEndpointKey = keyof typeof MESSAGES_ENDPOINTS;
|
|
544
|
+
/**
|
|
545
|
+
* Restricted Token Names Endpoints (v7.0.0+)
|
|
460
546
|
*
|
|
461
|
-
* Base path: /v1/
|
|
462
|
-
* Controller:
|
|
547
|
+
* Base path: /v1/restricted-token-names
|
|
548
|
+
* Controller: RestrictedNamesController
|
|
463
549
|
*
|
|
464
|
-
*
|
|
465
|
-
* -
|
|
466
|
-
*
|
|
467
|
-
* - PUT: Update own message (JWT required, author only)
|
|
468
|
-
* - DELETE: Delete message (JWT or API key, author or moderator)
|
|
550
|
+
* Simplified API for managing restricted token names.
|
|
551
|
+
* Stores a single newline-separated text blob of restricted words.
|
|
552
|
+
* Only overseers can view/manage these restrictions.
|
|
469
553
|
*
|
|
470
|
-
* @since
|
|
554
|
+
* @since 7.0.0 - Simplified from CRUD to GET/PUT
|
|
471
555
|
*/
|
|
472
|
-
export declare const
|
|
473
|
-
/** GET /v1/
|
|
474
|
-
readonly
|
|
475
|
-
/**
|
|
476
|
-
readonly
|
|
477
|
-
/** PUT /v1/chat-messages/:id - Update a chat message (JWT, author only) */
|
|
478
|
-
readonly UPDATE_MESSAGE: "/v1/chat-messages/:id";
|
|
479
|
-
/** DELETE /v1/chat-messages/:id - Delete a chat message (JWT or API key) */
|
|
480
|
-
readonly DELETE_MESSAGE: "/v1/chat-messages/:id";
|
|
556
|
+
export declare const RESTRICTED_NAMES_ENDPOINTS: {
|
|
557
|
+
/** GET /v1/restricted-token-names - Get restricted names content (Overseer only) */
|
|
558
|
+
readonly GET: "/v1/restricted-token-names";
|
|
559
|
+
/** PUT /v1/restricted-token-names - Update restricted names content (Overseer only) */
|
|
560
|
+
readonly UPDATE: "/v1/restricted-token-names";
|
|
481
561
|
};
|
|
482
562
|
/**
|
|
483
|
-
* Type-safe
|
|
563
|
+
* Type-safe restricted names endpoint keys
|
|
484
564
|
*/
|
|
485
|
-
export type
|
|
565
|
+
export type RestrictedNamesEndpointKey = keyof typeof RESTRICTED_NAMES_ENDPOINTS;
|
|
486
566
|
/**
|
|
487
|
-
*
|
|
567
|
+
* Token-Scoped Trades Endpoints (v6.x.0+)
|
|
488
568
|
*
|
|
489
|
-
* Base path: /v1/
|
|
490
|
-
* Controller:
|
|
569
|
+
* Base path: /v1/tokens/:tokenName/trades
|
|
570
|
+
* Controller: TokenTradesController
|
|
491
571
|
*
|
|
492
|
-
*
|
|
493
|
-
* -
|
|
494
|
-
* - POST: Create a new comment (JWT required)
|
|
495
|
-
* - PUT: Update own comment (JWT required, author only)
|
|
496
|
-
* - DELETE: Delete comment (JWT or API key, author/moderator/overseer)
|
|
572
|
+
* Fetch trades for a specific token.
|
|
573
|
+
* Public - no authentication required.
|
|
497
574
|
*
|
|
498
|
-
* @since 6.
|
|
575
|
+
* @since 6.x.0
|
|
576
|
+
*/
|
|
577
|
+
export declare const TOKEN_TRADES_ENDPOINTS: {
|
|
578
|
+
/** GET /v1/tokens/:tokenName/trades - Get trades for token (Public) */
|
|
579
|
+
readonly GET_TRADES: "/v1/tokens/:tokenName/trades";
|
|
580
|
+
};
|
|
581
|
+
/**
|
|
582
|
+
* Type-safe token trades endpoint keys
|
|
583
|
+
*/
|
|
584
|
+
export type TokenTradesEndpointKey = keyof typeof TOKEN_TRADES_ENDPOINTS;
|
|
585
|
+
/**
|
|
586
|
+
* Global Trades Query Endpoints (v6.x.0+)
|
|
587
|
+
*
|
|
588
|
+
* Base path: /v1/trades
|
|
589
|
+
* Controller: TradesController
|
|
590
|
+
*
|
|
591
|
+
* Query trades across all tokens with optional filtering by tokenName or userAddress.
|
|
592
|
+
* Public - no authentication required.
|
|
593
|
+
*
|
|
594
|
+
* @since 6.x.0
|
|
595
|
+
*/
|
|
596
|
+
export declare const GLOBAL_TRADES_ENDPOINTS: {
|
|
597
|
+
/** GET /v1/trades - Query trades globally (Public) */
|
|
598
|
+
readonly GET_TRADES: "/v1/trades";
|
|
599
|
+
};
|
|
600
|
+
/**
|
|
601
|
+
* Type-safe global trades endpoint keys
|
|
602
|
+
*/
|
|
603
|
+
export type GlobalTradesEndpointKey = keyof typeof GLOBAL_TRADES_ENDPOINTS;
|
|
604
|
+
/**
|
|
605
|
+
* Webhook Endpoints (v6.x.0+)
|
|
606
|
+
*
|
|
607
|
+
* Base paths:
|
|
608
|
+
* - /v1/webhooks - Production webhooks
|
|
609
|
+
* - /v1/dev/webhooks - Development/testing webhooks
|
|
610
|
+
*
|
|
611
|
+
* External integrations (Mux, etc.) and developer testing.
|
|
612
|
+
*
|
|
613
|
+
* @since 6.x.0
|
|
614
|
+
*/
|
|
615
|
+
export declare const WEBHOOK_ENDPOINTS: {
|
|
616
|
+
/** POST /v1/webhooks/mux - Mux streaming webhook (Public) */
|
|
617
|
+
readonly MUX_WEBHOOK: "/v1/webhooks/mux";
|
|
618
|
+
/** POST /v1/dev/webhooks/simulate - Simulate webhook for testing (JWT) */
|
|
619
|
+
readonly SIMULATE_WEBHOOK: "/v1/dev/webhooks/simulate";
|
|
620
|
+
};
|
|
621
|
+
/**
|
|
622
|
+
* Type-safe webhook endpoint keys
|
|
623
|
+
*/
|
|
624
|
+
export type WebhookEndpointKey = keyof typeof WEBHOOK_ENDPOINTS;
|
|
625
|
+
/**
|
|
626
|
+
* Chat Status Endpoints (v7.0.0+)
|
|
627
|
+
*
|
|
628
|
+
* Chat status operations for enabling/disabling chat on streams.
|
|
629
|
+
* These are separate from message CRUD (which uses MESSAGES_ENDPOINTS).
|
|
630
|
+
*
|
|
631
|
+
* Per-token endpoints: /live/:tokenName/chat
|
|
632
|
+
* Global endpoints: /live/chat
|
|
633
|
+
*
|
|
634
|
+
* @since 7.0.0
|
|
635
|
+
*/
|
|
636
|
+
export declare const CHAT_STATUS_ENDPOINTS: {
|
|
637
|
+
/** GET /live/:tokenName/chat - Get chat status (Public) */
|
|
638
|
+
readonly GET_STATUS: "/live/:tokenName/chat";
|
|
639
|
+
/** POST /live/:tokenName/chat - Enable chat (Admin or Owner) */
|
|
640
|
+
readonly ENABLE: "/live/:tokenName/chat";
|
|
641
|
+
/** POST /live/:tokenName/chat - Disable chat (Admin or Owner) */
|
|
642
|
+
readonly DISABLE: "/live/:tokenName/chat";
|
|
643
|
+
/** GET /live/chat - Get global chat status (Public) */
|
|
644
|
+
readonly GET_GLOBAL_STATUS: "/live/chat";
|
|
645
|
+
/** POST /live/chat - Enable global chat (Admin) */
|
|
646
|
+
readonly ENABLE_GLOBAL: "/live/chat";
|
|
647
|
+
/** POST /live/chat - Disable global chat (Admin) */
|
|
648
|
+
readonly DISABLE_GLOBAL: "/live/chat";
|
|
649
|
+
/** PATCH /live/:tokenName/chat/slow-mode - Set slow mode interval (Mod/Manager/Owner) */
|
|
650
|
+
readonly SLOW_MODE: "/live/:tokenName/chat/slow-mode";
|
|
651
|
+
/** GET /live/:tokenName/engagement-stats - Get engagement stats (Public) */
|
|
652
|
+
readonly GET_ENGAGEMENT_STATS: "/live/:tokenName/engagement-stats";
|
|
653
|
+
};
|
|
654
|
+
/**
|
|
655
|
+
* Type-safe chat status endpoint keys
|
|
656
|
+
*/
|
|
657
|
+
export type ChatStatusEndpointKey = keyof typeof CHAT_STATUS_ENDPOINTS;
|
|
658
|
+
/**
|
|
659
|
+
* Events Ingress Endpoints (v8.2.0+)
|
|
660
|
+
*
|
|
661
|
+
* Base path: /v1/events
|
|
662
|
+
* Controller: EventsController
|
|
663
|
+
*
|
|
664
|
+
* SDK-side event batching for tracking user activities, transactions, and interactions.
|
|
665
|
+
* Events are buffered client-side and submitted in batches to reduce network overhead.
|
|
666
|
+
*
|
|
667
|
+
* @since 8.2.0
|
|
668
|
+
*/
|
|
669
|
+
export declare const EVENTS_ENDPOINTS: {
|
|
670
|
+
/** POST /v1/events - Submit batch of events (Public, SDK batching) */
|
|
671
|
+
readonly SUBMIT: "/v1/events";
|
|
672
|
+
/** GET /v1/events - Query historical events (Overseer only) */
|
|
673
|
+
readonly QUERY: "/v1/events";
|
|
674
|
+
};
|
|
675
|
+
/**
|
|
676
|
+
* Type-safe events endpoint keys
|
|
677
|
+
*/
|
|
678
|
+
export type EventsEndpointKey = keyof typeof EVENTS_ENDPOINTS;
|
|
679
|
+
/**
|
|
680
|
+
* AI Moderation Endpoints (v6.15.0+)
|
|
681
|
+
*
|
|
682
|
+
* Base path: /v1/ai-moderation
|
|
683
|
+
* Controller: AIModerationController
|
|
684
|
+
*
|
|
685
|
+
* Manages AI-powered content moderation with tiered scanning
|
|
686
|
+
* for cost optimization. Quick scans for initial assessment, detailed
|
|
687
|
+
* scans for content requiring closer review.
|
|
688
|
+
*
|
|
689
|
+
* Authorization: Admin API key OR authenticated Overseer (JWT)
|
|
690
|
+
*
|
|
691
|
+
* @since 6.15.0
|
|
692
|
+
*/
|
|
693
|
+
export declare const AI_MODERATION_ENDPOINTS: {
|
|
694
|
+
/** GET /v1/ai-moderation/settings - Get AI moderation settings */
|
|
695
|
+
readonly GET_SETTINGS: "/v1/ai-moderation/settings";
|
|
696
|
+
/** POST /v1/ai-moderation/settings - Update AI moderation settings */
|
|
697
|
+
readonly UPDATE_SETTINGS: "/v1/ai-moderation/settings";
|
|
698
|
+
/** GET /v1/ai-moderation/flags/:flagId - Get AI moderation for a flag */
|
|
699
|
+
readonly GET_MODERATION: "/v1/ai-moderation/flags/:flagId";
|
|
700
|
+
/** POST /v1/ai-moderation/flags/:flagId/analyze - Trigger AI moderation for a flag */
|
|
701
|
+
readonly TRIGGER_MODERATION: "/v1/ai-moderation/flags/:flagId/analyze";
|
|
702
|
+
/** GET /v1/ai-moderation/status - Get AI system status */
|
|
703
|
+
readonly GET_STATUS: "/v1/ai-moderation/status";
|
|
704
|
+
};
|
|
705
|
+
/**
|
|
706
|
+
* Type-safe AI moderation endpoint keys
|
|
707
|
+
*/
|
|
708
|
+
export type AIModerationEndpointKey = keyof typeof AI_MODERATION_ENDPOINTS;
|
|
709
|
+
/**
|
|
710
|
+
* Platform Stats Endpoints (v9.0.0+)
|
|
711
|
+
*
|
|
712
|
+
* Base path: /v1/stats
|
|
713
|
+
* Controller: StatsController
|
|
714
|
+
*
|
|
715
|
+
* Platform-wide statistics including trading volume and token counts.
|
|
716
|
+
* Public endpoint - no authentication required.
|
|
717
|
+
*
|
|
718
|
+
* @since 9.0.0
|
|
719
|
+
*/
|
|
720
|
+
export declare const STATS_ENDPOINTS: {
|
|
721
|
+
/** GET /v1/stats - Get platform-wide statistics */
|
|
722
|
+
readonly GET_STATS: "/v1/stats";
|
|
723
|
+
};
|
|
724
|
+
/**
|
|
725
|
+
* Type-safe stats endpoint keys
|
|
726
|
+
*/
|
|
727
|
+
export type StatsEndpointKey = keyof typeof STATS_ENDPOINTS;
|
|
728
|
+
/**
|
|
729
|
+
* Trading Quotes Endpoints (v9.1.0+)
|
|
730
|
+
*
|
|
731
|
+
* Base path: /v1/trading
|
|
732
|
+
* Controller: TradingQuotesController
|
|
733
|
+
*
|
|
734
|
+
* Backend-proxied trading quote endpoints that use local bonding curve math
|
|
735
|
+
* and caching. Faster than direct GalaChain calls.
|
|
736
|
+
*
|
|
737
|
+
* All endpoints are @Public() — no authentication required.
|
|
738
|
+
*
|
|
739
|
+
* @since 9.1.0
|
|
740
|
+
*/
|
|
741
|
+
export declare const TRADING_QUOTE_ENDPOINTS: {
|
|
742
|
+
/** GET /v1/trading/fee - Fetch launchpad fee (cached 1 hour, Public) */
|
|
743
|
+
readonly GET_FEE: "/v1/trading/fee";
|
|
744
|
+
/** GET /v1/trading/sale-details?tokenName= - Fetch sale details (cached 10s, Public) */
|
|
745
|
+
readonly GET_SALE_DETAILS: "/v1/trading/sale-details";
|
|
746
|
+
/** GET /v1/trading/quote?tokenName=&amount=&type=&method= - Get trade quote (local math, no chain call, Public) */
|
|
747
|
+
readonly GET_QUOTE: "/v1/trading/quote";
|
|
748
|
+
/** GET /v1/trading/premint-quote?amount= - Get pre-mint quote (supply=0, no chain call, Public) */
|
|
749
|
+
readonly GET_PREMINT_QUOTE: "/v1/trading/premint-quote";
|
|
750
|
+
};
|
|
751
|
+
/**
|
|
752
|
+
* Type-safe trading quote endpoint keys
|
|
753
|
+
*/
|
|
754
|
+
export type TradingQuoteEndpointKey = keyof typeof TRADING_QUOTE_ENDPOINTS;
|
|
755
|
+
/**
|
|
756
|
+
* Weekly Challenge Endpoints (v9.0.0+)
|
|
757
|
+
*
|
|
758
|
+
* Base path: /weekly-challenge
|
|
759
|
+
* Controller: WeeklyChallengeController
|
|
760
|
+
*
|
|
761
|
+
* Weekly challenge leaderboard tracking token market cap increases.
|
|
762
|
+
* Public endpoint - no authentication required.
|
|
763
|
+
*
|
|
764
|
+
* @since 9.0.0
|
|
499
765
|
*/
|
|
500
|
-
export declare const
|
|
501
|
-
/** GET /
|
|
502
|
-
readonly
|
|
503
|
-
/**
|
|
504
|
-
readonly
|
|
505
|
-
/** PUT /v1/comments/:id - Update a comment (JWT, author only) */
|
|
506
|
-
readonly UPDATE_COMMENT: "/v1/comments/:id";
|
|
507
|
-
/** DELETE /v1/comments/:id - Delete a comment (JWT or API key) */
|
|
508
|
-
readonly DELETE_COMMENT: "/v1/comments/:id";
|
|
766
|
+
export declare const WEEKLY_CHALLENGE_ENDPOINTS: {
|
|
767
|
+
/** GET /weekly-challenge - Get current weekly challenge leaderboard */
|
|
768
|
+
readonly GET_LEADERBOARD: "/weekly-challenge";
|
|
769
|
+
/** GET /weekly-challenge/history/:vaultAddress - Get token's weekly history */
|
|
770
|
+
readonly GET_TOKEN_HISTORY: "/weekly-challenge/history/:vaultAddress";
|
|
509
771
|
};
|
|
510
772
|
/**
|
|
511
|
-
* Type-safe
|
|
773
|
+
* Type-safe weekly challenge endpoint keys
|
|
512
774
|
*/
|
|
513
|
-
export type
|
|
775
|
+
export type WeeklyChallengeEndpointKey = keyof typeof WEEKLY_CHALLENGE_ENDPOINTS;
|
|
514
776
|
//# sourceMappingURL=endpoints.d.ts.map
|