@gala-chain/launchpad-sdk 5.0.4-beta.7 → 5.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1806) hide show
  1. package/CHANGELOG.md +82 -0
  2. package/EXAMPLES.md +99 -0
  3. package/README.md +354 -49
  4. package/README.md.bak +3174 -0
  5. package/dist/LaunchpadSDK.d.ts +10744 -0
  6. package/dist/LaunchpadSDK.d.ts.map +1 -0
  7. package/dist/ai-docs.json +5433 -1237
  8. package/dist/api/LaunchpadAPI.d.ts +930 -0
  9. package/dist/api/LaunchpadAPI.d.ts.map +1 -0
  10. package/dist/api/dto/BondingCurveDTOs.d.ts +145 -0
  11. package/dist/api/dto/BondingCurveDTOs.d.ts.map +1 -0
  12. package/dist/api/dto/BurnTokensDto.d.ts +89 -0
  13. package/dist/api/dto/BurnTokensDto.d.ts.map +1 -0
  14. package/dist/api/dto/LockTokenDto.d.ts +97 -0
  15. package/dist/api/dto/LockTokenDto.d.ts.map +1 -0
  16. package/dist/api/dto/TransferTokenDto.d.ts +76 -0
  17. package/dist/api/dto/TransferTokenDto.d.ts.map +1 -0
  18. package/dist/api/dto/UnlockTokenDto.d.ts +86 -0
  19. package/dist/api/dto/UnlockTokenDto.d.ts.map +1 -0
  20. package/dist/auth/JwtAuth.d.ts +183 -0
  21. package/dist/auth/JwtAuth.d.ts.map +1 -0
  22. package/dist/auth/SessionAuthService.d.ts +151 -0
  23. package/dist/auth/SessionAuthService.d.ts.map +1 -0
  24. package/dist/auth/SignatureAuth.d.ts +181 -0
  25. package/dist/auth/SignatureAuth.d.ts.map +1 -0
  26. package/dist/auth/storage.d.ts +66 -0
  27. package/dist/auth/storage.d.ts.map +1 -0
  28. package/dist/auth/types.d.ts +50 -0
  29. package/dist/auth/types.d.ts.map +1 -0
  30. package/dist/bridge/BridgeService.d.ts +484 -0
  31. package/dist/bridge/BridgeService.d.ts.map +1 -0
  32. package/dist/bridge/GalaConnectClient.d.ts +170 -0
  33. package/dist/bridge/GalaConnectClient.d.ts.map +1 -0
  34. package/dist/bridge/constants/index.d.ts +7 -0
  35. package/dist/bridge/constants/index.d.ts.map +1 -0
  36. package/dist/bridge/constants/tokens.d.ts +212 -0
  37. package/dist/bridge/constants/tokens.d.ts.map +1 -0
  38. package/dist/bridge/index.d.ts +24 -0
  39. package/dist/bridge/index.d.ts.map +1 -0
  40. package/dist/bridge/strategies/BridgeStrategy.d.ts +160 -0
  41. package/dist/bridge/strategies/BridgeStrategy.d.ts.map +1 -0
  42. package/dist/bridge/strategies/EthereumBridgeStrategy.d.ts +200 -0
  43. package/dist/bridge/strategies/EthereumBridgeStrategy.d.ts.map +1 -0
  44. package/dist/bridge/strategies/SolanaBridgeStrategy.d.ts +258 -0
  45. package/dist/bridge/strategies/SolanaBridgeStrategy.d.ts.map +1 -0
  46. package/dist/bridge/types/bridge.dto.d.ts +772 -0
  47. package/dist/bridge/types/bridge.dto.d.ts.map +1 -0
  48. package/dist/bridge/types/bridgeable-token.dto.d.ts +205 -0
  49. package/dist/bridge/types/bridgeable-token.dto.d.ts.map +1 -0
  50. package/dist/bridge/types/eip712.d.ts +66 -0
  51. package/dist/bridge/types/eip712.d.ts.map +1 -0
  52. package/dist/bridge/types/index.d.ts +8 -0
  53. package/dist/bridge/types/index.d.ts.map +1 -0
  54. package/dist/bridge/utils/RateLimiter.d.ts +34 -0
  55. package/dist/bridge/utils/RateLimiter.d.ts.map +1 -0
  56. package/dist/bridge/utils/address-formatter.d.ts +25 -0
  57. package/dist/bridge/utils/address-formatter.d.ts.map +1 -0
  58. package/dist/bridge/utils/addressValidation.d.ts +200 -0
  59. package/dist/bridge/utils/addressValidation.d.ts.map +1 -0
  60. package/dist/bridge/utils/balanceHelpers.d.ts +215 -0
  61. package/dist/bridge/utils/balanceHelpers.d.ts.map +1 -0
  62. package/dist/bridge/utils/bridgeErrors.d.ts +98 -0
  63. package/dist/bridge/utils/bridgeErrors.d.ts.map +1 -0
  64. package/dist/bridge/utils/bridgeOutHelpers.d.ts +68 -0
  65. package/dist/bridge/utils/bridgeOutHelpers.d.ts.map +1 -0
  66. package/dist/bridge/utils/bridgePayload.d.ts +98 -0
  67. package/dist/bridge/utils/bridgePayload.d.ts.map +1 -0
  68. package/dist/bridge/utils/bridgeStatusParser.d.ts +75 -0
  69. package/dist/bridge/utils/bridgeStatusParser.d.ts.map +1 -0
  70. package/dist/bridge/utils/eip712Helpers.d.ts +66 -0
  71. package/dist/bridge/utils/eip712Helpers.d.ts.map +1 -0
  72. package/dist/bridge/utils/index.d.ts +19 -0
  73. package/dist/bridge/utils/index.d.ts.map +1 -0
  74. package/dist/bridge/utils/retry.d.ts +112 -0
  75. package/dist/bridge/utils/retry.d.ts.map +1 -0
  76. package/dist/bridge/utils/strategyDelegation.d.ts +69 -0
  77. package/dist/bridge/utils/strategyDelegation.d.ts.map +1 -0
  78. package/dist/bridge/utils/tokenIdUtils.d.ts +86 -0
  79. package/dist/bridge/utils/tokenIdUtils.d.ts.map +1 -0
  80. package/dist/bridge/utils/tokenMath.d.ts +39 -0
  81. package/dist/bridge/utils/tokenMath.d.ts.map +1 -0
  82. package/dist/bridge/utils/tokenMetadataResolver.d.ts +97 -0
  83. package/dist/bridge/utils/tokenMetadataResolver.d.ts.map +1 -0
  84. package/dist/config/environments.d.ts +51 -0
  85. package/dist/config/environments.d.ts.map +1 -0
  86. package/dist/constants/bondingCurve.d.ts +102 -0
  87. package/dist/constants/bondingCurve.d.ts.map +1 -0
  88. package/dist/constants/config.d.ts +30 -0
  89. package/dist/constants/config.d.ts.map +1 -0
  90. package/dist/constants/decimals.d.ts +63 -0
  91. package/dist/constants/decimals.d.ts.map +1 -0
  92. package/dist/constants/endpoints.d.ts +820 -0
  93. package/dist/constants/endpoints.d.ts.map +1 -0
  94. package/dist/constants/enums.d.ts +65 -0
  95. package/dist/constants/enums.d.ts.map +1 -0
  96. package/dist/constants/error-messages.d.ts +61 -0
  97. package/dist/constants/error-messages.d.ts.map +1 -0
  98. package/dist/constants/events.d.ts +53 -0
  99. package/dist/constants/events.d.ts.map +1 -0
  100. package/dist/constants/jwt.d.ts +41 -0
  101. package/dist/constants/jwt.d.ts.map +1 -0
  102. package/dist/constants/nft-fees.d.ts +30 -0
  103. package/dist/constants/nft-fees.d.ts.map +1 -0
  104. package/dist/constants/pagination.d.ts +66 -0
  105. package/dist/constants/pagination.d.ts.map +1 -0
  106. package/dist/constants/query-fields.d.ts +51 -0
  107. package/dist/constants/query-fields.d.ts.map +1 -0
  108. package/dist/constants/sdk-defaults.d.ts +37 -0
  109. package/dist/constants/sdk-defaults.d.ts.map +1 -0
  110. package/dist/constants/version.d.ts +6 -0
  111. package/dist/constants/version.d.ts.map +1 -0
  112. package/dist/constants/version.generated.d.ts +7 -0
  113. package/dist/constants/version.generated.d.ts.map +1 -0
  114. package/dist/examples/admin/api-key-advanced.d.ts +43 -0
  115. package/dist/examples/admin/api-key-advanced.d.ts.map +1 -0
  116. package/dist/examples/admin/moderator-invite-complete.d.ts +41 -0
  117. package/dist/examples/admin/moderator-invite-complete.d.ts.map +1 -0
  118. package/dist/examples/admin/overseer-management-advanced.d.ts +38 -0
  119. package/dist/examples/admin/overseer-management-advanced.d.ts.map +1 -0
  120. package/dist/examples/admin/overseer-page-stats.d.ts +26 -0
  121. package/dist/examples/admin/overseer-page-stats.d.ts.map +1 -0
  122. package/dist/examples/admin/token-ban-complete.d.ts +44 -0
  123. package/dist/examples/admin/token-ban-complete.d.ts.map +1 -0
  124. package/dist/examples/ai-moderation/ai-moderation-demo.d.ts +32 -0
  125. package/dist/examples/ai-moderation/ai-moderation-demo.d.ts.map +1 -0
  126. package/dist/examples/ai-moderation/flag-ai-verdicts-demo.d.ts +30 -0
  127. package/dist/examples/ai-moderation/flag-ai-verdicts-demo.d.ts.map +1 -0
  128. package/dist/examples/analytics/index.d.ts +23 -0
  129. package/dist/examples/analytics/index.d.ts.map +1 -0
  130. package/dist/examples/analytics/market-analysis-tools.d.ts +28 -0
  131. package/dist/examples/analytics/market-analysis-tools.d.ts.map +1 -0
  132. package/dist/examples/analytics/portfolio-performance-tracking.d.ts +25 -0
  133. package/dist/examples/analytics/portfolio-performance-tracking.d.ts.map +1 -0
  134. package/dist/examples/analytics/trading-analytics-advanced.d.ts +27 -0
  135. package/dist/examples/analytics/trading-analytics-advanced.d.ts.map +1 -0
  136. package/dist/examples/api-keys/advanced-configuration.d.ts +19 -0
  137. package/dist/examples/api-keys/advanced-configuration.d.ts.map +1 -0
  138. package/dist/examples/api-keys/complete-lifecycle.d.ts +18 -0
  139. package/dist/examples/api-keys/complete-lifecycle.d.ts.map +1 -0
  140. package/dist/examples/api-keys/crud.d.ts +22 -0
  141. package/dist/examples/api-keys/crud.d.ts.map +1 -0
  142. package/dist/examples/api-keys/token-delegation.d.ts +24 -0
  143. package/dist/examples/api-keys/token-delegation.d.ts.map +1 -0
  144. package/dist/examples/api-keys/user-api-key-auth.d.ts +24 -0
  145. package/dist/examples/api-keys/user-api-key-auth.d.ts.map +1 -0
  146. package/dist/examples/auth/auth-permissions-checking.d.ts +32 -0
  147. package/dist/examples/auth/auth-permissions-checking.d.ts.map +1 -0
  148. package/dist/examples/auth/auth-token-management.d.ts +32 -0
  149. package/dist/examples/auth/auth-token-management.d.ts.map +1 -0
  150. package/dist/examples/auth/auth-validation-workflows.d.ts +32 -0
  151. package/dist/examples/auth/auth-validation-workflows.d.ts.map +1 -0
  152. package/dist/examples/bans/ban-management.d.ts +24 -0
  153. package/dist/examples/bans/ban-management.d.ts.map +1 -0
  154. package/dist/examples/bans/demo-global-user-bans.d.ts +27 -0
  155. package/dist/examples/bans/demo-global-user-bans.d.ts.map +1 -0
  156. package/dist/examples/bonding/token-graduation-workflow.d.ts +21 -0
  157. package/dist/examples/bonding/token-graduation-workflow.d.ts.map +1 -0
  158. package/dist/examples/bonding-curve/basic-trading.d.ts +20 -0
  159. package/dist/examples/bonding-curve/basic-trading.d.ts.map +1 -0
  160. package/dist/examples/bonding-curve/graduation-workflow.d.ts +18 -0
  161. package/dist/examples/bonding-curve/graduation-workflow.d.ts.map +1 -0
  162. package/dist/examples/bonding-curve/pagination-variants.d.ts +17 -0
  163. package/dist/examples/bonding-curve/pagination-variants.d.ts.map +1 -0
  164. package/dist/examples/bonding-curve/pool-analysis.d.ts +18 -0
  165. package/dist/examples/bonding-curve/pool-analysis.d.ts.map +1 -0
  166. package/dist/examples/bonding-curve/pool-creator-filtering.d.ts +17 -0
  167. package/dist/examples/bonding-curve/pool-creator-filtering.d.ts.map +1 -0
  168. package/dist/examples/bonding-curve/pool-discovery.d.ts +19 -0
  169. package/dist/examples/bonding-curve/pool-discovery.d.ts.map +1 -0
  170. package/dist/examples/bonding-curve/price-impact.d.ts +18 -0
  171. package/dist/examples/bonding-curve/price-impact.d.ts.map +1 -0
  172. package/dist/examples/bonding-curve/token-launch.d.ts +18 -0
  173. package/dist/examples/bonding-curve/token-launch.d.ts.map +1 -0
  174. package/dist/examples/bonding-curve/user-holder-context.d.ts +18 -0
  175. package/dist/examples/bonding-curve/user-holder-context.d.ts.map +1 -0
  176. package/dist/examples/bonding-curve/volume-trading.d.ts +18 -0
  177. package/dist/examples/bonding-curve/volume-trading.d.ts.map +1 -0
  178. package/dist/examples/bridge/bridge-ethereum-specific.d.ts +18 -0
  179. package/dist/examples/bridge/bridge-ethereum-specific.d.ts.map +1 -0
  180. package/dist/examples/bridge/bridge-generic-operations.d.ts +18 -0
  181. package/dist/examples/bridge/bridge-generic-operations.d.ts.map +1 -0
  182. package/dist/examples/bridge/bridge-multi-chain-routing.d.ts +31 -0
  183. package/dist/examples/bridge/bridge-multi-chain-routing.d.ts.map +1 -0
  184. package/dist/examples/bridge/bridge-network-methods.d.ts +31 -0
  185. package/dist/examples/bridge/bridge-network-methods.d.ts.map +1 -0
  186. package/dist/examples/bridge/bridge-network-tokens.d.ts +18 -0
  187. package/dist/examples/bridge/bridge-network-tokens.d.ts.map +1 -0
  188. package/dist/examples/bridge/bridge-network-validation.d.ts +33 -0
  189. package/dist/examples/bridge/bridge-network-validation.d.ts.map +1 -0
  190. package/dist/examples/bridge/bridge-operations.d.ts +27 -0
  191. package/dist/examples/bridge/bridge-operations.d.ts.map +1 -0
  192. package/dist/examples/bridge/bridge-solana-specific.d.ts +18 -0
  193. package/dist/examples/bridge/bridge-solana-specific.d.ts.map +1 -0
  194. package/dist/examples/bridge/bridge-status-monitoring.d.ts +30 -0
  195. package/dist/examples/bridge/bridge-status-monitoring.d.ts.map +1 -0
  196. package/dist/examples/bridge/bridge-wrapped-token-operations.d.ts +30 -0
  197. package/dist/examples/bridge/bridge-wrapped-token-operations.d.ts.map +1 -0
  198. package/dist/examples/bridge/bridgeable-tokens.d.ts +27 -0
  199. package/dist/examples/bridge/bridgeable-tokens.d.ts.map +1 -0
  200. package/dist/examples/bridge/check-balances.d.ts +13 -0
  201. package/dist/examples/bridge/check-balances.d.ts.map +1 -0
  202. package/dist/examples/bridge/ethereum-in.d.ts +17 -0
  203. package/dist/examples/bridge/ethereum-in.d.ts.map +1 -0
  204. package/dist/examples/bridge/ethereum-out.d.ts +17 -0
  205. package/dist/examples/bridge/ethereum-out.d.ts.map +1 -0
  206. package/dist/examples/bridge/ethereum-roundtrip.d.ts +20 -0
  207. package/dist/examples/bridge/ethereum-roundtrip.d.ts.map +1 -0
  208. package/dist/examples/bridge/external-balances.d.ts +29 -0
  209. package/dist/examples/bridge/external-balances.d.ts.map +1 -0
  210. package/dist/examples/bridge/fee-estimation.d.ts +14 -0
  211. package/dist/examples/bridge/fee-estimation.d.ts.map +1 -0
  212. package/dist/examples/bridge/solana-in.d.ts +18 -0
  213. package/dist/examples/bridge/solana-in.d.ts.map +1 -0
  214. package/dist/examples/bridge/solana-out.d.ts +18 -0
  215. package/dist/examples/bridge/solana-out.d.ts.map +1 -0
  216. package/dist/examples/bridge/solana-roundtrip.d.ts +21 -0
  217. package/dist/examples/bridge/solana-roundtrip.d.ts.map +1 -0
  218. package/dist/examples/bridge/status-tracking.d.ts +16 -0
  219. package/dist/examples/bridge/status-tracking.d.ts.map +1 -0
  220. package/dist/examples/bridge/supported-tokens.d.ts +14 -0
  221. package/dist/examples/bridge/supported-tokens.d.ts.map +1 -0
  222. package/dist/examples/bridge/test-debug-unwrap.d.ts +13 -0
  223. package/dist/examples/bridge/test-debug-unwrap.d.ts.map +1 -0
  224. package/dist/examples/bridge/test-unwrap-execution.d.ts +13 -0
  225. package/dist/examples/bridge/test-unwrap-execution.d.ts.map +1 -0
  226. package/dist/examples/bridge/test-wrap-debug.d.ts +13 -0
  227. package/dist/examples/bridge/test-wrap-debug.d.ts.map +1 -0
  228. package/dist/examples/bridge/test-wrap-execution.d.ts +13 -0
  229. package/dist/examples/bridge/test-wrap-execution.d.ts.map +1 -0
  230. package/dist/examples/bridge/test-wrap-roundtrip.d.ts +13 -0
  231. package/dist/examples/bridge/test-wrap-roundtrip.d.ts.map +1 -0
  232. package/dist/examples/bridge/transaction-status.d.ts +26 -0
  233. package/dist/examples/bridge/transaction-status.d.ts.map +1 -0
  234. package/dist/examples/bridge/wallet-balances.d.ts +24 -0
  235. package/dist/examples/bridge/wallet-balances.d.ts.map +1 -0
  236. package/dist/examples/bridge/wrap-discovery.d.ts +16 -0
  237. package/dist/examples/bridge/wrap-discovery.d.ts.map +1 -0
  238. package/dist/examples/bridge/wrap-fee-estimation.d.ts +16 -0
  239. package/dist/examples/bridge/wrap-fee-estimation.d.ts.map +1 -0
  240. package/dist/examples/bridge/wrap-unwrap.d.ts +18 -0
  241. package/dist/examples/bridge/wrap-unwrap.d.ts.map +1 -0
  242. package/dist/examples/bridge/wrap-utilities.d.ts +21 -0
  243. package/dist/examples/bridge/wrap-utilities.d.ts.map +1 -0
  244. package/dist/examples/calculations/calculation-methods-comprehensive.d.ts +24 -0
  245. package/dist/examples/calculations/calculation-methods-comprehensive.d.ts.map +1 -0
  246. package/dist/examples/calculations/external-calculations-demo.d.ts +23 -0
  247. package/dist/examples/calculations/external-calculations-demo.d.ts.map +1 -0
  248. package/dist/examples/calculations/local-calculations-demo.d.ts +24 -0
  249. package/dist/examples/calculations/local-calculations-demo.d.ts.map +1 -0
  250. package/dist/examples/calculations/pool-calculation-context.d.ts +19 -0
  251. package/dist/examples/calculations/pool-calculation-context.d.ts.map +1 -0
  252. package/dist/examples/chat/basic-chat.d.ts +17 -0
  253. package/dist/examples/chat/basic-chat.d.ts.map +1 -0
  254. package/dist/examples/chat/chat-admin-controls.d.ts +41 -0
  255. package/dist/examples/chat/chat-admin-controls.d.ts.map +1 -0
  256. package/dist/examples/chat/chat-demo.d.ts +25 -0
  257. package/dist/examples/chat/chat-demo.d.ts.map +1 -0
  258. package/dist/examples/chat/chat-engagement-stats.d.ts +44 -0
  259. package/dist/examples/chat/chat-engagement-stats.d.ts.map +1 -0
  260. package/dist/examples/chat/chat-lifecycle.d.ts +26 -0
  261. package/dist/examples/chat/chat-lifecycle.d.ts.map +1 -0
  262. package/dist/examples/chat/chat-message-management.d.ts +18 -0
  263. package/dist/examples/chat/chat-message-management.d.ts.map +1 -0
  264. package/dist/examples/chat/chat-pinning-workflow.d.ts +37 -0
  265. package/dist/examples/chat/chat-pinning-workflow.d.ts.map +1 -0
  266. package/dist/examples/chat/demo-pin-messages.d.ts +17 -0
  267. package/dist/examples/chat/demo-pin-messages.d.ts.map +1 -0
  268. package/dist/examples/chat/multi-user-chat-test.d.ts +19 -0
  269. package/dist/examples/chat/multi-user-chat-test.d.ts.map +1 -0
  270. package/dist/examples/chat/quick-reaction-test.d.ts +4 -0
  271. package/dist/examples/chat/quick-reaction-test.d.ts.map +1 -0
  272. package/dist/examples/chat/typing-indicators.d.ts +23 -0
  273. package/dist/examples/chat/typing-indicators.d.ts.map +1 -0
  274. package/dist/examples/chat/websocket-chat.d.ts +21 -0
  275. package/dist/examples/chat/websocket-chat.d.ts.map +1 -0
  276. package/dist/examples/comments/basic-comments.d.ts +19 -0
  277. package/dist/examples/comments/basic-comments.d.ts.map +1 -0
  278. package/dist/examples/comments/comments-demo.d.ts +34 -0
  279. package/dist/examples/comments/comments-demo.d.ts.map +1 -0
  280. package/dist/examples/comments/comments-lifecycle.d.ts +24 -0
  281. package/dist/examples/comments/comments-lifecycle.d.ts.map +1 -0
  282. package/dist/examples/comments/comments-update-workflow.d.ts +35 -0
  283. package/dist/examples/comments/comments-update-workflow.d.ts.map +1 -0
  284. package/dist/examples/content/content-categorization.d.ts +51 -0
  285. package/dist/examples/content/content-categorization.d.ts.map +1 -0
  286. package/dist/examples/content/content-publishing-workflow.d.ts +45 -0
  287. package/dist/examples/content/content-publishing-workflow.d.ts.map +1 -0
  288. package/dist/examples/content/content-versioning.d.ts +52 -0
  289. package/dist/examples/content/content-versioning.d.ts.map +1 -0
  290. package/dist/examples/content-flags/comprehensive-flag-workflow.d.ts +40 -0
  291. package/dist/examples/content-flags/comprehensive-flag-workflow.d.ts.map +1 -0
  292. package/dist/examples/content-flags/flag-management.d.ts +28 -0
  293. package/dist/examples/content-flags/flag-management.d.ts.map +1 -0
  294. package/dist/examples/content-reactions/advanced-reactions.d.ts +24 -0
  295. package/dist/examples/content-reactions/advanced-reactions.d.ts.map +1 -0
  296. package/dist/examples/content-reactions/basic-reactions.d.ts +21 -0
  297. package/dist/examples/content-reactions/basic-reactions.d.ts.map +1 -0
  298. package/dist/examples/content-reactions/comprehensive-reactions-workflow.d.ts +41 -0
  299. package/dist/examples/content-reactions/comprehensive-reactions-workflow.d.ts.map +1 -0
  300. package/dist/examples/content-reactions/content-reactions-advanced.d.ts +40 -0
  301. package/dist/examples/content-reactions/content-reactions-advanced.d.ts.map +1 -0
  302. package/dist/examples/core/authenticated-operations.d.ts +14 -0
  303. package/dist/examples/core/authenticated-operations.d.ts.map +1 -0
  304. package/dist/examples/core/complete-sdk-demo.d.ts +22 -0
  305. package/dist/examples/core/complete-sdk-demo.d.ts.map +1 -0
  306. package/dist/examples/core/image-uploads.d.ts +28 -0
  307. package/dist/examples/core/image-uploads.d.ts.map +1 -0
  308. package/dist/examples/core/privatekey-override-pattern.d.ts +16 -0
  309. package/dist/examples/core/privatekey-override-pattern.d.ts.map +1 -0
  310. package/dist/examples/core/read-only-operations.d.ts +16 -0
  311. package/dist/examples/core/read-only-operations.d.ts.map +1 -0
  312. package/dist/examples/core/session-auth-demo.d.ts +15 -0
  313. package/dist/examples/core/session-auth-demo.d.ts.map +1 -0
  314. package/dist/examples/core/session-auth-lifecycle.d.ts +19 -0
  315. package/dist/examples/core/session-auth-lifecycle.d.ts.map +1 -0
  316. package/dist/examples/core/test-pagination-fix.d.ts +14 -0
  317. package/dist/examples/core/test-pagination-fix.d.ts.map +1 -0
  318. package/dist/examples/core/token-refresh-utilities.d.ts +18 -0
  319. package/dist/examples/core/token-refresh-utilities.d.ts.map +1 -0
  320. package/dist/examples/core/token-validation.d.ts +18 -0
  321. package/dist/examples/core/token-validation.d.ts.map +1 -0
  322. package/dist/examples/core/wallet-management.d.ts +23 -0
  323. package/dist/examples/core/wallet-management.d.ts.map +1 -0
  324. package/dist/examples/debug/check-recorded-bridge-tx.d.ts +8 -0
  325. package/dist/examples/debug/check-recorded-bridge-tx.d.ts.map +1 -0
  326. package/dist/examples/debug/debug-comment.d.ts +2 -0
  327. package/dist/examples/debug/debug-comment.d.ts.map +1 -0
  328. package/dist/examples/debug/test-volume-data-bounds-prod.d.ts +15 -0
  329. package/dist/examples/debug/test-volume-data-bounds-prod.d.ts.map +1 -0
  330. package/dist/examples/debug/test-volume-data-bounds.d.ts +14 -0
  331. package/dist/examples/debug/test-volume-data-bounds.d.ts.map +1 -0
  332. package/dist/examples/debug/websocket-event-discovery.d.ts +26 -0
  333. package/dist/examples/debug/websocket-event-discovery.d.ts.map +1 -0
  334. package/dist/examples/debug/websocket-monitor.d.ts +15 -0
  335. package/dist/examples/debug/websocket-monitor.d.ts.map +1 -0
  336. package/dist/examples/debug-single-trade.d.ts +6 -0
  337. package/dist/examples/debug-single-trade.d.ts.map +1 -0
  338. package/dist/examples/demo-librarian.d.ts +18 -0
  339. package/dist/examples/demo-librarian.d.ts.map +1 -0
  340. package/dist/examples/demo-runner.d.ts +22 -0
  341. package/dist/examples/demo-runner.d.ts.map +1 -0
  342. package/dist/examples/dex/demo-roundtrip-liquidity.d.ts +16 -0
  343. package/dist/examples/dex/demo-roundtrip-liquidity.d.ts.map +1 -0
  344. package/dist/examples/dex/dex-impermanent-loss-analysis.d.ts +28 -0
  345. package/dist/examples/dex/dex-impermanent-loss-analysis.d.ts.map +1 -0
  346. package/dist/examples/dex/dex-liquidity-management-advanced.d.ts +27 -0
  347. package/dist/examples/dex/dex-liquidity-management-advanced.d.ts.map +1 -0
  348. package/dist/examples/dex/dex-multi-hop-swaps.d.ts +32 -0
  349. package/dist/examples/dex/dex-multi-hop-swaps.d.ts.map +1 -0
  350. package/dist/examples/dex/dex-pool-pricing.d.ts +20 -0
  351. package/dist/examples/dex/dex-pool-pricing.d.ts.map +1 -0
  352. package/dist/examples/dex/dex-quote-calculations.d.ts +21 -0
  353. package/dist/examples/dex/dex-quote-calculations.d.ts.map +1 -0
  354. package/dist/examples/dex/dex-seasons-leaderboard.d.ts +22 -0
  355. package/dist/examples/dex/dex-seasons-leaderboard.d.ts.map +1 -0
  356. package/dist/examples/dex/dex-slippage-protection.d.ts +28 -0
  357. package/dist/examples/dex/dex-slippage-protection.d.ts.map +1 -0
  358. package/dist/examples/dex/dex-tokens-discovery.d.ts +20 -0
  359. package/dist/examples/dex/dex-tokens-discovery.d.ts.map +1 -0
  360. package/dist/examples/dex/dex-volume-analytics.d.ts +19 -0
  361. package/dist/examples/dex/dex-volume-analytics.d.ts.map +1 -0
  362. package/dist/examples/dex/leaderboard.d.ts +12 -0
  363. package/dist/examples/dex/leaderboard.d.ts.map +1 -0
  364. package/dist/examples/dex/pool-discovery.d.ts +25 -0
  365. package/dist/examples/dex/pool-discovery.d.ts.map +1 -0
  366. package/dist/examples/dex/pools-with-pricing.d.ts +28 -0
  367. package/dist/examples/dex/pools-with-pricing.d.ts.map +1 -0
  368. package/dist/examples/dex/quote-comparison.d.ts +16 -0
  369. package/dist/examples/dex/quote-comparison.d.ts.map +1 -0
  370. package/dist/examples/dex/swap-user-assets-comprehensive.d.ts +20 -0
  371. package/dist/examples/dex/swap-user-assets-comprehensive.d.ts.map +1 -0
  372. package/dist/examples/dex/swap-workflow.d.ts +20 -0
  373. package/dist/examples/dex/swap-workflow.d.ts.map +1 -0
  374. package/dist/examples/dex/token-discovery.d.ts +27 -0
  375. package/dist/examples/dex/token-discovery.d.ts.map +1 -0
  376. package/dist/examples/dex/volume-summary.d.ts +12 -0
  377. package/dist/examples/dex/volume-summary.d.ts.map +1 -0
  378. package/dist/examples/error-handling/error-recovery-patterns.d.ts +42 -0
  379. package/dist/examples/error-handling/error-recovery-patterns.d.ts.map +1 -0
  380. package/dist/examples/error-handling/timeout-management.d.ts +43 -0
  381. package/dist/examples/error-handling/timeout-management.d.ts.map +1 -0
  382. package/dist/examples/events/event-aggregation-analysis.d.ts +40 -0
  383. package/dist/examples/events/event-aggregation-analysis.d.ts.map +1 -0
  384. package/dist/examples/events/event-emission-patterns.d.ts +35 -0
  385. package/dist/examples/events/event-emission-patterns.d.ts.map +1 -0
  386. package/dist/examples/events/subscription-management-advanced.d.ts +38 -0
  387. package/dist/examples/events/subscription-management-advanced.d.ts.map +1 -0
  388. package/dist/examples/fees/complete-fee-test.d.ts +13 -0
  389. package/dist/examples/fees/complete-fee-test.d.ts.map +1 -0
  390. package/dist/examples/fees/demo-fee-generation-and-collection.d.ts +27 -0
  391. package/dist/examples/fees/demo-fee-generation-and-collection.d.ts.map +1 -0
  392. package/dist/examples/fees/demo-fees-high-volume.d.ts +13 -0
  393. package/dist/examples/fees/demo-fees-high-volume.d.ts.map +1 -0
  394. package/dist/examples/fees/demo-multi-wallet-fee-generation.d.ts +13 -0
  395. package/dist/examples/fees/demo-multi-wallet-fee-generation.d.ts.map +1 -0
  396. package/dist/examples/fees/trade-and-collect-fees.d.ts +13 -0
  397. package/dist/examples/fees/trade-and-collect-fees.d.ts.map +1 -0
  398. package/dist/examples/galachain/bundler-transactions.d.ts +28 -0
  399. package/dist/examples/galachain/bundler-transactions.d.ts.map +1 -0
  400. package/dist/examples/galachain/galachain-token-resolution.d.ts +28 -0
  401. package/dist/examples/galachain/galachain-token-resolution.d.ts.map +1 -0
  402. package/dist/examples/galachain/galachain-tokens.d.ts +28 -0
  403. package/dist/examples/galachain/galachain-tokens.d.ts.map +1 -0
  404. package/dist/examples/galachain/galachain-transfers.d.ts +25 -0
  405. package/dist/examples/galachain/galachain-transfers.d.ts.map +1 -0
  406. package/dist/examples/global-feed-demo.d.ts +17 -0
  407. package/dist/examples/global-feed-demo.d.ts.map +1 -0
  408. package/dist/examples/global-feed-filtering-demo.d.ts +20 -0
  409. package/dist/examples/global-feed-filtering-demo.d.ts.map +1 -0
  410. package/dist/examples/launchpad/demo-socials.d.ts +16 -0
  411. package/dist/examples/launchpad/demo-socials.d.ts.map +1 -0
  412. package/dist/examples/launchpad/fetch-token-stats.d.ts +18 -0
  413. package/dist/examples/launchpad/fetch-token-stats.d.ts.map +1 -0
  414. package/dist/examples/launchpad/update-token-config.d.ts +17 -0
  415. package/dist/examples/launchpad/update-token-config.d.ts.map +1 -0
  416. package/dist/examples/liquidity/apr-calculator.d.ts +18 -0
  417. package/dist/examples/liquidity/apr-calculator.d.ts.map +1 -0
  418. package/dist/examples/liquidity/demo-bundler-operations.d.ts +15 -0
  419. package/dist/examples/liquidity/demo-bundler-operations.d.ts.map +1 -0
  420. package/dist/examples/liquidity/demo-fetch-all-positions.d.ts +2 -0
  421. package/dist/examples/liquidity/demo-fetch-all-positions.d.ts.map +1 -0
  422. package/dist/examples/liquidity/demo-position-direct.d.ts +14 -0
  423. package/dist/examples/liquidity/demo-position-direct.d.ts.map +1 -0
  424. package/dist/examples/liquidity/demo-positions-with-chunked-pricing.d.ts +26 -0
  425. package/dist/examples/liquidity/demo-positions-with-chunked-pricing.d.ts.map +1 -0
  426. package/dist/examples/liquidity/demo-roundtrip-remove.d.ts +21 -0
  427. package/dist/examples/liquidity/demo-roundtrip-remove.d.ts.map +1 -0
  428. package/dist/examples/liquidity/detailed.d.ts +21 -0
  429. package/dist/examples/liquidity/detailed.d.ts.map +1 -0
  430. package/dist/examples/liquidity/errors.d.ts +18 -0
  431. package/dist/examples/liquidity/errors.d.ts.map +1 -0
  432. package/dist/examples/liquidity/fee-collection.d.ts +22 -0
  433. package/dist/examples/liquidity/fee-collection.d.ts.map +1 -0
  434. package/dist/examples/liquidity/liquidity-position-details.d.ts +21 -0
  435. package/dist/examples/liquidity/liquidity-position-details.d.ts.map +1 -0
  436. package/dist/examples/liquidity/liquidity-removal-estimation.d.ts +19 -0
  437. package/dist/examples/liquidity/liquidity-removal-estimation.d.ts.map +1 -0
  438. package/dist/examples/liquidity/multi-position.d.ts +22 -0
  439. package/dist/examples/liquidity/multi-position.d.ts.map +1 -0
  440. package/dist/examples/liquidity/positions-cli.d.ts +41 -0
  441. package/dist/examples/liquidity/positions-cli.d.ts.map +1 -0
  442. package/dist/examples/liquidity/ticks.d.ts +18 -0
  443. package/dist/examples/liquidity/ticks.d.ts.map +1 -0
  444. package/dist/examples/locks/burn-tokens.d.ts +25 -0
  445. package/dist/examples/locks/burn-tokens.d.ts.map +1 -0
  446. package/dist/examples/locks/lock-unlock-workflow.d.ts +20 -0
  447. package/dist/examples/locks/lock-unlock-workflow.d.ts.map +1 -0
  448. package/dist/examples/messages/messages-lifecycle.d.ts +37 -0
  449. package/dist/examples/messages/messages-lifecycle.d.ts.map +1 -0
  450. package/dist/examples/messages/messages-pinning.d.ts +37 -0
  451. package/dist/examples/messages/messages-pinning.d.ts.map +1 -0
  452. package/dist/examples/moderators/claim-invite.d.ts +28 -0
  453. package/dist/examples/moderators/claim-invite.d.ts.map +1 -0
  454. package/dist/examples/moderators/invite-management.d.ts +30 -0
  455. package/dist/examples/moderators/invite-management.d.ts.map +1 -0
  456. package/dist/examples/moderators/moderated-tokens-portfolio.d.ts +18 -0
  457. package/dist/examples/moderators/moderated-tokens-portfolio.d.ts.map +1 -0
  458. package/dist/examples/monitoring/demo-stream-events.d.ts +17 -0
  459. package/dist/examples/monitoring/demo-stream-events.d.ts.map +1 -0
  460. package/dist/examples/monitoring/demo-watch-pools.d.ts +18 -0
  461. package/dist/examples/monitoring/demo-watch-pools.d.ts.map +1 -0
  462. package/dist/examples/monitoring/demo-watch-tokens.d.ts +18 -0
  463. package/dist/examples/monitoring/demo-watch-tokens.d.ts.map +1 -0
  464. package/dist/examples/monitoring/fees-collection-e2e.d.ts +36 -0
  465. package/dist/examples/monitoring/fees-collection-e2e.d.ts.map +1 -0
  466. package/dist/examples/monitoring/fees-collection-guaranteed.d.ts +49 -0
  467. package/dist/examples/monitoring/fees-collection-guaranteed.d.ts.map +1 -0
  468. package/dist/examples/monitoring/liquidity-e2e-test.d.ts +15 -0
  469. package/dist/examples/monitoring/liquidity-e2e-test.d.ts.map +1 -0
  470. package/dist/examples/monitoring/liquidity-monitor.d.ts +17 -0
  471. package/dist/examples/monitoring/liquidity-monitor.d.ts.map +1 -0
  472. package/dist/examples/monitoring/pool-creation-integration.d.ts +27 -0
  473. package/dist/examples/monitoring/pool-creation-integration.d.ts.map +1 -0
  474. package/dist/examples/monitoring/pool-liquidity-tracker.d.ts +15 -0
  475. package/dist/examples/monitoring/pool-liquidity-tracker.d.ts.map +1 -0
  476. package/dist/examples/monitoring/subscribe-liquidity-added.d.ts +30 -0
  477. package/dist/examples/monitoring/subscribe-liquidity-added.d.ts.map +1 -0
  478. package/dist/examples/monitoring/subscribe-liquidity-removed.d.ts +30 -0
  479. package/dist/examples/monitoring/subscribe-liquidity-removed.d.ts.map +1 -0
  480. package/dist/examples/monitoring/subscribe-pool-creations.d.ts +29 -0
  481. package/dist/examples/monitoring/subscribe-pool-creations.d.ts.map +1 -0
  482. package/dist/examples/monitoring/subscribe-token-creations.d.ts +21 -0
  483. package/dist/examples/monitoring/subscribe-token-creations.d.ts.map +1 -0
  484. package/dist/examples/monitoring/token-creation-integration.d.ts +32 -0
  485. package/dist/examples/monitoring/token-creation-integration.d.ts.map +1 -0
  486. package/dist/examples/monitoring/websocket-event-handlers.d.ts +22 -0
  487. package/dist/examples/monitoring/websocket-event-handlers.d.ts.map +1 -0
  488. package/dist/examples/nft/demo-collection-management.d.ts +13 -0
  489. package/dist/examples/nft/demo-collection-management.d.ts.map +1 -0
  490. package/dist/examples/nft/demo-fee-calculations.d.ts +14 -0
  491. package/dist/examples/nft/demo-fee-calculations.d.ts.map +1 -0
  492. package/dist/examples/nft/demo-minting.d.ts +13 -0
  493. package/dist/examples/nft/demo-minting.d.ts.map +1 -0
  494. package/dist/examples/nft/demo-portfolio-query.d.ts +14 -0
  495. package/dist/examples/nft/demo-portfolio-query.d.ts.map +1 -0
  496. package/dist/examples/nft/nft-collection-lifecycle.d.ts +22 -0
  497. package/dist/examples/nft/nft-collection-lifecycle.d.ts.map +1 -0
  498. package/dist/examples/nft/nft-data-queries.d.ts +22 -0
  499. package/dist/examples/nft/nft-data-queries.d.ts.map +1 -0
  500. package/dist/examples/nft/nft-fee-estimation.d.ts +23 -0
  501. package/dist/examples/nft/nft-fee-estimation.d.ts.map +1 -0
  502. package/dist/examples/nft/nft-token-creation.d.ts +22 -0
  503. package/dist/examples/nft/nft-token-creation.d.ts.map +1 -0
  504. package/dist/examples/nft/nft-utilities.d.ts +23 -0
  505. package/dist/examples/nft/nft-utilities.d.ts.map +1 -0
  506. package/dist/examples/orchestrator-master.d.ts +22 -0
  507. package/dist/examples/orchestrator-master.d.ts.map +1 -0
  508. package/dist/examples/orchestrator-tasks.d.ts +38 -0
  509. package/dist/examples/orchestrator-tasks.d.ts.map +1 -0
  510. package/dist/examples/overseers/claim-invite.d.ts +31 -0
  511. package/dist/examples/overseers/claim-invite.d.ts.map +1 -0
  512. package/dist/examples/overseers/demo-list-users.d.ts +19 -0
  513. package/dist/examples/overseers/demo-list-users.d.ts.map +1 -0
  514. package/dist/examples/overseers/direct-promotion.d.ts +39 -0
  515. package/dist/examples/overseers/direct-promotion.d.ts.map +1 -0
  516. package/dist/examples/overseers/invite-management.d.ts +38 -0
  517. package/dist/examples/overseers/invite-management.d.ts.map +1 -0
  518. package/dist/examples/overseers/restricted-names-management.d.ts +27 -0
  519. package/dist/examples/overseers/restricted-names-management.d.ts.map +1 -0
  520. package/dist/examples/performance/caching-strategies-advanced.d.ts +28 -0
  521. package/dist/examples/performance/caching-strategies-advanced.d.ts.map +1 -0
  522. package/dist/examples/performance/performance-optimization-patterns.d.ts +28 -0
  523. package/dist/examples/performance/performance-optimization-patterns.d.ts.map +1 -0
  524. package/dist/examples/persistence/data-backup-recovery.d.ts +119 -0
  525. package/dist/examples/persistence/data-backup-recovery.d.ts.map +1 -0
  526. package/dist/examples/persistence/local-storage-patterns.d.ts +86 -0
  527. package/dist/examples/persistence/local-storage-patterns.d.ts.map +1 -0
  528. package/dist/examples/queries/advanced-sorting.d.ts +28 -0
  529. package/dist/examples/queries/advanced-sorting.d.ts.map +1 -0
  530. package/dist/examples/queries/complex-filtering.d.ts +27 -0
  531. package/dist/examples/queries/complex-filtering.d.ts.map +1 -0
  532. package/dist/examples/security/security-audit-trail.d.ts +42 -0
  533. package/dist/examples/security/security-audit-trail.d.ts.map +1 -0
  534. package/dist/examples/security/security-content-moderation-advanced.d.ts +42 -0
  535. package/dist/examples/security/security-content-moderation-advanced.d.ts.map +1 -0
  536. package/dist/examples/security/security-token-safety-checks.d.ts +41 -0
  537. package/dist/examples/security/security-token-safety-checks.d.ts.map +1 -0
  538. package/dist/examples/security/security-user-restrictions-advanced.d.ts +42 -0
  539. package/dist/examples/security/security-user-restrictions-advanced.d.ts.map +1 -0
  540. package/dist/examples/site-config-demo.d.ts +20 -0
  541. package/dist/examples/site-config-demo.d.ts.map +1 -0
  542. package/dist/examples/streaming/admin-controls.d.ts +30 -0
  543. package/dist/examples/streaming/admin-controls.d.ts.map +1 -0
  544. package/dist/examples/streaming/advanced-stream-demo.d.ts +28 -0
  545. package/dist/examples/streaming/advanced-stream-demo.d.ts.map +1 -0
  546. package/dist/examples/streaming/basic-stream.d.ts +17 -0
  547. package/dist/examples/streaming/basic-stream.d.ts.map +1 -0
  548. package/dist/examples/streaming/demo-countdown.d.ts +16 -0
  549. package/dist/examples/streaming/demo-countdown.d.ts.map +1 -0
  550. package/dist/examples/streaming/demo-get-stream-credentials.d.ts +29 -0
  551. package/dist/examples/streaming/demo-get-stream-credentials.d.ts.map +1 -0
  552. package/dist/examples/streaming/demo-platform-config.d.ts +20 -0
  553. package/dist/examples/streaming/demo-platform-config.d.ts.map +1 -0
  554. package/dist/examples/streaming/engagement-stats.d.ts +25 -0
  555. package/dist/examples/streaming/engagement-stats.d.ts.map +1 -0
  556. package/dist/examples/streaming/recordings.d.ts +16 -0
  557. package/dist/examples/streaming/recordings.d.ts.map +1 -0
  558. package/dist/examples/streaming/simulcast.d.ts +19 -0
  559. package/dist/examples/streaming/simulcast.d.ts.map +1 -0
  560. package/dist/examples/streaming/stream-access-control.d.ts +30 -0
  561. package/dist/examples/streaming/stream-access-control.d.ts.map +1 -0
  562. package/dist/examples/streaming/stream-control.d.ts +25 -0
  563. package/dist/examples/streaming/stream-control.d.ts.map +1 -0
  564. package/dist/examples/streaming/stream-countdown.d.ts +31 -0
  565. package/dist/examples/streaming/stream-countdown.d.ts.map +1 -0
  566. package/dist/examples/streaming/stream-enable-disable.d.ts +31 -0
  567. package/dist/examples/streaming/stream-enable-disable.d.ts.map +1 -0
  568. package/dist/examples/streaming/stream-key-management.d.ts +21 -0
  569. package/dist/examples/streaming/stream-key-management.d.ts.map +1 -0
  570. package/dist/examples/streaming/stream-recording-management.d.ts +29 -0
  571. package/dist/examples/streaming/stream-recording-management.d.ts.map +1 -0
  572. package/dist/examples/streaming/stream-simulcast-multi-platform.d.ts +38 -0
  573. package/dist/examples/streaming/stream-simulcast-multi-platform.d.ts.map +1 -0
  574. package/dist/examples/streaming/stream-viewer-analytics.d.ts +43 -0
  575. package/dist/examples/streaming/stream-viewer-analytics.d.ts.map +1 -0
  576. package/dist/examples/streaming/streaming-lifecycle.d.ts +26 -0
  577. package/dist/examples/streaming/streaming-lifecycle.d.ts.map +1 -0
  578. package/dist/examples/streaming-premium/stream-monetization-setup.d.ts +47 -0
  579. package/dist/examples/streaming-premium/stream-monetization-setup.d.ts.map +1 -0
  580. package/dist/examples/streaming-premium/stream-revenue-analytics.d.ts +56 -0
  581. package/dist/examples/streaming-premium/stream-revenue-analytics.d.ts.map +1 -0
  582. package/dist/examples/streaming-premium/stream-vip-management.d.ts +56 -0
  583. package/dist/examples/streaming-premium/stream-vip-management.d.ts.map +1 -0
  584. package/dist/examples/swap-monitoring/arbitrage-monitor.d.ts +20 -0
  585. package/dist/examples/swap-monitoring/arbitrage-monitor.d.ts.map +1 -0
  586. package/dist/examples/swap-monitoring/e2e-trading-demo.d.ts +50 -0
  587. package/dist/examples/swap-monitoring/e2e-trading-demo.d.ts.map +1 -0
  588. package/dist/examples/swap-monitoring/health-monitor.d.ts +10 -0
  589. package/dist/examples/swap-monitoring/health-monitor.d.ts.map +1 -0
  590. package/dist/examples/swap-monitoring/volume-monitor.d.ts +20 -0
  591. package/dist/examples/swap-monitoring/volume-monitor.d.ts.map +1 -0
  592. package/dist/examples/testing/demo-test-runner.d.ts +33 -0
  593. package/dist/examples/testing/demo-test-runner.d.ts.map +1 -0
  594. package/dist/examples/testing/error-classifier.d.ts +23 -0
  595. package/dist/examples/testing/error-classifier.d.ts.map +1 -0
  596. package/dist/examples/testing/index.d.ts +14 -0
  597. package/dist/examples/testing/index.d.ts.map +1 -0
  598. package/dist/examples/testing/memory-manager.d.ts +31 -0
  599. package/dist/examples/testing/memory-manager.d.ts.map +1 -0
  600. package/dist/examples/testing/report-generator.d.ts +31 -0
  601. package/dist/examples/testing/report-generator.d.ts.map +1 -0
  602. package/dist/examples/testing/test-result-types.d.ts +158 -0
  603. package/dist/examples/testing/test-result-types.d.ts.map +1 -0
  604. package/dist/examples/token-bans/token-ban-management.d.ts +32 -0
  605. package/dist/examples/token-bans/token-ban-management.d.ts.map +1 -0
  606. package/dist/examples/token-creation/token-launch-complete.d.ts +20 -0
  607. package/dist/examples/token-creation/token-launch-complete.d.ts.map +1 -0
  608. package/dist/examples/token-creation/token-validation-comprehensive.d.ts +22 -0
  609. package/dist/examples/token-creation/token-validation-comprehensive.d.ts.map +1 -0
  610. package/dist/examples/token-info/token-name-resolution.d.ts +30 -0
  611. package/dist/examples/token-info/token-name-resolution.d.ts.map +1 -0
  612. package/dist/examples/token-info/token-operations-comprehensive.d.ts +22 -0
  613. package/dist/examples/token-info/token-operations-comprehensive.d.ts.map +1 -0
  614. package/dist/examples/token-metadata/token-description-versioning.d.ts +33 -0
  615. package/dist/examples/token-metadata/token-description-versioning.d.ts.map +1 -0
  616. package/dist/examples/token-metadata/token-image-management.d.ts +34 -0
  617. package/dist/examples/token-metadata/token-image-management.d.ts.map +1 -0
  618. package/dist/examples/token-metadata/token-social-links-management.d.ts +34 -0
  619. package/dist/examples/token-metadata/token-social-links-management.d.ts.map +1 -0
  620. package/dist/examples/trading/buy-sell-aliases.d.ts +20 -0
  621. package/dist/examples/trading/buy-sell-aliases.d.ts.map +1 -0
  622. package/dist/examples/trading/volume-data-demo.d.ts +20 -0
  623. package/dist/examples/trading/volume-data-demo.d.ts.map +1 -0
  624. package/dist/examples/trading-advanced/dollar-cost-averaging.d.ts +35 -0
  625. package/dist/examples/trading-advanced/dollar-cost-averaging.d.ts.map +1 -0
  626. package/dist/examples/trading-advanced/limit-orders-advanced.d.ts +34 -0
  627. package/dist/examples/trading-advanced/limit-orders-advanced.d.ts.map +1 -0
  628. package/dist/examples/trading-advanced/stop-loss-orders.d.ts +34 -0
  629. package/dist/examples/trading-advanced/stop-loss-orders.d.ts.map +1 -0
  630. package/dist/examples/trading-advanced/trading-history-analysis.d.ts +35 -0
  631. package/dist/examples/trading-advanced/trading-history-analysis.d.ts.map +1 -0
  632. package/dist/examples/users/balance-queries.d.ts +28 -0
  633. package/dist/examples/users/balance-queries.d.ts.map +1 -0
  634. package/dist/examples/users/fetch-user-balances.d.ts +19 -0
  635. package/dist/examples/users/fetch-user-balances.d.ts.map +1 -0
  636. package/dist/examples/users/fetch-user-report.d.ts +21 -0
  637. package/dist/examples/users/fetch-user-report.d.ts.map +1 -0
  638. package/dist/examples/users/profile-images.d.ts +24 -0
  639. package/dist/examples/users/profile-images.d.ts.map +1 -0
  640. package/dist/examples/users/profile-management.d.ts +22 -0
  641. package/dist/examples/users/profile-management.d.ts.map +1 -0
  642. package/dist/examples/users/referrals-comprehensive.d.ts +26 -0
  643. package/dist/examples/users/referrals-comprehensive.d.ts.map +1 -0
  644. package/dist/examples/users/wallet-balances-external.d.ts +28 -0
  645. package/dist/examples/users/wallet-balances-external.d.ts.map +1 -0
  646. package/dist/examples/utilities/account.d.ts +19 -0
  647. package/dist/examples/utilities/account.d.ts.map +1 -0
  648. package/dist/examples/utilities/balance.d.ts +5 -0
  649. package/dist/examples/utilities/balance.d.ts.map +1 -0
  650. package/dist/examples/utilities/balances.d.ts +7 -0
  651. package/dist/examples/utilities/balances.d.ts.map +1 -0
  652. package/dist/examples/utilities/demo-cache.d.ts +13 -0
  653. package/dist/examples/utilities/demo-cache.d.ts.map +1 -0
  654. package/dist/examples/utilities/demo-token-supply.d.ts +14 -0
  655. package/dist/examples/utilities/demo-token-supply.d.ts.map +1 -0
  656. package/dist/examples/utilities/key-derivation.d.ts +12 -0
  657. package/dist/examples/utilities/key-derivation.d.ts.map +1 -0
  658. package/dist/examples/utilities/multi-token-portfolio.d.ts +18 -0
  659. package/dist/examples/utilities/multi-token-portfolio.d.ts.map +1 -0
  660. package/dist/examples/utilities/pool-discovery-advanced.d.ts +36 -0
  661. package/dist/examples/utilities/pool-discovery-advanced.d.ts.map +1 -0
  662. package/dist/examples/utilities/pool-pair-analysis.d.ts +37 -0
  663. package/dist/examples/utilities/pool-pair-analysis.d.ts.map +1 -0
  664. package/dist/examples/utilities/price-history.d.ts +22 -0
  665. package/dist/examples/utilities/price-history.d.ts.map +1 -0
  666. package/dist/examples/utilities/referrals.d.ts +21 -0
  667. package/dist/examples/utilities/referrals.d.ts.map +1 -0
  668. package/dist/examples/utilities/token-classification.d.ts +38 -0
  669. package/dist/examples/utilities/token-classification.d.ts.map +1 -0
  670. package/dist/examples/utilities/token-discovery.d.ts +26 -0
  671. package/dist/examples/utilities/token-discovery.d.ts.map +1 -0
  672. package/dist/examples/utilities/token-metadata-advanced.d.ts +37 -0
  673. package/dist/examples/utilities/token-metadata-advanced.d.ts.map +1 -0
  674. package/dist/examples/utilities/token-validation-complete.d.ts +41 -0
  675. package/dist/examples/utilities/token-validation-complete.d.ts.map +1 -0
  676. package/dist/examples/utilities/trade-history.d.ts +19 -0
  677. package/dist/examples/utilities/trade-history.d.ts.map +1 -0
  678. package/dist/examples/utilities/transfers.d.ts +29 -0
  679. package/dist/examples/utilities/transfers.d.ts.map +1 -0
  680. package/dist/examples/utilities/validation-and-error-handling.d.ts +27 -0
  681. package/dist/examples/utilities/validation-and-error-handling.d.ts.map +1 -0
  682. package/dist/examples/utilities/wrappable-tokens.d.ts +27 -0
  683. package/dist/examples/utilities/wrappable-tokens.d.ts.map +1 -0
  684. package/dist/examples/utility/auth-utilities.d.ts +30 -0
  685. package/dist/examples/utility/auth-utilities.d.ts.map +1 -0
  686. package/dist/examples/utility/pool-utilities.d.ts +29 -0
  687. package/dist/examples/utility/pool-utilities.d.ts.map +1 -0
  688. package/dist/examples/utility/sdk-configuration.d.ts +29 -0
  689. package/dist/examples/utility/sdk-configuration.d.ts.map +1 -0
  690. package/dist/examples/utility/wallet-management-advanced.d.ts +32 -0
  691. package/dist/examples/utility/wallet-management-advanced.d.ts.map +1 -0
  692. package/dist/examples/utils/auth-bootstrap.d.ts +123 -0
  693. package/dist/examples/utils/auth-bootstrap.d.ts.map +1 -0
  694. package/dist/examples/utils/balance-checking.d.ts +158 -0
  695. package/dist/examples/utils/balance-checking.d.ts.map +1 -0
  696. package/dist/examples/utils/bridge-formatters.d.ts +188 -0
  697. package/dist/examples/utils/bridge-formatters.d.ts.map +1 -0
  698. package/dist/examples/utils/bridge-setup.d.ts +235 -0
  699. package/dist/examples/utils/bridge-setup.d.ts.map +1 -0
  700. package/dist/examples/utils/bridge-transaction-logger.d.ts +42 -0
  701. package/dist/examples/utils/bridge-transaction-logger.d.ts.map +1 -0
  702. package/dist/examples/utils/cli-input.d.ts +41 -0
  703. package/dist/examples/utils/cli-input.d.ts.map +1 -0
  704. package/dist/examples/utils/demo-config.d.ts +155 -0
  705. package/dist/examples/utils/demo-config.d.ts.map +1 -0
  706. package/dist/examples/utils/demo-registry.d.ts +155 -0
  707. package/dist/examples/utils/demo-registry.d.ts.map +1 -0
  708. package/dist/examples/utils/error-handler.d.ts +85 -0
  709. package/dist/examples/utils/error-handler.d.ts.map +1 -0
  710. package/dist/examples/utils/formatting.d.ts +195 -0
  711. package/dist/examples/utils/formatting.d.ts.map +1 -0
  712. package/dist/examples/utils/get-environment.d.ts +17 -0
  713. package/dist/examples/utils/get-environment.d.ts.map +1 -0
  714. package/dist/examples/utils/index.d.ts +44 -0
  715. package/dist/examples/utils/index.d.ts.map +1 -0
  716. package/dist/examples/utils/indexing.d.ts +48 -0
  717. package/dist/examples/utils/indexing.d.ts.map +1 -0
  718. package/dist/examples/utils/load-env.d.ts +90 -0
  719. package/dist/examples/utils/load-env.d.ts.map +1 -0
  720. package/dist/examples/utils/pool-helpers.d.ts +226 -0
  721. package/dist/examples/utils/pool-helpers.d.ts.map +1 -0
  722. package/dist/examples/utils/punchlist.d.ts +104 -0
  723. package/dist/examples/utils/punchlist.d.ts.map +1 -0
  724. package/dist/examples/utils/sdk-setup.d.ts +423 -0
  725. package/dist/examples/utils/sdk-setup.d.ts.map +1 -0
  726. package/dist/examples/utils/suppress-logging.d.ts +11 -0
  727. package/dist/examples/utils/suppress-logging.d.ts.map +1 -0
  728. package/dist/examples/utils/token-naming.d.ts +117 -0
  729. package/dist/examples/utils/token-naming.d.ts.map +1 -0
  730. package/dist/examples/utils/trade-helpers.d.ts +195 -0
  731. package/dist/examples/utils/trade-helpers.d.ts.map +1 -0
  732. package/dist/examples/utils/transaction-helpers.d.ts +92 -0
  733. package/dist/examples/utils/transaction-helpers.d.ts.map +1 -0
  734. package/dist/examples/wallet/wallet-initialization-complete.d.ts +31 -0
  735. package/dist/examples/wallet/wallet-initialization-complete.d.ts.map +1 -0
  736. package/dist/examples/wallet/wallet-key-rotation.d.ts +28 -0
  737. package/dist/examples/wallet/wallet-key-rotation.d.ts.map +1 -0
  738. package/dist/examples/wallet/wallet-recovery-patterns.d.ts +29 -0
  739. package/dist/examples/wallet/wallet-recovery-patterns.d.ts.map +1 -0
  740. package/dist/examples/wallet/wallet-signature-operations.d.ts +28 -0
  741. package/dist/examples/wallet/wallet-signature-operations.d.ts.map +1 -0
  742. package/dist/examples/wallet-tracking/wallet-balance-monitoring.d.ts +21 -0
  743. package/dist/examples/wallet-tracking/wallet-balance-monitoring.d.ts.map +1 -0
  744. package/dist/examples/wallet-tracking/wallet-portfolio-alerts.d.ts +21 -0
  745. package/dist/examples/wallet-tracking/wallet-portfolio-alerts.d.ts.map +1 -0
  746. package/dist/examples/wallet-tracking/wallet-transaction-tracking.d.ts +21 -0
  747. package/dist/examples/wallet-tracking/wallet-transaction-tracking.d.ts.map +1 -0
  748. package/dist/examples/websocket/websocket-chat-advanced.d.ts +26 -0
  749. package/dist/examples/websocket/websocket-chat-advanced.d.ts.map +1 -0
  750. package/dist/examples/websocket/websocket-chat-events-detailed.d.ts +28 -0
  751. package/dist/examples/websocket/websocket-chat-events-detailed.d.ts.map +1 -0
  752. package/dist/examples/websocket/websocket-chat-events.d.ts +26 -0
  753. package/dist/examples/websocket/websocket-chat-events.d.ts.map +1 -0
  754. package/dist/examples/websocket/websocket-combined-events.d.ts +28 -0
  755. package/dist/examples/websocket/websocket-combined-events.d.ts.map +1 -0
  756. package/dist/examples/websocket/websocket-comprehensive.d.ts +25 -0
  757. package/dist/examples/websocket/websocket-comprehensive.d.ts.map +1 -0
  758. package/dist/examples/websocket/websocket-connected-clients.d.ts +30 -0
  759. package/dist/examples/websocket/websocket-connected-clients.d.ts.map +1 -0
  760. package/dist/examples/websocket/websocket-connection-management.d.ts +28 -0
  761. package/dist/examples/websocket/websocket-connection-management.d.ts.map +1 -0
  762. package/dist/examples/websocket/websocket-content-events.d.ts +28 -0
  763. package/dist/examples/websocket/websocket-content-events.d.ts.map +1 -0
  764. package/dist/examples/websocket/websocket-core-events.d.ts +27 -0
  765. package/dist/examples/websocket/websocket-core-events.d.ts.map +1 -0
  766. package/dist/examples/websocket/websocket-dex-events.d.ts +40 -0
  767. package/dist/examples/websocket/websocket-dex-events.d.ts.map +1 -0
  768. package/dist/examples/websocket/websocket-dex-pools.d.ts +23 -0
  769. package/dist/examples/websocket/websocket-dex-pools.d.ts.map +1 -0
  770. package/dist/examples/websocket/websocket-download-recording.d.ts +26 -0
  771. package/dist/examples/websocket/websocket-download-recording.d.ts.map +1 -0
  772. package/dist/examples/websocket/websocket-interactions.d.ts +25 -0
  773. package/dist/examples/websocket/websocket-interactions.d.ts.map +1 -0
  774. package/dist/examples/websocket/websocket-moderation-events.d.ts +26 -0
  775. package/dist/examples/websocket/websocket-moderation-events.d.ts.map +1 -0
  776. package/dist/examples/websocket/websocket-recording-events.d.ts +24 -0
  777. package/dist/examples/websocket/websocket-recording-events.d.ts.map +1 -0
  778. package/dist/examples/websocket/websocket-room-events.d.ts +27 -0
  779. package/dist/examples/websocket/websocket-room-events.d.ts.map +1 -0
  780. package/dist/examples/websocket/websocket-room-management.d.ts +27 -0
  781. package/dist/examples/websocket/websocket-room-management.d.ts.map +1 -0
  782. package/dist/examples/websocket/websocket-simulcast-events.d.ts +26 -0
  783. package/dist/examples/websocket/websocket-simulcast-events.d.ts.map +1 -0
  784. package/dist/examples/websocket/websocket-stream-auth.d.ts +23 -0
  785. package/dist/examples/websocket/websocket-stream-auth.d.ts.map +1 -0
  786. package/dist/examples/websocket/websocket-stream-countdown.d.ts +38 -0
  787. package/dist/examples/websocket/websocket-stream-countdown.d.ts.map +1 -0
  788. package/dist/examples/websocket/websocket-stream-events.d.ts +26 -0
  789. package/dist/examples/websocket/websocket-stream-events.d.ts.map +1 -0
  790. package/dist/examples/websocket/websocket-stream-status.d.ts +39 -0
  791. package/dist/examples/websocket/websocket-stream-status.d.ts.map +1 -0
  792. package/dist/examples/websocket/websocket-subscription-management.d.ts +27 -0
  793. package/dist/examples/websocket/websocket-subscription-management.d.ts.map +1 -0
  794. package/dist/examples/websocket/websocket-token-creation-events.d.ts +22 -0
  795. package/dist/examples/websocket/websocket-token-creation-events.d.ts.map +1 -0
  796. package/dist/examples/websocket/websocket-token-events.d.ts +24 -0
  797. package/dist/examples/websocket/websocket-token-events.d.ts.map +1 -0
  798. package/dist/examples/websocket/websocket-token-subscription.d.ts +26 -0
  799. package/dist/examples/websocket/websocket-token-subscription.d.ts.map +1 -0
  800. package/dist/examples/websocket/websocket-token-viewers.d.ts +29 -0
  801. package/dist/examples/websocket/websocket-token-viewers.d.ts.map +1 -0
  802. package/dist/examples/websocket/websocket-unsubscribe.d.ts +25 -0
  803. package/dist/examples/websocket/websocket-unsubscribe.d.ts.map +1 -0
  804. package/dist/examples/websocket/websocket-user-events.d.ts +40 -0
  805. package/dist/examples/websocket/websocket-user-events.d.ts.map +1 -0
  806. package/dist/examples/websocket/websocket-user-presence.d.ts +29 -0
  807. package/dist/examples/websocket/websocket-user-presence.d.ts.map +1 -0
  808. package/dist/examples/websocket/websocket-viewer-analytics.d.ts +38 -0
  809. package/dist/examples/websocket/websocket-viewer-analytics.d.ts.map +1 -0
  810. package/dist/examples/wrap/wrap-status-tracking.d.ts +19 -0
  811. package/dist/examples/wrap/wrap-status-tracking.d.ts.map +1 -0
  812. package/dist/examples/wrap/wrap-token-discovery.d.ts +20 -0
  813. package/dist/examples/wrap/wrap-token-discovery.d.ts.map +1 -0
  814. package/dist/helpers/sdk.d.ts +87 -0
  815. package/dist/helpers/sdk.d.ts.map +1 -0
  816. package/dist/helpers/wallet.d.ts +151 -0
  817. package/dist/helpers/wallet.d.ts.map +1 -0
  818. package/dist/index.browser.d.ts +149 -0
  819. package/dist/index.browser.d.ts.map +1 -0
  820. package/dist/index.browser.esm.js +1 -0
  821. package/dist/index.cjs +1 -0
  822. package/dist/index.d.ts +6 -115
  823. package/dist/index.d.ts.map +1 -1
  824. package/dist/index.esm.js +1 -1
  825. package/dist/index.js +1 -1
  826. package/dist/index.node.d.ts +13 -0
  827. package/dist/index.node.d.ts.map +1 -0
  828. package/dist/native.cjs +1 -0
  829. package/dist/native.d.ts +22 -0
  830. package/dist/native.d.ts.map +1 -0
  831. package/dist/native.esm.js +1 -0
  832. package/dist/polyfills/file-global.d.ts +12 -0
  833. package/dist/polyfills/file-global.d.ts.map +1 -0
  834. package/dist/react/WalletContext.d.ts +60 -0
  835. package/dist/react/WalletContext.d.ts.map +1 -0
  836. package/dist/react/index.d.ts +65 -0
  837. package/dist/react/index.d.ts.map +1 -0
  838. package/dist/react/types.d.ts +76 -0
  839. package/dist/react/types.d.ts.map +1 -0
  840. package/dist/react/useWallet.d.ts +123 -0
  841. package/dist/react/useWallet.d.ts.map +1 -0
  842. package/dist/react/useWalletConnection.d.ts +89 -0
  843. package/dist/react/useWalletConnection.d.ts.map +1 -0
  844. package/dist/react/useWalletDetection.d.ts +81 -0
  845. package/dist/react/useWalletDetection.d.ts.map +1 -0
  846. package/dist/react.cjs +1 -0
  847. package/dist/react.esm.js +1 -0
  848. package/dist/schemas/files.d.ts +83 -0
  849. package/dist/schemas/files.d.ts.map +1 -0
  850. package/dist/schemas/index.d.ts +83 -0
  851. package/dist/schemas/index.d.ts.map +1 -0
  852. package/dist/schemas/launchpad.d.ts +135 -0
  853. package/dist/schemas/launchpad.d.ts.map +1 -0
  854. package/dist/schemas/pagination.d.ts +107 -0
  855. package/dist/schemas/pagination.d.ts.map +1 -0
  856. package/dist/schemas/primitives.d.ts +142 -0
  857. package/dist/schemas/primitives.d.ts.map +1 -0
  858. package/dist/schemas/trade.d.ts +140 -0
  859. package/dist/schemas/trade.d.ts.map +1 -0
  860. package/dist/schemas/user.d.ts +99 -0
  861. package/dist/schemas/user.d.ts.map +1 -0
  862. package/dist/schemas/validators.d.ts +332 -0
  863. package/dist/schemas/validators.d.ts.map +1 -0
  864. package/dist/scripts/derive-public-key-from-private-key.d.ts +8 -0
  865. package/dist/scripts/derive-public-key-from-private-key.d.ts.map +1 -0
  866. package/dist/scripts/eslint-fixer.d.ts +7 -0
  867. package/dist/scripts/eslint-fixer.d.ts.map +1 -0
  868. package/dist/scripts/final-fixer.d.ts +7 -0
  869. package/dist/scripts/final-fixer.d.ts.map +1 -0
  870. package/dist/scripts/fix-all-remaining-boolean.d.ts +7 -0
  871. package/dist/scripts/fix-all-remaining-boolean.d.ts.map +1 -0
  872. package/dist/scripts/fix-boolean-expressions-advanced.d.ts +7 -0
  873. package/dist/scripts/fix-boolean-expressions-advanced.d.ts.map +1 -0
  874. package/dist/scripts/fix-boolean-expressions-ast.d.ts +9 -0
  875. package/dist/scripts/fix-boolean-expressions-ast.d.ts.map +1 -0
  876. package/dist/scripts/fix-boolean-expressions-auto.d.ts +7 -0
  877. package/dist/scripts/fix-boolean-expressions-auto.d.ts.map +1 -0
  878. package/dist/scripts/fix-final-aggressive.d.ts +6 -0
  879. package/dist/scripts/fix-final-aggressive.d.ts.map +1 -0
  880. package/dist/scripts/fix-final-boolean.d.ts +7 -0
  881. package/dist/scripts/fix-final-boolean.d.ts.map +1 -0
  882. package/dist/scripts/fix-remaining-boolean.d.ts +7 -0
  883. package/dist/scripts/fix-remaining-boolean.d.ts.map +1 -0
  884. package/dist/scripts/fix-strict-boolean-comprehensive.d.ts +3 -0
  885. package/dist/scripts/fix-strict-boolean-comprehensive.d.ts.map +1 -0
  886. package/dist/scripts/fix-strict-boolean-expressions.d.ts +2 -0
  887. package/dist/scripts/fix-strict-boolean-expressions.d.ts.map +1 -0
  888. package/dist/scripts/fix-strict-boolean-final.d.ts +13 -0
  889. package/dist/scripts/fix-strict-boolean-final.d.ts.map +1 -0
  890. package/dist/scripts/fixer-aggressive.d.ts +7 -0
  891. package/dist/scripts/fixer-aggressive.d.ts.map +1 -0
  892. package/dist/scripts/fixer-conservative.d.ts +7 -0
  893. package/dist/scripts/fixer-conservative.d.ts.map +1 -0
  894. package/dist/scripts/fixer-direct.d.ts +7 -0
  895. package/dist/scripts/fixer-direct.d.ts.map +1 -0
  896. package/dist/scripts/generate-demo-registry.d.ts +14 -0
  897. package/dist/scripts/generate-demo-registry.d.ts.map +1 -0
  898. package/dist/scripts/inject-version.d.ts +8 -0
  899. package/dist/scripts/inject-version.d.ts.map +1 -0
  900. package/dist/scripts/strict-boolean-fixer.d.ts +9 -0
  901. package/dist/scripts/strict-boolean-fixer.d.ts.map +1 -0
  902. package/dist/scripts/validate-demo-registry.d.ts +17 -0
  903. package/dist/scripts/validate-demo-registry.d.ts.map +1 -0
  904. package/dist/services/AIModerationService.d.ts +217 -0
  905. package/dist/services/AIModerationService.d.ts.map +1 -0
  906. package/dist/services/AbstractCacheService.d.ts +227 -0
  907. package/dist/services/AbstractCacheService.d.ts.map +1 -0
  908. package/dist/services/AbstractTokenFetchService.d.ts +150 -0
  909. package/dist/services/AbstractTokenFetchService.d.ts.map +1 -0
  910. package/dist/services/ApiKeyService.d.ts +211 -0
  911. package/dist/services/ApiKeyService.d.ts.map +1 -0
  912. package/dist/services/BanService.d.ts +312 -0
  913. package/dist/services/BanService.d.ts.map +1 -0
  914. package/dist/services/BaseService.d.ts +116 -0
  915. package/dist/services/BaseService.d.ts.map +1 -0
  916. package/dist/services/BatchedCacheService.d.ts +133 -0
  917. package/dist/services/BatchedCacheService.d.ts.map +1 -0
  918. package/dist/services/BridgeableTokenCache.d.ts +120 -0
  919. package/dist/services/BridgeableTokenCache.d.ts.map +1 -0
  920. package/dist/services/BridgeableTokenService.d.ts +218 -0
  921. package/dist/services/BridgeableTokenService.d.ts.map +1 -0
  922. package/dist/services/BundleService.d.ts +245 -0
  923. package/dist/services/BundleService.d.ts.map +1 -0
  924. package/dist/services/BundlerClientFactory.d.ts +32 -0
  925. package/dist/services/BundlerClientFactory.d.ts.map +1 -0
  926. package/dist/services/ChartService.d.ts +106 -0
  927. package/dist/services/ChartService.d.ts.map +1 -0
  928. package/dist/services/ClientConfigService.d.ts +61 -0
  929. package/dist/services/ClientConfigService.d.ts.map +1 -0
  930. package/dist/services/ContentFlagService.d.ts +218 -0
  931. package/dist/services/ContentFlagService.d.ts.map +1 -0
  932. package/dist/services/ContentReactionService.d.ts +175 -0
  933. package/dist/services/ContentReactionService.d.ts.map +1 -0
  934. package/dist/services/DexBackendClient.d.ts +225 -0
  935. package/dist/services/DexBackendClient.d.ts.map +1 -0
  936. package/dist/services/DexBackendTradeClient.d.ts +34 -0
  937. package/dist/services/DexBackendTradeClient.d.ts.map +1 -0
  938. package/dist/services/DexPoolService.d.ts +137 -0
  939. package/dist/services/DexPoolService.d.ts.map +1 -0
  940. package/dist/services/DexQuoteService.d.ts +446 -0
  941. package/dist/services/DexQuoteService.d.ts.map +1 -0
  942. package/dist/services/DexService.d.ts +433 -0
  943. package/dist/services/DexService.d.ts.map +1 -0
  944. package/dist/services/EventsBatcherService.d.ts +111 -0
  945. package/dist/services/EventsBatcherService.d.ts.map +1 -0
  946. package/dist/services/GSwapAssetService.d.ts +96 -0
  947. package/dist/services/GSwapAssetService.d.ts.map +1 -0
  948. package/dist/services/GSwapLiquidityMutationService.d.ts +138 -0
  949. package/dist/services/GSwapLiquidityMutationService.d.ts.map +1 -0
  950. package/dist/services/GSwapLiquidityQueryService.d.ts +75 -0
  951. package/dist/services/GSwapLiquidityQueryService.d.ts.map +1 -0
  952. package/dist/services/GSwapPoolCalculationService.d.ts +187 -0
  953. package/dist/services/GSwapPoolCalculationService.d.ts.map +1 -0
  954. package/dist/services/GSwapPoolQueryService.d.ts +114 -0
  955. package/dist/services/GSwapPoolQueryService.d.ts.map +1 -0
  956. package/dist/services/GSwapService.d.ts +1207 -0
  957. package/dist/services/GSwapService.d.ts.map +1 -0
  958. package/dist/services/GSwapSwapService.d.ts +66 -0
  959. package/dist/services/GSwapSwapService.d.ts.map +1 -0
  960. package/dist/services/GalaChainBalanceService.d.ts +155 -0
  961. package/dist/services/GalaChainBalanceService.d.ts.map +1 -0
  962. package/dist/services/GalaChainLockService.d.ts +144 -0
  963. package/dist/services/GalaChainLockService.d.ts.map +1 -0
  964. package/dist/services/GalaChainService.d.ts +399 -0
  965. package/dist/services/GalaChainService.d.ts.map +1 -0
  966. package/dist/services/GalaChainTokenService.d.ts +108 -0
  967. package/dist/services/GalaChainTokenService.d.ts.map +1 -0
  968. package/dist/services/GalaChainTransferService.d.ts +205 -0
  969. package/dist/services/GalaChainTransferService.d.ts.map +1 -0
  970. package/dist/services/GdexStreamService.d.ts +133 -0
  971. package/dist/services/GdexStreamService.d.ts.map +1 -0
  972. package/dist/services/HolderService.d.ts +181 -0
  973. package/dist/services/HolderService.d.ts.map +1 -0
  974. package/dist/services/ImageService.d.ts +173 -0
  975. package/dist/services/ImageService.d.ts.map +1 -0
  976. package/dist/services/IntervalRegistry.d.ts +79 -0
  977. package/dist/services/IntervalRegistry.d.ts.map +1 -0
  978. package/dist/services/LaunchpadService.d.ts +343 -0
  979. package/dist/services/LaunchpadService.d.ts.map +1 -0
  980. package/dist/services/MessagesService.d.ts +251 -0
  981. package/dist/services/MessagesService.d.ts.map +1 -0
  982. package/dist/services/ModeratorService.d.ts +311 -0
  983. package/dist/services/ModeratorService.d.ts.map +1 -0
  984. package/dist/services/MultiPoolStateManager.d.ts +289 -0
  985. package/dist/services/MultiPoolStateManager.d.ts.map +1 -0
  986. package/dist/services/NetworkKeyedCacheService.d.ts +185 -0
  987. package/dist/services/NetworkKeyedCacheService.d.ts.map +1 -0
  988. package/dist/services/NftCollectionService.d.ts +121 -0
  989. package/dist/services/NftCollectionService.d.ts.map +1 -0
  990. package/dist/services/NotificationService.d.ts +113 -0
  991. package/dist/services/NotificationService.d.ts.map +1 -0
  992. package/dist/services/OEmbedService.d.ts +152 -0
  993. package/dist/services/OEmbedService.d.ts.map +1 -0
  994. package/dist/services/OverseerService.d.ts +524 -0
  995. package/dist/services/OverseerService.d.ts.map +1 -0
  996. package/dist/services/PlatformConfigService.d.ts +149 -0
  997. package/dist/services/PlatformConfigService.d.ts.map +1 -0
  998. package/dist/services/PlatformStatsService.d.ts +72 -0
  999. package/dist/services/PlatformStatsService.d.ts.map +1 -0
  1000. package/dist/services/PoolCacheManager.d.ts +258 -0
  1001. package/dist/services/PoolCacheManager.d.ts.map +1 -0
  1002. package/dist/services/PoolService.d.ts +316 -0
  1003. package/dist/services/PoolService.d.ts.map +1 -0
  1004. package/dist/services/PoolStateManager.d.ts +176 -0
  1005. package/dist/services/PoolStateManager.d.ts.map +1 -0
  1006. package/dist/services/PriceHistoryService.d.ts +207 -0
  1007. package/dist/services/PriceHistoryService.d.ts.map +1 -0
  1008. package/dist/services/RestrictedNamesService.d.ts +80 -0
  1009. package/dist/services/RestrictedNamesService.d.ts.map +1 -0
  1010. package/dist/services/SignatureService.d.ts +113 -0
  1011. package/dist/services/SignatureService.d.ts.map +1 -0
  1012. package/dist/services/StreamChatService.d.ts +259 -0
  1013. package/dist/services/StreamChatService.d.ts.map +1 -0
  1014. package/dist/services/StreamTokenServiceBase.d.ts +404 -0
  1015. package/dist/services/StreamTokenServiceBase.d.ts.map +1 -0
  1016. package/dist/services/StreamWebSocketService.d.ts +586 -0
  1017. package/dist/services/StreamWebSocketService.d.ts.map +1 -0
  1018. package/dist/services/StreamingEventService.d.ts +441 -0
  1019. package/dist/services/StreamingEventService.d.ts.map +1 -0
  1020. package/dist/services/StreamingService.d.ts +573 -0
  1021. package/dist/services/StreamingService.d.ts.map +1 -0
  1022. package/dist/services/SwapEventQueue.d.ts +192 -0
  1023. package/dist/services/SwapEventQueue.d.ts.map +1 -0
  1024. package/dist/services/TokenBanService.d.ts +217 -0
  1025. package/dist/services/TokenBanService.d.ts.map +1 -0
  1026. package/dist/services/TokenClassKeyService.d.ts +162 -0
  1027. package/dist/services/TokenClassKeyService.d.ts.map +1 -0
  1028. package/dist/services/TokenMetadataCache.d.ts +310 -0
  1029. package/dist/services/TokenMetadataCache.d.ts.map +1 -0
  1030. package/dist/services/TokenMetadataService.d.ts +509 -0
  1031. package/dist/services/TokenMetadataService.d.ts.map +1 -0
  1032. package/dist/services/TokenResolverService.d.ts +329 -0
  1033. package/dist/services/TokenResolverService.d.ts.map +1 -0
  1034. package/dist/services/TradeService.d.ts +286 -0
  1035. package/dist/services/TradeService.d.ts.map +1 -0
  1036. package/dist/services/TradingQuotesService.d.ts +162 -0
  1037. package/dist/services/TradingQuotesService.d.ts.map +1 -0
  1038. package/dist/services/UserService.d.ts +352 -0
  1039. package/dist/services/UserService.d.ts.map +1 -0
  1040. package/dist/services/WebSocketAdminService.d.ts +587 -0
  1041. package/dist/services/WebSocketAdminService.d.ts.map +1 -0
  1042. package/dist/services/WebSocketService.d.ts +189 -0
  1043. package/dist/services/WebSocketService.d.ts.map +1 -0
  1044. package/dist/services/WeeklyChallengeService.d.ts +114 -0
  1045. package/dist/services/WeeklyChallengeService.d.ts.map +1 -0
  1046. package/dist/services/WrapService.d.ts +172 -0
  1047. package/dist/services/WrapService.d.ts.map +1 -0
  1048. package/dist/services/WrappableTokenCache.d.ts +100 -0
  1049. package/dist/services/WrappableTokenCache.d.ts.map +1 -0
  1050. package/dist/services/WrappableTokenService.d.ts +130 -0
  1051. package/dist/services/WrappableTokenService.d.ts.map +1 -0
  1052. package/dist/services/__mocks__/logger.mock.d.ts +24 -0
  1053. package/dist/services/__mocks__/logger.mock.d.ts.map +1 -0
  1054. package/dist/services/shared/cache-helpers.d.ts +188 -0
  1055. package/dist/services/shared/cache-helpers.d.ts.map +1 -0
  1056. package/dist/services/shared/http-helpers.d.ts +146 -0
  1057. package/dist/services/shared/http-helpers.d.ts.map +1 -0
  1058. package/dist/services/shared/pagination-helpers.d.ts +167 -0
  1059. package/dist/services/shared/pagination-helpers.d.ts.map +1 -0
  1060. package/dist/services/shared/service-validators.d.ts +137 -0
  1061. package/dist/services/shared/service-validators.d.ts.map +1 -0
  1062. package/dist/services/shared/websocket-helpers.d.ts +158 -0
  1063. package/dist/services/shared/websocket-helpers.d.ts.map +1 -0
  1064. package/dist/setup.d.ts +8 -0
  1065. package/dist/setup.d.ts.map +1 -0
  1066. package/dist/src/LaunchpadSDK.d.ts +2414 -497
  1067. package/dist/src/LaunchpadSDK.d.ts.map +1 -1
  1068. package/dist/src/api/LaunchpadAPI.d.ts +15 -8
  1069. package/dist/src/api/LaunchpadAPI.d.ts.map +1 -1
  1070. package/dist/src/api/dto/BondingCurveDTOs.d.ts.map +1 -1
  1071. package/dist/src/api/dto/BurnTokensDto.d.ts +1 -1
  1072. package/dist/src/api/dto/BurnTokensDto.d.ts.map +1 -1
  1073. package/dist/src/api/dto/LockTokenDto.d.ts +1 -1
  1074. package/dist/src/api/dto/LockTokenDto.d.ts.map +1 -1
  1075. package/dist/src/api/dto/TransferTokenDto.d.ts +1 -1
  1076. package/dist/src/api/dto/TransferTokenDto.d.ts.map +1 -1
  1077. package/dist/src/api/dto/UnlockTokenDto.d.ts +1 -1
  1078. package/dist/src/api/dto/UnlockTokenDto.d.ts.map +1 -1
  1079. package/dist/src/auth/JwtAuth.d.ts +43 -5
  1080. package/dist/src/auth/JwtAuth.d.ts.map +1 -1
  1081. package/dist/src/auth/SessionAuthService.d.ts +11 -6
  1082. package/dist/src/auth/SessionAuthService.d.ts.map +1 -1
  1083. package/dist/src/auth/SignatureAuth.d.ts +64 -3
  1084. package/dist/src/auth/SignatureAuth.d.ts.map +1 -1
  1085. package/dist/src/auth/storage.d.ts +66 -0
  1086. package/dist/src/auth/storage.d.ts.map +1 -0
  1087. package/dist/src/auth/types.d.ts +11 -2
  1088. package/dist/src/auth/types.d.ts.map +1 -1
  1089. package/dist/src/bridge/BridgeService.d.ts +1 -1
  1090. package/dist/src/bridge/BridgeService.d.ts.map +1 -1
  1091. package/dist/src/bridge/GalaConnectClient.d.ts +1 -1
  1092. package/dist/src/bridge/GalaConnectClient.d.ts.map +1 -1
  1093. package/dist/src/bridge/constants/tokens.d.ts +1 -1
  1094. package/dist/src/bridge/constants/tokens.d.ts.map +1 -1
  1095. package/dist/src/bridge/index.d.ts +10 -10
  1096. package/dist/src/bridge/index.d.ts.map +1 -1
  1097. package/dist/src/bridge/strategies/BridgeStrategy.d.ts.map +1 -1
  1098. package/dist/src/bridge/strategies/EthereumBridgeStrategy.d.ts +1 -1
  1099. package/dist/src/bridge/strategies/EthereumBridgeStrategy.d.ts.map +1 -1
  1100. package/dist/src/bridge/strategies/SolanaBridgeStrategy.d.ts +1 -1
  1101. package/dist/src/bridge/strategies/SolanaBridgeStrategy.d.ts.map +1 -1
  1102. package/dist/src/bridge/utils/addressValidation.d.ts.map +1 -1
  1103. package/dist/src/bridge/utils/balanceHelpers.d.ts +1 -1
  1104. package/dist/src/bridge/utils/balanceHelpers.d.ts.map +1 -1
  1105. package/dist/src/bridge/utils/bridgeErrors.d.ts.map +1 -1
  1106. package/dist/src/bridge/utils/bridgeOutHelpers.d.ts +1 -1
  1107. package/dist/src/bridge/utils/bridgeOutHelpers.d.ts.map +1 -1
  1108. package/dist/src/bridge/utils/bridgePayload.d.ts +2 -11
  1109. package/dist/src/bridge/utils/bridgePayload.d.ts.map +1 -1
  1110. package/dist/src/bridge/utils/bridgeStatusParser.d.ts.map +1 -1
  1111. package/dist/src/bridge/utils/eip712Helpers.d.ts.map +1 -1
  1112. package/dist/src/bridge/utils/index.d.ts +9 -9
  1113. package/dist/src/bridge/utils/index.d.ts.map +1 -1
  1114. package/dist/src/bridge/utils/tokenIdUtils.d.ts +1 -1
  1115. package/dist/src/bridge/utils/tokenIdUtils.d.ts.map +1 -1
  1116. package/dist/src/bridge/utils/tokenMetadataResolver.d.ts +1 -1
  1117. package/dist/src/bridge/utils/tokenMetadataResolver.d.ts.map +1 -1
  1118. package/dist/src/config/environments.d.ts +3 -1
  1119. package/dist/src/config/environments.d.ts.map +1 -1
  1120. package/dist/src/constants/endpoints.d.ts +566 -260
  1121. package/dist/src/constants/endpoints.d.ts.map +1 -1
  1122. package/dist/src/constants/events.d.ts +53 -0
  1123. package/dist/src/constants/events.d.ts.map +1 -0
  1124. package/dist/src/constants/pagination.d.ts +23 -13
  1125. package/dist/src/constants/pagination.d.ts.map +1 -1
  1126. package/dist/src/constants/version.generated.d.ts +1 -1
  1127. package/dist/src/constants/version.generated.d.ts.map +1 -1
  1128. package/dist/src/helpers/sdk.d.ts.map +1 -1
  1129. package/dist/src/helpers/wallet.d.ts.map +1 -1
  1130. package/dist/src/index.browser.d.ts +149 -0
  1131. package/dist/src/index.browser.d.ts.map +1 -0
  1132. package/dist/src/index.d.ts +6 -115
  1133. package/dist/src/index.d.ts.map +1 -1
  1134. package/dist/src/index.node.d.ts +13 -0
  1135. package/dist/src/index.node.d.ts.map +1 -0
  1136. package/dist/src/native.d.ts +22 -0
  1137. package/dist/src/native.d.ts.map +1 -0
  1138. package/dist/src/react/WalletContext.d.ts +60 -0
  1139. package/dist/src/react/WalletContext.d.ts.map +1 -0
  1140. package/dist/src/react/index.d.ts +65 -0
  1141. package/dist/src/react/index.d.ts.map +1 -0
  1142. package/dist/src/react/types.d.ts +76 -0
  1143. package/dist/src/react/types.d.ts.map +1 -0
  1144. package/dist/src/react/useWallet.d.ts +123 -0
  1145. package/dist/src/react/useWallet.d.ts.map +1 -0
  1146. package/dist/src/react/useWalletConnection.d.ts +89 -0
  1147. package/dist/src/react/useWalletConnection.d.ts.map +1 -0
  1148. package/dist/src/react/useWalletDetection.d.ts +81 -0
  1149. package/dist/src/react/useWalletDetection.d.ts.map +1 -0
  1150. package/dist/src/schemas/files.d.ts.map +1 -1
  1151. package/dist/src/schemas/index.d.ts +4 -3
  1152. package/dist/src/schemas/index.d.ts.map +1 -1
  1153. package/dist/src/schemas/launchpad.d.ts +1 -0
  1154. package/dist/src/schemas/launchpad.d.ts.map +1 -1
  1155. package/dist/src/schemas/pagination.d.ts +16 -19
  1156. package/dist/src/schemas/pagination.d.ts.map +1 -1
  1157. package/dist/src/schemas/primitives.d.ts +1 -1
  1158. package/dist/src/schemas/primitives.d.ts.map +1 -1
  1159. package/dist/src/schemas/trade.d.ts +2 -2
  1160. package/dist/src/schemas/trade.d.ts.map +1 -1
  1161. package/dist/src/schemas/user.d.ts +2 -2
  1162. package/dist/src/schemas/user.d.ts.map +1 -1
  1163. package/dist/src/schemas/validators.d.ts +6 -5
  1164. package/dist/src/schemas/validators.d.ts.map +1 -1
  1165. package/dist/src/services/AIModerationService.d.ts +217 -0
  1166. package/dist/src/services/AIModerationService.d.ts.map +1 -0
  1167. package/dist/src/services/AbstractTokenFetchService.d.ts +1 -1
  1168. package/dist/src/services/AbstractTokenFetchService.d.ts.map +1 -1
  1169. package/dist/src/services/ApiKeyService.d.ts +14 -9
  1170. package/dist/src/services/ApiKeyService.d.ts.map +1 -1
  1171. package/dist/src/services/BanService.d.ts +132 -16
  1172. package/dist/src/services/BanService.d.ts.map +1 -1
  1173. package/dist/src/services/BaseService.d.ts +1 -1
  1174. package/dist/src/services/BaseService.d.ts.map +1 -1
  1175. package/dist/src/services/BatchedCacheService.d.ts.map +1 -1
  1176. package/dist/src/services/BridgeableTokenCache.d.ts +1 -1
  1177. package/dist/src/services/BridgeableTokenCache.d.ts.map +1 -1
  1178. package/dist/src/services/BridgeableTokenService.d.ts +4 -4
  1179. package/dist/src/services/BridgeableTokenService.d.ts.map +1 -1
  1180. package/dist/src/services/BundleService.d.ts +5 -5
  1181. package/dist/src/services/BundleService.d.ts.map +1 -1
  1182. package/dist/src/services/BundlerClientFactory.d.ts.map +1 -1
  1183. package/dist/src/services/ChartService.d.ts +106 -0
  1184. package/dist/src/services/ChartService.d.ts.map +1 -0
  1185. package/dist/src/services/ClientConfigService.d.ts +61 -0
  1186. package/dist/src/services/ClientConfigService.d.ts.map +1 -0
  1187. package/dist/src/services/ContentFlagService.d.ts +13 -7
  1188. package/dist/src/services/ContentFlagService.d.ts.map +1 -1
  1189. package/dist/src/services/ContentReactionService.d.ts +3 -3
  1190. package/dist/src/services/ContentReactionService.d.ts.map +1 -1
  1191. package/dist/src/services/DexBackendClient.d.ts +1 -1
  1192. package/dist/src/services/DexBackendClient.d.ts.map +1 -1
  1193. package/dist/src/services/DexBackendTradeClient.d.ts +34 -0
  1194. package/dist/src/services/DexBackendTradeClient.d.ts.map +1 -0
  1195. package/dist/src/services/DexPoolService.d.ts +9 -11
  1196. package/dist/src/services/DexPoolService.d.ts.map +1 -1
  1197. package/dist/src/services/DexQuoteService.d.ts +23 -24
  1198. package/dist/src/services/DexQuoteService.d.ts.map +1 -1
  1199. package/dist/src/services/DexService.d.ts +6 -6
  1200. package/dist/src/services/DexService.d.ts.map +1 -1
  1201. package/dist/src/services/EventsBatcherService.d.ts +111 -0
  1202. package/dist/src/services/EventsBatcherService.d.ts.map +1 -0
  1203. package/dist/src/services/GSwapAssetService.d.ts +18 -2
  1204. package/dist/src/services/GSwapAssetService.d.ts.map +1 -1
  1205. package/dist/src/services/GSwapLiquidityMutationService.d.ts +6 -8
  1206. package/dist/src/services/GSwapLiquidityMutationService.d.ts.map +1 -1
  1207. package/dist/src/services/GSwapLiquidityQueryService.d.ts +4 -16
  1208. package/dist/src/services/GSwapLiquidityQueryService.d.ts.map +1 -1
  1209. package/dist/src/services/GSwapPoolCalculationService.d.ts +0 -13
  1210. package/dist/src/services/GSwapPoolCalculationService.d.ts.map +1 -1
  1211. package/dist/src/services/GSwapPoolQueryService.d.ts +7 -9
  1212. package/dist/src/services/GSwapPoolQueryService.d.ts.map +1 -1
  1213. package/dist/src/services/GSwapService.d.ts +16 -16
  1214. package/dist/src/services/GSwapService.d.ts.map +1 -1
  1215. package/dist/src/services/GSwapSwapService.d.ts +2 -4
  1216. package/dist/src/services/GSwapSwapService.d.ts.map +1 -1
  1217. package/dist/src/services/GalaChainBalanceService.d.ts +2 -2
  1218. package/dist/src/services/GalaChainBalanceService.d.ts.map +1 -1
  1219. package/dist/src/services/GalaChainLockService.d.ts +3 -3
  1220. package/dist/src/services/GalaChainLockService.d.ts.map +1 -1
  1221. package/dist/src/services/GalaChainService.d.ts +10 -13
  1222. package/dist/src/services/GalaChainService.d.ts.map +1 -1
  1223. package/dist/src/services/GalaChainTokenService.d.ts +3 -3
  1224. package/dist/src/services/GalaChainTokenService.d.ts.map +1 -1
  1225. package/dist/src/services/GalaChainTransferService.d.ts +4 -4
  1226. package/dist/src/services/GalaChainTransferService.d.ts.map +1 -1
  1227. package/dist/src/services/GdexStreamService.d.ts +133 -0
  1228. package/dist/src/services/GdexStreamService.d.ts.map +1 -0
  1229. package/dist/src/services/HolderService.d.ts +181 -0
  1230. package/dist/src/services/HolderService.d.ts.map +1 -0
  1231. package/dist/src/services/ImageService.d.ts +2 -15
  1232. package/dist/src/services/ImageService.d.ts.map +1 -1
  1233. package/dist/src/services/IntervalRegistry.d.ts +79 -0
  1234. package/dist/src/services/IntervalRegistry.d.ts.map +1 -0
  1235. package/dist/src/services/LaunchpadService.d.ts +67 -24
  1236. package/dist/src/services/LaunchpadService.d.ts.map +1 -1
  1237. package/dist/src/services/MessagesService.d.ts +251 -0
  1238. package/dist/src/services/MessagesService.d.ts.map +1 -0
  1239. package/dist/src/services/ModeratorService.d.ts +58 -22
  1240. package/dist/src/services/ModeratorService.d.ts.map +1 -1
  1241. package/dist/src/services/MultiPoolStateManager.d.ts +17 -10
  1242. package/dist/src/services/MultiPoolStateManager.d.ts.map +1 -1
  1243. package/dist/src/services/NetworkKeyedCacheService.d.ts.map +1 -1
  1244. package/dist/src/services/NftCollectionService.d.ts +3 -5
  1245. package/dist/src/services/NftCollectionService.d.ts.map +1 -1
  1246. package/dist/src/services/NotificationService.d.ts +113 -0
  1247. package/dist/src/services/NotificationService.d.ts.map +1 -0
  1248. package/dist/src/services/OEmbedService.d.ts +152 -0
  1249. package/dist/src/services/OEmbedService.d.ts.map +1 -0
  1250. package/dist/src/services/OverseerService.d.ts +230 -35
  1251. package/dist/src/services/OverseerService.d.ts.map +1 -1
  1252. package/dist/src/services/PlatformConfigService.d.ts +149 -0
  1253. package/dist/src/services/PlatformConfigService.d.ts.map +1 -0
  1254. package/dist/src/services/PlatformStatsService.d.ts +72 -0
  1255. package/dist/src/services/PlatformStatsService.d.ts.map +1 -0
  1256. package/dist/src/services/PoolCacheManager.d.ts +3 -10
  1257. package/dist/src/services/PoolCacheManager.d.ts.map +1 -1
  1258. package/dist/src/services/PoolService.d.ts +108 -25
  1259. package/dist/src/services/PoolService.d.ts.map +1 -1
  1260. package/dist/src/services/PoolStateManager.d.ts +2 -2
  1261. package/dist/src/services/PoolStateManager.d.ts.map +1 -1
  1262. package/dist/src/services/PriceHistoryService.d.ts +11 -12
  1263. package/dist/src/services/PriceHistoryService.d.ts.map +1 -1
  1264. package/dist/src/services/RestrictedNamesService.d.ts +80 -0
  1265. package/dist/src/services/RestrictedNamesService.d.ts.map +1 -0
  1266. package/dist/src/services/SignatureService.d.ts.map +1 -1
  1267. package/dist/src/services/StreamChatService.d.ts +68 -187
  1268. package/dist/src/services/StreamChatService.d.ts.map +1 -1
  1269. package/dist/src/services/StreamTokenServiceBase.d.ts +45 -12
  1270. package/dist/src/services/StreamTokenServiceBase.d.ts.map +1 -1
  1271. package/dist/src/services/StreamWebSocketService.d.ts +335 -17
  1272. package/dist/src/services/StreamWebSocketService.d.ts.map +1 -1
  1273. package/dist/src/services/StreamingEventService.d.ts +16 -6
  1274. package/dist/src/services/StreamingEventService.d.ts.map +1 -1
  1275. package/dist/src/services/StreamingService.d.ts +66 -40
  1276. package/dist/src/services/StreamingService.d.ts.map +1 -1
  1277. package/dist/src/services/SwapEventQueue.d.ts +1 -1
  1278. package/dist/src/services/SwapEventQueue.d.ts.map +1 -1
  1279. package/dist/src/services/TokenBanService.d.ts +18 -16
  1280. package/dist/src/services/TokenBanService.d.ts.map +1 -1
  1281. package/dist/src/services/TokenClassKeyService.d.ts.map +1 -1
  1282. package/dist/src/services/TokenMetadataCache.d.ts.map +1 -1
  1283. package/dist/src/services/TokenMetadataService.d.ts +4 -4
  1284. package/dist/src/services/TokenMetadataService.d.ts.map +1 -1
  1285. package/dist/src/services/TokenResolverService.d.ts +197 -24
  1286. package/dist/src/services/TokenResolverService.d.ts.map +1 -1
  1287. package/dist/src/services/TradeService.d.ts +19 -19
  1288. package/dist/src/services/TradeService.d.ts.map +1 -1
  1289. package/dist/src/services/TradingQuotesService.d.ts +162 -0
  1290. package/dist/src/services/TradingQuotesService.d.ts.map +1 -0
  1291. package/dist/src/services/UserService.d.ts +83 -23
  1292. package/dist/src/services/UserService.d.ts.map +1 -1
  1293. package/dist/src/services/WebSocketAdminService.d.ts +587 -0
  1294. package/dist/src/services/WebSocketAdminService.d.ts.map +1 -0
  1295. package/dist/src/services/WebSocketService.d.ts +7 -1
  1296. package/dist/src/services/WebSocketService.d.ts.map +1 -1
  1297. package/dist/src/services/WeeklyChallengeService.d.ts +114 -0
  1298. package/dist/src/services/WeeklyChallengeService.d.ts.map +1 -0
  1299. package/dist/src/services/WrapService.d.ts +5 -5
  1300. package/dist/src/services/WrapService.d.ts.map +1 -1
  1301. package/dist/src/services/WrappableTokenService.d.ts +3 -3
  1302. package/dist/src/services/WrappableTokenService.d.ts.map +1 -1
  1303. package/dist/src/services/__mocks__/logger.mock.d.ts.map +1 -1
  1304. package/dist/src/services/shared/cache-helpers.d.ts.map +1 -1
  1305. package/dist/src/services/shared/http-helpers.d.ts.map +1 -1
  1306. package/dist/src/services/shared/pagination-helpers.d.ts +19 -19
  1307. package/dist/src/services/shared/pagination-helpers.d.ts.map +1 -1
  1308. package/dist/src/services/shared/service-validators.d.ts +1 -1
  1309. package/dist/src/services/shared/service-validators.d.ts.map +1 -1
  1310. package/dist/src/setup.d.ts +2 -2
  1311. package/dist/src/types/ai-moderation.dto.d.ts +294 -0
  1312. package/dist/src/types/ai-moderation.dto.d.ts.map +1 -0
  1313. package/dist/src/types/api-key.dto.d.ts +82 -9
  1314. package/dist/src/types/api-key.dto.d.ts.map +1 -1
  1315. package/dist/src/types/ban.dto.d.ts +174 -3
  1316. package/dist/src/types/ban.dto.d.ts.map +1 -1
  1317. package/dist/src/types/cache-management.dto.d.ts +44 -0
  1318. package/dist/src/types/cache-management.dto.d.ts.map +1 -0
  1319. package/dist/src/types/chat-messages.dto.d.ts +7 -7
  1320. package/dist/src/types/chat-messages.dto.d.ts.map +1 -1
  1321. package/dist/src/types/client-config.dto.d.ts +43 -0
  1322. package/dist/src/types/client-config.dto.d.ts.map +1 -0
  1323. package/dist/src/types/comment.dto.d.ts +3 -7
  1324. package/dist/src/types/comment.dto.d.ts.map +1 -1
  1325. package/dist/src/types/comments.dto.d.ts +9 -9
  1326. package/dist/src/types/comments.dto.d.ts.map +1 -1
  1327. package/dist/src/types/common.d.ts +117 -27
  1328. package/dist/src/types/common.d.ts.map +1 -1
  1329. package/dist/src/types/composite-pool.dto.d.ts +4 -6
  1330. package/dist/src/types/composite-pool.dto.d.ts.map +1 -1
  1331. package/dist/src/types/constraints.d.ts +6 -2
  1332. package/dist/src/types/constraints.d.ts.map +1 -1
  1333. package/dist/src/types/content-flag.dto.d.ts +43 -4
  1334. package/dist/src/types/content-flag.dto.d.ts.map +1 -1
  1335. package/dist/src/types/content-reactions.dto.d.ts +4 -4
  1336. package/dist/src/types/content-reactions.dto.d.ts.map +1 -1
  1337. package/dist/src/types/dex-pool.dto.d.ts +20 -7
  1338. package/dist/src/types/dex-pool.dto.d.ts.map +1 -1
  1339. package/dist/src/types/dto.d.ts +5 -1
  1340. package/dist/src/types/dto.d.ts.map +1 -1
  1341. package/dist/src/types/engagement-stats.dto.d.ts +62 -0
  1342. package/dist/src/types/engagement-stats.dto.d.ts.map +1 -0
  1343. package/dist/src/types/events.dto.d.ts +80 -0
  1344. package/dist/src/types/events.dto.d.ts.map +1 -0
  1345. package/dist/src/types/global-feed.dto.d.ts +203 -0
  1346. package/dist/src/types/global-feed.dto.d.ts.map +1 -0
  1347. package/dist/src/types/gswap-responses.types.d.ts +14 -14
  1348. package/dist/src/types/gswap-responses.types.d.ts.map +1 -1
  1349. package/dist/src/types/gswap.dto.d.ts +12 -5
  1350. package/dist/src/types/gswap.dto.d.ts.map +1 -1
  1351. package/dist/src/types/holder.types.d.ts +106 -0
  1352. package/dist/src/types/holder.types.d.ts.map +1 -0
  1353. package/dist/src/types/launchpad.dto.d.ts +154 -77
  1354. package/dist/src/types/launchpad.dto.d.ts.map +1 -1
  1355. package/dist/src/types/launchpad.validation.d.ts.map +1 -1
  1356. package/dist/src/types/lock.dto.d.ts +1 -1
  1357. package/dist/src/types/lock.dto.d.ts.map +1 -1
  1358. package/dist/src/types/messages.dto.d.ts +386 -0
  1359. package/dist/src/types/messages.dto.d.ts.map +1 -0
  1360. package/dist/src/types/moderator.dto.d.ts +38 -5
  1361. package/dist/src/types/moderator.dto.d.ts.map +1 -1
  1362. package/dist/src/types/notification.dto.d.ts +92 -0
  1363. package/dist/src/types/notification.dto.d.ts.map +1 -0
  1364. package/dist/src/types/oembed.dto.d.ts +160 -0
  1365. package/dist/src/types/oembed.dto.d.ts.map +1 -0
  1366. package/dist/src/types/options.dto.d.ts +9 -1
  1367. package/dist/src/types/options.dto.d.ts.map +1 -1
  1368. package/dist/src/types/overseer.dto.d.ts +152 -35
  1369. package/dist/src/types/overseer.dto.d.ts.map +1 -1
  1370. package/dist/src/types/platform-config.dto.d.ts +89 -0
  1371. package/dist/src/types/platform-config.dto.d.ts.map +1 -0
  1372. package/dist/src/types/platform-stats.dto.d.ts +40 -0
  1373. package/dist/src/types/platform-stats.dto.d.ts.map +1 -0
  1374. package/dist/src/types/pool-state-delta.dto.d.ts.map +1 -1
  1375. package/dist/src/types/pool.dto.d.ts +6 -1
  1376. package/dist/src/types/pool.dto.d.ts.map +1 -1
  1377. package/dist/src/types/priceHistory.dto.d.ts +6 -2
  1378. package/dist/src/types/priceHistory.dto.d.ts.map +1 -1
  1379. package/dist/src/types/restricted-names.dto.d.ts +50 -0
  1380. package/dist/src/types/restricted-names.dto.d.ts.map +1 -0
  1381. package/dist/src/types/session-auth.dto.d.ts +9 -1
  1382. package/dist/src/types/session-auth.dto.d.ts.map +1 -1
  1383. package/dist/src/types/stream-chat.dto.d.ts +4 -9
  1384. package/dist/src/types/stream-chat.dto.d.ts.map +1 -1
  1385. package/dist/src/types/streaming-events.dto.d.ts +20 -1
  1386. package/dist/src/types/streaming-events.dto.d.ts.map +1 -1
  1387. package/dist/src/types/streaming.dto.d.ts +64 -20
  1388. package/dist/src/types/streaming.dto.d.ts.map +1 -1
  1389. package/dist/src/types/token-ban.dto.d.ts +7 -8
  1390. package/dist/src/types/token-ban.dto.d.ts.map +1 -1
  1391. package/dist/src/types/token-config.dto.d.ts +117 -0
  1392. package/dist/src/types/token-config.dto.d.ts.map +1 -0
  1393. package/dist/src/types/token.types.d.ts +336 -0
  1394. package/dist/src/types/token.types.d.ts.map +1 -0
  1395. package/dist/src/types/trade.dto.d.ts +5 -1
  1396. package/dist/src/types/trade.dto.d.ts.map +1 -1
  1397. package/dist/src/types/trades-query.dto.d.ts +8 -2
  1398. package/dist/src/types/trades-query.dto.d.ts.map +1 -1
  1399. package/dist/src/types/transfer.dto.d.ts.map +1 -1
  1400. package/dist/src/types/user.dto.d.ts +218 -48
  1401. package/dist/src/types/user.dto.d.ts.map +1 -1
  1402. package/dist/src/types/websocket-admin.dto.d.ts +390 -0
  1403. package/dist/src/types/websocket-admin.dto.d.ts.map +1 -0
  1404. package/dist/src/types/websocket-events.dto.d.ts +472 -0
  1405. package/dist/src/types/websocket-events.dto.d.ts.map +1 -0
  1406. package/dist/src/types/weekly-challenge.dto.d.ts +130 -0
  1407. package/dist/src/types/weekly-challenge.dto.d.ts.map +1 -0
  1408. package/dist/src/types/wrappable-token.dto.d.ts +1 -1
  1409. package/dist/src/types/wrappable-token.dto.d.ts.map +1 -1
  1410. package/dist/src/utils/LiquidityEventExtractor.d.ts +7 -0
  1411. package/dist/src/utils/LiquidityEventExtractor.d.ts.map +1 -1
  1412. package/dist/src/utils/Logger.d.ts.map +1 -1
  1413. package/dist/src/utils/MonitoringMetrics.d.ts +0 -1
  1414. package/dist/src/utils/MonitoringMetrics.d.ts.map +1 -1
  1415. package/dist/src/utils/SignatureHelper.d.ts.map +1 -1
  1416. package/dist/src/utils/SwapEventExtractor.d.ts.map +1 -1
  1417. package/dist/src/utils/adapters.d.ts +1 -1
  1418. package/dist/src/utils/adapters.d.ts.map +1 -1
  1419. package/dist/src/utils/address-formatter.d.ts +7 -6
  1420. package/dist/src/utils/address-formatter.d.ts.map +1 -1
  1421. package/dist/src/utils/agent-config.d.ts.map +1 -1
  1422. package/dist/src/utils/amount-validator.d.ts.map +1 -1
  1423. package/dist/src/utils/api-patterns.d.ts +1 -1
  1424. package/dist/src/utils/api-patterns.d.ts.map +1 -1
  1425. package/dist/src/utils/assetUrls.d.ts +450 -0
  1426. package/dist/src/utils/assetUrls.d.ts.map +1 -0
  1427. package/dist/src/utils/auto-pagination.d.ts +89 -0
  1428. package/dist/src/utils/auto-pagination.d.ts.map +1 -1
  1429. package/dist/src/utils/bignumber-helpers.d.ts.map +1 -1
  1430. package/dist/src/utils/bignumber-pool-cache.d.ts.map +1 -1
  1431. package/dist/src/utils/composite-pool-converter.d.ts +4 -4
  1432. package/dist/src/utils/composite-pool-converter.d.ts.map +1 -1
  1433. package/dist/src/utils/crypto-compat.d.ts +40 -0
  1434. package/dist/src/utils/crypto-compat.d.ts.map +1 -0
  1435. package/dist/src/utils/delimiter-parser.d.ts +1 -1
  1436. package/dist/src/utils/delimiter-parser.d.ts.map +1 -1
  1437. package/dist/src/utils/error-factories.d.ts +1 -1
  1438. package/dist/src/utils/error-factories.d.ts.map +1 -1
  1439. package/dist/src/utils/error-handling-patterns.d.ts +1 -1
  1440. package/dist/src/utils/error-handling-patterns.d.ts.map +1 -1
  1441. package/dist/src/utils/error-patterns.d.ts.map +1 -1
  1442. package/dist/src/utils/error-utils.d.ts +6 -1
  1443. package/dist/src/utils/error-utils.d.ts.map +1 -1
  1444. package/dist/src/utils/errors.d.ts +6 -2
  1445. package/dist/src/utils/errors.d.ts.map +1 -1
  1446. package/dist/src/utils/http.d.ts +2 -2
  1447. package/dist/src/utils/http.d.ts.map +1 -1
  1448. package/dist/src/utils/load-env.d.ts.map +1 -1
  1449. package/dist/src/utils/multipart.d.ts.map +1 -1
  1450. package/dist/src/utils/nft-helpers.d.ts.map +1 -1
  1451. package/dist/src/utils/numeric-patterns.d.ts.map +1 -1
  1452. package/dist/src/utils/numeric-wrappers.d.ts +3 -0
  1453. package/dist/src/utils/numeric-wrappers.d.ts.map +1 -1
  1454. package/dist/src/utils/pagination-validation.d.ts +88 -0
  1455. package/dist/src/utils/pagination-validation.d.ts.map +1 -0
  1456. package/dist/src/utils/pool-state-validator.d.ts +1 -1
  1457. package/dist/src/utils/pool-state-validator.d.ts.map +1 -1
  1458. package/dist/src/utils/primitives.d.ts +76 -0
  1459. package/dist/src/utils/primitives.d.ts.map +1 -0
  1460. package/dist/src/utils/query-params.d.ts +6 -6
  1461. package/dist/src/utils/query-params.d.ts.map +1 -1
  1462. package/dist/src/utils/response-handlers.d.ts.map +1 -1
  1463. package/dist/src/utils/response-normalizers.d.ts.map +1 -1
  1464. package/dist/src/utils/safe-parsers.d.ts.map +1 -1
  1465. package/dist/src/utils/service-validators.d.ts.map +1 -1
  1466. package/dist/src/utils/slippage-utils.d.ts.map +1 -1
  1467. package/dist/src/utils/string-patterns.d.ts +3 -3
  1468. package/dist/src/utils/string-patterns.d.ts.map +1 -1
  1469. package/dist/src/utils/swap-delta-calculator.d.ts +2 -2
  1470. package/dist/src/utils/swap-delta-calculator.d.ts.map +1 -1
  1471. package/dist/src/utils/tick-crossing-handler.d.ts.map +1 -1
  1472. package/dist/src/utils/token-format-converter.d.ts +1 -1
  1473. package/dist/src/utils/token-format-converter.d.ts.map +1 -1
  1474. package/dist/src/utils/token-stringification.d.ts.map +1 -1
  1475. package/dist/src/utils/tokenNormalizer.d.ts +1 -1
  1476. package/dist/src/utils/tokenNormalizer.d.ts.map +1 -1
  1477. package/dist/src/utils/trade-transformers.d.ts +1 -1
  1478. package/dist/src/utils/trade-transformers.d.ts.map +1 -1
  1479. package/dist/src/utils/validation-helpers.d.ts +5 -97
  1480. package/dist/src/utils/validation-helpers.d.ts.map +1 -1
  1481. package/dist/src/utils/validation-patterns.d.ts.map +1 -1
  1482. package/dist/src/utils/validation.d.ts +1 -1
  1483. package/dist/src/utils/validation.d.ts.map +1 -1
  1484. package/dist/src/utils/wallet.d.ts.map +1 -1
  1485. package/dist/src/utils/websocket-patterns.d.ts +1 -2
  1486. package/dist/src/utils/websocket-patterns.d.ts.map +1 -1
  1487. package/dist/src/utils/websocket-validators.d.ts +1 -1
  1488. package/dist/src/utils/websocket-validators.d.ts.map +1 -1
  1489. package/dist/src/wallet/ExternalWalletProvider.d.ts +109 -0
  1490. package/dist/src/wallet/ExternalWalletProvider.d.ts.map +1 -0
  1491. package/dist/src/wallet/GalaChainConnectProvider.d.ts +125 -0
  1492. package/dist/src/wallet/GalaChainConnectProvider.d.ts.map +1 -0
  1493. package/dist/src/wallet/GalaWalletProvider.d.ts +141 -0
  1494. package/dist/src/wallet/GalaWalletProvider.d.ts.map +1 -0
  1495. package/dist/src/wallet/PrivateKeyProvider.d.ts +90 -0
  1496. package/dist/src/wallet/PrivateKeyProvider.d.ts.map +1 -0
  1497. package/dist/src/wallet/detection.d.ts +107 -0
  1498. package/dist/src/wallet/detection.d.ts.map +1 -0
  1499. package/dist/src/wallet/index.d.ts +52 -0
  1500. package/dist/src/wallet/index.d.ts.map +1 -0
  1501. package/dist/src/wallet/types.d.ts +267 -0
  1502. package/dist/src/wallet/types.d.ts.map +1 -0
  1503. package/dist/src/wallet/utils.d.ts +117 -0
  1504. package/dist/src/wallet/utils.d.ts.map +1 -0
  1505. package/dist/test-constants.d.ts +29 -0
  1506. package/dist/test-constants.d.ts.map +1 -0
  1507. package/dist/types/ai-moderation.dto.d.ts +294 -0
  1508. package/dist/types/ai-moderation.dto.d.ts.map +1 -0
  1509. package/dist/types/api-key.dto.d.ts +373 -0
  1510. package/dist/types/api-key.dto.d.ts.map +1 -0
  1511. package/dist/types/backend-responses.d.ts +235 -0
  1512. package/dist/types/backend-responses.d.ts.map +1 -0
  1513. package/dist/types/ban.dto.d.ts +577 -0
  1514. package/dist/types/ban.dto.d.ts.map +1 -0
  1515. package/dist/types/burn.dto.d.ts +170 -0
  1516. package/dist/types/burn.dto.d.ts.map +1 -0
  1517. package/dist/types/cache-management.dto.d.ts +44 -0
  1518. package/dist/types/cache-management.dto.d.ts.map +1 -0
  1519. package/dist/types/chat-messages.dto.d.ts +193 -0
  1520. package/dist/types/chat-messages.dto.d.ts.map +1 -0
  1521. package/dist/types/client-config.dto.d.ts +43 -0
  1522. package/dist/types/client-config.dto.d.ts.map +1 -0
  1523. package/dist/types/comment.dto.d.ts +176 -0
  1524. package/dist/types/comment.dto.d.ts.map +1 -0
  1525. package/dist/types/comments.dto.d.ts +198 -0
  1526. package/dist/types/comments.dto.d.ts.map +1 -0
  1527. package/dist/types/common.d.ts +604 -0
  1528. package/dist/types/common.d.ts.map +1 -0
  1529. package/dist/types/composite-pool.dto.d.ts +101 -0
  1530. package/dist/types/composite-pool.dto.d.ts.map +1 -0
  1531. package/dist/types/constraints.d.ts +378 -0
  1532. package/dist/types/constraints.d.ts.map +1 -0
  1533. package/dist/types/content-flag.dto.d.ts +337 -0
  1534. package/dist/types/content-flag.dto.d.ts.map +1 -0
  1535. package/dist/types/content-reactions.dto.d.ts +132 -0
  1536. package/dist/types/content-reactions.dto.d.ts.map +1 -0
  1537. package/dist/types/dex-pool.dto.d.ts +214 -0
  1538. package/dist/types/dex-pool.dto.d.ts.map +1 -0
  1539. package/dist/types/dto.d.ts +183 -0
  1540. package/dist/types/dto.d.ts.map +1 -0
  1541. package/dist/types/engagement-stats.dto.d.ts +62 -0
  1542. package/dist/types/engagement-stats.dto.d.ts.map +1 -0
  1543. package/dist/types/events.dto.d.ts +80 -0
  1544. package/dist/types/events.dto.d.ts.map +1 -0
  1545. package/dist/types/galachain-api.types.d.ts +297 -0
  1546. package/dist/types/galachain-api.types.d.ts.map +1 -0
  1547. package/dist/types/global-feed.dto.d.ts +203 -0
  1548. package/dist/types/global-feed.dto.d.ts.map +1 -0
  1549. package/dist/types/gswap-responses.types.d.ts +369 -0
  1550. package/dist/types/gswap-responses.types.d.ts.map +1 -0
  1551. package/dist/types/gswap.dto.d.ts +448 -0
  1552. package/dist/types/gswap.dto.d.ts.map +1 -0
  1553. package/dist/types/holder.types.d.ts +106 -0
  1554. package/dist/types/holder.types.d.ts.map +1 -0
  1555. package/dist/types/launchpad.dto.d.ts +1264 -0
  1556. package/dist/types/launchpad.dto.d.ts.map +1 -0
  1557. package/dist/types/launchpad.validation.d.ts +43 -0
  1558. package/dist/types/launchpad.validation.d.ts.map +1 -0
  1559. package/dist/types/liquidity-monitor.dto.d.ts +177 -0
  1560. package/dist/types/liquidity-monitor.dto.d.ts.map +1 -0
  1561. package/dist/types/lock.dto.d.ts +261 -0
  1562. package/dist/types/lock.dto.d.ts.map +1 -0
  1563. package/dist/types/messages.dto.d.ts +386 -0
  1564. package/dist/types/messages.dto.d.ts.map +1 -0
  1565. package/dist/types/moderator.dto.d.ts +607 -0
  1566. package/dist/types/moderator.dto.d.ts.map +1 -0
  1567. package/dist/types/nft.dto.d.ts +155 -0
  1568. package/dist/types/nft.dto.d.ts.map +1 -0
  1569. package/dist/types/notification.dto.d.ts +92 -0
  1570. package/dist/types/notification.dto.d.ts.map +1 -0
  1571. package/dist/types/oembed.dto.d.ts +160 -0
  1572. package/dist/types/oembed.dto.d.ts.map +1 -0
  1573. package/dist/types/options.dto.d.ts +485 -0
  1574. package/dist/types/options.dto.d.ts.map +1 -0
  1575. package/dist/types/overseer.dto.d.ts +530 -0
  1576. package/dist/types/overseer.dto.d.ts.map +1 -0
  1577. package/dist/types/platform-config.dto.d.ts +89 -0
  1578. package/dist/types/platform-config.dto.d.ts.map +1 -0
  1579. package/dist/types/platform-stats.dto.d.ts +40 -0
  1580. package/dist/types/platform-stats.dto.d.ts.map +1 -0
  1581. package/dist/types/pool-state-delta.dto.d.ts +246 -0
  1582. package/dist/types/pool-state-delta.dto.d.ts.map +1 -0
  1583. package/dist/types/pool.dto.d.ts +111 -0
  1584. package/dist/types/pool.dto.d.ts.map +1 -0
  1585. package/dist/types/priceHistory.dto.d.ts +165 -0
  1586. package/dist/types/priceHistory.dto.d.ts.map +1 -0
  1587. package/dist/types/restricted-names.dto.d.ts +50 -0
  1588. package/dist/types/restricted-names.dto.d.ts.map +1 -0
  1589. package/dist/types/result.types.d.ts +104 -0
  1590. package/dist/types/result.types.d.ts.map +1 -0
  1591. package/dist/types/session-auth.dto.d.ts +99 -0
  1592. package/dist/types/session-auth.dto.d.ts.map +1 -0
  1593. package/dist/types/stream-chat.dto.d.ts +810 -0
  1594. package/dist/types/stream-chat.dto.d.ts.map +1 -0
  1595. package/dist/types/streaming-events.dto.d.ts +605 -0
  1596. package/dist/types/streaming-events.dto.d.ts.map +1 -0
  1597. package/dist/types/streaming.dto.d.ts +1178 -0
  1598. package/dist/types/streaming.dto.d.ts.map +1 -0
  1599. package/dist/types/swap-monitor.dto.d.ts +256 -0
  1600. package/dist/types/swap-monitor.dto.d.ts.map +1 -0
  1601. package/dist/types/token-ban.dto.d.ts +194 -0
  1602. package/dist/types/token-ban.dto.d.ts.map +1 -0
  1603. package/dist/types/token-config.dto.d.ts +117 -0
  1604. package/dist/types/token-config.dto.d.ts.map +1 -0
  1605. package/dist/types/token.types.d.ts +336 -0
  1606. package/dist/types/token.types.d.ts.map +1 -0
  1607. package/dist/types/trade.dto.d.ts +457 -0
  1608. package/dist/types/trade.dto.d.ts.map +1 -0
  1609. package/dist/types/trades-query.dto.d.ts +133 -0
  1610. package/dist/types/trades-query.dto.d.ts.map +1 -0
  1611. package/dist/types/transfer.dto.d.ts +156 -0
  1612. package/dist/types/transfer.dto.d.ts.map +1 -0
  1613. package/dist/types/user.dto.d.ts +880 -0
  1614. package/dist/types/user.dto.d.ts.map +1 -0
  1615. package/dist/types/websocket-admin.dto.d.ts +390 -0
  1616. package/dist/types/websocket-admin.dto.d.ts.map +1 -0
  1617. package/dist/types/websocket-data.types.d.ts +35 -0
  1618. package/dist/types/websocket-data.types.d.ts.map +1 -0
  1619. package/dist/types/websocket-events.dto.d.ts +472 -0
  1620. package/dist/types/websocket-events.dto.d.ts.map +1 -0
  1621. package/dist/types/websocket.types.d.ts +118 -0
  1622. package/dist/types/websocket.types.d.ts.map +1 -0
  1623. package/dist/types/weekly-challenge.dto.d.ts +130 -0
  1624. package/dist/types/weekly-challenge.dto.d.ts.map +1 -0
  1625. package/dist/types/wrappable-token.dto.d.ts +305 -0
  1626. package/dist/types/wrappable-token.dto.d.ts.map +1 -0
  1627. package/dist/utils/LiquidityEventExtractor.d.ts +106 -0
  1628. package/dist/utils/LiquidityEventExtractor.d.ts.map +1 -0
  1629. package/dist/utils/Logger.d.ts +136 -0
  1630. package/dist/utils/Logger.d.ts.map +1 -0
  1631. package/dist/utils/MonitoringMetrics.d.ts +151 -0
  1632. package/dist/utils/MonitoringMetrics.d.ts.map +1 -0
  1633. package/dist/utils/PoolKeyNormalizer.d.ts +135 -0
  1634. package/dist/utils/PoolKeyNormalizer.d.ts.map +1 -0
  1635. package/dist/utils/ReconnectionManager.d.ts +142 -0
  1636. package/dist/utils/ReconnectionManager.d.ts.map +1 -0
  1637. package/dist/utils/SignatureHelper.d.ts +140 -0
  1638. package/dist/utils/SignatureHelper.d.ts.map +1 -0
  1639. package/dist/utils/SwapEventExtractor.d.ts +152 -0
  1640. package/dist/utils/SwapEventExtractor.d.ts.map +1 -0
  1641. package/dist/utils/adapters.d.ts +111 -0
  1642. package/dist/utils/adapters.d.ts.map +1 -0
  1643. package/dist/utils/address-formatter.d.ts +318 -0
  1644. package/dist/utils/address-formatter.d.ts.map +1 -0
  1645. package/dist/utils/agent-config.d.ts +288 -0
  1646. package/dist/utils/agent-config.d.ts.map +1 -0
  1647. package/dist/utils/amount-validator.d.ts +268 -0
  1648. package/dist/utils/amount-validator.d.ts.map +1 -0
  1649. package/dist/utils/api-patterns.d.ts +347 -0
  1650. package/dist/utils/api-patterns.d.ts.map +1 -0
  1651. package/dist/utils/array-helpers.d.ts +115 -0
  1652. package/dist/utils/array-helpers.d.ts.map +1 -0
  1653. package/dist/utils/assetUrls.d.ts +450 -0
  1654. package/dist/utils/assetUrls.d.ts.map +1 -0
  1655. package/dist/utils/async-patterns.d.ts +272 -0
  1656. package/dist/utils/async-patterns.d.ts.map +1 -0
  1657. package/dist/utils/auto-pagination.d.ts +549 -0
  1658. package/dist/utils/auto-pagination.d.ts.map +1 -0
  1659. package/dist/utils/bignumber-helpers.d.ts +446 -0
  1660. package/dist/utils/bignumber-helpers.d.ts.map +1 -0
  1661. package/dist/utils/bignumber-pool-cache.d.ts +169 -0
  1662. package/dist/utils/bignumber-pool-cache.d.ts.map +1 -0
  1663. package/dist/utils/bondingCurveCalculations.d.ts +144 -0
  1664. package/dist/utils/bondingCurveCalculations.d.ts.map +1 -0
  1665. package/dist/utils/cacheWarmingHelpers.d.ts +110 -0
  1666. package/dist/utils/cacheWarmingHelpers.d.ts.map +1 -0
  1667. package/dist/utils/composite-pool-converter.d.ts +121 -0
  1668. package/dist/utils/composite-pool-converter.d.ts.map +1 -0
  1669. package/dist/utils/crypto-compat.d.ts +40 -0
  1670. package/dist/utils/crypto-compat.d.ts.map +1 -0
  1671. package/dist/utils/data-transform-patterns.d.ts +393 -0
  1672. package/dist/utils/data-transform-patterns.d.ts.map +1 -0
  1673. package/dist/utils/date-utils.d.ts +205 -0
  1674. package/dist/utils/date-utils.d.ts.map +1 -0
  1675. package/dist/utils/delimiter-parser.d.ts +139 -0
  1676. package/dist/utils/delimiter-parser.d.ts.map +1 -0
  1677. package/dist/utils/error-factories.d.ts +701 -0
  1678. package/dist/utils/error-factories.d.ts.map +1 -0
  1679. package/dist/utils/error-handling-patterns.d.ts +390 -0
  1680. package/dist/utils/error-handling-patterns.d.ts.map +1 -0
  1681. package/dist/utils/error-patterns.d.ts +360 -0
  1682. package/dist/utils/error-patterns.d.ts.map +1 -0
  1683. package/dist/utils/error-utils.d.ts +463 -0
  1684. package/dist/utils/error-utils.d.ts.map +1 -0
  1685. package/dist/utils/error-wrapper.d.ts +208 -0
  1686. package/dist/utils/error-wrapper.d.ts.map +1 -0
  1687. package/dist/utils/errors.d.ts +552 -0
  1688. package/dist/utils/errors.d.ts.map +1 -0
  1689. package/dist/utils/http-factory.d.ts +36 -0
  1690. package/dist/utils/http-factory.d.ts.map +1 -0
  1691. package/dist/utils/http.d.ts +97 -0
  1692. package/dist/utils/http.d.ts.map +1 -0
  1693. package/dist/utils/load-env.d.ts +31 -0
  1694. package/dist/utils/load-env.d.ts.map +1 -0
  1695. package/dist/utils/multipart-helpers.d.ts +38 -0
  1696. package/dist/utils/multipart-helpers.d.ts.map +1 -0
  1697. package/dist/utils/multipart.d.ts +63 -0
  1698. package/dist/utils/multipart.d.ts.map +1 -0
  1699. package/dist/utils/nft-helpers.d.ts +62 -0
  1700. package/dist/utils/nft-helpers.d.ts.map +1 -0
  1701. package/dist/utils/numeric-patterns.d.ts +289 -0
  1702. package/dist/utils/numeric-patterns.d.ts.map +1 -0
  1703. package/dist/utils/numeric-wrappers.d.ts +149 -0
  1704. package/dist/utils/numeric-wrappers.d.ts.map +1 -0
  1705. package/dist/utils/object-extractors.d.ts +115 -0
  1706. package/dist/utils/object-extractors.d.ts.map +1 -0
  1707. package/dist/utils/object-patterns.d.ts +81 -0
  1708. package/dist/utils/object-patterns.d.ts.map +1 -0
  1709. package/dist/utils/pagination-helpers.d.ts +161 -0
  1710. package/dist/utils/pagination-helpers.d.ts.map +1 -0
  1711. package/dist/utils/pagination-validation.d.ts +88 -0
  1712. package/dist/utils/pagination-validation.d.ts.map +1 -0
  1713. package/dist/utils/pool-pair-parser.d.ts +57 -0
  1714. package/dist/utils/pool-pair-parser.d.ts.map +1 -0
  1715. package/dist/utils/pool-state-validator.d.ts +207 -0
  1716. package/dist/utils/pool-state-validator.d.ts.map +1 -0
  1717. package/dist/utils/position-filters.d.ts +252 -0
  1718. package/dist/utils/position-filters.d.ts.map +1 -0
  1719. package/dist/utils/primitives.d.ts +76 -0
  1720. package/dist/utils/primitives.d.ts.map +1 -0
  1721. package/dist/utils/query-params.d.ts +89 -0
  1722. package/dist/utils/query-params.d.ts.map +1 -0
  1723. package/dist/utils/response-handlers.d.ts +225 -0
  1724. package/dist/utils/response-handlers.d.ts.map +1 -0
  1725. package/dist/utils/response-helpers.d.ts +28 -0
  1726. package/dist/utils/response-helpers.d.ts.map +1 -0
  1727. package/dist/utils/response-normalizers.d.ts +115 -0
  1728. package/dist/utils/response-normalizers.d.ts.map +1 -0
  1729. package/dist/utils/safe-parsers.d.ts +487 -0
  1730. package/dist/utils/safe-parsers.d.ts.map +1 -0
  1731. package/dist/utils/service-validators.d.ts +268 -0
  1732. package/dist/utils/service-validators.d.ts.map +1 -0
  1733. package/dist/utils/slippage-utils.d.ts +70 -0
  1734. package/dist/utils/slippage-utils.d.ts.map +1 -0
  1735. package/dist/utils/string-patterns.d.ts +404 -0
  1736. package/dist/utils/string-patterns.d.ts.map +1 -0
  1737. package/dist/utils/string-transforms.d.ts +89 -0
  1738. package/dist/utils/string-transforms.d.ts.map +1 -0
  1739. package/dist/utils/string-utils.d.ts +108 -0
  1740. package/dist/utils/string-utils.d.ts.map +1 -0
  1741. package/dist/utils/swap-delta-calculator.d.ts +231 -0
  1742. package/dist/utils/swap-delta-calculator.d.ts.map +1 -0
  1743. package/dist/utils/tick-crossing-handler.d.ts +250 -0
  1744. package/dist/utils/tick-crossing-handler.d.ts.map +1 -0
  1745. package/dist/utils/token-format-converter.d.ts +175 -0
  1746. package/dist/utils/token-format-converter.d.ts.map +1 -0
  1747. package/dist/utils/token-parser.d.ts +235 -0
  1748. package/dist/utils/token-parser.d.ts.map +1 -0
  1749. package/dist/utils/token-stringification.d.ts +168 -0
  1750. package/dist/utils/token-stringification.d.ts.map +1 -0
  1751. package/dist/utils/tokenNameNormalizer.d.ts +96 -0
  1752. package/dist/utils/tokenNameNormalizer.d.ts.map +1 -0
  1753. package/dist/utils/tokenNormalizer.d.ts +167 -0
  1754. package/dist/utils/tokenNormalizer.d.ts.map +1 -0
  1755. package/dist/utils/trade-transformers.d.ts +28 -0
  1756. package/dist/utils/trade-transformers.d.ts.map +1 -0
  1757. package/dist/utils/transfer-validation.d.ts +58 -0
  1758. package/dist/utils/transfer-validation.d.ts.map +1 -0
  1759. package/dist/utils/type-guard-factory.d.ts +260 -0
  1760. package/dist/utils/type-guard-factory.d.ts.map +1 -0
  1761. package/dist/utils/unique-key-generator.d.ts +148 -0
  1762. package/dist/utils/unique-key-generator.d.ts.map +1 -0
  1763. package/dist/utils/validation-helpers.d.ts +1074 -0
  1764. package/dist/utils/validation-helpers.d.ts.map +1 -0
  1765. package/dist/utils/validation-patterns.d.ts +768 -0
  1766. package/dist/utils/validation-patterns.d.ts.map +1 -0
  1767. package/dist/utils/validation.d.ts +140 -0
  1768. package/dist/utils/validation.d.ts.map +1 -0
  1769. package/dist/utils/wallet.d.ts +185 -0
  1770. package/dist/utils/wallet.d.ts.map +1 -0
  1771. package/dist/utils/websocket-errors.d.ts +30 -0
  1772. package/dist/utils/websocket-errors.d.ts.map +1 -0
  1773. package/dist/utils/websocket-patterns.d.ts +680 -0
  1774. package/dist/utils/websocket-patterns.d.ts.map +1 -0
  1775. package/dist/utils/websocket-validators.d.ts +30 -0
  1776. package/dist/utils/websocket-validators.d.ts.map +1 -0
  1777. package/dist/wallet/ExternalWalletProvider.d.ts +109 -0
  1778. package/dist/wallet/ExternalWalletProvider.d.ts.map +1 -0
  1779. package/dist/wallet/GalaChainConnectProvider.d.ts +125 -0
  1780. package/dist/wallet/GalaChainConnectProvider.d.ts.map +1 -0
  1781. package/dist/wallet/GalaWalletProvider.d.ts +141 -0
  1782. package/dist/wallet/GalaWalletProvider.d.ts.map +1 -0
  1783. package/dist/wallet/PrivateKeyProvider.d.ts +90 -0
  1784. package/dist/wallet/PrivateKeyProvider.d.ts.map +1 -0
  1785. package/dist/wallet/detection.d.ts +107 -0
  1786. package/dist/wallet/detection.d.ts.map +1 -0
  1787. package/dist/wallet/index.d.ts +52 -0
  1788. package/dist/wallet/index.d.ts.map +1 -0
  1789. package/dist/wallet/types.d.ts +267 -0
  1790. package/dist/wallet/types.d.ts.map +1 -0
  1791. package/dist/wallet/utils.d.ts +117 -0
  1792. package/dist/wallet/utils.d.ts.map +1 -0
  1793. package/dist/wallet.cjs +1 -0
  1794. package/dist/wallet.esm.js +1 -0
  1795. package/package.json +177 -41
  1796. package/dist/examples/utils/orchestrator-base.d.ts +0 -313
  1797. package/dist/examples/utils/orchestrator-base.d.ts.map +0 -1
  1798. package/dist/index.cjs.js +0 -1
  1799. package/dist/src/services/ChatMessagesService.d.ts +0 -152
  1800. package/dist/src/services/ChatMessagesService.d.ts.map +0 -1
  1801. package/dist/src/services/CommentService.d.ts +0 -119
  1802. package/dist/src/services/CommentService.d.ts.map +0 -1
  1803. package/dist/src/services/CommentsService.d.ts +0 -155
  1804. package/dist/src/services/CommentsService.d.ts.map +0 -1
  1805. package/dist/src/services/GalaChainGatewayClient.d.ts +0 -227
  1806. package/dist/src/services/GalaChainGatewayClient.d.ts.map +0 -1
@@ -0,0 +1 @@
1
+ "use strict";var e=require("zod"),t=require("ethers"),n=require("@gala-chain/connect"),i=require("uuid"),o=require("bignumber.js"),r=require("@solana/web3.js"),s=require("json-stringify-deterministic"),a=require("@solana/spl-token"),c=require("bs58"),l=require("@gala-chain/api"),d=require("@gala-chain/dex"),u=require("axios"),h=require("socket.io-client");const g={UPLOAD_IMAGE:"/v1/tokens/:tokenName/image",FETCH_POOLS:"/v1/tokens",GET_TOKEN:"/v1/tokens/:tokenName",GET_TOKEN_DISTRIBUTION:"/v1/holders",GET_TOKEN_BADGES:"/v1/tokens/:tokenName/badges",CHART:"/v1/chart",GET_TRADES:"/v1/tokens/:tokenName/trades",GET_PROFILE:"/v1/users/:address",UPDATE_PROFILE:"/v1/users/me",GET_TOKEN_LIST:"/v1/users/:address/tokens",GET_TOKENS_HELD:"/v1/users/:address/tokens",USER_BALANCES:"/v1/users/:address/balances",USER_REPORT:"/v1/users/:address/report",GET_MANAGED_TOKENS:"/v1/users/me/managed-tokens",VALIDATE_TOKEN:"/v1/utils/validate-token",UPDATE_TOKEN_CONFIG:"/v1/tokens/:tokenName",TOKEN_STATS:"/v1/tokens/:tokenName/stats",OEMBED:"/oembed",OEMBED_BUY_SELL:"/oembed/buy-sell/:tokenName",OEMBED_PROFILE:"/oembed/profile/:address"},m="/v1/users/referrals/url",p="/v1/users/referrals",f="/v1/users/referrals/summary",y="/v1/tokens/:tokenName/start-stream",k="/v1/tokens/:tokenName/stop-stream",v="/v1/tokens/:tokenName/stream/disable",w="/v1/tokens/:tokenName/stream/enable",b="/v1/tokens/:tokenName/reset-key",S="/v1/tokens/:tokenName/recordings",A="/v1/tokens/:tokenName/recordings/:assetId/download",T="/v1/tokens/:tokenName/recordings/:assetId",E="/v1/tokens/:tokenName/stream/simulcast",C="/v1/tokens/:tokenName/stream/simulcast",I="/v1/tokens/:tokenName/stream/simulcast/:targetId",N="/v1/config",D="/v1/config",P="/v1/config",x="/v1/tokens/:tokenName/role",_="/v1/roles",R="/v1/tokens/:tokenName/access",F="/v1/tokens/:tokenName/credentials",B="/auth/login",O="/auth/logout",U="/auth/refresh",L="/auth/session",M="/v1/tokens/:tokenName/bans",$="/v1/tokens/:tokenName/bans",K="/v1/tokens/:tokenName/bans/:userAddress",q="/v1/tokens/:tokenName/bans/:userAddress",G="/v1/tokens/:tokenName/active-users",W="/v1/user-bans",H="/v1/user-bans",z="/v1/user-bans/:userAddress",j="/v1/user-bans/:userAddress",V={CREATE:"/v1/api-keys",LIST:"/v1/api-keys",GET:"/v1/api-keys/:id",UPDATE:"/v1/api-keys/:id",REVOKE:"/v1/api-keys/:id"},X="/v1/moderator-invites",Q="/v1/moderator-invites/claim",J="/v1/moderated-tokens",Y="/v1/moderator-invites",Z="/v1/moderator-invites/:id",ee="/v1/moderator-invites/:id/role",te="/v1/moderator-invites/:id",ne="/v1/moderator-invites/code/:code",ie={CREATE:"/v1/content-flags",LIST:"/v1/content-flags",DISMISS:"/v1/content-flags/:id/dismiss",ACTION:"/v1/content-flags/:id/action"},oe="/v1/overseer-invites",re="/v1/overseer-invites",se="/v1/overseer-invites/code/:code",ae="/v1/overseer-invites/claim",ce="/v1/overseer-invites/:id",le="/v1/overseers",de="/v1/overseers",ue="/v1/overseers/:address",he="/v1/overseers/me",ge="/v1/overseer-summary",me="/v1/overseer-summary/bans",pe="/v1/overseer-summary/token-bans",fe="/v1/overseer-summary/invites",ye="/v1/overseer-summary/flags",ke="/v1/overseer-summary/users",ve="/v1/users",we="/v1/users/:address/summary",be="/v1/cache/flush/address/:address",Se="/v1/cache/flush/token/:tokenName",Ae="/v1/cache/flush/all",Te="/v1/cache/flush/wallet-aliases/:address",Ee="/v1/cache/flush/wallet-aliases",Ce="/v1/token-bans",Ie="/v1/token-bans",Ne="/v1/token-bans/:tokenName",De="/v1/token-bans/:tokenName",Pe="/v1/reactions",xe="/v1/reactions",_e="/v1/trades",Re={GET_MESSAGES:"/v1/messages",CREATE_MESSAGE:"/v1/messages",UPDATE_MESSAGE:"/v1/messages/:id",DELETE_MESSAGE:"/v1/messages/:id",GET_PINNED:"/v1/messages/pinned",PIN_MESSAGE:"/v1/messages/:id/pin",UNPIN_MESSAGE:"/v1/messages/:id/unpin",GET_MESSAGE_STATS:"/v1/messages/stats"},Fe="/v1/restricted-token-names",Be="/v1/restricted-token-names",Oe="/live/:tokenName/chat",Ue="/live/:tokenName/chat",Le="/live/:tokenName/chat",Me="/live/chat",$e="/live/chat",Ke="/live/chat",qe="/live/:tokenName/chat/slow-mode",Ge="/live/:tokenName/engagement-stats",We={GET_SETTINGS:"/v1/ai-moderation/settings",UPDATE_SETTINGS:"/v1/ai-moderation/settings",GET_MODERATION:"/v1/ai-moderation/flags/:flagId",TRIGGER_MODERATION:"/v1/ai-moderation/flags/:flagId/analyze",GET_STATUS:"/v1/ai-moderation/status"},He="/v1/stats",ze="/v1/trading/fee",je="/v1/trading/sale-details",Ve="/v1/trading/quote",Xe="/v1/trading/premint-quote",Qe={GET_LEADERBOARD:"/weekly-challenge",GET_TOKEN_HISTORY:"/weekly-challenge/history/:vaultAddress"},Je="/v1/notifications/register",Ye="/v1/notifications/unregister",Ze="/v1/notifications/preferences",et="/v1/notifications/preferences",tt="/v1/config/client-flags",nt="native",it="exact";class ot extends Error{constructor(e,t,n){super(`API Error [${e}]: ${t}`),this.status=e,this.message=t,this.details=n,this.name="ApiError"}}function rt(e){return"object"==typeof e&&null!==e&&"collection"in e&&"category"in e&&"type"in e&&"additionalKey"in e&&"string"==typeof e.collection&&"string"==typeof e.category&&"string"==typeof e.type&&"string"==typeof e.additionalKey}function st(e){if("object"!=typeof e||null===e)return!1;const t=e;return"string"==typeof t.positionId&&rt(t.token0ClassKey)&&rt(t.token1ClassKey)&&"number"==typeof t.fee&&"number"==typeof t.tickLower&&"number"==typeof t.tickUpper&&"string"==typeof t.liquidity&&"string"==typeof t.feeGrowthInside0Last&&"string"==typeof t.feeGrowthInside1Last&&"string"==typeof t.tokensOwed0&&"string"==typeof t.tokensOwed1}const at="REQUIRED",ct="INVALID_TYPE",lt="INVALID_VALUE",dt="INVALID_FORMAT",ut="TOO_LARGE",ht="INVALID_RANGE";class gt extends Error{constructor(e,t,n){super(e),this.field=t,this.code=n,this.name="ValidationError"}}class mt extends gt{constructor(e){super(e,"token","TOKEN_RESTRICTED"),this.name="TokenRestrictedError"}}class pt extends Error{constructor(e,t,n){super(e),this.statusCode=t,this.originalError=n,this.name="NetworkError"}}class ft extends Error{constructor(e,t){super(e),this.field=t,this.name="ConfigurationError"}}class yt extends Error{constructor(e,t,n){super(e),this.transactionId=t,this.code=n,this.name="TransactionError"}}class kt extends Error{constructor(e,t,n){super(e),this.originalError=t,this.code=n,this.name="GSwapQuoteError"}}class vt extends Error{constructor(e,t,n,i){super(e),this.originalError=t,this.transactionHash=n,this.code=i,this.name="GSwapSwapError"}}class wt extends Error{constructor(e,t,n,i,o){super(e),this.originalError=t,this.tokenA=n,this.tokenB=i,this.code=o,this.name="GSwapPoolError"}}class bt extends Error{constructor(e,t,n,i){super(e),this.originalError=t,this.walletAddress=n,this.code=i,this.name="GSwapAssetError"}}class St extends Error{constructor(e,t,n){super(e),this.originalError=t,this.code=n,this.name="GSwapPositionError"}}class At extends gt{constructor(e,t){super(e,"dexQuote","DEX_QUOTE_ERROR"),this.context=t,this.name="DexQuoteError"}}class Tt extends gt{constructor(e){super(e,"dexPool","DEX_POOL_NOT_FOUND"),this.name="DexPoolNotFoundError"}}function Et(e){return e instanceof Error}function Ct(e){return Et(e)||function(e){return"object"==typeof e&&null!==e&&"message"in e&&"string"==typeof e.message}(e)?e.message:"string"==typeof e?e:String(e)}function It(e){return"object"==typeof e&&null!==e?e:void 0}function Nt(e,t){const n=It(e),i=It(n?.launchpadError),o=xt(e)?e.response:void 0,r=It(o?.data),s=e instanceof ot?e.status:"number"==typeof i?.statusCode?i.statusCode:o?.status,a="string"==typeof r?.message?r.message:"string"==typeof r?.Message?r.Message:Ct(e);if(403===s)return new mt(""!==a?a:"One or both tokens are restricted (blacklisted or not yet graduated).");if(404===s)return"pool"===t?new Tt(""!==a?a:"DEX pool not found"):new ot(404,""!==a?a:"Position not found",r);if(429===s){const t=o?.headers?.["retry-after"],n="string"==typeof t||"number"==typeof t?String(t):void 0;return new pt(`Trade backend per-IP rate limit exceeded (100 requests per 60 seconds).${void 0===n?"":` Retry-After: ${n}.`}`,429,e instanceof Error?e:void 0)}if(502===s)return new pt("Trade backend upstream chain unavailable",502,e instanceof Error?e:void 0);if(e instanceof ot)return e;if(xt(e)){const e=It(r?.Data)??r;return new ot(s??500,`${t}: ${a}`,e)}return new ot(500,`${t}: ${Ct(e)}`)}function Dt(e){return Et(e)||"object"==typeof e&&null!==e&&"stack"in e&&"string"==typeof e.stack?e.stack:void 0}function Pt(e){if(function(e){return"object"==typeof e&&null!==e&&"code"in e&&("string"==typeof e.code||"number"==typeof e.code)}(e))return e.code}function xt(e){return"object"==typeof e&&null!==e&&"message"in e&&("response"in e||"request"in e||"config"in e)}function _t(e,t){if(null==e||"object"!=typeof e)throw new Error(`${t}: No response - expected object, got ${typeof e}`);const n=e;if(!("Status"in n))throw new Error(`${t}: Response missing 'Status' property`);const i=n.Status;if("number"!=typeof i)throw new Error(`${t}: Response Status must be a number, got ${typeof i}`);if(1!==i)throw new Error(`${t}: Response status indicates failure (Status: ${i})`);return n}function Rt(e){if(null==e||"object"!=typeof e)return"";const t=e.Message;return"string"==typeof t&&t.trim().length>0?` - ${t}`:""}function Ft(e,t,n){try{t()}catch(t){if(!function(e){return e instanceof Error&&"ValidationError"===e.name}(t))throw t;{const n=t.message;e.push(n)}}}const Bt="Token name is required and must be a string",Ot=e=>`Could not find vault address for token: ${e}`;function Ut(e,t){return void 0!==t?t:e.charAt(0).toUpperCase()+e.slice(1)}function Lt(e,t){return new gt(`Token "${e}" not found. Please verify the token name is correct.`,"tokenName","TOKEN_NOT_FOUND")}function Mt(e,t){const n=Ut(e,t);return new gt(`${n} is required`,e,"REQUIRED")}function $t(e,t,n){const i=Ut(e,n);return new gt(`${i} must be ${t}`,e,"INVALID_FORMAT")}function Kt(e,t,n){return new pt(e,t,n)}function qt(e,t){return new ft(e,t)}function Gt(e,t,n){return new yt(e,t,n)}function Wt(e,t,n,i){n&&n.error(`${t}:`,e);const o=xt(e)?e.response?.status:void 0;return Kt(`${t}: ${Ct(e)}`,o,Et(e)?e:void 0)}function Ht(e,t,n,i,o){const r=Ut(e,o);return new gt(`${r} must be between ${t} and ${n}${void 0!==i?`, received: ${i}`:""}`,e,"OUT_OF_RANGE")}function zt(e,t,n,i){const o=Ut(e,i);return new gt(`${o} must be at least ${t}${void 0!==n?`, received: ${n}`:""}`,e,"TOO_SMALL")}function jt(e,t,n,i){const o=Ut(e,i);return new gt(`${o} must be at most ${t}${void 0!==n?`, received: ${n}`:""}`,e,"TOO_LARGE")}function Vt(e,t,n,i){const o=Ut(e,i),r=void 0!==n?`, received: ${"object"==typeof n?"object":String(n)}`:"";return new gt(`${o} must be ${t}${r}`,e,"INVALID_TYPE")}function Xt(e,t,n){const i=Ut(e,n);return new gt(`${i} must be a valid number${void 0!==t?`: "${t}"`:""}`,e,"INVALID_NUMBER")}function Qt(e){return new gt(`Liquidity position not found: ${e}`,"positionId","POSITION_NOT_FOUND")}function Jt(e,t,n,i){const o=Ut(e,i);return new gt(`Invalid ${o}: ${t}. Must be one of: ${n.join(", ")}`,e,"INVALID_ENUM")}function Yt(e){return null!=e&&"object"==typeof e&&"data"in e}function Zt(e,t,n=!1){const i=!0===e.error,o=n&&(null===e.data||void 0===e.data);if(i||o){const n=e?.statusCode??e.status??void 0;throw Kt(e?.message??t,n)}}function en(e){if(Yt(e))return e.data}function tn(e,t="No data found in response"){if(!Yt(e))throw Kt(t);const n=e.data;if(null==n)throw Kt(t);return n}async function nn(e,t={}){const{errorContext:n="Operation failed",logger:i,debugLogEnabled:o=!1}=t;o&&i&&i.debug(`${n}: starting operation`);try{const t=await e();if(null==t)throw new gt(`${n}: No response from server`,"response","NO_RESPONSE");if(Zt(t,n,!0),o&&i&&i.debug(`${n}: completed successfully`),void 0===t.data)throw new gt(`${n}: No data returned from API`,"data","NO_DATA");return t.data}catch(e){throw i&&i.error(n,{error:e}),e}}async function on(e,t={}){const{errorContext:n="Operation failed",logger:i,debugLogEnabled:o=!1}=t;o&&i&&i.debug(`${n}: starting operation`);try{const t=await e();return o&&i&&i.debug(`${n}: completed successfully`),t}catch(e){throw i&&i.error(n,{error:e}),e}}async function rn(e,t={}){const{errorContext:n="Operation failed",logger:i,debugLogEnabled:o=!1}=t;o&&i&&i.debug(`${n}: starting operation`);try{const t=await e();if(null==t)throw new gt(`${n}: No response from server`,"response","NO_RESPONSE");return Zt(t,n,!0),o&&i&&i.debug(`${n}: completed successfully`),t}catch(e){throw i&&i.error(n,{error:e}),e}}class sn{}function an(e){return e.trim().toLowerCase()}function cn(e){return e.trim().toUpperCase()}function ln(e){return e.trim().toUpperCase()}var dn;sn.BASE_PRICE=1650667151e-14,sn.PRICE_SCALING_FACTOR=1166069e-12,sn.TRADING_FEE_FACTOR=.001,sn.GAS_FEE="1",sn.MIN_UNBONDING_FEE_FACTOR=0,sn.MAX_UNBONDING_FEE_FACTOR=.5,sn.NET_UNBONDING_FEE_FACTOR=.5,sn.DEFAULT_LAUNCHPAD_TOKEN_MAX_SUPPLY=1e7,function(e){e.DEBUG="DEBUG",e.INFO="INFO",e.WARN="WARN",e.ERROR="ERROR"}(dn||(dn={}));class un{constructor(e){this.levelPriority={[dn.DEBUG]:0,[dn.INFO]:1,[dn.WARN]:2,[dn.ERROR]:3},this.debugEnabled=e.debug,this.context=e.context??"SDK",this.minLevel=e.minLevel??(e.debug?dn.DEBUG:dn.INFO)}debug(e,t){this.log(dn.DEBUG,e,t)}info(e,t){this.log(dn.INFO,e,t)}warn(e,t){this.log(dn.WARN,e,t)}error(e,t){this.log(dn.ERROR,e,t)}log(e,t,n){if(this.levelPriority[e]<this.levelPriority[this.minLevel])return;if(e===dn.DEBUG&&!this.debugEnabled)return;const i=`[${(new Date).toISOString()}] [${this.context}] [${e}]`,o=this.getConsoleMethod(e);void 0!==n?Et(n)?o(`${i} ${t}`,n.message,Dt(n)??""):o(`${i} ${t}`,n):o(`${i} ${t}`)}getConsoleMethod(e){switch(e){case dn.DEBUG:return console.debug;case dn.INFO:return console.info;case dn.WARN:return console.warn;case dn.ERROR:return console.error;default:return console.log}}child(e){return new un({debug:this.debugEnabled,context:`${this.context}:${e}`,minLevel:this.minLevel})}isDebugEnabled(){return this.debugEnabled&&this.levelPriority[dn.DEBUG]>=this.levelPriority[this.minLevel]}}function hn(e){return null==e||""===e}function gn(e){return null==e}const mn=new un({debug:!1,context:"DateUtils"});function pn(e,t){if(null==e)return t??new Date;if(e instanceof Date)return isNaN(e.getTime())?t??new Date:e;try{const n=new Date(e);return isNaN(n.getTime())?(mn.warn(`Invalid date string received: "${e}". Using fallback.`),t??new Date):n}catch(n){return mn.warn(`Date parsing error for "${e}":`,n),t??new Date}}function fn(e){if(null==e)return!1;if(e instanceof Date)return!isNaN(e.getTime());if("string"!=typeof e)return!1;const t=new Date(e);return!isNaN(t.getTime())}function yn(e){return Date.now()-e}const kn={MIN_LENGTH:3,MAX_LENGTH:20,PATTERN:/^[a-zA-Z0-9]{3,20}$/},vn={MIN_LENGTH:2,MAX_LENGTH:20,PATTERN:/^[a-zA-Z0-9]+$/},wn={MIN_LENGTH:1,MAX_LENGTH:50},bn=100,Sn=20,An={MAX_LIMIT:50},Tn={PATTERN:/^(eth\|[0-9a-fA-F]{40}|client\|[a-zA-Z0-9_-]+)$/},En={COMMENTS_V1:{MAX_LENGTH:2e3},CHAT_MESSAGES_V1:{MAX_LENGTH:500},BAN_REASON:{MAX_LENGTH:500},DESCRIPTION:{MAX_LENGTH:255},FLAG_DETAILS:{MAX_LENGTH:1e3},CONTENT_ID:{MAX_LENGTH:100}},Cn={CONTENT_REACTION:{MAX_LENGTH:64,PATTERN:/^(msg-\d{13}-[a-f0-9]{32}|chat-\d{13}-[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})$/}},In=60,Nn=31536e3,Dn={MAX_LENGTH:64,PATTERN:/^(galaswap-operation-|galaconnect-operation-)/},Pn={PATTERN:/^[a-fA-F0-9]{64}$/},xn={STREAM_URL_PATTERN:/^(rtmps?|srt):\/\/.+/},_n=50,Rn=1,Fn=100,Bn={FULL_NAME:{MIN_LENGTH:1,MAX_LENGTH:100,ALPHABETS_ONLY_PATTERN:/^[a-zA-Z]+(?:\s[a-zA-Z]+)?$/}};function On(e,t){if(hn(e))return t;try{return JSON.parse(e)}catch{return t}}function Un(e,t=0){if(hn(e))return t;if("number"==typeof e)return isNaN(e)||!isFinite(e)?t:e;const n=parseFloat(e);return isNaN(n)||!isFinite(n)?t:n}function Ln(e,t,n){if(gn(e))return t;if("number"==typeof e)return isNaN(e)?t:e;const i=Number(e);return isNaN(i)?t:i}function Mn(e,t=0){if(hn(e))return t;if("bigint"==typeof e)try{return Number(e)}catch{return t}if("number"==typeof e)return isNaN(e)||!isFinite(e)?t:Math.floor(e);const n=parseInt(String(e),10);return isNaN(n)?t:n}function $n(e,t,n){if(gn(e))return t;if("bigint"==typeof e)try{return Number(e)}catch{return t}if("number"==typeof e)return isNaN(e)?t:Math.floor(e);const i=parseInt(String(e),10);return isNaN(i)?t:i}function Kn(e,t="0"){if(hn(e))return new o(t);if(o.isBigNumber(e))return e.isNaN()?new o(t):e;try{const n=new o(e);return n.isNaN()||!n.isFinite()?new o(t):n}catch{return new o(t)}}function qn(e,t){if(gn(e)||""===e)throw Mt(t);if(o.isBigNumber(e)){if(e.isNaN())throw Xt(t,"NaN");return e}try{const n=new o(e);if(n.isNaN())throw Xt(t,e);if(!n.isFinite())throw Xt(t,e);return n}catch(n){if(n instanceof gt)throw n;throw Xt(t,e)}}function Gn(e,t=0){if(gn(e))return t;if("number"==typeof e)return isNaN(e)?t:e;return Un(String(e).replace("%","").trim(),t)}function Wn(e,t=18){const n=Un(e,0);if(0===n)return"0";return n.toFixed(t).replace(/\.?0+$/,"")}function Hn(e){return Wn(e,8)}function zn(e){return Wn(e,18)}function jn(e,t,n,i){if("number"!=typeof e)throw Vt(i,"a number",e,i);if(e<t||e>n)throw Ht(i,t,n,e)}function Vn(e,t,n){if("string"!=typeof e)throw Vt(n,"a string",e,n);if(e.length>t)throw jt(n,t,e.length)}function Xn(e,t){if("number"!=typeof e)throw Vt(t,"a number",e,t);if(!Number.isInteger(e))throw Vt(t,"an integer",e,t);if(e<=0)throw zt(t,1,e,t)}function Qn(e,t,n="range"){const i="number"==typeof e?e:Number(e),o="number"==typeof t?t:Number(t);if(isNaN(i)||isNaN(o))throw Vt(n,"numeric values",void 0,n);if(i>o)throw new gt(`Minimum value (${i}) must be less than or equal to maximum value (${o}) for ${n}`,n,ht)}function Jn(e,t,n=!1){if("string"!=typeof e)throw Vt(t,"a string",e,t);if(!n&&0===e.trim().length)throw Mt(t,`${t} (non-empty string)`)}const Yn={ETH_ADDRESS:/^0x[0-9a-fA-F]{40}$/,BACKEND_ADDRESS:/^eth\|(0x)?[0-9a-fA-F]{40}$/,CLIENT_ADDRESS:/^client\|[a-zA-Z0-9_-]+$/},Zn=function(e){return"string"==typeof e&&e.trim().length>0},ei=gn;function ti(e,t,n=100,i,o){if(void 0!==o&&"string"!=typeof o)throw new gt("cursor must be a string","cursor",ct);const r=i??t,s=void 0!==i?"pageSize":"limit";if(void 0!==r&&(Xn(r,s),r>n))throw new gt(`${s} must be at most ${n}`,s,ut)}function ni(e){const t=Object.values(e);return e=>"string"==typeof e&&t.includes(e)}function ii(e){return Object.values(e)}function oi(e,t,n,i={}){const{description:o="parameter",treatEmptyAsNull:r=!0}=i,s=e[t],a=e[n],c=null!=s&&(!r||""!==s),l=null!=a&&(!r||""!==a);if(!c&&!l)throw qt(`Either ${t} or ${n} must be provided (${o})`,n);if(c&&l)throw qt(`Cannot provide both ${t} and ${n}. Provide exactly one (${o}).`,n);return{chosen:c?t:n,hasA:c,hasB:l}}function ri(e,t="tokenName",n=kn){if(!Zn(e))throw Mt(t);const i=e.trim();if(0===i.length)throw Mt(t);if(i.length<n.MIN_LENGTH)throw Ht(t,n.MIN_LENGTH,n.MAX_LENGTH,i.length,`${t} length`);if(i.length>n.MAX_LENGTH)throw Ht(t,n.MIN_LENGTH,n.MAX_LENGTH,i.length,`${t} length`);if(!n.PATTERN.test(i))throw new gt(`${t} must contain only alphanumeric characters`,t,dt)}function si(e,t="tokenName",n=kn){if(null==e)throw Mt(t,t);if("string"!=typeof e)throw Vt(t,"a string",e);const i=e.trim();if(0===i.length)throw Mt(t,t);if(!n.PATTERN.test(i))throw new gt(`${t} must be ${n.MIN_LENGTH}-${n.MAX_LENGTH} alphanumeric characters`,t,dt)}function ai(e){return""===e||0===e.trim().length}function ci(e,t,n){if(!ei(e)){if("string"!=typeof e)throw Vt(t,"a string",e,t);if(e.length>n)throw new gt(`${t} must be at most ${n} characters`,t,ut)}}function li(e,t){if(ei(e))return;let n;if(e instanceof Date)n=e;else if("string"==typeof e)n=new Date(e);else{if("number"!=typeof e)throw Vt(t,"a date",e,t);n=new Date(e)}if(isNaN(n.getTime()))throw new gt(`${t} must be a valid date`,t,dt)}function di(e,t,n){try{Xn(e,t)}catch{throw function(e,t,n,i="OPERATION_FAILED"){return new gt(`${e} failed: ${t}`,n,i)}(n,"must be a positive integer",t)}}function ui(e,t,n="status"){void 0!==e&&function(e,t,n){const i=Object.values(t);if(!i.includes(e))throw new gt(`${n} must be one of: ${i.join(", ")}`,n,dt)}(e,t,n)}class hi{constructor(e,t=!1,n){this.http=e,this.logger=new un({debug:t,context:this.constructor.name}),this.jwtAuth=n}setJwtAuth(e){this.jwtAuth=e}getJwtHeaders(){if(!this.jwtAuth){if("test"===process.env.NODE_ENV&&!this.isCalledFromUserCode())return{};throw new ft("JWT authentication required. Call sdk.login() first.")}return this.jwtAuth.getJwtHeaders()}isCalledFromUserCode(){const e=Dt(new Error)??"";return!(!e.includes("expect")&&!e.includes("jest"))||!(!e.includes("tests/")&&!e.includes(".test.ts"))}validatePositiveInteger(e,t,n){di(e,t,n)}}class gi{constructor(e=!1,t){this.logger=t||new un({debug:e,context:this.constructor.name})}}class mi extends gi{constructor(e=!1){super(e),this.cache=new Map}get(e){const t=this.normalizeKey(e);return this.cache.get(t)}set(e,t){const n=this.normalizeKey(e);this.cache.set(n,t)}has(e){const t=this.normalizeKey(e);return this.cache.has(t)}clear(){this.cache.clear(),this.logger.debug("Cleared cache")}dump(){return new Map(this.cache)}size(){return this.cache.size}isEmpty(){return 0===this.cache.size}buildBaseStats(){return{totalItems:this.cache.size}}}class pi extends mi{constructor(e=!1){super(e)}normalizeKey(e){return an(e).replace(/\s+/g," ").replace(/[\u0000-\u001F\u007F-\u009F\u200B-\u200D\uFEFF]/g,"")}getLRUKey(){return this.cache.keys().next().value??null}updateCacheEntry(e,t){const n=this.cache.get(e);if(this.cache.has(e)&&this.cache.delete(e),this.cache.size>=pi.MAX_CACHE_SIZE){const e=this.getLRUKey();null!==e&&this.cache.delete(e)}this.cache.set(e,{...n??{},...t,lastUpdated:Date.now()})}warmFromPoolData(e,t){const n=this.normalizeKey(e);this.updateCacheEntry(n,t)}set(e,t){const n=this.normalizeKey(e);this.updateCacheEntry(n,t)}getByName(e){const t=this.normalizeKey(e);return this.cache.get(t)}getMaxSupply(e){const t=this.normalizeKey(e),n=this.cache.get(t);return n?.maxSupply??sn.DEFAULT_LAUNCHPAD_TOKEN_MAX_SUPPLY.toString()}has(e){const t=this.normalizeKey(e);return this.cache.has(t)}clear(e){if(void 0!==e&&""!==e){const t=this.normalizeKey(e);this.cache.delete(t)}else super.clear()}dumpAsObject(){const e={};return this.cache.forEach((t,n)=>{e[n]=t}),e}getStats(){const e=this.buildBaseStats(),{cacheSize:t,oldestEntry:n}=this.calculateCacheSizeAndAge();return{...e,totalTokens:e.totalItems,cacheSize:t,oldestEntry:n}}calculateCacheSizeAndAge(){let e=Date.now(),t=0;return this.cache.forEach((n,i)=>{n.lastUpdated<e&&(e=n.lastUpdated);let o=0;o+=2*i.length,void 0!==n.reverseBondingCurveMinFeeFactor&&(o+=8),void 0!==n.reverseBondingCurveMaxFeeFactor&&(o+=8),void 0!==n.reverseBondingCurveNetFeeFactor&&(o+=8),o+=8,void 0!==n.vaultAddress&&""!==n.vaultAddress&&(o+=2*n.vaultAddress.length),void 0!==n.maxSupply&&""!==n.maxSupply&&(o+=2*n.maxSupply.length),void 0!==n.symbol&&""!==n.symbol&&(o+=2*n.symbol.length),o+=32,t+=o}),{cacheSize:t,oldestEntry:this.cache.size>0?e:0}}getByTokenId(e){const t=`token:${an(e)}`;return this.cache.get(t)??null}setByTokenId(e,t){const n=`token:${an(e)}`;this.updateCacheEntry(n,t)}hasByTokenId(e){const t=`token:${an(e)}`;return this.cache.has(t)}}pi.MAX_CACHE_SIZE=1e4;class fi extends n.ChainCallDTO{constructor(e){super(),this.tokenName=e.tokenName,this.tokenSymbol=e.tokenSymbol,this.tokenDescription=e.tokenDescription,this.tokenImage=e.tokenImage,this.preBuyQuantity=e.preBuyQuantity,void 0!==e.websiteUrl&&(this.websiteUrl=e.websiteUrl),void 0!==e.telegramUrl&&(this.telegramUrl=e.telegramUrl),void 0!==e.twitterUrl&&(this.twitterUrl=e.twitterUrl),void 0!==e.instagramUrl&&(this.instagramUrl=e.instagramUrl),void 0!==e.facebookUrl&&(this.facebookUrl=e.facebookUrl),void 0!==e.redditUrl&&(this.redditUrl=e.redditUrl),void 0!==e.tiktokUrl&&(this.tiktokUrl=e.tiktokUrl),this.tokenCategory=e.tokenCategory,this.tokenCollection=e.tokenCollection,this.uniqueKey=e.uniqueKey,e.reverseBondingCurveConfiguration&&(this.reverseBondingCurveConfiguration=e.reverseBondingCurveConfiguration),void 0!==e.saleStartTime&&(this.saleStartTime=e.saleStartTime)}}function yi(e){return""===e?"":e.startsWith("0x")?e.slice(2):e}const ki={ETHEREUM:Yn.ETH_ADDRESS,ETHEREUM_NO_PREFIX:/^[a-fA-F0-9]{40}$/,BACKEND:Yn.BACKEND_ADDRESS,CLIENT:Yn.CLIENT_ADDRESS};class vi{toBackendFormat(e){if(!Zn(e))throw new gt("Address is required and must be a string","address","REQUIRED");let n=e;if(e.startsWith("eth|")){if(n=e.slice(4),!/^[a-fA-F0-9]{40}$/.test(n))throw new gt(`Invalid Ethereum address format in backend address. Expected 40 hex characters after 'eth|'. Got: "${e}"`,"address","INVALID_FORMAT");return e}if(n=yi(e),!/^[a-fA-F0-9]{40}$/.test(n))throw new gt(`Invalid Ethereum address format. Expected 40 hex characters (with or without 0x prefix). Got: "${e}"`,"address","INVALID_FORMAT");return`eth|${t.getAddress(`0x${n}`).slice(2)}`}toEthereumFormat(e){if(!Zn(e))throw new gt("Backend address is required and must be a string","address","REQUIRED");const t=e.match(/^eth\|(0x)?([0-9a-fA-F]{40})$/i);if(!t)throw new gt(`Invalid backend address format. Expected "eth|{40-hex-characters}" or "eth|0x{40-hex-characters}". Got: "${e}"`,"address","INVALID_FORMAT");const n=t[1],i=void 0!==n&&""!==n?6:4;return`0x${e.substring(i)}`}normalizeInput(e){if(void 0!==e&&""!==e){if(e.startsWith("client|")){if(!ki.CLIENT.test(e))throw new gt(`Invalid client address format: "${e}"`,"address","INVALID_FORMAT");return e}if(e.startsWith("eth|")){if(!ki.BACKEND.test(e))throw new gt(`Invalid backend address format: "${e}"`,"address","INVALID_FORMAT");return e}return this.toBackendFormat(e)}}isValid(e){return!!Zn(e)&&(!!ki.ETHEREUM.test(e)||(!!ki.ETHEREUM_NO_PREFIX.test(e)||(!!ki.BACKEND.test(e)||!!ki.CLIENT.test(e))))}assertValid(e,t="address"){if(!this.isValid(e))throw new gt(`${t} must be a valid wallet address (Ethereum or backend format)`,t,"INVALID_FORMAT")}detectFormat(e){return Zn(e)?ki.ETHEREUM.test(e)||ki.ETHEREUM_NO_PREFIX.test(e)?"ethereum":ki.BACKEND.test(e)?"backend":ki.CLIENT.test(e)?"client":null:null}normalize(e){if(void 0!==e&&""!==e)return e.toLowerCase()}extractHex(e){if(e.startsWith("eth|"))return e.substring(4).toLowerCase();if(e.startsWith("0x"))return yi(e).toLowerCase();if(/^[a-fA-F0-9]{40}$/.test(e))return e.toLowerCase();throw new gt(`Cannot extract hex from address: "${e}". Expected Ethereum or backend format.`,"address","INVALID_FORMAT")}}const wi=new vi,bi=yi;function Si(e){return wi.toBackendFormat(e)}function Ai(e){return wi.toEthereumFormat(e)}function Ti(e){return wi.isValid(e)}function Ei(e,t="address"){wi.assertValid(e,t)}function Ci(e){return wi.detectFormat(e)}var Ii=Object.freeze({__proto__:null,AddressFormatter:vi,assertValidWalletAddress:Ei,detectFormat:Ci,fromBackendAddressFormat:Ai,isValidAddress:Ti,normalizeAddressInput:function(e){return wi.normalizeInput(e)},stripHexPrefix:bi,toBackendAddressFormat:Si});const Ni=e.z.string({message:"Token name is required"}).min(3,"Token name must be at least 3 characters").max(20,"Token name must be at most 20 characters").regex(/^[a-zA-Z0-9]{3,20}$/,"Token name can only contain letters and numbers"),Di=e.z.string({message:"Token symbol is required"}).min(1,"Token symbol must be at least 1 character").max(8,"Token symbol must be at most 8 characters").regex(/^[A-Z]{1,8}$/,"Token symbol must be uppercase letters only"),Pi=e.z.string({message:"Token description is required"}).min(1,"Token description is required").max(500,"Token description must be at most 500 characters"),xi=e.z.string().min(1,"Token name must be at least 1 character").max(50,"Token name must be at most 50 characters"),_i=e.z.string().min(1,"Search query must be at least 1 character").max(100,"Search query must be at most 100 characters"),Ri=e.z.string().min(1,"Full name is required").max(100,"Full name must be at most 100 characters").regex(/^[a-zA-Z\s]+$/,"Full name can only contain letters and spaces");e.z.string().regex(Yn.BACKEND_ADDRESS,"Address must be in format: eth|[40-hex-chars]"),e.z.string().regex(Yn.ETH_ADDRESS,"Invalid Ethereum address format");const Fi=e.z.string().refine(e=>Yn.BACKEND_ADDRESS.test(e)||Yn.ETH_ADDRESS.test(e)||Yn.CLIENT_ADDRESS.test(e),"Address must be eth|[40-hex], 0x[40-hex], or client|[identifier] format").transform(e=>(new vi).normalizeInput(e)??e),Bi=e.z.string().refine(e=>Yn.BACKEND_ADDRESS.test(e)||/^service\|Token\$Unit\$[A-Z0-9]+\$eth:[0-9a-fA-F]{40}\$launchpad$/.test(e),"Invalid vault address format"),Oi=e.z.string().regex(/^\d+(\.\d+)?$/,"Must be a valid decimal number").refine(e=>Un(e,0)>0,"Amount must be greater than zero"),Ui=e.z.string().regex(/^\d+(\.\d+)?$/,"Must be a valid decimal number").refine(e=>Un(e,0)>=0,"Amount must be zero or greater");e.z.string().url("Must be a valid URL").regex(/^https?:\/\//,"URL must start with http:// or https://");const Li=e.z.string().optional().refine(e=>void 0===e||""===e||/^https?:\/\/.+\..+/.test(e),"Must be a valid URL if provided");function Mi(t=100){return e.z.number().int("Limit must be an integer").min(1,"Limit must be at least 1").max(t,`Limit must be at most ${t}`).default(10)}e.z.number().int("Page must be an integer").min(1,"Page must be at least 1").max(1e3,"Page must be at most 1000").default(1),Mi(100),Mi(20),Mi(20);const $i=e.z.number().int("File size must be an integer").min(1,"File must be at least 1 byte").max(10485760,"File must be at most 10MB"),Ki=e.z.string().max(255,"Filename must be at most 255 characters"),qi=e.z.enum(["image/png","image/jpg","image/jpeg","image/gif","image/webp","image/svg+xml"]);e.z.string().datetime("Must be a valid ISO 8601 date string"),e.z.number().int("Timestamp must be an integer").min(0,"Timestamp must be non-negative");const Gi=e.z.string().regex(/^0x[a-fA-F0-9]{64}$/,"Private key must be format: 0x + 64 hex characters");e.z.string().regex(/^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$/,"Transaction ID must be in UUID format"),e.z.string().regex(/^galaconnect-operation-[a-z0-9-]+$/,"Unique key must be format: galaconnect-operation-{unique-id}");const Wi=[".png",".jpg",".jpeg",".gif",".webp",".svg"];e.z.object({file:e.z.union([e.z.instanceof(File),e.z.instanceof(Buffer)]),name:Ki,size:$i,type:qi});const Hi=e.z.instanceof(File).refine(e=>e.size>=1&&e.size<=10485760,"File size must be between 1 byte and 10MB").refine(e=>["image/png","image/jpg","image/jpeg","image/gif","image/webp","image/svg+xml"].includes(e.type),"File must be a valid image type (PNG, JPG, JPEG, GIF, WebP, or SVG)").refine(e=>e.name.length<=255,"Filename must be at most 255 characters"),zi=e.z.instanceof(Buffer).refine(e=>e.length>=1&&e.length<=10485760,"Buffer size must be between 1 byte and 10MB");e.z.union([Hi,zi]),e.z.enum([".png",".jpg",".jpeg",".gif",".webp",".svg"]),Ki.refine(e=>{const t=e.slice(e.lastIndexOf(".")).toLowerCase();return Wi.includes(t)},`Filename must end with one of: ${Wi.join(", ")}`),e.z.object({websiteUrl:Li,telegramUrl:Li,twitterUrl:Li,instagramUrl:Li,facebookUrl:Li,redditUrl:Li,tiktokUrl:Li}).refine(e=>void 0!==e.websiteUrl||void 0!==e.telegramUrl||void 0!==e.twitterUrl||void 0!==e.instagramUrl||void 0!==e.facebookUrl||void 0!==e.redditUrl||void 0!==e.tiktokUrl,"At least one social URL (website, telegram, twitter, instagram, facebook, reddit, or tiktok) is required");const ji=e.z.string().min(1,"Token category must not be empty").default("Unit"),Vi=e.z.string().min(1,"Token collection must not be empty").default("Token"),Xi=e.z.object({minFeePortion:e.z.string().regex(/^\d+(\.\d+)?$/,"Must be a valid decimal string").refine(e=>Un(e,0)>=.1,"Minimum fee must be >= 0.1").refine(e=>Un(e,0)<=.5,"Minimum fee must be <= 0.5"),maxFeePortion:e.z.string().regex(/^\d+(\.\d+)?$/,"Must be a valid decimal string").refine(e=>Un(e,0)>=.1,"Maximum fee must be >= 0.1").refine(e=>Un(e,0)<=.5,"Maximum fee must be <= 0.5")}).refine(e=>Un(e.maxFeePortion,0)>=Un(e.minFeePortion,0),{message:"Maximum fee must be >= minimum fee",path:["maxFeePortion"]}),Qi=e.z.object({tokenName:Ni,tokenSymbol:Di,tokenDescription:Pi,tokenImage:e.z.union([e.z.instanceof(File),e.z.instanceof(Buffer),e.z.string().url("Token image must be a valid URL")]).optional(),preBuyQuantity:Ui.default("0"),websiteUrl:Li,telegramUrl:Li,twitterUrl:Li,instagramUrl:Li,facebookUrl:Li,redditUrl:Li,tiktokUrl:Li,tokenCategory:ji,tokenCollection:Vi,reverseBondingCurveConfiguration:Xi.optional(),saleStartTime:e.z.number().int().positive().optional(),privateKey:Gi.optional()});e.z.object({file:e.z.union([e.z.instanceof(File),e.z.instanceof(Buffer)]),tokenName:Ni}),e.z.enum(["RECENT","POPULAR"]);const Ji=e.z.object({tokenName:Ni.optional(),symbol:Di.optional()}).refine(e=>void 0!==e.tokenName||void 0!==e.symbol,"At least one of tokenName or symbol is required");e.z.enum(["NATIVE","MEME"]),e.z.enum(["IN","OUT"]);const Yi=e.z.object({from:e.z.number().int("From timestamp must be an integer").min(173e6,"From timestamp must be at least 173000000"),to:e.z.number().int("To timestamp must be an integer").min(173e6,"To timestamp must be at least 173000000"),resolution:e.z.number().int("Resolution must be an integer").min(1,"Resolution must be at least 1"),tokenName:Ni});e.z.object({tokenName:Ni,slippageToleranceFactor:e.z.number().min(0).max(1).optional(),maxAcceptableReverseBondingCurveFeeSlippageFactor:e.z.number().min(0).max(1).optional(),privateKey:Gi.optional()});const Zi=e.z.object({offset:e.z.number().int().min(0).default(0),pageSize:e.z.number().int().min(1).max(100).default(10)}),eo=e.z.object({offset:e.z.number().int().min(0).default(0),pageSize:e.z.number().int().min(1).max(20).default(10)}),to=e.z.object({offset:e.z.number().int().min(0).default(0),pageSize:e.z.number().int().min(1).max(20).default(10)});Zi.extend({type:e.z.enum(["RECENT","POPULAR"]).optional(),tokenName:e.z.string().min(1).max(50).optional(),search:e.z.string().min(1).max(100).optional()}),eo.extend({tokenName:e.z.string().min(1).max(50).optional(),search:e.z.string().min(1).max(100).optional()}),to.extend({tradeType:e.z.enum(["BUY","SELL"]).optional(),tokenName:e.z.string().min(1).max(50).optional(),userAddress:e.z.string().regex(/^(0x[a-fA-F0-9]{40}|eth\|[a-fA-F0-9]{40})$/).optional(),startDate:e.z.string().datetime().optional(),endDate:e.z.string().datetime().optional(),sortOrder:e.z.enum(["ASC","DESC"]).default("DESC")}),e.z.object({page:e.z.number().int().min(1),limit:e.z.number().int().min(1),total:e.z.number().int().min(0),totalPages:e.z.number().int().min(0),hasNext:e.z.boolean(),hasPrevious:e.z.boolean()});const no=e.z.enum(["buy","sell"]);e.z.enum(["BUY","SELL"]),e.z.object({tradeType:no,tokenAmount:Oi,vaultAddress:Bi,userAddress:Fi,slippageTolerance:Oi.optional(),deadline:e.z.number().int().positive().optional()}),e.z.object({tokenSymbol:Di,nativeTokenQuantity:Oi,expectedToken:Oi,maxAcceptableReverseBondingCurveFee:Ui.default("0").optional()}),e.z.object({tokenSymbol:Di,tokenQuantity:Oi,expectedNativeToken:Oi,maxAcceptableReverseBondingCurveFee:Ui.default("0").optional()}),to.extend({tokenName:xi.optional()}),e.z.object({page:e.z.number().int().min(1).max(1e3).default(1).optional(),limit:e.z.number().int().min(1).max(20).default(10).optional()});const io=e.z.enum(["NATIVE","MEME"]),oo=e.z.enum(["IN","OUT"]);e.z.object({type:io,method:oo,vaultAddress:Bi,amount:Oi}),e.z.object({nativeTokenQuantity:Oi}),e.z.object({vaultAddress:Bi}),e.z.object({minFeePortion:Oi,maxFeePortion:Oi});const ro=e.z.enum(["all","DEFI","ASSET"]);function so(e){return t=>{const n=e.safeParse(t);return{success:n.success,data:n.success?n.data:void 0,errors:n.success?void 0:n.error.issues.map(e=>e.message)}}}eo.extend({type:ro.optional(),address:Fi.optional(),search:_i.optional(),tokenName:xi.optional()}),e.z.object({address:Fi.optional(),refresh:e.z.boolean().optional()}),e.z.object({profileImage:e.z.string(),fullName:Ri,address:Fi,privateKey:Gi.optional()}),e.z.object({file:e.z.union([e.z.instanceof(File),e.z.instanceof(Buffer)]),address:Fi.optional(),privateKey:Gi.optional()}),e.z.object({created:e.z.number(),createdBy:e.z.string(),expires:e.z.number(),instanceId:e.z.string(),lockAuthority:e.z.string(),name:e.z.string(),quantity:e.z.string(),vestingPeriodStart:e.z.number()}),e.z.object({address:Fi,tokenId:e.z.union([e.z.string(),e.z.object({collection:e.z.string(),category:e.z.string(),type:e.z.string(),additionalKey:e.z.string()}),e.z.object({collection:e.z.string(),category:e.z.string(),type:e.z.string(),additionalKey:e.z.string(),instance:e.z.string()})]).optional(),tokenName:xi.optional(),withExpired:e.z.boolean().optional()}).refine(e=>void 0!==e.tokenId||void 0!==e.tokenName,"At least one token identifier (tokenId or tokenName) is required");const ao=so(Ni),co=so(Qi),lo=so(Ji);function uo(e){const t=function(e){const t=co(e);return t.success?[]:t.errors??["Unknown validation error"]}(e);if(t.length>0)throw new Error(`LaunchTokenData validation failed:\n${t.map(e=>`- ${e}`).join("\n")}`)}function ho(e,t){return"string"==typeof e[t]}function go(e,t){return void 0===e[t]||"string"==typeof e[t]}function mo(e,t){return void 0===e[t]||"number"==typeof e[t]}function po(e){if(null==e||"object"!=typeof e)return!1;const t=e;return ho(t,"tokenName")&&mo(t,"from")&&mo(t,"to")&&mo(t,"resolution")}function fo(e,t){switch(t){case"string":return"string"==typeof e;case"number":return"number"==typeof e;case"boolean":return"boolean"==typeof e;case"object":return null!==e&&"object"==typeof e&&!Array.isArray(e);case"array":return Array.isArray(e);case"optional-string":return void 0===e||"string"==typeof e;case"optional-number":return void 0===e||"number"==typeof e;case"optional-boolean":return void 0===e||"boolean"==typeof e;case"optional-object":return void 0===e||null!==e&&"object"==typeof e&&!Array.isArray(e);case"optional-array":return void 0===e||Array.isArray(e);default:return!1}}function yo(e){return t=>{if(null==t||"object"!=typeof t||Array.isArray(t))return!1;const n=t;for(const[t,i]of Object.entries(e)){if(!fo(n[t],i))return!1}return!0}}ni({BUY:"buy",SELL:"sell"});const ko=yo({vaultAddress:"string"}),vo=yo({nativeTokenQuantity:"string"});function wo(e){if(ei(e)||"object"!=typeof e)return{};const t={};for(const[n,i]of Object.entries(e))ei(i)||(Zn(i)?t[n]=i:"number"==typeof i||"boolean"==typeof i?t[n]=i.toString():Array.isArray(i)?t[n]=i.join(","):t[n]="object"==typeof i?JSON.stringify(i):String(i));return t}function bo(e,t="0"){return Kn(e,t)}function So(e,t){return void 0!==t?bo(e).toFixed(t):bo(e).toFixed()}function Ao(e){const t=bo(e),n=Math.log(1.0001),i=t.toNumber();return Math.log(i)/n}function To(e,t=!1){const n=bo(e),i=new o(1).dividedBy(n);return t?i.toFixed():i}function Eo(e,t){return o.min(bo(e),bo(t))}function Co(e,t){return o.max(bo(e),bo(t))}function Io(e){return bo(e).isZero()}function No(e){return bo(e).isLessThan(0)}function Do(e,t){return bo(e).isLessThan(bo(t))}function Po(e,t){return bo(e).multipliedBy(t).dividedBy(100)}function xo(...e){e.forEach(e=>{if(e.isNaN())throw Xt("value","NaN");if(!e.isFinite())throw jt("value","finite");if(e.isLessThanOrEqualTo(0))throw zt("value","0",e.toString())})}function _o(...e){e.forEach(e=>{if(e.isNaN())throw Xt("value","NaN");if(!e.isFinite())throw jt("value","finite");if(e.isLessThan(0))throw zt("value","0",e.toString())})}function Ro(e,t,n){if(e.isNaN())throw Xt(t,"NaN");if(!e.isFinite())throw jt(t,"finite");if(e.isLessThanOrEqualTo(0))throw zt(t,"0",e.toString())}function Fo(e,t,n="0"){const i=bo(t);return Io(i)?bo(n):bo(e).dividedBy(i)}function Bo(e,t){return Math.floor(e/t)*t}class Oo{static calculateBuyWithExact(e,t){const n=Un(e),i=Un(t),{BASE_PRICE:o,PRICE_SCALING_FACTOR:r,TRADING_FEE_FACTOR:s,GAS_FEE:a}=sn,c=this.roundUp(o*(Math.exp((i+n)*r)-Math.exp(i*r))/r,8),l=So(bo(c).multipliedBy(s));return{amount:c.toString(),reverseBondingCurveFee:"0",transactionFee:l,gasFee:a}}static calculateBuyWithNative(e,t){const n=Un(e),i=Un(t),{BASE_PRICE:o,PRICE_SCALING_FACTOR:r,TRADING_FEE_FACTOR:s,GAS_FEE:a}=sn,c=Math.log(n*r/o+Math.exp(i*r))/r-i,l=So(bo(c).multipliedBy(s));return{amount:c.toString(),reverseBondingCurveFee:"0",transactionFee:l,gasFee:a}}static calculateSellWithExact(e,t,n,i,o){const r=Un(e),s=Un(t),a=Un(n),{BASE_PRICE:c,PRICE_SCALING_FACTOR:l,TRADING_FEE_FACTOR:d,GAS_FEE:u}=sn,h=c*(Math.exp(s*l)-Math.exp((s-r)*l))/l,g=bo(h),m=i+s/a*(o-i),p=So(g.multipliedBy(m),8),f=So(g.multipliedBy(d));return{amount:h.toString(),reverseBondingCurveFee:p,transactionFee:f,gasFee:u}}static calculateSellWithNative(e,t,n,i,o){const r=Un(e),s=Un(t),a=Un(n),{BASE_PRICE:c,PRICE_SCALING_FACTOR:l,TRADING_FEE_FACTOR:d,GAS_FEE:u}=sn;if(r>=c*(Math.exp(s*l)-1)/l){const e=bo(r),t=i+s/a*(o-i),n=So(e.multipliedBy(t),8),c=So(e.multipliedBy(d));return{amount:s.toString(),reverseBondingCurveFee:n,transactionFee:c,gasFee:u}}const h=s-Math.log(Math.exp(s*l)-r*l/c)/l,g=bo(r),m=i+s/a*(o-i),p=So(g.multipliedBy(m),8),f=So(g.multipliedBy(d));return{amount:h.toString(),reverseBondingCurveFee:p,transactionFee:f,gasFee:u}}static roundUp(e,t){const n=Math.pow(10,t);return Math.ceil(e*n)/n}}class Uo extends Error{constructor(e,t,n){super(e),this.filename=t,this.mimeType=n,this.name="FileValidationError"}}function Lo(e,t,n){if(null==e)throw new Uo("File is required",t,n);if("undefined"!=typeof File&&e instanceof File){const t=Hi.safeParse(e);if(!t.success){const n=t.error.issues.map(e=>e.message).join("; ");throw new Uo(n,e.name,e.type)}return}if(Buffer.isBuffer(e)){if(void 0===t||""===t)throw new Uo("Filename is required when uploading Buffer objects",t,n);const i=zi.safeParse(e);if(!i.success){const e=i.error.issues.map(e=>e.message).join("; ");throw new Uo(e,t,n)}try{Vn(t,255,"filename")}catch(e){throw new Uo(e.message,t,n)}const o=["image/png","image/jpg","image/jpeg","image/gif","image/webp","image/svg+xml"];if(!o.includes(n))throw new Uo(`Invalid file type "${n}" is not allowed. Allowed types: ${o.join(", ")}`,t,n);const r=function(e){if(null==e||""===e)return"";const t=e.lastIndexOf(".");if(-1===t)return"";return e.substring(t).toLowerCase()}(t),s=[".png",".jpg",".jpeg",".gif",".webp",".svg"];if(!s.includes(r))throw new Uo(`File extension "${r}" is not allowed. Allowed extensions: ${s.join(", ")}`,t,n);const a=function(e){switch(e.toLowerCase()){case".png":return"image/png";case".jpg":case".jpeg":return"image/jpeg";case".gif":return"image/gif";case".webp":return"image/webp";case".svg":return"image/svg+xml";default:return"application/octet-stream"}}(r);if(a!==n&&"application/octet-stream"!==a)throw new Uo(`File extension "${r}" does not match MIME type "${n}"`,t,n);return}throw new Uo("File must be a File object (browser) or Buffer (Node.js)",t,n)}function Mo(e,t,n=1){if(null==e||""===e)return null;if("string"!=typeof e)return null;const i=e.trim();return i.length<n?null:i}function $o(e,t){return e.toLowerCase()===t.toLowerCase()}function Ko(e,t){return e.toLowerCase().includes(t.toLowerCase())}function qo(e,t,n,i){return e===n&&t===i||e===i&&t===n}class Go{validate(e,t={}){const{allowZero:n=!0,minimum:i,maximum:o,maxDecimals:r=Go.MAX_DECIMAL_PLACES,fieldName:s="amount"}=t;if(!Zn(e))throw new gt(`${s} cannot be empty or whitespace-only. Provide a valid numeric string.`,s,"INVALID_NUMERIC_STRING");if(/[eE]/.test(e))throw new gt(`${s} cannot use scientific notation. Use standard decimal format (e.g., "1000" instead of "1e3").`,s,"INVALID_NUMERIC_STRING");const a=Un(e,NaN);if(isNaN(a))throw new gt(`${s} must be a valid numeric string. Received: "${e}"`,s,"INVALID_NUMERIC_STRING");if(!isFinite(a))throw new gt(`${s} must be a finite number. Cannot be Infinity or -Infinity.`,s,"INVALID_NUMERIC_STRING");if(a<0)throw new gt(`${s} must be non-negative. Received: "${e}"`,s,"INVALID_NUMERIC_STRING");if(!n&&0===a)throw new gt(`${s} must be greater than zero. Received: "${e}"`,s,"INVALID_NUMERIC_STRING");const c=bo(e),l=c.decimalPlaces()??0;if(l>r)throw new gt(`${s} cannot exceed ${r} decimal places. Received: ${l} decimal places`,s,"PRECISION_EXCEEDED");if(void 0!==i&&Do(c,i))throw new gt(`${s} must be at least ${i}. Received: "${e}"`,s,"BELOW_MINIMUM");if(void 0!==o&&(d=o,bo(c).isGreaterThan(bo(d))))throw new gt(`${s} cannot exceed ${o}. Received: "${e}"`,s,"EXCEEDS_MAXIMUM");var d}parseAmount(e,t="0"){return bo(e,t)}isValid(e,t={}){try{return null==e||""===e?!1!==t.allowZero:(this.validate(e,t),!0)}catch{return!1}}formatAmount(e,t){return So(e,t)}clampAmount(e,t,n){const i=bo(e),o=bo(t),r=bo(n);return function(e,t,n){const i=bo(e),o=bo(t),r=bo(n);return i.isGreaterThanOrEqualTo(o)&&i.isLessThanOrEqualTo(r)}(i,o,r)?So(i):Do(i,o)?So(o):So(r)}}function Wo(e,t){throw new gt(e.join("; "),t,"VALIDATION_ERROR")}function Ho(e){const t=ao(e);!t.success&&t.errors&&Wo(t.errors,"tokenName")}function zo(e){const t=lo(e);!t.success&&t.errors&&Wo(t.errors,"options")}function jo(e){const t=Yi.safeParse(e);var n;t.success||Wo((n=t.error.issues,Array.isArray(n)?n.map(e=>null!=e&&"object"==typeof e&&"message"in e&&"string"==typeof e.message?e.message:String(e)).filter(e=>""!==e):[]),"options")}function Vo(e,t,n=!0){Xo.validate(e,{fieldName:t,allowZero:n})}Go.MAX_DECIMAL_PLACES=18,Go.MIN_POSITIVE="0.00000000000000001";const Xo=new Go;class Qo{constructor(e,t,n,i,o,r,s="local"){this.http=e,this.tokenResolver=t,this.logger=n,this.bundleHttp=i,this.galaChainHttp=o,this.dexApiHttp=r,this.defaultCalculateAmountMode=s,this.metadataCache=new pi}addIfDefined(e,t,n){return void 0!==n&&(e[t]=n),e}async uploadImageByTokenName(e){const{tokenName:t,options:n}=e;Ho(t);const i=`${t}.png`;Lo(n.file,i,"image/png");try{const e=new FormData;if("undefined"!=typeof File&&n.file instanceof File)e.append("image",n.file);else{if(!Buffer.isBuffer(n.file))throw $t("file","a File object (browser) or Buffer (Node.js)");{const i=`${void 0!==n.tokenName&&""!==n.tokenName?n.tokenName:t}.png`,o=new Blob([n.file],{type:"image/png"});e.append("image",o,i)}}const i=await this.http.request({method:"POST",url:`/launchpad/upload-image?tokenName=${encodeURIComponent(void 0!==n.tokenName&&""!==n.tokenName?n.tokenName:t)}`,data:e,headers:{}});if(!0===i.error||200!==i.status)throw Kt(void 0!==i.message&&""!==i.message?i.message:"Image upload failed - no URL returned",i.status);const o=en(i);if(!o?.imageUrl)throw Kt("Image upload failed - no URL returned",i.status);return o.imageUrl}catch(e){if(Et(e)&&e.message.includes("FormData"))throw qt("File upload failed: FormData not supported in this environment. Ensure you have proper polyfills for Node.js environments.","FormData");throw e}}async fetchPoolsFromAPI(e){void 0!==e.pageSize&&ti(0,void 0,100,e.pageSize),void 0!==e.tokenName&&""!==e.tokenName&&Ho(e.tokenName);const t={pageSize:String(e.pageSize??10)};void 0!==e.cursor&&(t.cursor=e.cursor),void 0!==e.type&&(t.type=e.type),void 0!==e.tokenName&&(t.tokenName=e.tokenName),void 0!==e.search&&(t.search=e.search),void 0!==e.hasUpcomingShows&&(t.hasUpcomingShows=e.hasUpcomingShows.toString()),void 0!==e.language&&(t.language=e.language),void 0!==e.recentlyStreamed&&(t.recentlyStreamed=e.recentlyStreamed.toString());const n=wo(t),i=await this.http.get("/launchpad/fetch-pool",n);if(!0===i.error||200!==i.status)throw Kt(void 0!==i.message&&""!==i.message?i.message:"Failed to fetch pools",i.status);const o=en(i);if(null==o)throw Kt("Failed to fetch pools - no data returned",i.status);let r=[];if(o.tokens)if(Array.isArray(o.tokens))r=o.tokens.map(e=>{const t=e.reverseBondingCurveMinFeePortion??"0",n=e.reverseBondingCurveMaxFeePortion??"0",i=!Io(t)||!Io(n);return{...e,reverseBondingCurveMinFeePortion:t,reverseBondingCurveMaxFeePortion:n,hasReverseBondingCurveFee:i,createdAt:void 0!==e.created_at&&""!==e.created_at?e.created_at:void 0!==e.createdAt&&""!==e.createdAt?e.createdAt:""}});else{const e=o.tokens,t=e.reverseBondingCurveMinFeePortion??"0",n=e.reverseBondingCurveMaxFeePortion??"0",i=!Io(t)||!Io(n);r=[{...e,reverseBondingCurveMinFeePortion:t,reverseBondingCurveMaxFeePortion:n,hasReverseBondingCurveFee:i,createdAt:void 0!==e.created_at&&""!==e.created_at?e.created_at:void 0!==e.createdAt&&""!==e.createdAt?e.createdAt:""}]}else o.pools&&Array.isArray(o.pools)&&(r=o.pools.map(e=>{const t=e.reverseBondingCurveMinFeePortion??"0",n=e.reverseBondingCurveMaxFeePortion??"0",i=!Io(t)||!Io(n);return{...e,reverseBondingCurveMinFeePortion:t,reverseBondingCurveMaxFeePortion:n,hasReverseBondingCurveFee:i,createdAt:void 0!==e.created_at&&""!==e.created_at?e.created_at:void 0!==e.createdAt&&""!==e.createdAt?e.createdAt:""}}));const{extractMetadataFromPoolData:s,isValidPoolForCaching:a}=await Promise.resolve().then(function(){return Pu});r.forEach(e=>{if(!a(e))return void this.logger.debug("Skipping pool with invalid structure for caching",e);const t=s(e,this.logger);t&&this.warmCacheFromPoolData(e.tokenName,t)});const c=o.count??o.total??0,l={hasNextPage:o.hasNextPage??!1};return void 0!==o.hasPrevPage&&(l.hasPrevPage=o.hasPrevPage),void 0!==o.nextCursor&&(l.nextCursor=o.nextCursor),void 0!==o.prevCursor&&(l.prevCursor=o.prevCursor),c>0&&(l.totalCount=c),{items:r,pageInfo:l}}async checkPool(e){zo(e),void 0!==e.tokenName&&""!==e.tokenName&&Ho(e.tokenName);const t=wo(e),n=await this.http.get("/launchpad/check-pool",t);if(!0===n.error||200!==n.status)throw Kt(void 0!==n.message&&""!==n.message?n.message:"Failed to check pool",n.status);const i=n.data;return void 0!==e.symbol&&""!==e.symbol?i?.isSymbolExist??!1:void 0!==e.tokenName&&""!==e.tokenName?i?.isNameExist??!1:i?.exists??!1}async fetchVolumeData(e){if(!po(e))throw $t("options","{ tokenName: string, from?: number, to?: number, resolution?: number }");const{tokenName:t,from:n,to:i,resolution:o}=e;if(Ho(t),null==n||null==i||null==o)throw Mt("graphOptions","Graph options (from, to, resolution)");const r={tokenName:t,from:n,to:i,resolution:o};jo(r);const s=wo(r),a=await this.http.get("/launchpad/get-graph-data",s);if(!0===a.error||200!==a.status)throw Kt(void 0!==a.message&&""!==a.message?a.message:"Failed to fetch graph data",a.status);const c=en(a);if(!c)throw Kt("Failed to fetch graph data - no data returned",a.status);return{dataPoints:c}}async fetchPools(e={}){let t;"recent"===e.type?t="RECENT":"popular"===e.type&&(t="POPULAR");const n={pageSize:e.pageSize??10};return void 0!==e.cursor&&(n.cursor=e.cursor),void 0!==e.search&&""!==e.search&&(n.search=e.search),void 0!==e.tokenName&&""!==e.tokenName&&(n.tokenName=e.tokenName),null!=t&&(n.type=t),void 0!==e.hasUpcomingShows&&(n.hasUpcomingShows=e.hasUpcomingShows),void 0!==e.language&&""!==e.language&&(n.language=e.language),void 0!==e.recentlyStreamed&&(n.recentlyStreamed=e.recentlyStreamed),this.fetchPoolsFromAPI(n)}async isTokenNameAvailable(e){try{return!await this.checkPool({tokenName:e})}catch{return!1}}async isTokenSymbolAvailable(e){try{return!await this.checkPool({symbol:e})}catch{return!1}}async calculateBuyAmount(e){if(null==e||"object"!=typeof e)throw $t("options","an options object");const{tokenName:t,amount:n,type:i,currentSupply:o}=e,r=e.mode??this.defaultCalculateAmountMode;if("local"!==r&&"external"!==r)throw Vt("mode",'"local" or "external"',r);if(!Zn(t))throw Mt("tokenName","Token name");if(!Zn(n))throw Mt("amount","Amount");if(i!==nt&&i!==it)throw Vt("type",'"native" or "exact"',i);return"external"===r?this.calculateBuyAmountExternal({tokenName:t,amount:n,type:i}):this.calculateBuyAmountLocal(this.addIfDefined({tokenName:t,amount:n,type:i},"currentSupply",o))}async calculateBuyAmountExternal(e){const{tokenName:t,amount:n,type:i}=e;if("string"!=typeof t||""===t)throw new gt("Token name must be a non-empty string","tokenName","INVALID_TOKEN_NAME");if("string"!=typeof n||""===n)throw new gt("Amount must be a non-empty string","amount","INVALID_AMOUNT");return"exact"===i?nn(()=>this.http.get(Ve,{tokenName:t,amount:n,type:"MEME",method:"OUT"}),{errorContext:`Failed to calculate buy amount for ${t} (exact tokens)`}):nn(()=>this.http.get(Ve,{tokenName:t,amount:n,type:"NATIVE",method:"IN"}),{errorContext:`Failed to calculate buy amount for ${t} (native/GALA budget)`})}async calculateSellAmount(e){const{tokenName:t,amount:n,type:i,currentSupply:o,maxSupply:r,reverseBondingCurveMaxFeeFactor:s,reverseBondingCurveMinFeeFactor:a}=e,c=e.mode??this.defaultCalculateAmountMode;if("local"!==c&&"external"!==c)throw Vt("mode",'"local" or "external"',c);if(!Zn(t))throw Mt("tokenName","Token name");if(!Zn(n))throw Mt("amount","Amount");if(i!==it&&i!==nt)throw Vt("type",'"exact" or "native"',i);if("external"===c)return this.calculateSellAmountExternal({tokenName:t,amount:n,type:i});{const e={tokenName:t,amount:n,type:i,...void 0!==o&&{currentSupply:o},...void 0!==r&&{maxSupply:r},...void 0!==s&&{reverseBondingCurveMaxFeeFactor:s},...void 0!==a&&{reverseBondingCurveMinFeeFactor:a}};return this.calculateSellAmountLocal(e)}}async calculateSellAmountExternal(e){const{tokenName:t,amount:n,type:i}=e;if("string"!=typeof t||""===t)throw new gt("Token name must be a non-empty string","tokenName","INVALID_TOKEN_NAME");if("string"!=typeof n||""===n)throw new gt("Amount must be a non-empty string","amount","INVALID_AMOUNT");return"exact"===i?nn(()=>this.http.get(Ve,{tokenName:t,amount:n,type:"MEME",method:"IN"}),{errorContext:`Failed to calculate sell amount for ${t} (exact tokens)`}):nn(()=>this.http.get(Ve,{tokenName:t,amount:n,type:"NATIVE",method:"OUT"}),{errorContext:`Failed to calculate sell amount for ${t} (native/GALA target)`})}async calculateBuyAmountLocal(e){const{tokenName:t,amount:n,type:i,currentSupply:o}=e;if(!Zn(n))throw Mt("amount","Amount");if(i!==nt&&i!==it)throw Vt("type",'"native" or "exact"',i);void 0!==o&&Vo(o,"currentSupply");const r=null==o||""===o;if(r&&(null==t||""===t))throw Mt("tokenName","Token name (required when currentSupply is not provided)");null!=t&&""!==t&&Ho(t);let s=o;if(r){s=(await this.fetchPoolDetailsForCalculation(t)).currentSupply}return i===it?Oo.calculateBuyWithExact(n,s):Oo.calculateBuyWithNative(n,s)}async calculateSellAmountLocal(e){const{tokenName:t,amount:n,type:i,currentSupply:o,maxSupply:r,reverseBondingCurveMaxFeeFactor:s,reverseBondingCurveMinFeeFactor:a}=e;if(!Zn(n))throw Mt("amount","Amount");if(i!==it&&i!==nt)throw Vt("type",'"exact" or "native"',i);void 0!==o&&Vo(o,"currentSupply");const c=null==o||""===o||null==r||""===r||void 0===s||void 0===a;if(c&&(null==t||""===t))throw Mt("tokenName","Token name (required when currentSupply, maxSupply, or fee factors are not provided)");null!=t&&""!==t&&Ho(t);let l=o,d=r,u=s,h=a;if(c&&null!=t&&""!==t){const e=this.metadataCache.getByName(t);d=d??this.metadataCache.getMaxSupply(t),u=u??e?.reverseBondingCurveMaxFeeFactor,h=h??e?.reverseBondingCurveMinFeeFactor,null!=l&&""!==l||(l=await this.fetchCurrentSupply(t));if(void 0===u||void 0===h){const e=await this.fetchPoolDetailsForCalculation(t);u=u??e.reverseBondingCurveMaxFeeFactor,h=h??e.reverseBondingCurveMinFeeFactor}}return i===it?Oo.calculateSellWithExact(n,l,d,h,u):Oo.calculateSellWithNative(n,l,d,h,u)}async calculateBuyAmountForGraduation(e){const t="string"==typeof e?{tokenName:e}:e;if("object"==typeof e&&!function(e){if(null==e||"object"!=typeof e)return!1;const t=e;return ho(t,"tokenName")&&function(e){return void 0===e.calculateAmountMode||"local"===e.calculateAmountMode||"external"===e.calculateAmountMode}(t)&&go(t,"currentSupply")}(e))throw Vt("options","CalculateBuyAmountForGraduationOptions or string (token name)",typeof e);const{tokenName:n,calculateAmountMode:i,currentSupply:o}=t;Ho(n);const r=await this.tokenResolver.resolveTokenToVault(n);if(null==r||""===r)throw new gt(Ot(n),"tokenName","VAULT_NOT_FOUND");if(void 0===this.galaChainHttp||null===this.galaChainHttp)throw qt("GalaChain HTTP client not configured");const s=await this.galaChainHttp.post("/api/asset/launchpad-contract/FetchSaleDetails",{vaultAddress:r});if(1!==s.Status)throw Kt(`Failed to fetch pool details: Status ${s.Status}`,s.Status);const a=s.Data,c=o??So(bo(a.maxSupply).minus(a.sellingTokenQuantity)),l=a.sellingTokenQuantity;if("0"===l)throw Mt("tokenName",`Token ${n} is already graduated (no tokens remaining in pool)`);const d={tokenName:n,amount:l,type:"exact",currentSupply:c,...void 0!==i&&{mode:i}};return{...await this.calculateBuyAmount(d),remainingTokens:l}}async launchToken(e){if(!this.bundleHttp)throw qt("Bundle backend client not configured. LaunchToken requires bundleHttp client.","bundleHttp");uo(e);const t=void 0!==e.preBuyQuantity&&""!==e.preBuyQuantity?e.preBuyQuantity:"0",o=Un(t);if(0===o&&"0"!==t)throw Xt("preBuyQuantity",t,"Pre-buy quantity");if(o<0)throw Xt("preBuyQuantity",t,"Pre-buy quantity");if(e.reverseBondingCurveConfiguration){const{minFeePortion:t,maxFeePortion:n}=e.reverseBondingCurveConfiguration;!function(e,t,n){const i="string"==typeof e?parseFloat(e):e,o="string"==typeof t?parseFloat(t):t;if(!isFinite(i))throw new gt(`${n} minFee must be a valid finite number`,n,"INVALID_FEE_MINIMUM");if(!isFinite(o))throw new gt(`${n} maxFee must be a valid finite number`,n,"INVALID_FEE_MAXIMUM");if(i<.1)throw new gt(`${n} minFee must be >= 0.1, received ${i}`,n,"INVALID_FEE_MINIMUM");if(o>.5)throw new gt(`${n} maxFee must be <= 0.5, received ${o}`,n,"INVALID_FEE_MAXIMUM");if(i>o)throw new gt(`${n} minFee (${i}) must be <= maxFee (${o})`,n,"INVALID_FEE_RANGE")}(t,n,"reverseBondingCurve")}let r="https://via.placeholder.com/200?text=Token";if(void 0!==e.tokenImage&&null!==e.tokenImage)if(e.tokenImage instanceof File||Buffer.isBuffer(e.tokenImage)){const t=await this.uploadImageByTokenName({tokenName:e.tokenName,options:{file:e.tokenImage,tokenName:e.tokenName}});if(null==t||""===t)throw Kt("Image upload failed: No URL returned");r=t}else"string"==typeof e.tokenImage&&(r=e.tokenImage);const s=`galaswap - operation - ${i.v4()}-${Date.now()}-${this.http.getAddress()}`,a=(void 0!==t&&""!==t?t:"0").toString(),c=void 0!==e.tokenCategory&&""!==e.tokenCategory?e.tokenCategory:"Unit",l=void 0!==e.tokenCollection&&""!==e.tokenCollection?e.tokenCollection:"Token",d={tokenName:e.tokenName.trim(),tokenSymbol:ln(e.tokenSymbol),tokenDescription:e.tokenDescription.trim(),tokenImage:r.trim(),preBuyQuantity:a,tokenCategory:c,tokenCollection:l,uniqueKey:s},u=Mo(e.websiteUrl);null!==u&&(d.websiteUrl=u);const h=Mo(e.telegramUrl);null!==h&&(d.telegramUrl=h);const g=Mo(e.twitterUrl);null!==g&&(d.twitterUrl=g);const m=Mo(e.instagramUrl);null!==m&&(d.instagramUrl=m);const p=Mo(e.facebookUrl);null!==p&&(d.facebookUrl=p);const f=Mo(e.redditUrl);null!==f&&(d.redditUrl=f);const y=Mo(e.tiktokUrl);null!==y&&(d.tiktokUrl=y);const k=e.reverseBondingCurveConfiguration?.minFeePortion?.toString()??"0.1",v=e.reverseBondingCurveConfiguration?.maxFeePortion?.toString()??"0.5";d.reverseBondingCurveConfiguration={minFeePortion:k,maxFeePortion:v},void 0!==e.saleStartTime&&null!==e.saleStartTime&&(d.saleStartTime=e.saleStartTime);const w=Object.fromEntries(Object.entries(d).filter(([e,t])=>void 0!==t)),b=new fi(w),S=await this.http.signWithGalaChain("CreateSale",b,n.SigningType.SIGN_TYPED_DATA),{signature:A,types:T,domain:E,prefix:C}=S,I=null!=C?{prefix:C}:{},N=void 0!==b.reverseBondingCurveConfiguration&&null!==b.reverseBondingCurveConfiguration?{reverseBondingCurveConfiguration:b.reverseBondingCurveConfiguration}:{},D=void 0!==b.saleStartTime&&null!==b.saleStartTime?{saleStartTime:b.saleStartTime}:{},P={tokenName:b.tokenName,tokenSymbol:b.tokenSymbol,tokenDescription:b.tokenDescription,tokenImage:b.tokenImage,preBuyQuantity:b.preBuyQuantity,...void 0!==b.websiteUrl&&""!==b.websiteUrl?{websiteUrl:b.websiteUrl}:{},...void 0!==b.telegramUrl&&""!==b.telegramUrl?{telegramUrl:b.telegramUrl}:{},...void 0!==b.twitterUrl&&""!==b.twitterUrl?{twitterUrl:b.twitterUrl}:{},...void 0!==b.instagramUrl&&""!==b.instagramUrl?{instagramUrl:b.instagramUrl}:{},...void 0!==b.facebookUrl&&""!==b.facebookUrl?{facebookUrl:b.facebookUrl}:{},...void 0!==b.redditUrl&&""!==b.redditUrl?{redditUrl:b.redditUrl}:{},...void 0!==b.tiktokUrl&&""!==b.tiktokUrl?{tiktokUrl:b.tiktokUrl}:{},tokenCategory:b.tokenCategory,tokenCollection:b.tokenCollection,uniqueKey:b.uniqueKey,signature:A,types:T,domain:E,...I,...N,...D},x=`${e.tokenName.trim()}$Unit$none$none`,_="GALA$Unit$none$none";let R;if(Un(t,0)>0){const e=`$service$${x}$launchpad`;R=[e,`$token$${x}$${e}`,`$tokenBalance$${x}$${e}`,`$tokenBalance$${x}$${e}`,`$tokenBalance$${_}$${e}`,`$tokenBalance$${_}$${e}`]}else{const e=`$service$${x}$launchpad`;R=[e,`$token$${x}$${e}`,`$tokenBalance$${x}$${e}`]}const F={signedDto:P,stringsInstructions:R,method:"CreateSale"},B=await this.bundleHttp.post("/bundle",F);if(B.error)throw Kt(void 0!==B.message&&""!==B.message?B.message:"Token launch failed");const O=en(B);if(null==O||""===O)throw Kt("Token launch failed - no transaction ID returned");return O}async fetchTokenDistribution(e){if(null==e||""===e)throw Mt("tokenName","Token name");Ho(e);const t=await this.http.get(`/holders/${e}`);if(!0===t.error||200!==t.status)throw Kt(void 0!==t.message&&""!==t.message?t.message:"Failed to fetch token distribution",t.status);const n=en(t);if(null==n)throw Kt("Failed to fetch token distribution - no data returned",t.status);if(!Array.isArray(n))throw Kt("Invalid API response: expected array of holders",t.status);for(const e of n){if(void 0===e.owner||null===e.owner||""===e.owner||"string"!=typeof e.owner)throw Kt("Invalid holder data: missing or invalid owner field",t.status);if(void 0===e.quantity||null===e.quantity||""===e.quantity||"string"!=typeof e.quantity)throw Kt("Invalid holder data: missing or invalid quantity field",t.status);const n=Un(e.quantity,NaN);if(isNaN(n)||!isFinite(n))throw Kt(`Invalid holder quantity: "${e.quantity}"`,t.status)}const i=n.reduce((e,t)=>e.plus(t.quantity),bo(0));return{holders:n.map(e=>{const t=Fo(bo(e.quantity),i,bo(0)).multipliedBy(100).toNumber();return{address:e.owner,balance:e.quantity,percentage:t}}),totalSupply:So(i),totalHolders:n.length,lastUpdated:new Date}}async fetchTokenBadges(e){if(null==e||""===e)throw Mt("tokenName","Token name");Ho(e);const t=await this.http.get("/launchpad/get-badge/",{tokenName:e});if(t.error)throw Kt(void 0!==t.message&&""!==t.message?t.message:"Failed to fetch token badges");const n=en(t);if(null==n)throw Kt("Failed to fetch token badges - no data returned");return{volumeBadges:Array.isArray(n.volumeBadge)?n.volumeBadge:[],engagementBadges:Array.isArray(n.engagementBadge)?n.engagementBadge:[]}}async hasTokenBadgeByTokenName(e){const{tokenName:t,badgeType:n,badgeName:i}=e;try{const e=await this.fetchTokenBadges(t);if(null==e)return!1;const o=("volume"===n?e.volumeBadges:e.engagementBadges).find(e=>e.badgeName===i);return o?.isActive??!1}catch{return!1}}async calculateInitialBuyAmount(e){if(!vo(e))throw $t("data","valid pre-mint calculation data");if(!this.galaChainHttp)throw qt("GalaChain HTTP client not available. Please initialize SDK with galaChainBaseUrl.","galaChainHttp");try{const t={vaultAddress:"service|testToken",nativeTokenQuantity:e.nativeTokenQuantity,IsPreMint:!0},n=await this.galaChainHttp.post("/api/asset/launchpad-contract/CallMemeTokenOut",t);if(!function(e){if(null==e||"object"!=typeof e)return!1;const t=e;return"number"==typeof t.Status&&void 0!==t.Data&&"object"==typeof t.Data&&null!==t.Data&&"string"==typeof t.Data.calculatedQuantity&&void 0!==t.Data.extraFees&&"object"==typeof t.Data.extraFees&&null!==t.Data.extraFees&&"string"==typeof t.Data.extraFees.reverseBondingCurve&&"string"==typeof t.Data.extraFees.transactionFees}(n))throw Kt("Malformed response data from GalaChain gateway");try{_t(n,"Pre-mint calculation")}catch(e){throw Kt(Ct(e),500)}const{calculatedQuantity:i,extraFees:o}=n.Data;return{amount:i,reverseBondingCurveFee:o.reverseBondingCurve,transactionFee:o.transactionFees,gasFee:"1"}}catch(e){if(Et(e)&&e instanceof pt)throw e;throw Kt(Ct(e),500)}}async fetchPoolDetailsForCalculation(e){const t=await this.tokenResolver.resolveTokenToVault(e);if(null==t||""===t)throw new gt(Ot(e),"tokenName","VAULT_NOT_FOUND");if(void 0===this.galaChainHttp||null===this.galaChainHttp)throw qt("GalaChain HTTP client not configured");const n=await this.galaChainHttp.post("/api/asset/launchpad-contract/FetchSaleDetails",{vaultAddress:t});if(1!==n.Status)throw Kt(`Failed to fetch pool details: Status ${n.Status}`,n.Status);const i=n.Data,o=So(bo(i.maxSupply).minus(i.sellingTokenQuantity)),r=i.sellingTokenQuantity,s=i.maxSupply;let a=.5,c=.1;const l=i.reverseBondingCurveConfiguration;null!=l?.maxFeePortion&&(a=Gn(l.maxFeePortion,.5)),null!=l?.minFeePortion&&(c=Gn(l.minFeePortion,.1)),void 0===l&&this.logger.debug(`Pool details missing reverse bonding curve configuration for token ${e}, using defaults (min: 0.1, max: 0.5)`);const d=a-c;return this.metadataCache.set(e,{maxSupply:s,reverseBondingCurveMaxFeeFactor:a,reverseBondingCurveMinFeeFactor:c,reverseBondingCurveNetFeeFactor:d}),{currentSupply:o,remainingTokens:r,maxSupply:s,reverseBondingCurveMaxFeeFactor:a,reverseBondingCurveMinFeeFactor:c,reverseBondingCurveNetFeeFactor:d}}async fetchCurrentSupply(e){Ho(e);const t=await this.tokenResolver.resolveTokenToVault(e);if(null==t||""===t)throw new gt(Ot(e),"tokenName","VAULT_NOT_FOUND");if(void 0===this.galaChainHttp||null===this.galaChainHttp)throw qt("GalaChain HTTP client not configured");const n=await this.galaChainHttp.post("/api/asset/launchpad-contract/FetchSaleDetails",{vaultAddress:t});if(1!==n.Status)throw Kt(`Failed to fetch pool details: Status ${n.Status}`,n.Status);const i=n.Data,o=So(bo(i.maxSupply).minus(i.sellingTokenQuantity)),r=i.maxSupply;return this.metadataCache.set(e,{maxSupply:r}),o}getAddress(){return this.http.getAddress()}formatAddressForBackend(e){return Si(e)}validateTokenName(e){return Ho(e)}validatePagination(e){void 0!==e.pageSize&&ti(0,void 0,100,e.pageSize)}async fetchTokenPrice(e){if(void 0===this.dexApiHttp||null===this.dexApiHttp)throw qt("DEX API client not configured. Token price fetching requires dexApiHttp client.","dexApiHttp");if(null==e||""===e||Array.isArray(e)&&0===e.length)throw Mt("symbols","At least one symbol");const t=Array.isArray(e)?e.join(","):e;try{const e=await this.dexApiHttp.request({method:"GET",url:"/v1/tokens",params:{symbols:t}}),n=[];return void 0!==e.tokens&&null!==e.tokens&&Array.isArray(e.tokens)&&e.tokens.forEach(e=>{void 0!==e.currentPrices&&null!==e.currentPrices&&void 0!==e.symbol&&null!==e.symbol&&n.push({symbol:e.symbol,price:e.currentPrices.usd})}),n}catch(e){throw Kt(`Failed to fetch token prices: ${Ct(e)}`,void 0,Et(e)?e:void 0)}}warmCacheFromPoolData(e,t){this.metadataCache.warmFromPoolData(e,t)}getCacheStats(){return this.metadataCache.getStats()}clearCache(e){this.metadataCache.clear(e)}}const Jo=3e5,Yo="Sign in to Launchpad t:",Zo="Authorization",er="Bearer ";class tr{constructor(){this.data=new Map}async get(e){return this.data.get(e)??null}async set(e,t){this.data.set(e,t)}async remove(e){this.data.delete(e)}}var nr,ir;!function(e){e.WALLET_NOT_CONNECTED="WALLET_NOT_CONNECTED",e.SIGNATURE_FAILED="SIGNATURE_FAILED",e.INVALID_ADDRESS="INVALID_ADDRESS",e.MESSAGE_GENERATION_FAILED="MESSAGE_GENERATION_FAILED"}(nr||(nr={}));class or extends Error{constructor(e,t,n){super(t),this.type=e,this.originalError=n,this.name="AuthError"}}class rr{constructor(e,t=Jo){this.tokenState=null,this.STORAGE_KEYS={ACCESS_TOKEN:"lpad_access_token",ACCESS_EXPIRES:"lpad_access_expires",REFRESH_TOKEN:"lpad_refresh_token",REFRESH_EXPIRES:"lpad_refresh_expires"},this.storage=e??new tr,this.refreshThresholdMs=t}setToken(e,t){if(!Zn(e))throw new or(nr.SIGNATURE_FAILED,"JWT token must be a non-empty string");if("number"!=typeof t)throw new or(nr.SIGNATURE_FAILED,"Token expiration must be a positive finite number (seconds)");if(!Number.isFinite(t))throw new or(nr.SIGNATURE_FAILED,"Token expiration must be a positive finite number (seconds)");if(t<=0)throw new or(nr.SIGNATURE_FAILED,"Token expiration must be a positive finite number (seconds)");const n=Date.now();this.tokenState={token:e.trim(),issuedAt:n,expiresAt:n+1e3*t},this.storage.set(this.STORAGE_KEYS.ACCESS_TOKEN,e.trim()),this.storage.set(this.STORAGE_KEYS.ACCESS_EXPIRES,String(this.tokenState.expiresAt))}async setTokens(e,t,n,i){if(this.setToken(e,t),n){const e=Date.now()+1e3*(i??7776e3);if(!this.tokenState)throw new or(nr.SIGNATURE_FAILED,"Access token must be set before refresh token");this.tokenState.refreshToken=n.trim(),this.tokenState.refreshExpiresAt=e,await this.storage.set(this.STORAGE_KEYS.REFRESH_TOKEN,n.trim()),await this.storage.set(this.STORAGE_KEYS.REFRESH_EXPIRES,String(e))}}getToken(){return this.tokenState?.token??null}hasToken(){return null!==this.tokenState}isExpired(){return!this.tokenState||Date.now()>=this.tokenState.expiresAt}shouldRefresh(e){if(!this.tokenState)return!1;const t=e??this.refreshThresholdMs,n=this.tokenState.expiresAt-Date.now();return n>0&&n<=t}getTimeUntilExpiry(){if(!this.tokenState)return 0;const e=this.tokenState.expiresAt-Date.now();return Math.max(0,e)}getExpiresAt(){return this.tokenState?.expiresAt??null}getAuthorizationHeader(){const e=this.getToken();return null===e||""===e?null:`${er}${e}`}getJwtHeaders(){const e=this.getAuthorizationHeader();if(null===e||""===e)throw new or(nr.WALLET_NOT_CONNECTED,"No JWT token available. Call login() first.");return{[Zo]:e}}async getRefreshToken(){if(!this.tokenState?.refreshToken){const e=await this.storage.get(this.STORAGE_KEYS.REFRESH_TOKEN),t=await this.storage.get(this.STORAGE_KEYS.REFRESH_EXPIRES);if(e&&t){const n=Number(t);if(Number.isFinite(n)&&Date.now()<n)return e}return null}return null!=this.tokenState.refreshExpiresAt&&(!Number.isFinite(this.tokenState.refreshExpiresAt)||Date.now()>=this.tokenState.refreshExpiresAt)?null:this.tokenState.refreshToken??null}async restoreFromStorage(){const e=await this.storage.get(this.STORAGE_KEYS.ACCESS_TOKEN),t=await this.storage.get(this.STORAGE_KEYS.ACCESS_EXPIRES);if(!e||!t)return!1;const n=Number(t);if(!Number.isFinite(n)||Date.now()>=n)return!1;const i=Date.now();this.tokenState={token:e,issuedAt:i,expiresAt:n};const o=await this.storage.get(this.STORAGE_KEYS.REFRESH_TOKEN),r=await this.storage.get(this.STORAGE_KEYS.REFRESH_EXPIRES);if(o&&r){const e=Number(r);Number.isFinite(e)&&Date.now()<e&&(this.tokenState.refreshToken=o,this.tokenState.refreshExpiresAt=e)}return!0}async clear(){this.tokenState=null,await this.storage.remove(this.STORAGE_KEYS.ACCESS_TOKEN),await this.storage.remove(this.STORAGE_KEYS.ACCESS_EXPIRES),await this.storage.remove(this.STORAGE_KEYS.REFRESH_TOKEN),await this.storage.remove(this.STORAGE_KEYS.REFRESH_EXPIRES)}isValid(){return this.hasToken()&&!this.isExpired()}getDebugInfo(){return{hasToken:this.hasToken(),isExpired:this.isExpired(),shouldRefresh:this.shouldRefresh(),timeUntilExpiryMs:this.getTimeUntilExpiry(),expiresAt:this.tokenState?new Date(this.tokenState.expiresAt):null}}}async function sr(e,t,n,i){try{return await e()}catch(e){throw i?(i(e,t,n),new Error("Unreachable after error handler")):(n&&n.error(`${t}:`,e),Wt(e,t,n))}}function ar(e,t,n,i){try{return e()}catch(e){throw i?(i(e,t,n),new Error("Unreachable after error handler")):(n&&n.error(`${t}:`,e),Wt(e,t,n))}}class cr{constructor(e,t,n,i=!1){this.http=e,this.signatureAuth=t,this.jwtAuth=n,this.refreshPromise=null,this.loginPromise=null,this.logger=new un({debug:i,context:"SessionAuthService"})}async login(){if(this.loginPromise)return this.logger.debug("Login already in progress, reusing existing promise"),this.loginPromise;if(!this.signatureAuth.hasWallet())throw new or(nr.WALLET_NOT_CONNECTED,"Wallet is required for login. Configure privateKey in SDK.");this.loginPromise=this.performLogin();try{return await this.loginPromise}finally{this.loginPromise=null}}async performLogin(){return sr(async()=>{const e=Date.now(),t=`${Yo}${e}`;this.logger.debug("Generating login signature",{message:t,timestamp:e});const n=await this.signatureAuth.signMessage(t),i=this.signatureAuth.getAddress();Ei(i,"address");const o={address:i,message:t,signature:n.signature};let r;try{this.logger.debug("Sending login request with refresh token support",{address:i,message:t}),r=await this.http.post(B,{...o,includeRefreshToken:!0})}catch(e){if(400!==e.statusCode)throw e;this.logger.debug("Login returned 400, retrying without includeRefreshToken (backend may not support it)"),r=await this.http.post(B,o)}const s=this.extractLoginData(r);return await this.jwtAuth.setTokens(s.accessToken,s.expiresIn,s.refreshToken,s.refreshExpiresIn),this.logger.debug("Login successful",{address:s.address,expiresIn:s.expiresIn,hasRefreshToken:!!s.refreshToken}),s},"SessionAuthService.performLogin",this.logger,(e,t,n)=>{if(e instanceof or)throw e;throw new or(nr.SIGNATURE_FAILED,`Login failed: ${Ct(e)}`,Et(e)?e:void 0)})}async refresh(){if(this.refreshPromise)return this.logger.debug("Refresh already in progress, reusing existing promise"),this.refreshPromise;if(!this.jwtAuth.hasToken())throw new or(nr.WALLET_NOT_CONNECTED,"No token to refresh. Call login() first.");this.refreshPromise=this.performRefresh();try{return await this.refreshPromise}finally{this.refreshPromise=null}}async performRefresh(){return sr(async()=>{this.logger.debug("Refreshing JWT token");const e=await this.jwtAuth.getRefreshToken();if(e){this.logger.debug("Using refresh token flow");const t=await this.http.post(U,{refreshToken:e}),n=this.extractLoginData(t);return await this.jwtAuth.setTokens(n.accessToken,n.expiresIn,n.refreshToken,n.refreshExpiresIn),this.logger.debug("Token refreshed successfully via refresh token",{address:n.address,expiresIn:n.expiresIn,hasNewRefreshToken:!!n.refreshToken}),n}this.logger.debug("Using legacy access token refresh");const t=await this.http.post(U,{},this.jwtAuth.getJwtHeaders()),n=this.extractLoginData(t);return this.jwtAuth.setToken(n.accessToken,n.expiresIn),this.logger.debug("Token refreshed successfully via access token",{address:n.address,expiresIn:n.expiresIn}),n},"SessionAuthService.performRefresh",this.logger,(e,t,n)=>{if(e instanceof or)throw e;throw new or(nr.SIGNATURE_FAILED,`Token refresh failed: ${Ct(e)}`,Et(e)?e:void 0)})}async logout(e){this.logger.debug("Logging out",{allDevices:e?.allDevices});const t=e?.allDevices??!1;if(t&&this.jwtAuth.hasToken()&&!this.jwtAuth.isExpired())try{await this.http.post(O,{allDevices:!0},this.jwtAuth.getJwtHeaders()),this.logger.debug("Logged out from all devices")}catch(e){this.logger.warn(`Failed to revoke all-device sessions (server-side revocation may be incomplete): ${Ct(e)}`)}else t&&this.logger.debug("Skipping server-side revocation: no valid local token available");await this.jwtAuth.clear()}async getSession(){if(!this.jwtAuth.hasToken())throw new or(nr.WALLET_NOT_CONNECTED,"Not authenticated. Call login() first.");return sr(async()=>{const e=await this.http.get(L,void 0,this.jwtAuth.getJwtHeaders());return this.extractSessionData(e)},"SessionAuthService.getSession",this.logger,(e,t,n)=>{if(e instanceof or)throw e;throw new or(nr.SIGNATURE_FAILED,`Failed to get session: ${Ct(e)}`,Et(e)?e:void 0)})}getAccessToken(){return this.jwtAuth.getToken()}isAuthenticated(){return this.jwtAuth.isValid()}shouldRefresh(e){return this.jwtAuth.shouldRefresh(e)}async ensureValidToken(e){if(!this.jwtAuth.hasToken())throw new or(nr.WALLET_NOT_CONNECTED,"Not authenticated. Call login() first.");if(this.jwtAuth.isExpired()){if(await this.jwtAuth.getRefreshToken()){this.logger.debug("Token expired - refresh token available, attempting refresh");try{return(await this.refresh()).accessToken}catch(e){this.logger.warn(`Refresh failed after expiry: ${Ct(e)} - attempting re-login`)}}else this.logger.debug("Token expired - no refresh token available, attempting re-login");return(await this.login()).accessToken}if(this.jwtAuth.shouldRefresh(e)){this.logger.debug("Token near expiry - refreshing");return(await this.refresh()).accessToken}return this.jwtAuth.getToken()}extractLoginData(e){if(e.error)throw new or(nr.SIGNATURE_FAILED,""!==Ct(e)?Ct(e):"Authentication failed");const t=tn(e,"No data in authentication response"),{accessToken:n,expiresIn:i,address:o,refreshToken:r,refreshExpiresIn:s}=t;if(!Zn(n))throw new or(nr.SIGNATURE_FAILED,"Invalid access token in response");if("number"!=typeof i||i<=0)throw new or(nr.SIGNATURE_FAILED,"Invalid expiration in response");return{accessToken:n,expiresIn:i,address:o,...void 0!==r&&{refreshToken:r},...void 0!==s&&{refreshExpiresIn:s}}}extractSessionData(e){if(e.error)throw new or(nr.SIGNATURE_FAILED,""!==Ct(e)?Ct(e):"Failed to get session");return tn(e,"No data in session response")}}class lr extends Error{constructor(e,t,n){super(e),this.code=t,this.originalError=n,this.name="WalletProviderError"}}!function(e){e.USER_REJECTED="USER_REJECTED",e.NOT_CONNECTED="NOT_CONNECTED",e.CONNECTION_FAILED="CONNECTION_FAILED",e.SIGNING_FAILED="SIGNING_FAILED",e.PROVIDER_NOT_AVAILABLE="PROVIDER_NOT_AVAILABLE",e.PRIVATE_KEY_NOT_ACCESSIBLE="PRIVATE_KEY_NOT_ACCESSIBLE",e.INVALID_CONFIG="INVALID_CONFIG",e.CHAIN_MISMATCH="CHAIN_MISMATCH",e.UNKNOWN="UNKNOWN"}(ir||(ir={}));class dr{constructor(e){this.providerType="privateKey",this.connected=!0;try{this.wallet=new t.Wallet(e)}catch(e){throw new lr("Invalid private key provided",ir.INVALID_CONFIG,e instanceof Error?e:void 0)}}static fromWallet(e){return new dr(e.privateKey)}async signMessage(e){try{return await this.wallet.signMessage(e)}catch(e){throw new lr("Failed to sign message",ir.SIGNING_FAILED,e instanceof Error?e:void 0)}}async signTypedData(e,t,n){try{return await this.wallet.signTypedData(e,t,n)}catch(e){throw new lr("Failed to sign typed data",ir.SIGNING_FAILED,e instanceof Error?e:void 0)}}getAddress(){return Promise.resolve(t.getAddress(this.wallet.address))}async getGalaAddress(){return`eth|${(await this.getAddress()).slice(2)}`}async connect(){return this.connected=!0,this.getAddress()}disconnect(){return this.connected=!1,Promise.resolve()}isConnected(){return this.connected}getPrivateKey(){return Promise.resolve(this.wallet.privateKey)}getWallet(){return this.wallet}}class ur{constructor(e){if(this.wallet=e.wallet,e.walletProvider?this.walletProvider=e.walletProvider:e.wallet,this.messagePrefix=e.messagePrefix??"Create a GalaChain Wallet",void 0!==e.messagePrefix)try{Jn(e.messagePrefix,"messagePrefix",!1)}catch{throw new or(nr.SIGNATURE_FAILED,"Message prefix cannot be empty")}}hasWallet(){return void 0!==this.walletProvider||void 0!==this.wallet}ensureWalletProvider(){if(this.wallet&&!this.walletProvider)try{this.walletProvider=dr.fromWallet(this.wallet),this.cachedAddress=this.wallet.address,this.cachedGalaAddress=Si(this.wallet.address)}catch(e){if(e instanceof or)throw e;if(e instanceof gt&&("INVALID_ADDRESS"===e.code||"INVALID_FORMAT"===e.code||"address"===e.field))throw new or(nr.INVALID_ADDRESS,e.message);if(null!==e&&"object"==typeof e&&"message"in e)throw new or(nr.WALLET_NOT_CONNECTED,e.message);throw e}}setWallet(e){if(void 0!==e){if("object"!=typeof e||!("address"in e))throw new or(nr.WALLET_NOT_CONNECTED,"Invalid wallet: must be an ethers Wallet instance or undefined");if("string"!=typeof e.address||""===e.address)throw new or(nr.INVALID_ADDRESS,"Wallet address is not available");this.walletProvider=dr.fromWallet(e),this.cachedAddress=e.address,this.cachedGalaAddress=Si(e.address)}else this.walletProvider=void 0,this.cachedAddress=void 0,this.cachedGalaAddress=void 0;this.wallet=e}setWalletProvider(e){this.walletProvider=e,this.wallet=void 0,this.cachedAddress=void 0,this.cachedGalaAddress=void 0}getWalletProvider(){return this.walletProvider}async cacheAddress(){this.walletProvider&&(this.cachedAddress=await this.walletProvider.getAddress(),this.cachedGalaAddress=await this.walletProvider.getGalaAddress())}async generateSignature(){await this.validateWalletAsync();try{const e=Date.now(),t=`${this.messagePrefix} ${e}`,n=await this.walletProvider.signMessage(t);return{message:t,signature:n,address:await this.walletProvider.getGalaAddress(),timestamp:e}}catch(e){if(e instanceof or)throw e;throw new or(nr.SIGNATURE_FAILED,"Failed to generate signature for authentication",Et(e)?e:new Error(Ct(e)))}}getAddress(){if(this.validateWallet(),this.cachedGalaAddress)return this.cachedGalaAddress;if(this.wallet)return this.formatAddress(this.wallet.address);throw new or(nr.WALLET_NOT_CONNECTED,"Address not available. For external wallets, call cacheAddress() after connecting.")}async getAddressAsync(){return await this.validateWalletAsync(),this.walletProvider.getGalaAddress()}getEthereumAddress(){if(this.validateWallet(),this.cachedAddress)return this.cachedAddress;if(this.wallet)return this.wallet.address;throw new or(nr.WALLET_NOT_CONNECTED,"Address not available. For external wallets, call cacheAddress() after connecting.")}async getEthereumAddressAsync(){return await this.validateWalletAsync(),this.walletProvider.getAddress()}getPrivateKey(){if(this.validateWallet(),this.wallet){if(""===this.wallet.privateKey||null==this.wallet.privateKey)throw new or(nr.WALLET_NOT_CONNECTED,"Wallet private key not available for @gala-chain signing");return this.wallet.privateKey}if("privateKey"===this.walletProvider?.providerType){return this.walletProvider.getWallet().privateKey}throw new or(nr.WALLET_NOT_CONNECTED,"Private key not available. External wallet providers cannot access private keys. Use PrivateKeyProvider for @gala-chain signing operations.")}async getPrivateKeyAsync(){if(await this.validateWalletAsync(),!this.walletProvider.getPrivateKey)throw new or(nr.WALLET_NOT_CONNECTED,"Private key not available with this wallet provider");try{return await this.walletProvider.getPrivateKey()}catch(e){throw new or(nr.WALLET_NOT_CONNECTED,"Private key not available. External wallet providers cannot access private keys. Use PrivateKeyProvider for @gala-chain signing operations.",Et(e)?e:void 0)}}formatAddress(e){try{return Si(e)}catch{throw new or(nr.INVALID_ADDRESS,`Invalid Ethereum address format: ${e}`)}}async signMessage(e){await this.validateWalletAsync();try{const t=await this.walletProvider.signMessage(e);return{message:e,signature:t,address:await this.walletProvider.getAddress(),timestamp:Date.now()}}catch(e){if(e instanceof or)throw e;throw new or(nr.SIGNATURE_FAILED,Ct(e),Et(e)?e:new Error(Ct(e)))}}async generateAuthHeaders(e,t){await this.validateWalletAsync();try{const n=Date.now(),i=`${this.messagePrefix} ${t.toUpperCase()} ${e} ${n}`,o=await this.walletProvider.signMessage(i);return{"x-signature":o,"x-address":await this.walletProvider.getGalaAddress(),"x-message":i,"x-timestamp":n.toString()}}catch(e){if(e instanceof or)throw e;throw new or(nr.SIGNATURE_FAILED,"Failed to generate authentication headers",Et(e)?e:new Error(Ct(e)))}}async signTypedData(e,t,n){await this.validateWalletAsync();try{const i={};for(const[e,n]of Object.entries(t))i[e]=n.map(e=>({name:e.name,type:e.type}));return await this.walletProvider.signTypedData(e,i,n)}catch(e){if(e instanceof or)throw e;throw new or(nr.SIGNATURE_FAILED,"Failed to sign typed data",Et(e)?e:new Error(Ct(e)))}}async generateCustomSignature(e){if(!Zn(e))throw new or(nr.SIGNATURE_FAILED,"Custom message must be a non-empty string");await this.validateWalletAsync();try{const t=await this.walletProvider.signMessage(e);return{message:e,signature:t,address:await this.walletProvider.getGalaAddress(),timestamp:Date.now()}}catch(e){if(e instanceof or)throw e;throw new or(nr.SIGNATURE_FAILED,"Failed to generate custom message signature",Et(e)?e:new Error(Ct(e)))}}validateWallet(){if(this.ensureWalletProvider(),!this.walletProvider)throw new or(nr.WALLET_NOT_CONNECTED,"Wallet is required for authentication")}async validateWalletAsync(){if(this.ensureWalletProvider(),!this.walletProvider)throw new or(nr.WALLET_NOT_CONNECTED,"Wallet is required for authentication");if(!this.walletProvider.isConnected())throw new or(nr.WALLET_NOT_CONNECTED,"Wallet is not connected. Call connect() on the wallet provider first.")}}const hr={PROD:{launchpadBaseUrl:"https://lpad-backend-prod1.defi.gala.com",galaChainBaseUrl:"https://gateway-mainnet.galachain.com",bundleBaseUrl:"https://bundle-backend-prod1.defi.gala.com",webSocketUrl:"https://bundle-backend-prod1.defi.gala.com",gdexWebSocketUrl:"wss://dex-backend-prod1.defi.gala.com/ws",dexApiBaseUrl:"https://dex-api-platform-dex-prod-gala.gala.com",dexBackendBaseUrl:"https://dex-backend-prod1.defi.gala.com",launchpadFrontendUrl:"https://lpad-frontend-prod1.defi.gala.com"},STAGE:{launchpadBaseUrl:"https://lpad-backend-dev1.defi.gala.com",galaChainBaseUrl:"https://galachain-gateway-chain-platform-stage-chain-platform-eks.stage.galachain.com",bundleBaseUrl:"https://bundle-backend-dev1.defi.gala.com",webSocketUrl:"https://bundle-backend-dev1.defi.gala.com",gdexWebSocketUrl:"wss://swap-backend.stage.defi.ovh.gala.com/ws",dexApiBaseUrl:"https://dex-api-platform-dex-stage-gala.gala.com",dexBackendBaseUrl:"https://swap-backend.stage.defi.ovh.gala.com",launchpadFrontendUrl:"https://lpad-frontend-test1.defi.gala.com"},QA1:{launchpadBaseUrl:"https://lpad-backend-qa1.defi.gala.com",galaChainBaseUrl:"https://galachain-gateway-chain-platform-stage-chain-platform-eks.stage.galachain.com",bundleBaseUrl:"https://bundle-backend-qa1.defi.gala.com",webSocketUrl:"https://bundle-backend-qa1.defi.gala.com",gdexWebSocketUrl:"wss://swap-backend.stage.defi.ovh.gala.com/ws",dexApiBaseUrl:"https://dex-api-platform-dex-stage-gala.gala.com",dexBackendBaseUrl:"https://swap-backend.stage.defi.ovh.gala.com",launchpadFrontendUrl:"https://lpad-frontend-qa1.defi.gala.com"}};function gr(e){return hr[e]}function mr(e){return`${e.collection}|${e.category}|${e.type}|${e.additionalKey}`}function pr(e){return`${e.collection}$${e.category}$${e.type}$${e.additionalKey}`}function fr(e){return`$${e.collection}$${e.category}$${e.type}$${e.additionalKey}`}const yr=1,kr=2,vr=1002,wr=1,br=3,Sr=[{symbol:"GALA",amount:"1",contractAddress:"0xd1d2Eb1B1e90B638588728b4130137D262C87cae",bridgeUsesPermit:!0,decimals:8},{symbol:"GWETH",amount:"0.0001",contractAddress:"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",bridgeUsesPermit:!1,decimals:18},{symbol:"GUSDC",amount:"1",contractAddress:"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",bridgeUsesPermit:!1,decimals:6},{symbol:"GUSDT",amount:"1",contractAddress:"0xdAC17F958D2ee523a2206206994597C13D831ec7",bridgeUsesPermit:!1,decimals:6},{symbol:"GWTRX",amount:"1",contractAddress:"0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5",bridgeUsesPermit:!1,decimals:6},{symbol:"GWBTC",amount:"0.00001",contractAddress:"0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599",bridgeUsesPermit:!1,decimals:8}],Ar=[{symbol:"GALA",amount:"1",contractAddress:"0x9fBFf09325C1967A135AC9b4860b1cf89aca52DA",bridgeUsesPermit:!0,decimals:8},{symbol:"GWETH",amount:"0.0001",contractAddress:"0xC3F00B9CbC4221D85A66EEbe928551d0d8dD9158",bridgeUsesPermit:!1,decimals:18},{symbol:"GUSDC",amount:"1",contractAddress:"0x081e78E33bfa612b23A99ef61e7c194649AA318E",bridgeUsesPermit:!1,decimals:6},{symbol:"GUSDT",amount:"1",contractAddress:"0x461e3595f087bfb0E32B6e44BCbF4C74D99B0001",bridgeUsesPermit:!1,decimals:6},{symbol:"GWBTC",amount:"0.00001",contractAddress:"0x5f69276935EF17e5aF5289b60aFBf6d48B344770",bridgeUsesPermit:!1,decimals:8}];function Tr(e){return"PROD"===e?Sr:Ar}function Er(e){return"PROD"===e?"0x9f452b7cC24e6e6FA690fe77CF5dD2ba3DbF1ED9":"0x6a1734E09f3099a3675645D214ce547080ea67e0"}const Cr=Sr,Ir=[{symbol:"GALA",amount:"1",mintAddress:"eEUiUs4JWYZrp72djAGF1A8PhpR6rHphGeGN7GbVLp6",isNative:!1,decimals:8},{symbol:"GSOL",amount:"0.001",mintAddress:"So11111111111111111111111111111111111111111",isNative:!0,decimals:9}],Nr={GALA:{descriptor:{collection:"GALA",category:"Unit",type:"none",additionalKey:"none"},decimals:8,channel:"asset"},GWETH:{descriptor:{collection:"GWETH",category:"Unit",type:"none",additionalKey:"none"},decimals:18,channel:"asset"},GUSDC:{descriptor:{collection:"GUSDC",category:"Unit",type:"none",additionalKey:"none"},decimals:6,channel:"asset"},GUSDT:{descriptor:{collection:"GUSDT",category:"Unit",type:"none",additionalKey:"none"},decimals:6,channel:"asset"},GWTRX:{descriptor:{collection:"GWTRX",category:"Unit",type:"none",additionalKey:"none"},decimals:6,channel:"asset"},GWBTC:{descriptor:{collection:"GWBTC",category:"Unit",type:"none",additionalKey:"none"},decimals:8,channel:"asset"},GSOL:{descriptor:{collection:"GSOL",category:"Unit",type:"none",additionalKey:"none"},decimals:9,channel:"asset"}},Dr=["function decimals() view returns (uint8)","function balanceOf(address owner) view returns (uint256)","function approve(address spender, uint256 value) returns (bool)","function allowance(address owner, address spender) view returns (uint256)","function transfer(address to, uint256 value) returns (bool)","function name() view returns (string)","function nonces(address owner) view returns (uint256)","function permit(address owner,address spender,uint256 value,uint256 deadline,uint8 v,bytes32 r,bytes32 s)"],Pr=["function bridgeOut(address token,uint256 amount,uint256 tokenId,uint16 destinationChainId,bytes recipient) external","function bridgeOutWithPermit(address token,uint256 amount,uint16 destinationChainId,bytes recipient,uint256 deadline,uint8 v,bytes32 r,bytes32 s) external"],xr={BRIDGE_OUT:Buffer.from([27,194,57,119,215,165,247,150]),BRIDGE_OUT_NATIVE:Buffer.from([243,44,75,224,249,206,98,79])};function _r(e){return/^0x[a-fA-F0-9]{64}$/.test(e)}function Rr(e){const t=new Map;for(const n of e)t.set(cn(n.symbol),n);return t}function Fr(e,t,n){const i=function(e,t){return e.get(cn(t))}(e,t);if(!i){throw qt(`Token ${t} not supported for ${n}. Supported: ${Array.from(e.keys()).join(", ")}`,"tokenSymbol")}return i}function Br(e){if(null==e||!_r(e))throw $t("privateKey","a 0x-prefixed 64-character hex string (e.g., 0x1234...abcd)","Ethereum private key")}function Or(e,t,n){return{symbol:e,quantity:t,decimals:n,contractAddress:null,isNative:!0}}function Ur(e,t){return{symbol:e.symbol,quantity:t,decimals:e.decimals??18,contractAddress:e.contractAddress,isNative:!1}}function Lr(e,t){return{symbol:e.symbol,quantity:t,decimals:e.decimals??9,contractAddress:e.mintAddress,isNative:e.isNative??!1}}function Mr(e,t,n){const i=e.find(e=>e.symbol===t);if(!i){const i=e.map(e=>e.symbol).join(", ");throw Mt("tokenSymbol",`Unsupported ${n} token: ${t}. Supported: ${i}`)}return i}const $r={Ethereum:"Ethereum bridging not configured. Provide ethereumPrivateKey in config.",Solana:"Solana bridging not configured. Provide solanaPrivateKey in config."};function Kr(e,t,n){if(void 0===e)throw qt(n??$r[t],`${t.toLowerCase()}Strategy`);return e}function qr(e){return{direction:"inbound",fromChain:e.fromChain,toChain:"GalaChain",transactionHash:e.transactionHash,tokenSymbol:e.tokenSymbol,amount:e.amount,timestamp:Date.now(),statusUrl:`${e.baseUrl}/v1/bridge/transaction?hash=${e.transactionHash}`}}const Gr="Token symbol resolution failed. This is an internal error - BridgeService should resolve tokenId to symbol before calling strategy.",Wr="Bridge request ID missing from RequestTokenBridgeOut response",Hr="BridgeTokenOut response missing transaction hash";function zr(e){if(void 0===e||""===e)throw qt(Gr,"tokenSymbol");return e}function jr(e,n){if(!t.isAddress(e)){throw $t(n??"address","a valid 0x-prefixed Ethereum address",e)}}function Vr(e,t){try{return new r.PublicKey(e)}catch{throw $t(t??"address","a valid Solana address (base58)",e)}}function Xr(e){try{return new r.PublicKey(e)}catch{throw $t("address","a valid Solana address (base58)",e)}}function Qr(e){const t={};for(const[n,i]of Object.entries(e))void 0!==i&&(i&&"object"==typeof i&&!Array.isArray(i)?t[n]=Qr(i):t[n]=i);return t}function Jr(e,t){const n=Un(e,-1);if(n<=0)throw new Error(`Invalid bridge amount for ${t}: "${e}". Amount must be a positive number.`);return n}function Yr(e){const t="string"==typeof e.timestamp?$n(e.timestamp,0):e.timestamp;return{estimatedFeeInGala:e.estimatedTotalTxFeeInGala,estimatedFeeInExternalToken:e.estimatedTotalTxFeeInExternalToken,feeToken:e.bridgeToken,pricePerUnit:e.estimatedPricePerTxFeeUnit,estimatedGasUnits:e.estimatedTxFeeUnitsTotal,exchangeRate:e.galaExchangeRate?.exchangeRate??"0",timestamp:t,raw:e}}let Zr=null;if("undefined"==typeof window&&"undefined"!=typeof require)try{Zr=require("crypto")}catch{}function es(){if(void 0!==Zr?.randomUUID)try{return Zr.randomUUID()}catch{}if(void 0!==globalThis.crypto&&"function"==typeof globalThis.crypto.randomUUID)try{return crypto.randomUUID()}catch{}return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,e=>{const t=16*Math.random()|0;return("x"===e?t:3&t|8).toString(16)})}const ts={name:"GalaConnect",chainId:1},ns=[{name:"destinationChainId",type:"uint256"},{name:"destinationChainTxFee",type:"destinationChainTxFee"},{name:"quantity",type:"string"},{name:"recipient",type:"string"},{name:"tokenInstance",type:"tokenInstance"},{name:"uniqueKey",type:"string"}],is=[{name:"collection",type:"string"},{name:"category",type:"string"},{name:"type",type:"string"},{name:"additionalKey",type:"string"}],os=[{name:"collection",type:"string"},{name:"category",type:"string"},{name:"type",type:"string"},{name:"additionalKey",type:"string"},{name:"instance",type:"string"}],rs=[{name:"name",type:"string"},{name:"symbol",type:"string"}],ss={GalaTransaction:ns,destinationChainTxFee:[{name:"bridgeToken",type:"bridgeToken"},{name:"bridgeTokenIsNonFungible",type:"bool"},{name:"estimatedPricePerTxFeeUnit",type:"string"},{name:"estimatedTotalTxFeeInExternalToken",type:"string"},{name:"estimatedTotalTxFeeInGala",type:"string"},{name:"estimatedTxFeeUnitsTotal",type:"string"},{name:"galaDecimals",type:"uint256"},{name:"galaExchangeRate",type:"galaExchangeRate"},{name:"timestamp",type:"uint256"},{name:"signingIdentity",type:"string"},{name:"signature",type:"string"}],bridgeToken:is,galaExchangeRate:[{name:"identity",type:"string"},{name:"oracle",type:"string"},{name:"source",type:"string"},{name:"sourceUrl",type:"string"},{name:"timestamp",type:"uint256"},{name:"baseToken",type:"baseToken"},{name:"exchangeRate",type:"string"},{name:"externalQuoteToken",type:"externalQuoteToken"}],baseToken:os,externalQuoteToken:rs,tokenInstance:os},as={GalaTransaction:ns,destinationChainTxFee:[{name:"bridgeToken",type:"bridgeToken"},{name:"bridgeTokenIsNonFungible",type:"bool"},{name:"estimatedPricePerTxFeeUnit",type:"string"},{name:"estimatedTotalTxFeeInExternalToken",type:"string"},{name:"estimatedTotalTxFeeInGala",type:"string"},{name:"estimatedTxFeeUnitsTotal",type:"string"},{name:"galaDecimals",type:"uint256"},{name:"galaExchangeCrossRate",type:"galaExchangeCrossRate"},{name:"timestamp",type:"uint256"},{name:"signingIdentity",type:"string"},{name:"signature",type:"string"}],bridgeToken:is,galaExchangeCrossRate:[{name:"baseTokenCrossRate",type:"baseTokenCrossRate"},{name:"crossRate",type:"string"},{name:"externalCrossRateToken",type:"externalCrossRateToken"},{name:"identity",type:"string"},{name:"oracle",type:"string"},{name:"quoteTokenCrossRate",type:"quoteTokenCrossRate"},{name:"source",type:"string"},{name:"timestamp",type:"uint256"}],baseTokenCrossRate:[{name:"identity",type:"string"},{name:"oracle",type:"string"},{name:"source",type:"string"},{name:"sourceUrl",type:"string"},{name:"timestamp",type:"uint256"},{name:"exchangeRate",type:"string"},{name:"externalBaseToken",type:"externalBaseToken"},{name:"externalQuoteToken",type:"externalQuoteToken"},{name:"signature",type:"string"}],externalBaseToken:rs,externalQuoteToken:rs,externalCrossRateToken:rs,quoteTokenCrossRate:[{name:"identity",type:"string"},{name:"oracle",type:"string"},{name:"source",type:"string"},{name:"sourceUrl",type:"string"},{name:"timestamp",type:"uint256"},{name:"baseToken",type:"baseToken"},{name:"exchangeRate",type:"string"},{name:"externalQuoteToken",type:"externalQuoteToken"},{name:"signature",type:"string"}],baseToken:os,tokenInstance:os};const cs={GalaTransaction:[{name:"quantity",type:"string"},{name:"tokenInstance",type:"tokenInstance"},{name:"destinationChainId",type:"uint256"},{name:"recipient",type:"string"},{name:"wrap",type:"bool"},{name:"uniqueKey",type:"string"}],tokenInstance:os};async function ls(e,t){const{wallet:n}=t,i=e.uniqueKey??`galaconnect-operation-${es()}`,o="string"==typeof e.destinationChainId?$n(e.destinationChainId,1):e.destinationChainId,r=function(e){const t={...e,galaDecimals:"string"==typeof e.galaDecimals?$n(e.galaDecimals,0):e.galaDecimals,timestamp:"string"==typeof e.timestamp?$n(e.timestamp,0):e.timestamp};if(e.galaExchangeRate&&(t.galaExchangeRate={...e.galaExchangeRate,timestamp:"string"==typeof e.galaExchangeRate.timestamp?$n(e.galaExchangeRate.timestamp,0):e.galaExchangeRate.timestamp}),e.galaExchangeCrossRate){const n=e.galaExchangeCrossRate;t.galaExchangeCrossRate={...n,timestamp:"string"==typeof n.timestamp?$n(n.timestamp,0):n.timestamp},n.baseTokenCrossRate&&(t.galaExchangeCrossRate.baseTokenCrossRate={...n.baseTokenCrossRate,timestamp:"string"==typeof n.baseTokenCrossRate.timestamp?$n(n.baseTokenCrossRate.timestamp,0):n.baseTokenCrossRate.timestamp}),n.quoteTokenCrossRate&&(t.galaExchangeCrossRate.quoteTokenCrossRate={...n.quoteTokenCrossRate,timestamp:"string"==typeof n.quoteTokenCrossRate.timestamp?$n(n.quoteTokenCrossRate.timestamp,0):n.quoteTokenCrossRate.timestamp})}return t}(e.destinationChainTxFee),a=Boolean(r.galaExchangeCrossRate),c={destinationChainId:o,destinationChainTxFee:Qr(a?{...r,galaExchangeRate:void 0}:{...r,galaExchangeCrossRate:void 0}),quantity:e.quantity,recipient:e.recipient,tokenInstance:e.tokenInstance,uniqueKey:i},l=function(e){return e?as:ss}(a),d=await n.signTypedData(ts,l,c),u=`Ethereum Signed Message:\n${s({domain:ts,message:c,primaryType:"GalaTransaction",types:l}).length}`;return{...c,signature:d,prefix:u,types:l,domain:ts}}async function ds(e,t){const{amount:n,recipientAddress:i,tokenSymbol:o}=e,{galaConnectClient:r,tokenMetadataResolver:s,ethereumWallet:a,destinationChainId:c,destinationChain:l,validateRecipientAddress:d}=t,u=zr(o);Jr(n,u),d(i,"recipient");const h=await s.getTokenMetadata(u),g=await r.fetchBridgeFee({chainId:l,bridgeToken:h.descriptor}),m=function(e){return{destinationChainId:e.destinationChainId,destinationChainTxFee:e.bridgeFee,quantity:e.amount,recipient:e.recipientAddress,tokenInstance:{...e.tokenDescriptor,instance:"0"}}}({destinationChainId:c,bridgeFee:g,amount:n,recipientAddress:i,tokenDescriptor:h.descriptor}),p=await ls(m,{wallet:a}),f=function(e){if(void 0===e||""===e)throw qt(Wr,"bridgeRequestId");return e}(function(e){if("string"==typeof e.Data)return e.Data;if(null!=e.data){if("string"==typeof e.data)return e.data;if("object"==typeof e.data){const t=e.data;if("string"==typeof t.Data)return t.Data}}}(await r.requestBridgeOut(p)));return function(e){return{direction:"outbound",fromChain:"GalaChain",toChain:e.toChain,transactionHash:e.transactionHash,tokenSymbol:e.tokenSymbol,amount:e.amount,feePaid:e.feePaid,timestamp:Date.now(),statusUrl:`${e.baseUrl}/v1/bridge/transaction?hash=${e.transactionHash}`}}({toChain:l,transactionHash:function(e){const t=e.Hash??e.hash??"";if(""===t)throw qt(Hr,"transactionHash");return t}(await r.bridgeTokenOut({bridgeFromChannel:"asset",bridgeRequestId:f})),tokenSymbol:u,amount:n,feePaid:g.estimatedTotalTxFeeInGala,baseUrl:r.getBaseUrl()})}const us=5,hs=6,gs=7;function ms(e){const t=$n(e.status,0);return{status:t,statusDescription:e.statusDescription,fromChain:e.fromChain,toChain:e.toChain,quantity:e.quantity,transactionHash:e.emitterTransactionHash,tokenInstance:e.tokenInstance,isComplete:t===us,isFailed:t===hs||t===gs}}class ps{constructor(e){if(this.lastTimestamp=0,this.pendingPromise=Promise.resolve(),this.chainLength=0,this.maxChainLength=1e3,e<=0)throw zt("requestsPerSecond","1",e,"Requests per second");this.minIntervalMs=1e3/e}async schedule(e){let t,n;const i=new Promise((e,i)=>{t=e,n=i});if(this.pendingPromise=this.pendingPromise.then(async()=>{const i=Date.now()-this.lastTimestamp,o=Math.max(0,this.minIntervalMs-i);o>0&&await new Promise(e=>setTimeout(e,o)),this.lastTimestamp=Date.now();try{const n=await e();t(n)}catch(e){n(Et(e)?e:new Error(Ct(e)))}}),this.chainLength++,this.chainLength>=this.maxChainLength){this.chainLength=0;const e=this.pendingPromise;this.pendingPromise=e.then(()=>Promise.resolve())}return i}}const fs={maxRetries:3,initialDelayMs:1e3,maxDelayMs:3e4,backoffMultiplier:2,jitterFactor:.1},ys=new Set([408,429,500,502,503,504]),ks=[/ECONNRESET/i,/ECONNREFUSED/i,/ETIMEDOUT/i,/ENOTFOUND/i,/EAI_AGAIN/i,/socket hang up/i,/network/i,/timeout/i,/aborted/i];function vs(e){if(null!=e&&"object"==typeof e){const t=e;if("number"==typeof t.status)return ys.has(t.status);if("number"==typeof t.statusCode)return ys.has(t.statusCode);const n=Pt(e);if("string"==typeof n&&("ECONNRESET"===n||"ECONNREFUSED"===n||"ETIMEDOUT"===n||"ENOTFOUND"===n||"EAI_AGAIN"===n))return!0}const t=Ct(e);return ks.some(e=>e.test(t))}function ws(e,t){const n=t.initialDelayMs*Math.pow(t.backoffMultiplier,e-1),i=Math.min(n,t.maxDelayMs),o=i*t.jitterFactor*Math.random();return Math.floor(i+o)}function bs(e){return new Promise(t=>setTimeout(t,e))}function Ss(e,t){return Kr(e.get("Ethereum"),"Ethereum",t)}function As(e,t){return Kr(e.get("Solana"),"Solana",t)}function Ts(e,t){return e??t.getWalletAddress()}function Es(e,t,n){const i=void 0!==n?` (${n})`:"";try{if(!Zn(e))throw new Error("Input must be a non-empty string");const n=e.split(t);if(n.length<4)throw new Error(`Invalid ${"|"===t?"pipe":"dollar"}-delimited token format. Expected 4+ parts separated by ${t}, got ${n.length}`);const[i,o,r,...s]=n;if(""===i||""===o||""===r)throw new Error("Collection, category, and type must be non-empty");const a=s.join(t);if(""===a)throw new Error("AdditionalKey must be non-empty");return{collection:i,category:o,type:r,additionalKey:a}}catch(n){const o=e?.split?.(t)??[];throw new gt(`Invalid ${"|"===t?"pipe":"dollar"}-delimited token: "${e}" (${o.length} parts)${i}. Expected format: "collection${t}category${t}type${t}additionalKey" (4 parts minimum). Received: [${o.map(e=>`"${e}"`).join(", ")}]. Error: ${Ct(n)}`,"token",`INVALID_${"|"===t?"PIPE":"DOLLAR"}_DELIMITED_TOKEN`)}}function Cs(e){if("object"==typeof e&&null!==e)return function(e){if(null===e||"object"!=typeof e)throw new gt("Token object must be a non-null object, got "+typeof e,"token","INVALID_TOKEN_OBJECT");const{collection:t,category:n,type:i,additionalKey:o}=e;if(!Zn(t))throw new gt("Token.collection must be a non-empty string, got "+typeof t,"token.collection","MISSING_OR_INVALID_COLLECTION");if(!Zn(n))throw new gt("Token.category must be a non-empty string, got "+typeof n,"token.category","MISSING_OR_INVALID_CATEGORY");if(!Zn(i))throw new gt("Token.type must be a non-empty string, got "+typeof i,"token.type","MISSING_OR_INVALID_TYPE");if(!Zn(o))throw new gt("Token.additionalKey must be a non-empty string, got "+typeof o,"token.additionalKey","MISSING_OR_INVALID_ADDITIONAL_KEY");return{collection:t,category:n,type:i,additionalKey:o}}(e);if(null==e)throw new gt(`Token cannot be null, undefined, or empty. Received: ${JSON.stringify(e)}`,"token","EMPTY_TOKEN");if("string"!=typeof e)throw new gt("Token must be a string or TokenClassKey object, got "+typeof e,"token","INVALID_TOKEN_TYPE");if(Ns(e))return Is(e);if(Ds(e))return function(e){return function(e,t,n){const i=` (${n})`;try{if(!Zn(e))throw new Error("Input must be a non-empty string");const n=e.split(t);if(n.length<4)throw new Error(`Invalid dollar-delimited token format. Expected 4+ parts separated by ${t}, got ${n.length}`);const i=n[n.length-1],o=n[n.length-2],r=n[n.length-3],s=n.slice(0,n.length-3).join(t);if(""===s||""===r||""===o||""===i)throw new Error("All components (collection, category, type, additionalKey) must be non-empty");return{collection:s,category:r,type:o,additionalKey:i}}catch(n){const o=e?.split?.(t)??[];throw new gt(`Invalid dollar-delimited token: "${e}" (${o.length} parts)${i}. Expected format: "collection${t}category${t}type${t}additionalKey" (4 parts minimum). Received: [${o.map(e=>`"${e}"`).join(", ")}]. Error: ${Ct(n)}`,"token","INVALID_DOLLAR_DELIMITED_TOKEN")}}(e,"$","dollar-delimited token")}(e);throw new gt(`Plain token string "${e}" (length: ${e.length}) is not allowed - tokens must be delimited with | or $. Expected format: "GALA|Unit|none|none" or "GALA$Unit$none$none". Input: "${e}"`,"token","PLAIN_STRING_NOT_ALLOWED")}function Is(e){return Es(e,"|","pipe-delimited token")}function Ns(e){return Zn(e)&&e.includes("|")}function Ds(e){return"string"==typeof e&&e.includes("$")}function Ps(e){if("object"!=typeof e||null===e)return!1;const t=e,n=t.collection,i=t.category,o=t.type,r=t.additionalKey;return"string"==typeof n&&"string"==typeof i&&"string"==typeof o&&"string"==typeof r&&n.length>0&&i.length>0&&o.length>0&&r.length>0}function xs(e){let t;if("string"==typeof e)t=Is(e);else{if(!Ps(e))throw new Error('Invalid tokenId format. Expected pipe-delimited string (e.g., "GALA|Unit|none|none") or TokenClassKey object.');t=e}return{tokenClassKey:t,stringified:mr(t)}}function _s(e,t){let n;try{n=qn(e,"amount")}catch(t){throw Xt("amount",`${e} (${Ct(t)})`)}if(!n.isFinite())throw Xt("amount",e);const i=n.multipliedBy(bo(10).pow(t));if(!i.isInteger())throw Xt("amount",`${e} (cannot be represented with ${t} decimals)`);return BigInt(i.toFixed(0))}function Rs(e,t){return bo(e.toString()).dividedBy(bo(10).pow(t)).toFixed(t).replace(/\.?0+$/,"")}class Fs{constructor(e){this.cache=new Map,this.galaConnectClient=e.galaConnectClient}async getTokenMetadata(e){const t=ln(e),n=this.cache.get(t);if(n)return n;const i=Nr[t];if(void 0!==i)return this.cache.set(t,i),i;const o=await this.fetchFromApi(e);return this.cache.set(t,o),o}hasMetadata(e){const t=ln(e);return this.cache.has(t)||t in Nr}clearCache(){this.cache.clear()}async fetchFromApi(e){let t=e,n=await this.galaConnectClient.getBridgeConfigurations(t),i=n.find(e=>ln(e.symbol)===ln(t)&&e.verified);if(i||e.startsWith("G")||(t=`G${e}`,n=await this.galaConnectClient.getBridgeConfigurations(t),i=n.find(e=>ln(e.symbol)===ln(t)&&e.verified)),!i)throw new Error(`Unable to locate token metadata for ${e}`);return o={collection:i.collection,category:i.category,type:i.type,additionalKey:i.additionalKey},r=i.decimals,s=i.channel,{descriptor:{collection:o.collection,category:o.category,type:o.type,additionalKey:o.additionalKey},decimals:r,...void 0!==s?{channel:s}:{}};var o,r,s}}class Bs extends Error{constructor(e,t,n){super(`GalaConnect request to ${t} failed with status ${e}${null!=n?`: ${JSON.stringify(n)}`:""}`),this.status=e,this.path=t,this.responseBody=n,this.name="GalaConnectHttpError"}}const Os="https://dex-api-platform-dex-prod-gala.gala.com",Us="https://galachain-gateway-chain-platform-galachain-mainnet.gala.com",Ls=12,Ms=!0,$s=3,Ks=1e3;class qs{constructor(e){this.baseUrl=e.baseUrl??Os,this.galachainBaseUrl=e.galachainBaseUrl??Us,this.walletAddress=e.walletAddress,this.rateLimiter=new ps(e.requestsPerSecond??Ls),this.defaultHeaders={"Content-Type":"application/json","X-Wallet-Address":this.walletAddress};const t=e.enableRetry??Ms;this.retryOptions=t?{maxRetries:e.maxRetries??$s,initialDelayMs:e.retryInitialDelayMs??Ks,...e.onRetry&&{onRetry:e.onRetry},shouldRetry:e=>vs(e instanceof Bs?{status:e.status}:e)}:null}getBaseUrl(){return this.baseUrl}async getBridgeConfigurations(e){return sr(async()=>{const t=new URL("/v1/connect/bridge-configurations",this.baseUrl);t.searchParams.set("searchprefix",e);const n=await this.request(t.toString(),{method:"GET"});if(!n.ok){const e=await n.text();let t;throw t=""!==e?On(e,{rawBody:e}):{message:"Failed to fetch bridge configurations"},new Bs(n.status,"/v1/connect/bridge-configurations",t)}return(await n.json()).data.tokens},"GalaConnectClient.getBridgeConfigurations",void 0,(e,t,n)=>{if(e instanceof Bs)throw e;throw Wt(e,"GalaConnectClient.getBridgeConfigurations")})}async fetchBridgeFee(e){return this.postJson("/v1/bridge/fee",e,{skipWalletHeader:!0})}async requestBridgeOut(e){return this.postJson("/v1/RequestTokenBridgeOut",e)}async bridgeTokenOut(e){return this.postJson("/v1/BridgeTokenOut",e)}async getBridgeStatus(e){return this.postJson("/v1/bridge/status",{hash:e})}async registerBridgeTransaction(e){return this.postJson("/v1/bridge/transaction",e)}async fetchBalances(e="asset"){return this.postJson("/v1/FetchBalances",{owner:this.walletAddress,channel:e},{baseUrl:this.galachainBaseUrl})}async postJson(e,t,n={}){return sr(async()=>{const i=n.baseUrl??this.baseUrl,o=new URL(e,i),r=n.skipWalletHeader?{"Content-Type":"application/json","X-Wallet-Address":""}:this.defaultHeaders,s=await this.request(o.toString(),{method:"POST",headers:r,body:JSON.stringify(t,(e,t)=>"bigint"==typeof t?t.toString():t)});if(!s.ok){const t=await s.text(),n=500,i=On(t,{rawBody:t.slice(0,n)});throw new Bs(s.status,e,i)}const a=await s.text();if(""!==a){const t=function(e){if(hn(e))return{success:!1,value:null,error:"Value is empty"};try{return{success:!0,value:JSON.parse(e)}}catch(e){return{success:!1,value:null,error:`JSON parse error: ${Ct(e)}`}}}(a);if(!t.success)throw new Error(`Failed to parse JSON response from ${e}: ${String(t.error)}`);return t.value}},`Failed to execute POST request to ${e}`,void 0,(e,t,n)=>{if(e instanceof Bs)throw e;throw Wt(e,t)})}async request(e,t){const n=async()=>this.rateLimiter.schedule(async()=>{const n={...this.defaultHeaders,...t.headers};""===n["X-Wallet-Address"]?delete n["X-Wallet-Address"]:n["X-Wallet-Address"]??(n["X-Wallet-Address"]=this.walletAddress);const i=await fetch(e,{...t,headers:n});if(this.retryOptions&&!i.ok){const t=i.status;if(429===t||t>=500){const n=i.clone(),o=await this.safeParseJson(n);throw new Bs(t,e,o)}}return i});return this.retryOptions?async function(e,t={}){const n={...fs,...t},i=t.shouldRetry??(e=>vs(e));let o;for(let r=1;r<=n.maxRetries+1;r++)try{return await e()}catch(e){if(o=e,r>n.maxRetries)break;if(!i(e,r))break;const s=ws(r,n);t.onRetry&&t.onRetry(e,r,s),await new Promise(e=>setTimeout(e,s))}throw o}(n,this.retryOptions):n()}async safeParseJson(e){const t=await e.text();try{return JSON.parse(t)}catch{return{rawBody:t}}}}var Gs;!function(e){e[e.PENDING=0]="PENDING",e[e.SUBMITTED=1]="SUBMITTED",e[e.CONFIRMED=2]="CONFIRMED",e[e.PROCESSING=3]="PROCESSING",e[e.FINALIZING=4]="FINALIZING",e[e.COMPLETED=5]="COMPLETED",e[e.FAILED=6]="FAILED",e[e.DELIVERY_FAILED=7]="DELIVERY_FAILED"}(Gs||(Gs={}));class Ws{async waitForCompletion(e,t={}){const{pollInterval:n=15e3,timeout:i=27e5,onStatusUpdate:o}=t,r=Date.now();for(;;){const t=await this.getStatus(e);if(o&&o(t),t.status===Gs.COMPLETED||t.status===Gs.FAILED||t.status===Gs.DELIVERY_FAILED)return t;if(yn(r)>i)throw Gt(`Bridge transaction timed out after ${i}ms. Last status: ${t.status}`,e,"TIMEOUT");await new Promise(e=>setTimeout(e,n))}}}class Hs extends Ws{constructor(e){super(),this.network="Ethereum",this.galaConnectClient=e.galaConnectClient,this.galaChainWalletAddress=e.galaChainWalletAddress,Br(e.ethereumPrivateKey);const n=e.ethereumRpcUrl??"https://ethereum.publicnode.com";this.ethereumProvider=new t.JsonRpcProvider(n),this.ethereumWallet=new t.Wallet(e.ethereumPrivateKey,this.ethereumProvider),this.ethereumWalletAddress=e.ethereumWalletAddress??this.ethereumWallet.address,this.ethereumBridgeContract=e.ethereumBridgeContract??"0x3F98b5A26EF3f04E1DA3B0B41dD350E8C8F3A7c2";const i=e.tokenConfigs??Cr;this.tokenConfigs=Rr(i),this.tokenMetadataResolver=new Fs({galaConnectClient:this.galaConnectClient})}async estimateFee(e,t){const n=await this.tokenMetadataResolver.getTokenMetadata(e);return Yr(await this.galaConnectClient.fetchBridgeFee({chainId:"Ethereum",bridgeToken:n.descriptor}))}async bridgeOut(e){return ds(e,{galaConnectClient:this.galaConnectClient,tokenMetadataResolver:this.tokenMetadataResolver,ethereumWallet:this.ethereumWallet,destinationChainId:kr,destinationChain:"Ethereum",validateRecipientAddress:jr})}async bridgeIn(e){const{amount:n,sourcePrivateKey:i,recipientAddress:o,tokenSymbol:r}=e,s=zr(r);if(Jr(n,s),void 0!==i&&""!==i&&!_r(i))throw $t("sourcePrivateKey","0x-prefixed 64-character hex string",i.slice(0,10)+"...");const a=void 0!==i&&""!==i?new t.Wallet(i,this.ethereumProvider):this.ethereumWallet,c=Fr(this.tokenConfigs,s,"Ethereum bridge"),l=await this.tokenMetadataResolver.getTokenMetadata(s),d=new t.Contract(c.contractAddress,Dr,a),u=$n(await d.decimals(),18),h=_s(n,u),g=BigInt(await d.balanceOf(a.address));if(g<h){throw qt(`Insufficient ${s} balance on Ethereum. Needed ${Rs(h,u)}, have ${Rs(g,u)}`,"amount")}const m=function(e){const n=new vi;if("client"===n.detectFormat(e))return e;const i=n.normalizeInput(e);if(null==i)throw $t("address","a valid GalaChain address (eth|0x{40-hex}, 0x{40-hex}, or {40-hex})","GalaChain address");const o=n.extractHex(i);return`eth|${t.getAddress("0x"+o).slice(2)}`}(o??this.galaChainWalletAddress);return qr({fromChain:"Ethereum",transactionHash:(await this.executeBridgeDeposit({wallet:a,tokenContract:d,tokenConfig:c,amountBaseUnits:h,decimals:u,recipient:m,metadata:l})).txHash,tokenSymbol:s,amount:n,baseUrl:this.galaConnectClient.getBaseUrl()})}async getStatus(e){return ms(await this.galaConnectClient.getBridgeStatus(e))}getSupportedTokens(){return Array.from(this.tokenConfigs.keys())}isTokenSupported(e){return this.tokenConfigs.has(cn(e))}isValidAddress(e){return Yn.ETH_ADDRESS.test(e)}getWalletAddress(){return this.ethereumWalletAddress}async getEthereumTokenBalance(e,n){const i=Fr(this.tokenConfigs,e,"Ethereum"),o=n??this.ethereumWalletAddress;jr(o);const r=new t.Contract(i.contractAddress,Dr,this.ethereumProvider);return Rs(await r.balanceOf(o),i.decimals??18)}async getEthereumNativeBalance(e){const t=e??this.ethereumWalletAddress;jr(t);return Rs(await this.ethereumProvider.getBalance(t),18)}async getEthereumTransactionStatus(e){!function(e){if(!function(e){return/^0x[a-fA-F0-9]{64}$/.test(e)}(e))throw $t("hash","a 0x-prefixed 64-character hex string (66 total characters)","Ethereum transaction hash")}(e);const t=e.toLowerCase();try{const e=await this.ethereumProvider.getTransactionReceipt(t);if(e){const n=await this.ethereumProvider.getBlockNumber()-e.blockNumber+1;if(!(1===e.status))return{confirmed:!1,status:"failed",blockNumber:e.blockNumber,confirmations:n,transactionHash:t,gasUsed:e.gasUsed.toString(),effectiveGasPrice:e.gasPrice?.toString(),error:"Transaction reverted during execution"};return{confirmed:!0,status:n>=Hs.ETHEREUM_FINALITY_THRESHOLD?"finalized":"confirmed",blockNumber:e.blockNumber,confirmations:n,transactionHash:t,gasUsed:e.gasUsed.toString(),effectiveGasPrice:e.gasPrice?.toString()}}return await this.ethereumProvider.getTransaction(t)?{confirmed:!1,status:"pending",transactionHash:t}:{confirmed:!1,status:"not_found",transactionHash:t,error:"Transaction not found on Ethereum network"}}catch(e){return{confirmed:!1,status:"not_found",transactionHash:t,error:`Failed to query transaction status: ${Ct(e)}`}}}async executeBridgeDeposit(e){const n=new t.Contract(this.ethereumBridgeContract,Pr,e.wallet),i=(new TextEncoder).encode(e.recipient);let o;o=e.tokenConfig.bridgeUsesPermit?await this.bridgeWithPermit(e.wallet,e.tokenContract,e.tokenConfig,n,e.amountBaseUnits,i):await this.bridgeWithApproval(e.wallet,e.tokenContract,n,e.tokenConfig,e.amountBaseUnits,i);if(!await o.wait())throw qt("Bridge transaction receipt not available","ethereumRpcUrl");await bs(3e4);const r={collection:e.metadata.descriptor.collection,category:e.metadata.descriptor.category,type:e.metadata.descriptor.type,additionalKey:e.metadata.descriptor.additionalKey,instance:"0"};return await this.galaConnectClient.registerBridgeTransaction({quantity:Rs(e.amountBaseUnits,e.decimals),tokenInstance:r,fromChain:"Ethereum",toChain:"GC",hash:o.hash}),{txHash:o.hash}}async bridgeWithPermit(e,n,i,o,r,s){const a=await this.ethereumProvider.getNetwork(),c=await n.name(),l=await n.nonces(e.address),d=BigInt(Math.floor(Date.now()/1e3)+3600),u=await e.signTypedData({name:c,version:"1",chainId:$n(a.chainId,1),verifyingContract:i.contractAddress},{Permit:[{name:"owner",type:"address"},{name:"spender",type:"address"},{name:"value",type:"uint256"},{name:"nonce",type:"uint256"},{name:"deadline",type:"uint256"}]},{owner:e.address,spender:this.ethereumBridgeContract,value:r,nonce:l,deadline:d}),h=t.Signature.from(u);return await o.bridgeOutWithPermit(i.contractAddress,r,yr,s,d,h.v,h.r,h.s)}async bridgeWithApproval(e,t,n,i,o,r){const s=await t.allowance(e.address,this.ethereumBridgeContract);if(BigInt(s)<o){const e=await t.approve(this.ethereumBridgeContract,o);await e.wait()}return await n.bridgeOut(i.contractAddress,o,0,yr,r)}}Hs.ETHEREUM_FINALITY_THRESHOLD=12;function zs(e,t,n,i,o){const[s]=r.PublicKey.findProgramAddressSync([t.toBuffer(),i.toBuffer(),e.toBuffer()],o);return s}class js extends Ws{constructor(e){super(),this.network="Solana",this.solanaBridgeAccountCache=new Map,this.galaConnectClient=e.galaConnectClient,this.galaChainWalletAddress=e.galaChainWalletAddress,Br(e.ethereumPrivateKey);const n=new t.JsonRpcProvider("https://ethereum.publicnode.com");this.ethereumWallet=new t.Wallet(e.ethereumPrivateKey,n);const i=e.solanaRpcUrl??"https://api.mainnet-beta.solana.com";let o;this.solanaConnection=new r.Connection(i,"confirmed");try{o=c.decode(e.solanaPrivateKeyBase58)}catch{throw $t("solanaPrivateKeyBase58","base58-encoded string",e.solanaPrivateKeyBase58.slice(0,20)+"...")}if(64!==o.length)throw $t("solanaPrivateKeyBase58","64 bytes when decoded",`${o.length} bytes`);this.solanaKeypair=r.Keypair.fromSecretKey(o);const s=e.solanaBridgeProgram??"AaE4dTnL75XqgUJpdxBKg6vS9sTJgBPJwBQRVhD29WwS";this.solanaBridgeProgramId=new r.PublicKey(s),[this.solanaBridgeTokenAuthority]=r.PublicKey.findProgramAddressSync([Buffer.from("bridge_token_authority")],this.solanaBridgeProgramId),[this.solanaBridgeConfigPda]=r.PublicKey.findProgramAddressSync([Buffer.from("configv1")],this.solanaBridgeProgramId),[this.solanaNativeBridgePda]=r.PublicKey.findProgramAddressSync([Buffer.from("native_sol_bridge")],this.solanaBridgeProgramId);const a=e.tokenConfigs??Ir;this.tokenConfigs=Rr(a),this.tokenMetadataResolver=new Fs({galaConnectClient:this.galaConnectClient})}async estimateFee(e,t){const n=await this.tokenMetadataResolver.getTokenMetadata(e);return Yr(await this.galaConnectClient.fetchBridgeFee({chainId:"Solana",bridgeToken:n.descriptor}))}async bridgeOut(e){return ds(e,{galaConnectClient:this.galaConnectClient,tokenMetadataResolver:this.tokenMetadataResolver,ethereumWallet:this.ethereumWallet,destinationChainId:vr,destinationChain:"Solana",validateRecipientAddress:Vr})}async bridgeIn(e){const{amount:t,sourcePrivateKey:n,recipientAddress:i,tokenSymbol:o}=e,s=zr(o);Jr(t,s);let a=this.solanaKeypair;if(void 0!==n&&""!==n){let e;try{e=c.decode(n)}catch{throw $t("sourcePrivateKey","base58-encoded string",n.slice(0,20)+"...")}if(64!==e.length)throw $t("sourcePrivateKey","64 bytes when decoded",`${e.length} bytes`);a=r.Keypair.fromSecretKey(e)}const l=Fr(this.tokenConfigs,s,"Solana bridge"),d=await this.tokenMetadataResolver.getTokenMetadata(s),u=_s(t,d.decimals),h=i??this.galaChainWalletAddress;return qr({fromChain:"Solana",transactionHash:await this.executeSolanaBridgeOut({keypair:a,tokenConfig:l,metadata:d,amountBaseUnits:u,recipient:h,amount:t}),tokenSymbol:s,amount:t,baseUrl:this.galaConnectClient.getBaseUrl()})}async getStatus(e){return ms(await this.galaConnectClient.getBridgeStatus(e))}getSupportedTokens(){return Array.from(this.tokenConfigs.keys())}isTokenSupported(e){return this.tokenConfigs.has(cn(e))}isValidAddress(e){try{return new r.PublicKey(e),!0}catch{return!1}}getWalletAddress(){return this.solanaKeypair.publicKey.toBase58()}async getSolanaTokenBalance(e,t){const n=Fr(this.tokenConfigs,e,"Solana");if(n.isNative)return this.getSolanaNativeBalance(t);const i=t??this.solanaKeypair.publicKey.toBase58(),o=Xr(i),s=zs(new r.PublicKey(n.mintAddress),o,0,a.TOKEN_PROGRAM_ID,a.ASSOCIATED_TOKEN_PROGRAM_ID);try{const e=await async function(e,t,n,i){const o=await e.getAccountInfo(t);if(!o)throw new Error(`could not find account ${t.toBase58()}`);if(!o.owner.equals(i))throw new Error(`account owner mismatch: expected ${i.toBase58()}, got ${o.owner.toBase58()}`);return{amount:a.AccountLayout.decode(o.data).amount,decimals:0}}(this.solanaConnection,s,0,a.TOKEN_PROGRAM_ID),t=n.decimals??8;return Rs(e.amount,t)}catch(t){if(Et(t)&&t.message.includes("could not find")){return Rs(0n,n.decimals??8)}throw qt(`Failed to fetch ${e} balance for ${i}: ${Ct(t)}`,`${e}Account`)}}async getSolanaNativeBalance(e){const t=Xr(e??this.solanaKeypair.publicKey.toBase58()),n=await this.solanaConnection.getBalance(t,"confirmed");return Rs(BigInt(n),9)}async requestDevnetAirdrop(e=1,t){jn(e,1e-5,2,"amount");const n=void 0!==t&&""!==t?Xr(t):this.solanaKeypair.publicKey,i=this.solanaConnection.rpcEndpoint;if(!i.includes("devnet"))throw qt(`Solana devnet faucet only available on devnet. Current RPC: ${i}. Ensure SDK is configured with environment='STAGE' for devnet access.`,"solanaRpcUrl");const o=Math.floor(e*r.LAMPORTS_PER_SOL);return await this.solanaConnection.requestAirdrop(n,o)}async getSolanaTransactionStatus(e){if(!Zn(e))throw $t("signature","a non-empty string");if(!/^[1-9A-HJ-NP-Za-km-z]{80,90}$/.test(e))throw $t("signature","a base58-encoded string (87-88 characters)",e.slice(0,20)+"...");const t=(await this.solanaConnection.getSignatureStatuses([e])).value[0];return t?null!==t.err&&void 0!==t.err?{confirmed:!1,status:"failed",slot:t.slot,error:JSON.stringify(t.err)}:{confirmed:!0,status:t.confirmationStatus??"processed",slot:t.slot}:{confirmed:!1,status:"not_found"}}async executeSolanaBridgeOut(e){const t=new r.PublicKey(e.tokenConfig.mintAddress),n=Boolean(e.tokenConfig.isNative),i=n?void 0:await this.getSolanaBridgeAccounts(t),o=n?void 0:zs(t,e.keypair.publicKey,0,a.TOKEN_PROGRAM_ID,a.ASSOCIATED_TOKEN_PROGRAM_ID),s=Buffer.from(e.recipient,"utf8"),c=Buffer.alloc(8);c.writeBigUInt64LE(e.amountBaseUnits);const l=Buffer.alloc(4);l.writeUInt32LE(s.length);const d=n?this.buildNativeBridgeInstruction(e.keypair.publicKey,c,l,s):this.buildTokenBridgeInstruction(e.keypair.publicKey,o,t,i,c,l,s),u=new r.Transaction;u.add(r.ComputeBudgetProgram.setComputeUnitPrice({microLamports:375e3}),r.ComputeBudgetProgram.setComputeUnitLimit({units:2e5}),d),u.feePayer=e.keypair.publicKey;const h=await this.sendAndConfirmWithFallback(u,e.keypair),g={collection:e.metadata.descriptor.collection,category:e.metadata.descriptor.category,type:e.metadata.descriptor.type,additionalKey:e.metadata.descriptor.additionalKey,instance:"0"};return await this.galaConnectClient.registerBridgeTransaction({quantity:e.amount,tokenInstance:g,fromChain:"Solana",toChain:"GC",hash:h}),h}async sendAndConfirmWithFallback(e,t,n=3){let i=null;for(let o=1;o<=n;o++){try{const r=await this.solanaConnection.getLatestBlockhash("confirmed");e.recentBlockhash=r.blockhash,e.feePayer=t.publicKey,e.signatures=[],e.sign(t);const s=await this.solanaConnection.sendRawTransaction(e.serialize(),{skipPreflight:!1,preflightCommitment:"confirmed"});try{return await this.solanaConnection.confirmTransaction({signature:s,blockhash:r.blockhash,lastValidBlockHeight:r.lastValidBlockHeight},"confirmed"),s}catch(e){const t=Et(e)?e.message.toLowerCase():"";if(!(t.includes("block height exceeded")||t.includes("blockhash not found")||t.includes("expired")))throw e;const r=await this.solanaConnection.getSignatureStatuses([s]);if("confirmed"===r.value[0]?.confirmationStatus||"finalized"===r.value[0]?.confirmationStatus)return s;i=new Error(`Transaction ${s} not confirmed - block height exceeded (attempt ${o}/${n})`)}}catch(e){i=Et(e)?e:new Error(Ct(e));const t=i.message.toLowerCase();if(!(t.includes("block height exceeded")||t.includes("blockhash not found")||t.includes("timeout")||t.includes("expired"))||o===n)throw i}const r=Math.min(1e3*Math.pow(2,o-1),5e3);await bs(r)}throw i??new Error("Transaction confirmation failed after max retries")}buildNativeBridgeInstruction(e,t,n,i){const o=Buffer.concat([xr.BRIDGE_OUT_NATIVE,t,n,i]);return new r.TransactionInstruction({programId:this.solanaBridgeProgramId,keys:[{pubkey:e,isSigner:!0,isWritable:!0},{pubkey:this.solanaBridgeTokenAuthority,isSigner:!1,isWritable:!0},{pubkey:this.solanaNativeBridgePda,isSigner:!1,isWritable:!1},{pubkey:this.solanaBridgeConfigPda,isSigner:!1,isWritable:!0},{pubkey:r.SystemProgram.programId,isSigner:!1,isWritable:!1}],data:o})}buildTokenBridgeInstruction(e,t,n,i,o,s,c){const l=Buffer.concat([xr.BRIDGE_OUT,o,s,c]);return new r.TransactionInstruction({programId:this.solanaBridgeProgramId,keys:[{pubkey:e,isSigner:!0,isWritable:!0},{pubkey:t,isSigner:!1,isWritable:!0},{pubkey:n,isSigner:!1,isWritable:!0},{pubkey:i.mintLookup,isSigner:!1,isWritable:!1},{pubkey:i.tokenBridge,isSigner:!1,isWritable:!1},{pubkey:i.bridgeTokenAccount,isSigner:!1,isWritable:!0},{pubkey:this.solanaBridgeTokenAuthority,isSigner:!1,isWritable:!1},{pubkey:this.solanaBridgeConfigPda,isSigner:!1,isWritable:!0},{pubkey:r.SystemProgram.programId,isSigner:!1,isWritable:!1},{pubkey:a.TOKEN_PROGRAM_ID,isSigner:!1,isWritable:!1}],data:l})}async getSolanaBridgeAccounts(e){const t=e.toBase58(),n=this.solanaBridgeAccountCache.get(t);if(n)return n;const[i]=r.PublicKey.findProgramAddressSync([Buffer.from("mint_lookup_v1"),e.toBuffer()],this.solanaBridgeProgramId),o=await this.solanaConnection.getAccountInfo(i,"confirmed");if(!o)throw qt(`Mint lookup account not found for ${i.toBase58()}`,"solanaBridgeProgram");if(!o.owner.equals(this.solanaBridgeProgramId))throw qt("Mint lookup account owner mismatch for Solana bridge program","solanaBridgeProgram");if(o.data.length<40)throw qt("Mint lookup account data is unexpectedly short","solanaBridgeProgram");const s={mintLookup:i,tokenBridge:new r.PublicKey(o.data.slice(8,40)),bridgeTokenAccount:zs(e,this.solanaBridgeTokenAuthority,0,a.TOKEN_PROGRAM_ID,a.ASSOCIATED_TOKEN_PROGRAM_ID)};return this.solanaBridgeAccountCache.set(t,s),s}}const Vs={PROD:{ethereum:"https://eth.gala.games",solana:"https://api.mainnet-beta.solana.com"},STAGE:{ethereum:"https://dev.eth.gala.games",solana:"https://api.devnet.solana.com"}},Xs={solanaBridgeProgram:"AaE4dTnL75XqgUJpdxBKg6vS9sTJgBPJwBQRVhD29WwS",rateLimit:12,pollInterval:15e3,pollTimeout:27e5};class Qs{static normalizeGalaChainAddress(e){const t=new vi;if("client"===t.detectFormat(e))return e;let n=e;(e.startsWith("eth|0x")||e.startsWith("eth|0X"))&&(n=e.substring(0,4)+e.substring(6));const i=t.normalizeInput(n);if(!i)throw qt(`Invalid GalaChain address format: ${e}`,"galaChainWalletAddress");const o=t.extractHex(i);return`eth|${Qs.checksumAddress(o)}`}static checksumAddress(e){const n=e.toLowerCase(),i=yi(t.keccak256(t.toUtf8Bytes(n)));let o="";for(let e=0;e<n.length;e++){const t=n[e];parseInt(i[e],16)>=8?o+=t.toUpperCase():o+=t}return o}constructor(e){const t=Qs.normalizeGalaChainAddress(e.galaChainWalletAddress),n=e.environment??"PROD",i=hr[n],o=Vs[n],r={galaConnectBaseUrl:e.galaConnectBaseUrl??i.dexApiBaseUrl,galaChainApiBaseUrl:e.galaChainApiBaseUrl??i.galaChainBaseUrl,ethereumRpcUrl:e.ethereumRpcUrl??o.ethereum,solanaRpcUrl:e.solanaRpcUrl??o.solana,ethereumBridgeContract:e.ethereumBridgeContract??Er(n),solanaBridgeProgram:e.solanaBridgeProgram??Xs.solanaBridgeProgram,rateLimit:e.rateLimit??Xs.rateLimit,pollInterval:e.pollInterval??Xs.pollInterval,pollTimeout:e.pollTimeout??Xs.pollTimeout,galaChainWalletAddress:t,ethereumPrivateKey:e.ethereumPrivateKey,environment:n};this.config=e.solanaPrivateKey?{...r,solanaPrivateKey:e.solanaPrivateKey}:r,this.galaConnectClient=new qs({baseUrl:this.config.galaConnectBaseUrl,galachainBaseUrl:this.config.galaChainApiBaseUrl,walletAddress:this.config.galaChainWalletAddress,requestsPerSecond:this.config.rateLimit}),e.bridgeableTokenService&&(this.bridgeableTokenService=e.bridgeableTokenService),this.strategies=new Map,this.initializeStrategies()}initializeStrategies(){const e=Tr(this.config.environment),t={galaConnectClient:this.galaConnectClient,galaChainWalletAddress:this.config.galaChainWalletAddress,ethereumPrivateKey:this.config.ethereumPrivateKey,ethereumRpcUrl:this.config.ethereumRpcUrl,ethereumBridgeContract:this.config.ethereumBridgeContract,tokenConfigs:e};if(this.strategies.set("Ethereum",new Hs(t)),null!==this.config.solanaPrivateKey&&void 0!==this.config.solanaPrivateKey){const e={galaConnectClient:this.galaConnectClient,galaChainWalletAddress:this.config.galaChainWalletAddress,ethereumPrivateKey:this.config.ethereumPrivateKey,solanaPrivateKeyBase58:this.config.solanaPrivateKey,solanaRpcUrl:this.config.solanaRpcUrl,solanaBridgeProgram:this.config.solanaBridgeProgram,tokenConfigs:Ir};this.strategies.set("Solana",new js(e))}}async resolveTokenSymbol(e,t){return sr(async()=>{if(!this.bridgeableTokenService)throw qt("BridgeableTokenService is required for tokenId resolution. Pass bridgeableTokenService in BridgeServiceConfig or use the SDK's bridge methods.","bridgeableTokenService");const n=xs(e).stringified,i="Ethereum"===t?"ETHEREUM":"SOLANA",o=await this.bridgeableTokenService.getTokenByTokenId(n,i);if(!o){throw qt([`Token "${n}" was not found in the list of tokens bridgeable to ${t}.`,"","Troubleshooting suggestions:",' 1. Verify the tokenId format is correct (e.g., "GALA|Unit|none|none")'," 2. Check if the token supports bridging to this network:",` - Use sdk.fetchAllBridgeableTokensByNetwork('${i}')`," - Or use sdk.isTokenBridgeableToNetwork({ tokenSymbol, network })"," 3. Common tokenId formats for bridge tokens:",' - GALA: "GALA|Unit|none|none"',' - GUSDC: "GUSDC|Unit|none|eth:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"'," 4. Use sdk.getSupportedBridgeTokens() to list all available tokens"].join("\n"),"tokenId")}return o.symbol},"BridgeService.resolveTokenSymbol")}async estimateBridgeFee(e){return sr(async()=>{const t=await this.resolveTokenSymbol(e.tokenId,e.destinationChain);return this.getStrategy(e.destinationChain).estimateFee(t,e.amount??"0")},"BridgeService.estimateBridgeFee")}async bridgeOut(e){return sr(async()=>{const t=await this.resolveTokenSymbol(e.tokenId,e.destinationChain),n=this.getStrategy(e.destinationChain);if(!n.isValidAddress(e.recipientAddress))throw qt(`Invalid recipient address for ${e.destinationChain}: ${e.recipientAddress}`,"recipientAddress");if(!n.isTokenSupported(t))throw qt(`Token ${t} is not supported for ${e.destinationChain} bridging`,"tokenSymbol");return n.bridgeOut({...e,tokenSymbol:t})},"BridgeService.bridgeOut")}async bridgeIn(e){return sr(async()=>{const t=await this.resolveTokenSymbol(e.tokenId,e.sourceChain),n=this.getStrategy(e.sourceChain);if(!n.isTokenSupported(t))throw qt(`Token ${t} is not supported for ${e.sourceChain} bridging`,"tokenSymbol");return n.bridgeIn({...e,tokenSymbol:t})},"BridgeService.bridgeIn")}async getBridgeStatus(e,t){return sr(async()=>{if(null!=t){const n=this.strategies.get(t);if(n)return n.getStatus(e)}const n=this.strategies.get("Ethereum");let i;if(n)try{return await n.getStatus(e)}catch(e){i=Et(e)?e:new Error(Ct(e))}const o=this.strategies.get("Solana");if(o)try{return await o.getStatus(e)}catch(e){i=Et(e)?e:new Error(Ct(e))}const r=i?` (last error: ${i.message})`:"";throw Gt(`Unable to get status for transaction ${e}${r}`,e)},"BridgeService.getBridgeStatus")}async waitForBridgeCompletion(e,t){return sr(async()=>{const n={pollInterval:t?.pollInterval??this.config.pollInterval,timeout:t?.timeout??this.config.pollTimeout,...t?.onStatusUpdate&&{onStatusUpdate:t.onStatusUpdate}},i=this.strategies.get("Ethereum");if(i)try{return await i.getStatus(e),i.waitForCompletion(e,n)}catch{}const o=this.strategies.get("Solana");if(o)return o.waitForCompletion(e,n);throw Gt(`Unable to wait for transaction ${e}: no suitable strategy found`,e)},"BridgeService.waitForBridgeCompletion")}getSupportedBridgeTokens(e){const t=[],n=Tr(this.config.environment);if(null==e||"Ethereum"===e)for(const e of n)t.push({symbol:e.symbol,decimals:e.decimals??18,verified:!0,supportedChains:["Ethereum"],galaChainDescriptor:{collection:e.symbol.startsWith("G")?e.symbol:`G${e.symbol}`,category:"Unit",type:"none",additionalKey:"none"},externalAddresses:{ethereum:e.contractAddress}});if(null==e||"Solana"===e)for(const e of Ir){const n=t.find(t=>t.symbol===e.symbol);n?(n.supportedChains.push("Solana"),n.externalAddresses.solana=e.mintAddress):t.push({symbol:e.symbol,decimals:e.decimals??9,verified:!0,supportedChains:["Solana"],galaChainDescriptor:{collection:e.symbol.startsWith("G")?e.symbol:`G${e.symbol}`,category:"Unit",type:"none",additionalKey:"none"},externalAddresses:{solana:e.mintAddress}})}return t}getSupportedBridgeChains(){return Array.from(this.strategies.keys())}isTokenSupported(e,t){if(null!=t){const n=this.strategies.get(t);return n?.isTokenSupported(e)??!1}for(const t of this.strategies.values())if(t.isTokenSupported(e))return!0;return!1}isValidAddress(e,t){const n=this.strategies.get(t);return n?.isValidAddress(e)??!1}async getEthereumTokenBalance(e,t){return sr(async()=>Ss(this.strategies).getEthereumTokenBalance(e,t),"BridgeService.getEthereumTokenBalance")}async getEthereumNativeBalance(e){return sr(async()=>Ss(this.strategies).getEthereumNativeBalance(e),"BridgeService.getEthereumNativeBalance")}async getSolanaTokenBalance(e,t){return sr(async()=>As(this.strategies).getSolanaTokenBalance(e,t),"BridgeService.getSolanaTokenBalance")}async getSolanaNativeBalance(e){return sr(async()=>As(this.strategies).getSolanaNativeBalance(e),"BridgeService.getSolanaNativeBalance")}async fetchEthereumWalletTokenBalance(e,t){return sr(async()=>{const n=Ss(this.strategies),i=Mr(Tr(this.config.environment),e,"Ethereum"),o=Ts(t,n);return Ur(i,await n.getEthereumTokenBalance(e,o))},"BridgeService.fetchEthereumWalletTokenBalance")}async fetchEthereumWalletNativeBalance(e){return sr(async()=>{const t=Ss(this.strategies),n=Ts(e,t);return Or("ETH",await t.getEthereumNativeBalance(n),18)},"BridgeService.fetchEthereumWalletNativeBalance")}async fetchSolanaWalletTokenBalance(e,t){return sr(async()=>{const n=As(this.strategies),i=Mr(Ir,e,"Solana"),o=Ts(t,n);return Lr(i,await n.getSolanaTokenBalance(e,o))},"BridgeService.fetchSolanaWalletTokenBalance")}async fetchSolanaWalletNativeBalance(e){return sr(async()=>{const t=As(this.strategies),n=Ts(e,t);return Or("SOL",await t.getSolanaNativeBalance(n),9)},"BridgeService.fetchSolanaWalletNativeBalance")}async requestSolanaDevnetAirdrop(e,t){return sr(async()=>As(this.strategies).requestDevnetAirdrop(e,t),"BridgeService.requestSolanaDevnetAirdrop")}async getSolanaTransactionStatus(e){return sr(async()=>As(this.strategies,"Solana bridge strategy not configured. This method requires Solana wallet configuration. Initialize SDK with solanaPrivateKey to use Solana features.").getSolanaTransactionStatus(e),"BridgeService.getSolanaTransactionStatus")}async getEthereumTransactionStatus(e){return sr(async()=>Ss(this.strategies,"Ethereum bridge strategy not configured. This method requires Ethereum wallet configuration. Initialize SDK with ethereumPrivateKey to use Ethereum features.").getEthereumTransactionStatus(e),"BridgeService.getEthereumTransactionStatus")}async fetchEthereumWalletAllBalances(e){return sr(async()=>{const t=Ss(this.strategies),n=Ts(e,t),i=Tr(this.config.environment),[o,...r]=await Promise.all([t.getEthereumNativeBalance(n),...i.map(async e=>Ur(e,await t.getEthereumTokenBalance(e.symbol,n)))]);return{address:n,native:Or("ETH",o,18),tokens:r,timestamp:Date.now()}},"BridgeService.fetchEthereumWalletAllBalances")}async fetchSolanaWalletAllBalances(e){return sr(async()=>{const t=As(this.strategies),n=Ts(e,t),[i,...o]=await Promise.all([t.getSolanaNativeBalance(n),...Ir.map(async e=>Lr(e,await t.getSolanaTokenBalance(e.symbol,n)))]);return{address:n,native:Or("SOL",i,9),tokens:o,timestamp:Date.now()}},"BridgeService.fetchSolanaWalletAllBalances")}getStrategy(e){const t=this.strategies.get(e);if(!t)throw qt(`Bridging to ${e} is not configured. `+("Solana"===e?"Please provide solanaPrivateKey in config.":"Please check your configuration."),`${e.toLowerCase()}PrivateKey`);return t}}const Js="5.1.0",Ys={DEFAULT_LIMIT:10,BACKEND_MAX_PAGE_SIZE:20};function Zs(e,t=1,n=Ys.BACKEND_MAX_PAGE_SIZE){return Math.max(t,Math.min(n,Math.ceil(e??t)))}function ea(e,t){if("number"!=typeof e||!Number.isInteger(e))throw Vt("total","a non-negative integer",e);if(e<0)throw Ht("total",0,1/0,e);if("number"!=typeof t||!Number.isInteger(t))throw Vt("limit","a non-negative integer",t);if(t<0)throw Ht("limit",0,1/0,t);return 0===t?1:0===e?0:Math.ceil(e/t)}function ta(e,t){const n={};void 0!==e.cursor&&(n.cursor=e.cursor);const i=void 0!==e.pageSize?Math.min(e.pageSize,t):t;return n.pageSize=String(i),n}function na(e,t,n){for(const i of n){const n=t[i];null!=n&&""!==n&&(e[i]=String(n))}return e}const ia="x-api-key";class oa extends hi{constructor(e,t,n,i=!1,o){super(e,i),this.adminApiKey=t??void 0,this.jwtAuth=n,this.userApiKey=o??void 0}setJwtAuth(e){this.jwtAuth=e}validateTokenName(e,t){!function(e,t){if(!Zn(e))throw Mt("tokenName","Token name");const n=an(e);if(!t.PATTERN.test(n))throw $t("tokenName",`${t.MIN_LENGTH}-${t.MAX_LENGTH} alphanumeric characters`,"Token name")}(e,t)}validateRequiredString(e,t,n){!function(e,t,n){if(!Zn(e))throw Mt(t,n)}(e,t,n)}validateOptionalString(e,t,n,i){!function(e,t,n,i){if(null!=e){if("string"!=typeof e)throw Vt(t,"string",typeof e,n);if(e.length>i)throw jt(t,i,e.length,n)}}(e,t,n,i)}validateOptionalNumber(e,t,n,i,o,r,s){!function(e,t,n,i,o){if(null!=e){if("number"!=typeof e)throw Vt(t,"number",typeof e,n);if(e<i||e>o)throw Ht(t,i,o,e,n)}}(e,t,n,i,o)}validateOptionalDate(e,t,n){!function(e,t,n){if(null!=e&&!fn(e))throw $t(t,"a valid ISO 8601 date string",n)}(e,t,n)}validatePositiveInteger(e,t,n){di(e,t,n)}validateStatusFilter(e,t,n="status"){ui(e,t,n)}buildPaginationParams(e,t){return ta(e,t)}addOptionalFilterParams(e,t,n){return na(e,t,n)}buildEndpoint(e,t){return function(e,t){let n=e;for(const[e,i]of Object.entries(t))n=n.replace(`:${e}`,encodeURIComponent(i.toLowerCase()));return n}(e,t)}buildEndpointWithId(e,t){return e.replace(":id",encodeURIComponent(t))}validateAndBuildTokenEndpoint(e,t,n){return this.validateTokenName(e,t),this.buildEndpoint(n,{tokenName:e})}getAdminHeaders(){if(void 0===this.adminApiKey||""===this.adminApiKey)throw new ft("Admin API key required for this operation. Set streamAdminApiKey in SDK config.");return{[ia]:this.adminApiKey}}getJwtHeaders(){if(!this.jwtAuth)throw new ft("JWT authentication required. Call sdk.login() first.");return this.jwtAuth.getJwtHeaders()}hasJwtAuth(){return this.jwtAuth?.isValid()??!1}hasAdminApiKey(){return void 0!==this.adminApiKey&&""!==this.adminApiKey}getDualAuthHeaders(){return void 0!==this.adminApiKey&&""!==this.adminApiKey?this.getAdminHeaders():this.getJwtHeaders()}getMultiAuthHeaders(){return void 0!==this.userApiKey&&""!==this.userApiKey?{[ia]:this.userApiKey}:this.getJwtHeaders()}extractData(e){return Zt(e,"Backend request failed",!0),tn(e,"No data in backend response")}extractDataOrNull(e){return Zt(e,"Backend request failed",!1),e.data??null}async toggleFeature(e,t,n){this.validateTokenName(e,n);const i=this.buildEndpoint(t,{tokenName:e}),o=await this.http.post(i,{},this.getAdminHeaders()),r=this.extractData(o);return{enabled:r.enabled,tokenName:r.tokenName??an(e)}}}class ra extends oa{constructor(e,t,n,i=!1,o){super(e,t,n,i,o)}async getSettings(){return{settings:(await this.http.get(We.GET_SETTINGS,{},this.getDualAuthHeaders())).settings}}async updateSettings(e){const t={};void 0!==e.enabled&&(t.enabled=e.enabled),void 0!==e.mode&&(t.mode=e.mode),void 0!==e.provider&&(t.provider=e.provider);return{settings:(await this.http.post(We.UPDATE_SETTINGS,t,this.getDualAuthHeaders())).settings}}async getModeration(e){this.validatePositiveInteger(e.flagId,"flagId","Flag ID");const t=We.GET_MODERATION.replace(":flagId",String(e.flagId));return{moderation:(await this.http.get(t,{},this.getDualAuthHeaders())).analysis}}async triggerModeration(e){this.validatePositiveInteger(e.flagId,"flagId","Flag ID");const t=We.TRIGGER_MODERATION.replace(":flagId",String(e.flagId)),n=await this.http.post(t,{},this.getDualAuthHeaders());return{queued:n.queued,message:n.message.length>0?n.message:"Moderation queued successfully"}}async getStatus(){return{status:(await this.http.get(We.GET_STATUS,{},this.getDualAuthHeaders())).status}}}const sa=ii({MODERATOR:"MODERATOR",TECHNICAL_PRODUCER:"TECHNICAL_PRODUCER",MANAGER:"MANAGER",OWNER:"OWNER"});function aa(e){return sa.includes(e)}class ca extends hi{constructor(e,t,n=!1){super(e,n,t)}extractData(e){let t;t="error"in e?e.error:"success"in e&&!e.success;const n={status:200,error:t,data:e.data};return void 0!==e.message&&(n.message=e.message),Zt(n,"API key operation failed",!0),e.data}validateApiKeyId(e){this.validatePositiveInteger(e,"id","API key ID")}async create(e){const t=function(e){const t=[];void 0===e.role||null===e.role?t.push("Role is required"):aa(e.role)||t.push(`Invalid role. Must be one of: ${sa.join(", ")}`);const n=t.length;if(Ft(t,()=>{ci(e.description,"description",255)}),t.length>n&&(t[n]="Description must be 255 characters or less"),void 0!==e.tokenNames){const n=t.length;Ft(t,()=>{if(!Array.isArray(e.tokenNames))throw Vt("tokenNames","an array",e.tokenNames);if(!e.tokenNames.every(e=>"string"==typeof e))throw Vt("tokenNames","contain only strings")});for(let e=n;e<t.length;e++){const n=t[e];n.includes("array")?t[e]="tokenNames must be an array":n.includes("string")&&(t[e]="tokenNames must contain only strings")}}if(void 0!==e.expiresAt){const n=t.length;Ft(t,()=>{li(e.expiresAt,"expiresAt")}),t.length>n&&(t[n]="expiresAt must be a valid ISO 8601 date string")}return t}(e);if(t.length>0)throw new gt(t.join("; "),"options","VALIDATION_FAILED");this.logger.debug("Creating API key",{role:e.role,delegateAllTokens:e.delegateAllTokens});const n={role:e.role};void 0!==e.description&&(n.description=e.description),void 0!==e.delegateAllTokens&&(n.delegateAllTokens=e.delegateAllTokens),void 0!==e.tokenNames&&e.tokenNames.length>0&&(n.tokenNames=e.tokenNames),void 0!==e.expiresAt&&(n.expiresAt=e.expiresAt),void 0!==e.tokenPermissions&&(n.tokenPermissions=e.tokenPermissions);const i=await this.http.post(V.CREATE,n,this.getJwtHeaders()),o=this.extractData(i);return this.logger.debug("API key created",{id:o.id,keyPrefix:o.keyPrefix}),o}async findAll(e={}){!function(e){if(void 0!==e.pageSize&&("number"!=typeof e.pageSize||e.pageSize<1||e.pageSize>bn))throw Vt("pageSize",`number between 1 and ${bn}`,typeof e.pageSize);if(void 0!==e.cursor&&("string"!=typeof e.cursor||""===e.cursor.trim()))throw Vt("cursor","non-empty string",typeof e.cursor)}(e),this.logger.debug("Listing API keys",e);const t=ta(e,bn),n=await this.http.get(V.LIST,t,this.getJwtHeaders()),i=this.extractData(n);return this.logger.debug("Listed API keys",{count:i.apiKeys.length,total:i.pageInfo.totalCount}),i}async findOne(e){this.validateApiKeyId(e),this.logger.debug("Getting API key",{id:e});const t=V.GET.replace(":id",String(e)),n=await this.http.get(t,{},this.getJwtHeaders()),i=this.extractData(n);return this.logger.debug("Got API key",{id:i.id,keyPrefix:i.keyPrefix}),i}async update(e,t){this.validateApiKeyId(e);const n=function(e){const t=[];["role","description","delegateAllTokens","tokenNames","expiresAt","tokenPermissions"].some(t=>void 0!==e[t])||t.push("At least one field must be provided for update"),void 0===e.role||aa(e.role)||t.push(`Invalid role. Must be one of: ${sa.join(", ")}`);const n=t.length;if(Ft(t,()=>{ci(e.description,"description",255)}),t.length>n&&(t[n]="Description must be 255 characters or less"),void 0!==e.tokenNames){const n=t.length;Ft(t,()=>{if(!Array.isArray(e.tokenNames))throw Vt("tokenNames","an array",e.tokenNames);if(!e.tokenNames.every(e=>"string"==typeof e))throw Vt("tokenNames","contain only strings")});for(let e=n;e<t.length;e++){const n=t[e];n.includes("array")?t[e]="tokenNames must be an array":n.includes("string")&&(t[e]="tokenNames must contain only strings")}}if(void 0!==e.expiresAt&&null!==e.expiresAt){const n=t.length;Ft(t,()=>{li(e.expiresAt,"expiresAt")}),t.length>n&&(t[n]="expiresAt must be a valid ISO 8601 date string")}return t}(t);if(n.length>0)throw new gt(n.join("; "),"options","VALIDATION_FAILED");this.logger.debug("Updating API key",{id:e,options:t});const i={};void 0!==t.role&&(i.role=t.role),void 0!==t.description&&(i.description=t.description),void 0!==t.delegateAllTokens&&(i.delegateAllTokens=t.delegateAllTokens),void 0!==t.tokenNames&&(i.tokenNames=t.tokenNames),void 0!==t.expiresAt&&(i.expiresAt=t.expiresAt),void 0!==t.tokenPermissions&&(i.tokenPermissions=t.tokenPermissions);const o=V.UPDATE.replace(":id",String(e)),r=await this.http.patch(o,i,this.getJwtHeaders()),s=this.extractData(r);return this.logger.debug("Updated API key",{id:s.id,keyPrefix:s.keyPrefix}),s}async revoke(e){this.validateApiKeyId(e),this.logger.debug("Revoking API key",{id:e});const t=V.REVOKE.replace(":id",String(e));await this.http.delete(t,{},this.getJwtHeaders()),this.logger.debug("API key revoked",{id:e})}getRoles(){return[...sa]}}const la={VIEWERS:"viewers",CHAT_PARTICIPANTS:"chat_participants"},da=ni(la);function ua(e){return null==e||""===e||"string"==typeof e&&(!ai(e)&&e.length<=En.BAN_REASON.MAX_LENGTH)}function ha(e){return!!ei(e)||"number"==typeof e&&(e>=In&&e<=Nn)}class ga extends oa{constructor(e,t,n,i=!1,o){super(e,t,n,i,o)}async createBan(e){!function(e){if(ri(e.tokenName,"tokenName",kn),!Zn(e.userAddress))throw Mt("userAddress");if(!ua(e.reason))throw new gt(`reason must be at most ${En.BAN_REASON.MAX_LENGTH} characters`,"reason","TOO_LONG");if(!ha(e.durationSeconds))throw new gt(`durationSeconds must be between ${In} and ${Nn} seconds`,"durationSeconds","OUT_OF_RANGE")}(e);const t=this.buildEndpoint(M,{tokenName:e.tokenName}),n={userAddress:e.userAddress};void 0!==e.reason&&(n.reason=e.reason),void 0!==e.durationSeconds&&(n.durationSeconds=e.durationSeconds);const i=await this.http.post(t,n,this.getMultiAuthHeaders());return{ban:this.extractData(i),tokenName:an(e.tokenName)}}async removeBan(e){!function(e){if(ri(e.tokenName,"tokenName",kn),!Zn(e.userAddress))throw Mt("userAddress")}(e);const t=this.buildEndpoint(q,{tokenName:e.tokenName,userAddress:e.userAddress}),n=await this.http.delete(t,{},this.getMultiAuthHeaders()),i=this.extractDataOrNull(n);return{removed:i?.removed??!0,tokenName:an(e.tokenName),userAddress:i?.userAddress??e.userAddress.toLowerCase()}}async listBans(e){!function(e){ri(e.tokenName,"tokenName",kn),ti(0,void 0,bn,e.pageSize)}(e);const t=this.buildEndpoint($,{tokenName:e.tokenName}),n=this.buildPaginationParams(e,bn);this.addOptionalFilterParams(n,e,["search","name","userAddress"]);const i=await this.http.get(t,n,this.getMultiAuthHeaders()),o=this.extractData(i);return{items:o.bans,pageInfo:o.pageInfo}}async getBanStatus(e){!function(e){if(ri(e.tokenName,"tokenName",kn),!Zn(e.userAddress))throw Mt("userAddress")}(e);const t=this.buildEndpoint(K,{tokenName:e.tokenName,userAddress:e.userAddress}),n=await this.http.get(t,{},this.getMultiAuthHeaders()),i=this.extractDataOrNull(n);return{banned:null!==i,...null!==i&&{ban:i},tokenName:an(e.tokenName),userAddress:e.userAddress.toLowerCase()}}async getActiveUsers(e){!function(e){if(ri(e.tokenName,"tokenName",kn),void 0!==e.type&&!da(e.type))throw new gt(`type must be one of: ${Object.values(la).join(", ")}`,"type",lt)}(e);const t=this.buildEndpoint(G,{tokenName:e.tokenName}),n={};this.addOptionalFilterParams(n,e,["type","search","name","userAddress"]);const i=await this.http.get(t,n,this.getMultiAuthHeaders());return this.extractData(i)}async createGlobalBan(e){!function(e){if(!Zn(e.userAddress))throw Mt("userAddress");if(!ua(e.reason))throw new gt(`reason must be at most ${En.BAN_REASON.MAX_LENGTH} characters`,"reason","TOO_LONG");if(!ha(e.durationSeconds))throw new gt(`durationSeconds must be between ${In} and ${Nn} seconds`,"durationSeconds","OUT_OF_RANGE")}(e);const t={userAddress:e.userAddress};void 0!==e.reason&&(t.reason=e.reason),void 0!==e.durationSeconds&&(t.durationSeconds=e.durationSeconds);const n=await this.http.post(W,t,this.getDualAuthHeaders());return{ban:this.extractData(n)}}async removeGlobalBan(e){!function(e){if(!Zn(e.userAddress))throw Mt("userAddress")}(e);const t=this.buildEndpoint(j,{userAddress:e.userAddress}),n=await this.http.delete(t,{},this.getDualAuthHeaders()),i=this.extractDataOrNull(n);return{removed:i?.removed??!0,userAddress:i?.userAddress??e.userAddress.toLowerCase()}}async listGlobalBans(e){const t=e??{pageSize:20};!function(e){ti(0,void 0,bn,e.pageSize)}(t);const n=this.buildPaginationParams(t,bn);this.addOptionalFilterParams(n,t,["search","name","userAddress"]);const i=await this.http.get(H,n,this.getDualAuthHeaders()),o=this.extractData(i);return{items:o.bans,pageInfo:o.pageInfo}}async getGlobalBan(e){!function(e){if(!Zn(e.userAddress))throw Mt("userAddress")}(e);const t=this.buildEndpoint(z,{userAddress:e.userAddress}),n=await this.http.get(t,{},this.getDualAuthHeaders()),i=this.extractDataOrNull(n);return{banned:null!==i,...null!==i&&{ban:i},userAddress:e.userAddress.toLowerCase()}}}async function ma(e,t={}){const{maxPages:n=1e4,logger:i,pageSize:o=20,concurrency:r=1,startPage:s=1}=t,a=[];let c=s;const l=s+n-1;let d=!0,u=0;if(r<=1)for(;d&&c<=l;){i&&i.debug(`Auto-pagination: fetching page ${c} with limit ${o}`);const t=await e(c,o);if(null==t||!Array.isArray(t.items)){i&&i.warn("Auto-pagination: received invalid result structure, stopping");break}if(a.push(...t.items),u=t.total,i&&i.debug(`Auto-pagination: page ${c} returned ${t.items.length} items, hasNext: ${t.hasNext}`),0===t.items.length){i&&i.debug(`Auto-pagination: no items returned on page ${c}, exiting loop`);break}d=t.hasNext,c++}else for(i&&i.debug(`Auto-pagination: using concurrent mode with concurrency=${r}`);d&&c<=l;){const t=[];for(let e=0;e<r&&c+e<=l;e++)t.push(c+e);i&&i.debug(`Auto-pagination: fetching pages ${t.join(", ")} concurrently`);const n=t.map(t=>e(t,o).catch(e=>{const n=e,r=n.statusCode??n.response?.status??n.originalError?.response?.status??n.status??n.launchpadError?.statusCode;if(400===r||404===r)return i&&i.debug(`Auto-pagination: page ${t} returned ${r} (end of pagination)`,{statusCode:r}),{items:[],total:0,totalPages:0,page:t,limit:o,hasNext:!1,hasPrevious:!1};throw e})),s=await Promise.all(n);for(const e of s){if(null==e||!Array.isArray(e.items)){i&&i.warn("Auto-pagination: received invalid result structure in batch, stopping"),d=!1;break}if(0===e.items.length){i&&i.debug("Auto-pagination: empty page in batch, reached end of results"),d=!1;break}if(a.push(...e.items),u=e.total,!e.hasNext){d=!1;break}}c+=t.length,i&&i.debug(`Auto-pagination: batch complete, total items so far: ${a.length}`)}return c>l&&i&&i.warn(`Auto-pagination: exceeded maxPages limit of ${n} (maxPage=${l}), stopping iteration`),i&&i.debug(`Auto-pagination: completed with total items: ${a.length}, total count: ${u}`),{items:a,total:u}}function pa(e){if("string"==typeof e){if(!Ns(e))throw new gt(`Invalid tokenId string format: "${e}". Expected pipe-delimited format: "collection|category|type|additionalKey" or "collection|category|type|additionalKey|instance"`,"tokenId","INVALID_TOKEN_ID_FORMAT");const t=e.split("|");if(t.length>=5){const e=Is(t.slice(0,4).join("|")),n=t[4]??"0";return{...e,instance:n.length>0?n:"0"}}return{...Is(e),instance:"0"}}if("object"==typeof e&&null!==e){if("instance"in e&&void 0!==e.instance&&"string"==typeof e.instance&&e.instance.length>0){if(!Ps(e))throw new gt("Invalid tokenId object format. All fields (collection, category, type, additionalKey) must be non-empty strings","tokenId","INVALID_TOKEN_ID_FORMAT");return e}if(!Ps(e))throw new gt("Invalid tokenId object format. All fields (collection, category, type, additionalKey) are required","tokenId","INVALID_TOKEN_ID_FORMAT");return{...e,instance:"0"}}throw new gt(`Invalid tokenId type: ${typeof e}. Expected string, TokenClassKey, or TokenInstanceKey`,"tokenId","INVALID_TOKEN_ID_TYPE")}function fa(e){return function(e){try{if(!Zn(e))throw new Error("Vault address must be a non-empty string");const[t,n]=e.split("|");if(""===n||void 0===n)throw new Error("Missing token part after service prefix");const i=n.split("$");if(i.length<4)throw new Error(`Invalid vault address format: expected at least 4 parts separated by $, got ${i.length}`);const[o,r,s,...a]=i;if(""===o||""===r||""===s)throw new Error("Collection, category, and type must be non-empty");const c=a.slice(0,-1),l=c.length>0?c.join("$"):a[0];if(""===l||void 0===l)throw new Error("AdditionalKey must be non-empty");return{collection:o,category:r,type:s,additionalKey:l}}catch(t){throw new gt(`Invalid vault address: "${e}". Expected format: "service|Token$Unit$SYMBOL$additionalKey$launchpad". Error: ${Ct(t)}`,"vaultAddress","INVALID_VAULT_ADDRESS_FORMAT")}}(e)}function ya(e){return{...fa(e),instance:"0"}}function ka(e){return fa(e).type}function va(e){return mr(pa(e))}var wa=Object.freeze({__proto__:null,extractTokenSymbolFromVault:ka,isTokenClassKeyStrict:Ps,normalizeToTokenInstanceKey:pa,normalizeTokenIdToString:va,parseVaultAddressToTokenClassKey:fa,parseVaultAddressToTokenInstance:ya});class ba{constructor(e,t=!1,n){this.dexApiHttp=e,this.logger=new un({debug:t,context:n??this.constructor.name})}getApiEndpoint(){return"/v1/tokens"}getMaxLimit(){return 1e3}getDefaultLimit(){return 1e3}async executePaginatedRequest(e,t,n){const i=Math.min(t,this.getMaxLimit()),o=this.buildApiParams(n),r=await this.dexApiHttp.request({method:"GET",url:this.getApiEndpoint(),params:{...o,pageSize:i,offset:e}});if(ei(r)||!Array.isArray(r.tokens))throw new gt("Invalid API response: expected { tokens: array }","response","INVALID_RESPONSE");return{items:this.transformApiResponse(r.tokens),rawCount:r.tokens.length}}async autoPaginateFetch(e){return async function(e,t){const{maxLimit:n,logger:i,maxPages:o=1e4}=t,r=[];let s=0,a=!0,c=0;for(;a&&c<o;){i&&i.debug(`Auto-pagination (offset): fetching at offset ${s} with limit ${n}`);const t=await e(s,n);if(null==t||!Array.isArray(t.items)){i&&i.warn("Auto-pagination (offset): received invalid result structure, stopping");break}r.push(...t.items),a=t.rawCount===n,s+=n,c++,i&&i.debug(`Auto-pagination (offset): fetched ${r.length} items so far (hasMore=${a})`)}return c>=o&&i&&i.warn(`Auto-pagination (offset): exceeded maxPages limit of ${o}, stopping`),i&&i.debug(`Auto-pagination (offset): completed with total items: ${r.length}`),r}(async(t,n)=>this.executePaginatedRequest(t,n,e),{maxLimit:this.getMaxLimit(),logger:this.logger})}handleError(e,t){throw Wt(e,t,this.logger)}}class Sa extends gi{constructor(e=!1){super(e),this.primaryIndex=new Map,this.secondaryIndex=new Map,this.fetchTimestamps=new Map}normalizeKey(e){return cn(e)}has(e){const t=this.primaryIndex.get(e);return void 0!==t&&t.size>0}getAll(e){const t=this.primaryIndex.get(e);return t?Array.from(t.values()):[]}getByPrimaryKey(e,t){const n=this.normalizeKey(t);return this.primaryIndex.get(e)?.get(n)}getBySecondaryKey(e,t){const n=this.normalizeKey(t);return this.secondaryIndex.get(e)?.get(n)}set(e,t){const n=new Map,i=new Map;for(const e of t){const t=this.normalizeKey(this.extractPrimaryKey(e));n.set(t,e);const o=this.normalizeKey(this.extractSecondaryKey(e));i.set(o,e)}this.primaryIndex.set(e,n),this.secondaryIndex.set(e,i),this.fetchTimestamps.set(e,Date.now()),this.logger.debug(`Cached ${t.length} items for ${e}`)}merge(e,t){let n=this.primaryIndex.get(e);n||(n=new Map,this.primaryIndex.set(e,n));let i=this.secondaryIndex.get(e);i||(i=new Map,this.secondaryIndex.set(e,i));for(const e of t){const t=this.normalizeKey(this.extractPrimaryKey(e));n.set(t,e);const o=this.normalizeKey(this.extractSecondaryKey(e));i.set(o,e)}this.fetchTimestamps.set(e,Date.now()),this.logger.debug(`Merged ${t.length} items for ${e} (total: ${n.size})`)}getFetchTimestamp(e){return this.fetchTimestamps.get(e)}buildBaseStats(e){const t=[];let n=0;const i={},o={};for(const t of e)i[t]=0;for(const[e,r]of this.primaryIndex){t.push(e),n+=r.size,i[e]=r.size;const s=this.fetchTimestamps.get(e);void 0!==s&&(o[e]=s)}return{networks:t,totalItems:n,itemsByNetwork:i,fetchTimestamps:o}}clear(e){void 0!==e&&""!==e?(this.primaryIndex.delete(e),this.secondaryIndex.delete(e),this.fetchTimestamps.delete(e),this.logger.debug(`Cleared cache for ${e}`)):(this.primaryIndex.clear(),this.secondaryIndex.clear(),this.fetchTimestamps.clear(),this.logger.debug("Cleared all caches"))}size(e){return this.primaryIndex.get(e)?.size??0}hasByPrimaryKey(e,t){return void 0!==this.getByPrimaryKey(e,t)}getCachedNetworks(){return Array.from(this.primaryIndex.keys())}dump(){const e={};for(const t of this.getCachedNetworks())e[t]=this.getAll(t);return e}}const Aa=["ETHEREUM","SOLANA"];class Ta extends Sa{constructor(e=!1){super(e)}extractPrimaryKey(e){return e.symbol}extractSecondaryKey(e){return e.stringifiedTokenClassKey}getBySymbol(e,t){return this.getByPrimaryKey(e,t)}getByTokenId(e,t){return this.getBySecondaryKey(e,t)}getContractAddress(e,t){const n=this.getBySymbol(e,t);if(n)return"ETHEREUM"===e?n.ethereumContractAddress:n.solanaContractAddress}isTokenBridgeable(e,t){return void 0!==this.getBySymbol(e,t)}getStats(){const e=this.buildBaseStats(Aa);return{...e,totalTokens:e.totalItems,tokensByNetwork:e.itemsByNetwork}}}class Ea extends ba{constructor(e,t=!1){super(e,t,"BridgeableTokenService"),this.cache=new Ta(t)}buildApiParams(e){return{canBridgeTo:(e?.network??"ETHEREUM").toLowerCase()}}transformApiResponse(e){return e.map(e=>{const t=e.otherNetworks?.find(e=>"Ethereum"===e.network),n=e.otherNetworks?.find(e=>"Solana"===e.network),i=e.canBridgeTo.map(e=>e.network).filter(e=>"Ethereum"===e||"Solana"===e),o={symbol:e.symbol,name:e.name,decimals:e.decimals,galaChainDescriptor:{collection:e.collection,category:e.category,type:e.type,additionalKey:e.additionalKey},stringifiedTokenClassKey:e.stringifiedTokenClassKey,verified:e.verified,supportedChains:i};return void 0!==t?.contractAddress&&(o.ethereumContractAddress=t.contractAddress),void 0!==t?.symbol&&(o.ethereumSymbol=t.symbol),void 0!==t?.allowanceStorageSlot&&(o.ethereumAllowanceSlot=t.allowanceStorageSlot),void 0!==n?.contractAddress&&(o.solanaContractAddress=n.contractAddress),void 0!==n?.symbol&&(o.solanaSymbol=n.symbol),void 0!==e.image&&(o.image=e.image),void 0!==e.description&&(o.description=e.description),o})}async fetchBridgeableTokensByNetwork(e){const{network:t,offset:n=0,limit:i=this.getDefaultLimit()}=e,o=Math.min(i,this.getMaxLimit());return this.logger.debug(`Fetching bridgeable tokens for ${t} (offset=${n}, limit=${o})`),sr(async()=>{const e=(await this.executePaginatedRequest(n,o,{network:t})).items;return 0===n?this.cache.set(t,e):this.cache.merge(t,e),{tokens:e,network:t,fetchedAt:Date.now(),tokenCount:e.length}},`Failed to fetch bridgeable tokens for ${t}`,this.logger)}async fetchAllBridgeableTokensByNetwork(e){return sr(async()=>{const t=await async function(e){const{network:t,cache:n,fetchFn:i,logger:o,itemTypeName:r="items"}=e;if(n.has(t)){const e=n.getAll(t);return o&&o.debug(`Returning ${e.length} cached ${r} for ${t}`),{items:e,fetchedAt:n.getFetchTimestamp(t)??Date.now(),itemCount:e.length}}o&&o.debug(`Fetching all ${r} for ${t} (no cache)`);const s=await i();return n.set(t,s),{items:s,fetchedAt:Date.now(),itemCount:s.length}}({network:e,cache:this.cache,fetchFn:()=>this.autoPaginateFetch({network:e}),logger:this.logger,itemTypeName:"bridgeable tokens"});return{tokens:t.items,network:e,fetchedAt:t.fetchedAt,tokenCount:t.itemCount}},`Failed to fetch bridgeable tokens for ${e}`,this.logger)}async fetchAllTokensBridgeableToEthereum(){return this.fetchAllBridgeableTokensByNetwork("ETHEREUM")}async fetchAllTokensBridgeableToSolana(){return this.fetchAllBridgeableTokensByNetwork("SOLANA")}async isTokenBridgeableToNetwork(e){const{tokenId:t,network:n}=e,i=va(t);this.cache.has(n)||await this.fetchAllBridgeableTokensByNetwork(n);const o=this.cache.getByTokenId(n,i),r=void 0!==o,s=r?"ETHEREUM"===n?o.ethereumContractAddress:o.solanaContractAddress:void 0,a={isBridgeable:r,tokenSymbol:o?.symbol??Is(i).collection,network:n};return void 0!==s&&(a.contractAddress=s),a}async isTokenBridgeableToEthereum(e){return this.isTokenBridgeableToNetwork({tokenId:e,network:"ETHEREUM"})}async isTokenBridgeableToSolana(e){return this.isTokenBridgeableToNetwork({tokenId:e,network:"SOLANA"})}async getTokenBySymbol(e,t){const n=this.cache.getBySymbol(t,e);return n||(await this.fetchAllBridgeableTokensByNetwork(t),this.cache.getBySymbol(t,e))}async getTokenByTokenId(e,t){const n=this.cache.getByTokenId(t,e);return n||(await this.fetchAllBridgeableTokensByNetwork(t),this.cache.getByTokenId(t,e))}async getContractAddress(e,t){const n=await this.getTokenBySymbol(e,t);if(n)return"ETHEREUM"===t?n.ethereumContractAddress:n.solanaContractAddress}async getSupportedTokenSymbols(e){return this.cache.has(e)||await this.fetchAllBridgeableTokensByNetwork(e),this.cache.getAll(e).map(e=>e.symbol)}async preload(){this.logger.debug("Preloading bridgeable tokens for all networks"),await Promise.all([this.fetchAllBridgeableTokensByNetwork("ETHEREUM"),this.fetchAllBridgeableTokensByNetwork("SOLANA")]),this.logger.debug("Preloading complete")}getCacheStats(){return this.cache.getStats()}clearCache(e){this.cache.clear(e)}}function Ca(e){return{maxAcceptableReverseBondingCurveFee:Hn(e.maxAcceptableReverseBondingCurveFee)}}class Ia extends n.ChainCallDTO{constructor(e,t,n="0",i={maxAcceptableReverseBondingCurveFee:"0"}){super(),this.vaultAddress=e,this.nativeTokenQuantity=Hn(t),this.expectedToken=zn(n),this.extraFees=Ca(i)}}class Na extends n.ChainCallDTO{constructor(e,t,n,i={maxAcceptableReverseBondingCurveFee:"0"}){super(),this.vaultAddress=e,this.tokenQuantity=zn(t),this.expectedNativeToken=Hn(n),this.extraFees=Ca(i)}}class Da extends n.ChainCallDTO{constructor(e,t,n="0",i={maxAcceptableReverseBondingCurveFee:"0"}){super(),this.vaultAddress=e,this.tokenQuantity=zn(t),this.expectedNativeToken=Hn(n),this.extraFees=Ca(i)}}class Pa extends n.ChainCallDTO{constructor(e,t,n,i={maxAcceptableReverseBondingCurveFee:"0"}){super(),this.vaultAddress=e,this.nativeTokenQuantity=Hn(t),this.expectedToken=zn(n),this.extraFees=Ca(i)}}const xa={BuyNativeDto:Ia,BuyExactDto:Na,SellExactDto:Da,SellNativeDto:Pa};function _a(e,t,n){let i;jn(t,0,1,"slippageToleranceFactor");try{i=qn(e,"expectedAmount")}catch{throw new Error(`Invalid expected amount: ${e}. Must be a valid number`)}if(0===t)return e;const o=i.multipliedBy(t);let r;switch(n){case"buy-native":case"sell-exact":r=i.minus(o);break;case"buy-exact":case"sell-native":r=i.plus(o);break;default:throw new Error(`Unknown operation type: ${n}`)}return No(r)&&(r=bo(0)),So(r)}class Ra extends gi{constructor(e,t=!1){super(t),this.walletProvider=e}async signDTO(e,t,i){try{this.logger.debug("🔐 Signing DTO:",{methodName:t,dtoKeys:Object.keys(e)});const i=this.generateEIP712Types(t,e),o=n.calculatePersonalSignPrefix(e),r={...e,prefix:o},{signature:s,domain:a}=await this.signWithEthersWallet(i,r),c={...e,signature:s,types:i,domain:a};return this.logger.debug("✅ DTO signed successfully:",{payloadKeys:Object.keys(c),signatureLength:s.length}),c}catch(e){this.logger.error("❌ Signature generation failed:",e);throw Gt(`Failed to sign DTO: ${Ct(e)}`)}}async signWithEthersWallet(e,t){try{let n,i;if(this.walletProvider.signTypedData&&!this.walletProvider.getNetwork)n={name:"ethereum",chainId:1},i=await this.walletProvider.signTypedData(n,e,t);else{if(!this.walletProvider.getNetwork||!this.walletProvider.signTypedData)throw qt("Wallet provider does not support typed data signing","walletProvider");{const o=await this.walletProvider.getNetwork();n={name:o.name,chainId:$n(o.chainId,1)},i=await this.walletProvider.signTypedData(n,e,t)}}return{signature:i,domain:n}}catch(e){throw Gt(`Ethers.js signing failed: ${Ct(e)}`)}}generateEIP712Types(e,t){const n={};n[e]=[];const i=Object.fromEntries(Object.entries(t).filter(([e,t])=>void 0!==t)),o=(e,t,i,r=!1)=>{if(void 0!==t){if(Array.isArray(t)){if(0===t.length)return;const s=o(e,t[0],i,!0);return r||n[i].push({name:e,type:(s??e)+"[]"}),void 0!==s?s+"[]":void 0}if("object"==typeof t&&null!==t){if(void 0!==n[e])throw new gt(`Type name collision not supported: ${e}`,"fieldValue","TYPE_COLLISION");return n[e]=[],Object.entries(t).filter(([e,t])=>null!=t).forEach(([t,n])=>{o(t,n,e)}),r||n[i].push({name:e,type:e}),e}{let o;switch(typeof t){case"string":o="string";break;case"number":o="uint256";break;case"boolean":o="bool";break;default:throw new gt(`Unsupported type for field "${e}": ${typeof t} (value: ${JSON.stringify(t)})`,"fieldValue","UNSUPPORTED_TYPE")}return r||n[i].push({name:e,type:o}),o}}};return Object.entries(i).forEach(([t,n])=>{o(t,n,e)}),this.logger.debug("📝 Generated EIP-712 types:",n),n}}class Fa{toLaunchpadFormat(e){if(null==e)throw new gt('Token is required. Use full tokenId format: "GALA|Unit|none|none"',"token","MISSING_TOKEN");if("string"==typeof e){if(Ns(e))return e;throw new gt(`Invalid token format "${e}". Use full tokenId format: "${e}|Unit|none|none". For launchpad bonding curve tokens, use tokenName parameter instead (e.g., "anime").`,"token","INVALID_TOKEN_FORMAT")}const t=e;return mr({collection:t.collection??t.symbol??"unknown",category:t.category??"Unit",type:t.type??"none",additionalKey:t.additionalKey??"none"})}toTokenClass(e){if("object"==typeof e&&null!==e){const t=e;return{collection:t.collection??"Token",category:t.category??"Unit",type:t.type??t.symbol??"unknown",additionalKey:t.additionalKey??"none"}}if("string"!=typeof e)throw new Error("Invalid token format: expected string or object, got "+typeof e);const t=Es(e,"|","token format conversion");return{collection:t.collection,category:t.category,type:t.type,additionalKey:t.additionalKey}}normalizeInternalApiResponse(e){return""===e?"":Ns(e)?e:`${e}|Unit|none|none`}normalize(e){return"string"==typeof e&&Ns(e)?e:this.toLaunchpadFormat(e)}}function Ba(e){if(!Zn(e))throw new Error("Invalid token format: token must be a non-empty string");return e.replace(/\|/g,"$")}function Oa(e){return Es(e,"$","dollar-delimited token")}class Ua extends gi{constructor(e=!1){super(e)}generateStringsInstructions(e){try{this.logger.debug("🔧 Generating stringsInstructions for:",e);const t=this.extractTokenSymbolFromVault(e),n=this.createTokenInstance(t),i=this.createGalaInstance(),o=`$service$${n.toStringKey()}$launchpad`,r=`$tokenBalance$${n.toStringKey()}$${e}`,s=`$tokenBalance$${n.toStringKey()}$${e}`,a=`$tokenBalance$${i.toStringKey()}$${e}`,c=[o,r,s,a,`$tokenBalance$${i.toStringKey()}$${e}`];return this.logger.debug("✅ Generated stringsInstructions:",c),c}catch(e){this.logger.error("❌ Failed to generate stringsInstructions:",e);const t=Ct(e);throw new gt(`Failed to generate stringsInstructions: ${t}`,"vaultAddress","INVALID_VAULT_ADDRESS")}}createTokenInstance(e){const t=new l.TokenClassKey;return t.collection=e.toLowerCase(),t.category="Unit",t.type="none",t.additionalKey="none",this.logger.debug("🪙 Created token instance:",{symbol:e,lowercaseCollection:e.toLowerCase(),stringKey:t.toStringKey()}),t}createGalaInstance(){const e=new l.TokenClassKey;return e.collection="GALA",e.category="Unit",e.type="none",e.additionalKey="none",this.logger.debug("🟡 Created GALA instance:",{stringKey:e.toStringKey()}),e}extractTokenSymbolFromVault(e){if(!Zn(e))throw Mt("vaultAddress","Vault address");try{const t=ka(e);return this.logger.debug("🔍 Extracted token symbol:",{vaultAddress:e,tokenSymbol:t}),t}catch(e){if(e instanceof gt)throw $t("vaultAddress","format: service|Token$Unit$SYMBOL$eth:address$launchpad");throw e}}validateVaultAddress(e){if(!Zn(e))throw Mt("vaultAddress","Vault address");if(!e.startsWith("service|Token$Unit$"))throw $t("vaultAddress",'starting with "service|Token$Unit$"');if(!e.endsWith("$launchpad"))throw $t("vaultAddress",'ending with "$launchpad"');const t=function(e){if(!Zn(e))return null;const t=e.match(/^service\|Token\$Unit\$([^$]+)\$eth:([a-fA-F0-9]{40})\$launchpad$/);return t?{tokenSymbol:t[1],creatorAddress:t[2].toLowerCase()}:null}(e);if(!t)throw $t("vaultAddress","valid vault address format (service|Token$Unit$SYMBOL$eth:address$launchpad)");const n=t.tokenSymbol;if(""===n||!/^[A-Za-z]{1,10}$/.test(n))throw $t("vaultAddress","containing a 1-10 letter token symbol (case insensitive)");return this.logger.debug("✅ Vault address validation passed:",e),!0}generateTokenClassKeyString(e,t,n,i){return`${e}$${t}$${n}$${i}`}parseTokenClassKeyString(e){try{return Oa(e)}catch(e){if(e instanceof gt)throw $t("stringKey","format: collection$category$type$additionalKey (4 parts)");throw e}}}class La extends hi{constructor(e,t,n=!1,i,o,r=.05,s=.01){super(e,n),this.tokenResolver=t,this._walletProvider=i,this.userAddress=o,this.defaultSlippageToleranceFactor=r,this.defaultMaxAcceptableReverseBondingCurveFeeSlippageFactor=s,this.bundleEndpoint="/bundle",null!==this._walletProvider&&void 0!==this._walletProvider&&null!=o&&(this.signatureService=new Ra(this._walletProvider,n),this.tokenKeyService=new Ua(n))}async submitTransaction(e){try{this.validateBundleData(e),this.logger.debug("📦 Submitting bundle transaction:",{method:e.method,stringsInstructionsCount:e.stringsInstructions.length,signedDtoKeys:Object.keys(e.signedDto)});const t=this.formatBundleRequest(e);this.logger.debug("🚀 Bundle request payload:",{...t,signedDto:"[REDACTED - Contains signature]"});let n=null;try{n=await on(()=>this.http.post(this.bundleEndpoint,t),{errorContext:"Bundle transaction submission failed",logger:this.logger})}catch(e){return{success:!1,error:this.formatErrorMessage(e)}}return null==n?{success:!1,error:"No response from bundle API"}:(this.logger.debug("📥 Bundle API response:",{success:n.success,hasData:Yt(n),error:n.error}),this.handleBundleResponse(n))}catch(e){if(e instanceof gt)return{success:!1,error:Ct(e)};throw e}}validateBundleData(e){if(null==e)throw Mt("bundleData","Bundle data");if(null===e.signedDto||void 0===e.signedDto)throw Mt("signedDto","Signed DTO");if(!Zn(e.method))throw Mt("method","Method name");if(!Array.isArray(e.stringsInstructions))throw $t("stringsInstructions","an array of resource tracking strings");if(0===e.stringsInstructions.length)throw new gt("stringsInstructions cannot be empty","stringsInstructions","EMPTY_ARRAY");const t=["BuyWithNative","BuyExactToken","SellExactToken","SellWithNative"];if(!t.includes(e.method))throw $t("method",`one of: ${t.join(", ")}`);e.stringsInstructions.forEach((e,t)=>{if(!Zn(e))throw new gt(`stringsInstructions[${t}] must be a non-empty string`,`stringsInstructions[${t}]`,"INVALID_INSTRUCTION");if(!Ds(e))throw new gt(`stringsInstructions[${t}] must start with '$': ${e}`,`stringsInstructions[${t}]`,"INVALID_INSTRUCTION_FORMAT")}),this.logger.debug("✅ Bundle data validation passed")}formatBundleRequest(e){return{signedDto:e.signedDto,stringsInstructions:e.stringsInstructions,method:e.method}}handleBundleResponse(e){const t=en(e);if(null!=t&&!1===e.error)return this.logger.debug("✅ Bundle transaction successful:",t),{success:!0,data:t};const n=("string"==typeof e.error?e.error:e.message)??"Bundle transaction failed";return this.logger.debug("❌ Bundle transaction failed:",n),{success:!1,error:n}}formatErrorMessage(e){if("string"==typeof e)return e;if(xt(e)&&null!==e.response&&void 0!==e.response){const t=en(e.response);if(null!=t&&"object"==typeof t){const e=t;if(null!==e.error&&void 0!==e.error)return"string"==typeof e.error?e.error:JSON.stringify(e.error);if(null!==e.message&&void 0!==e.message)return"string"==typeof e.message?e.message:JSON.stringify(e.message)}}return Ct(e)??"Unknown bundle transaction error"}async getBundlerTransactionResult(e){try{if(!Zn(e))throw Mt("transactionId","Transaction ID");let t;this.logger.debug("🔍 Checking bundler transaction result:",e);try{t=await on(()=>this.http.get(`${this.bundleEndpoint}?id=${e}`),{errorContext:"Failed to get bundler transaction result",logger:this.logger})}catch(e){return{success:!1,error:this.formatErrorMessage(e)}}return null==t?{success:!1,error:"No response from bundler transaction query"}:(this.logger.debug("📊 Bundler transaction result:",t),{success:!0,data:t})}catch(e){if(e instanceof gt)return{success:!1,error:Ct(e)};throw e}}async cancelTransaction(e){try{if(!Zn(e))throw Mt("transactionId","Transaction ID");let t;this.logger.debug("🚫 Cancelling transaction:",e);try{t=await on(()=>this.http.delete(`${this.bundleEndpoint}/${e}`),{errorContext:"Failed to cancel transaction",logger:this.logger})}catch(e){return{success:!1,error:this.formatErrorMessage(e)}}return null==t?{success:!1,error:"No response from transaction cancellation"}:(this.logger.debug("🗑️ Transaction cancellation response:",t),{success:!0,data:t})}catch(e){if(e instanceof gt)return{success:!1,error:Ct(e)};throw e}}async getHealthStatus(){this.logger.debug("🏥 Checking bundle service health");try{const e=await on(()=>this.http.get(`${this.bundleEndpoint}/health`),{errorContext:"Bundle service health check failed",logger:this.logger});return null==e?{success:!1,error:"No response from bundle service health check"}:(this.logger.debug("💚 Bundle service health:",e),{success:!0,data:e})}catch(e){return{success:!1,error:this.formatErrorMessage(e)}}}async buyToken(e){this.ensureTradingServicesAvailable();const{tokenName:t,amount:n,type:i,expectedAmount:o}=e,{effectiveSlippageFactor:r,effectiveMaxFee:s,vaultAddress:a}=await this.prepareTradingOperation(t,e.maxAcceptableReverseBondingCurveFee,e.maxAcceptableReverseBondingCurveFeeSlippageFactor,e.slippageToleranceFactor);if("native"===i){if(null==o||""===o)throw new gt("expectedAmount is required for native buy operations. Use getBuyTokenAmount() first to calculate expected tokens.","expectedAmount","EXPECTED_AMOUNT_REQUIRED");const e=_a(o,r,"buy-native");this.logger.debug("BuyNative slippage applied:",{originalExpectedTokens:o,slippageFactor:r,adjustedMinTokens:e});const t=new xa.BuyNativeDto(a,n,e,{maxAcceptableReverseBondingCurveFee:s});return await this.executeBundleTransaction(t,"BuyWithNative",a)}{if(null==o||""===o)throw new gt("expectedAmount is required for exact buy operations. Use getBuyTokenAmount() first to calculate expected GALA cost.","expectedAmount","EXPECTED_AMOUNT_REQUIRED");const e=_a(o,r,"buy-exact");this.logger.debug("BuyExact slippage applied:",{originalExpectedGalaCost:o,slippageFactor:r,adjustedMaxGalaCost:e});const t=new xa.BuyExactDto(a,n,e,{maxAcceptableReverseBondingCurveFee:s});return await this.executeBundleTransaction(t,"BuyExactToken",a)}}async sellToken(e){this.ensureTradingServicesAvailable();const{tokenName:t,amount:n,type:i,expectedAmount:o}=e,{effectiveSlippageFactor:r,effectiveMaxFee:s,vaultAddress:a}=await this.prepareTradingOperation(t,e.maxAcceptableReverseBondingCurveFee,e.maxAcceptableReverseBondingCurveFeeSlippageFactor,e.slippageToleranceFactor);if("exact"===i){if(null==o||""===o)throw new gt("expectedAmount is required for exact sell operations. Use getSellTokenAmount() first to calculate expected GALA.","expectedAmount","EXPECTED_AMOUNT_REQUIRED");const e=_a(o,r,"sell-exact");this.logger.debug("SellExact slippage applied:",{originalExpectedGala:o,slippageFactor:r,adjustedMinGala:e});const t=new xa.SellExactDto(a,n,e,{maxAcceptableReverseBondingCurveFee:s});return await this.executeBundleTransaction(t,"SellExactToken",a)}{if(null==o||""===o)throw new gt("expectedAmount is required for native sell operations. Use getSellTokenAmount() first to calculate tokens to sell.","expectedAmount","EXPECTED_AMOUNT_REQUIRED");const e=_a(o,r,"sell-native");this.logger.debug("SellNative slippage applied:",{originalExpectedTokensToSell:o,slippageFactor:r,adjustedMaxTokensToSell:e});const t=new xa.SellNativeDto(a,n,e,{maxAcceptableReverseBondingCurveFee:s});return await this.executeBundleTransaction(t,"SellWithNative",a)}}async prepareTradingOperation(e,t,n,i){const{effectiveSlippageFactor:o,effectiveMaxFee:r}=this.calculateEffectiveSlippage(t,n,i),s=await this.resolveTokenNameToVault(e);if(null==s)throw Lt(e);return{effectiveSlippageFactor:o,effectiveMaxFee:r,vaultAddress:s}}calculateEffectiveSlippage(e,t,n){const i=n??this.defaultSlippageToleranceFactor,o=t??this.defaultMaxAcceptableReverseBondingCurveFeeSlippageFactor;let r=e??"0";return null!=e&&(r=_a(e,o,"buy-exact"),this.logger.debug("Reverse bonding curve fee slippage applied:",{baseFee:e,slippageFactor:o,adjustedMaxFee:r})),{effectiveSlippageFactor:i,effectiveFeeSlippageFactor:o,effectiveMaxFee:r}}ensureTradingServicesAvailable(){if(!this.signatureService||!this.tokenKeyService)throw qt("Trading services not available. BundleService requires walletProvider and userAddress for trading operations.","walletProvider");if(null===this.userAddress||void 0===this.userAddress)throw Mt("userAddress","User address")}async executeBundleTransaction(e,t,n){this.ensureTradingServicesAvailable();try{e.uniqueKey=`galaswap - operation - ${i.v4()}-${Date.now()}-${String(this.userAddress)}`;const o=await this.signatureService.signDTO(e,t,this.userAddress),r=this.tokenKeyService.generateStringsInstructions(n),s={stringsInstructions:r,method:t,signedDto:o};this.logger.debug("📦 Bundle transaction data:",{method:t,stringsInstructions:r,dtoKeys:Object.keys(o)});const a=await this.submitTransaction(s);if(a.success){const e=en(a);if(null!=e)return this.logger.debug("✅ Bundle transaction submitted:",e),{success:!0,data:{transactionId:e,message:"Transaction submitted successfully. Monitor WebSocket for completion."}}}const c="string"==typeof a.error?a.error:"Bundle transaction failed";throw new yt(c,void 0,"BUNDLE_FAILED")}catch(e){throw this.logger.error("❌ Bundle transaction error:",e),e}}async resolveTokenNameToVault(e){return await this.tokenResolver.resolveTokenToVault(e)}}class Ma extends hi{constructor(e,t=!1){super(e,t)}extractData(e){if(e.error||void 0===e.data){const t=e.message??"Client config operation failed";throw new Error(t)}return e.data}async getClientFlags(){this.logger.debug("Fetching client feature flags");const e=await this.http.get(tt),t=this.extractData(e);return this.logger.debug("Fetched client feature flags",{flagCount:Object.keys(t.flags).length}),{flags:t.flags}}}var $a,Ka,qa,Ga;!function(e){e.CHAT_MESSAGE="CHAT_MESSAGE",e.COMMENT="COMMENT",e.STREAM="STREAM",e.RECORDING="RECORDING"}($a||($a={})),function(e){e.INAPPROPRIATE_CONTENT="INAPPROPRIATE_CONTENT",e.SPAM="SPAM",e.HARASSMENT="HARASSMENT",e.SCAM="SCAM",e.OTHER="OTHER"}(Ka||(Ka={})),function(e){e.PENDING="PENDING",e.DISMISSED="DISMISSED",e.ACTIONED="ACTIONED"}(qa||(qa={})),function(e){e.DELETE_CONTENT="DELETE_CONTENT",e.BAN_USER="BAN_USER",e.DELETE_AND_BAN="DELETE_AND_BAN"}(Ga||(Ga={})),Ka.INAPPROPRIATE_CONTENT,Ka.SPAM,Ka.HARASSMENT,Ka.SCAM,Ka.OTHER,qa.PENDING,qa.DISMISSED,qa.ACTIONED,Ga.DELETE_CONTENT,Ga.BAN_USER,Ga.DELETE_AND_BAN,$a.CHAT_MESSAGE,$a.COMMENT,$a.STREAM,$a.RECORDING;const Wa=ni($a),Ha=ni(Ka),za=ni(qa),ja=ni(Ga),Va={TOKEN_NAME:vn,CONTENT_ID:En.CONTENT_ID,DETAILS:En.FLAG_DETAILS,PAGINATION:{MAX_LIMIT:bn}};function Xa(e,t="tokenName"){ri(e,t,Va.TOKEN_NAME)}class Qa extends oa{constructor(e,t,n,i=!1,o){super(e,t,n,i,o)}async createFlag(e){!function(e){if(Xa(e.tokenName),void 0===e.contentType)throw Mt("contentType","Content type");if(!Wa(e.contentType))throw $t("contentType",`one of: ${Object.values($a).join(", ")}`,"Content type");if(!Zn(e.contentId))throw Mt("contentId","Content ID");if(e.contentId.length>Va.CONTENT_ID.MAX_LENGTH)throw jt("contentId",Va.CONTENT_ID.MAX_LENGTH,e.contentId.length,"Content ID");if(!Zn(e.reportedUserAddress))throw Mt("reportedUserAddress","Reported user address");if(Ei(e.reportedUserAddress,"reportedUserAddress"),!(e.contentType!==$a.STREAM&&e.contentType!==$a.RECORDING||void 0!==e.reason&&null!==e.reason))throw Mt("reason","Reason");if(void 0!==e.reason&&!Ha(e.reason))throw $t("reason",`one of: ${Object.values(Ka).join(", ")}`,"Reason");if(void 0!==e.details&&!Zn(e.details))throw Vt("details","a non-empty string",typeof e.details);if(void 0!==e.details&&e.details.length>Va.DETAILS.MAX_LENGTH)throw jt("details",Va.DETAILS.MAX_LENGTH,e.details.length)}(e);const t={tokenName:e.tokenName,contentType:e.contentType,contentId:e.contentId,reportedUserAddress:e.reportedUserAddress};null!=e.reason&&(t.reason=e.reason),null!=e.details&&(t.details=e.details);const n=await this.http.post(ie.CREATE,t,this.getMultiAuthHeaders());return{flag:this.extractData(n).flag}}async listFlags(e){!function(e){if(Xa(e.tokenName),void 0!==e.contentType&&!Wa(e.contentType))throw $t("contentType",`one of: ${Object.values($a).join(", ")}`,"Content type");if(void 0!==e.status&&!za(e.status))throw $t("status",`one of: ${Object.values(qa).join(", ")}`);if(void 0!==e.reason&&!Ha(e.reason))throw $t("reason",`one of: ${Object.values(Ka).join(", ")}`);if(void 0!==e.reporterAddress&&!Zn(e.reporterAddress))throw Vt("reporterAddress","a non-empty string",typeof e.reporterAddress);if(void 0!==e.reporterAddress&&Ei(e.reporterAddress,"reporterAddress"),void 0!==e.reportedUserAddress&&!Zn(e.reportedUserAddress))throw Vt("reportedUserAddress","a non-empty string",typeof e.reportedUserAddress);void 0!==e.reportedUserAddress&&Ei(e.reportedUserAddress,"reportedUserAddress"),ti(0,void 0,Va.PAGINATION.MAX_LIMIT,e.pageSize)}(e);const t=ta(e,bn);na(t,e,["tokenName","contentType","status","reason","reporterAddress","reportedUserAddress"]);const n=await this.http.get(ie.LIST,t,this.getMultiAuthHeaders()),i=this.extractData(n);return{items:i.flags,pageInfo:i.pageInfo}}async listGlobalFlags(e={}){!function(e){if(void 0!==e.tokenName&&Xa(e.tokenName),void 0!==e.contentType&&!Wa(e.contentType))throw $t("contentType",`one of: ${Object.values($a).join(", ")}`,"Content type");if(void 0!==e.status&&!za(e.status))throw $t("status",`one of: ${Object.values(qa).join(", ")}`);if(void 0!==e.reason&&!Ha(e.reason))throw $t("reason",`one of: ${Object.values(Ka).join(", ")}`);if(void 0!==e.reporterAddress&&!Zn(e.reporterAddress))throw Vt("reporterAddress","a non-empty string",typeof e.reporterAddress);if(void 0!==e.reporterAddress&&Ei(e.reporterAddress,"reporterAddress"),void 0!==e.reportedUserAddress&&!Zn(e.reportedUserAddress))throw Vt("reportedUserAddress","a non-empty string",typeof e.reportedUserAddress);void 0!==e.reportedUserAddress&&Ei(e.reportedUserAddress,"reportedUserAddress"),ti(0,void 0,Va.PAGINATION.MAX_LIMIT,e.pageSize)}(e);const t=ta(e,bn);na(t,e,["tokenName","contentType","status","reason","reporterAddress","reportedUserAddress"]);const n=await this.http.get(ie.LIST,t,this.getMultiAuthHeaders()),i=this.extractData(n);return{items:i.flags,pageInfo:i.pageInfo}}async dismissFlag(e){!function(e){if(void 0===e.flagId||null===e.flagId)throw Mt("flagId","Flag ID");try{Xn(e.flagId,"flagId")}catch{throw $t("flagId","a positive integer","Flag ID")}}(e);const t=ie.DISMISS.replace(":id",e.flagId.toString()),n=await this.http.post(t,{},this.getMultiAuthHeaders());return{flag:this.extractData(n).flag}}async actionFlag(e){!function(e){if(void 0===e.flagId||null===e.flagId)throw Mt("flagId","Flag ID");try{Xn(e.flagId,"flagId")}catch{throw $t("flagId","a positive integer","Flag ID")}if(void 0===e.action)throw Mt("action","Action");if(!ja(e.action))throw $t("action",`one of: ${Object.values(Ga).join(", ")}`,"Action")}(e);const t=ie.ACTION.replace(":id",e.flagId.toString()),n=await this.http.post(t,{action:e.action},this.getMultiAuthHeaders());return{flag:this.extractData(n).flag}}}const Ja=["heart","fire","laugh","wow","thumbs_up"];class Ya extends oa{constructor(e,t,n,i=!1,o){super(e,t,n,i,o)}validateReactionTokenName(e){this.validateTokenName(e,vn)}validateMessageId(e){if(!Zn(e))throw Mt("messageId","Message ID");if(Vn(e,Cn.CONTENT_REACTION.MAX_LENGTH,"messageId"),!Cn.CONTENT_REACTION.PATTERN.test(e))throw $t("messageId","msg-{timestamp}-{uuid} or chat-{timestamp}-{uuid} format","Message ID")}validateReactionType(e){if(!Zn(e))throw Mt("reactionType","Reaction type");if(!Ja.includes(e))throw $t("reactionType",`one of: ${Ja.join(", ")}`,"Reaction type")}async addContentReaction(e){void 0!==e.tokenName&&this.validateReactionTokenName(e.tokenName),this.validateMessageId(e.messageId),this.validateReactionType(e.reactionType);const t=Pe,n={messageId:e.messageId,reactionType:e.reactionType};void 0!==e.tokenName&&(n.tokenName=an(e.tokenName));const i=await this.http.post(t,n,this.getMultiAuthHeaders()),o=this.extractData(i),{created:r,...s}=o;return{data:s,created:r}}async removeContentReaction(e){void 0!==e.tokenName&&this.validateReactionTokenName(e.tokenName),this.validateMessageId(e.messageId),this.validateReactionType(e.reactionType);const t=`${xe}?${new URLSearchParams({messageId:e.messageId,reactionType:e.reactionType}).toString()}`;return await this.http.delete(t,{},this.getMultiAuthHeaders()),{success:!0}}async addReactionToChatMessage(e){return this.addContentReaction(e)}async removeReactionFromChatMessage(e){return this.removeContentReaction(e)}async addReactionToComment(e){return this.addContentReaction(e)}async removeReactionFromComment(e){return this.removeContentReaction(e)}}class Za extends hi{constructor(e,t,n=void 0,i=5,o=!1){super(e,o),this.pricingConcurrency=5,this.dexBackendBaseUrl=t,this.gswapService=n,this.pricingConcurrency=i}setGSwapService(e){this.gswapService=e}setPricingConcurrency(e){this.pricingConcurrency=Math.max(1,Math.min(e,20))}async enrichPoolsWithPricing(e){if(!this.gswapService)return this.logger.warn("GSwap service not available, skipping pricing enrichment"),e;if(0===e.length)return e;this.logger.debug("Starting pricing enrichment",{poolCount:e.length,concurrency:this.pricingConcurrency});const t=[];for(let n=0;n<e.length;n++){const i=e[n];t.push({poolIndex:n,token:i.token0,isToken0:!0,task:this.gswapService.getSwapQuoteExactInput({fromToken:i.token0,toToken:"GUSDC",amount:"1"}).then(e=>e.estimatedOutput).catch(e=>{this.logger.debug(`Failed to price ${i.token0}`,{error:Ct(e)})})}),t.push({poolIndex:n,token:i.token1,isToken0:!1,task:this.gswapService.getSwapQuoteExactInput({fromToken:i.token1,toToken:"GUSDC",amount:"1"}).then(e=>e.estimatedOutput).catch(e=>{this.logger.debug(`Failed to price ${i.token1}`,{error:Ct(e)})})})}const n=new Map;for(let t=0;t<e.length;t++)n.set(t,{});for(let e=0;e<t.length;e+=this.pricingConcurrency){const i=t.slice(e,e+this.pricingConcurrency),o=await Promise.allSettled(i.map(e=>e.task));for(let e=0;e<i.length;e++){const t=i[e],r=o[e],s=n.get(t.poolIndex)??{};"fulfilled"===r.status&&null!=r.value&&(t.isToken0?s.token0Price=r.value:s.token1Price=r.value),n.set(t.poolIndex,s)}}const i=e.map((e,t)=>{const i=n.get(t)??{},o={...e};return void 0!==i.token0Price&&(o.token0Price=i.token0Price),void 0!==i.token1Price&&(o.token1Price=i.token1Price),o}),o=i.filter(e=>null!=e.token0Price&&null!=e.token1Price).length;return this.logger.debug("Pricing enrichment complete",{total:e.length,successful:o,failed:e.length-o}),i}async fetchDexPools(e={}){const{search:t,sortBy:n="tvl",sortOrder:i="desc",page:o=1,limit:r=Ys.DEFAULT_LIMIT,withPrices:s=!1}=e;this.logger.debug("Fetching DEX pools",{search:t,sortBy:n,sortOrder:i,page:o,limit:r,withPrices:s});const a=Math.min(r,20),c=Math.max(o,1),l=new URLSearchParams({page:String(c),limit:String(a),sortBy:n,sortOrder:i});null!=t&&l.append("search",t);const d=`${this.dexBackendBaseUrl}/explore/pools?${l}`,u=await nn(()=>this.http.get(d),{errorContext:"Failed to fetch DEX pools",logger:this.logger});let h=u.pools;const g=u.count??0,m=c*a<g,p=c>1;s&&(h=await this.enrichPoolsWithPricing(h)),this.logger.debug("DEX pools fetched successfully",{poolCount:h.length,totalCount:g,hasNextPage:m,withPrices:s});return{items:h,pageInfo:{hasNextPage:m,hasPrevPage:p,totalCount:g}}}async fetchAllDexPools(e={}){this.logger.debug("Fetching all DEX pools (auto-paginated)",e);const t=[];let n=1;for(;;){const i=await this.fetchDexPools({...e,page:n,limit:20});if(t.push(...i.items),!i.pageInfo.hasNextPage)break;n+=1}const i=t.length;return this.logger.debug("All DEX pools fetched",{totalPoolsFetched:t.length,totalCount:i,withPrices:e.withPrices}),{items:t,pageInfo:{hasNextPage:!1,totalCount:i}}}}function ec(e){try{if(!Zn(e))throw new Error("Token must be a non-empty string");return Is(e)}catch(t){throw new gt(`Invalid pipe-delimited token: "${e}". Expected format: "collection|category|type|additionalKey". Error: ${Ct(t)}`,"pipeDelimitedToken","INVALID_PIPE_DELIMITED_TOKEN_FORMAT")}}class tc extends hi{constructor(e,t,n=!1,i=3e4){super(e,n),this.compositePoolFetchConcurrency=5,this.dexBackendBaseUrl=t}validateFetchCompositePoolDataInput(e,t,n){if(!Zn(e))throw new At("token0 must be a non-empty string",{token0:e});if(!Zn(t))throw new At("token1 must be a non-empty string",{token1:t});try{Is(e),Is(t)}catch(n){throw new At(`Token format must be: collection|category|type|additionalKey (4 pipe-separated parts). ${Ct(n)}`,{token0:e,token1:t})}try{Xn(n,"fee")}catch{throw new At(`fee must be a positive integer (got ${n})`,{fee:n})}const i=[500,3e3,1e4];if(!i.includes(n))throw new At(`fee must be one of: ${i.join(", ")} (got ${n})`,{fee:n})}validateQuoteAmount(e){if(!Zn(e))throw new At("amount must be a non-empty string",{amount:e});const t=bo(e);try{Ro(t,"amount")}catch(t){throw new At(t.message,{amount:e})}}convertTokenClassKey(e){const t=new l.TokenClassKey;return t.collection=e.collection,t.category=e.category,t.type=e.type,t.additionalKey=e.additionalKey,t}setCompositePoolFetchConcurrency(e){this.compositePoolFetchConcurrency=Math.max(1,Math.min(e,20)),this.logger.debug(`Composite pool fetch concurrency set to ${this.compositePoolFetchConcurrency}`)}async fetchCompositePoolData(e){const{token0:t,token1:n,fee:i}=e;this.logger.debug("Fetching composite pool data",{token0:t,token1:n,fee:i}),this.validateFetchCompositePoolDataInput(t,n,i);try{const e=ec(t),o=ec(n),r=this.convertTokenClassKey(e),s=this.convertTokenClassKey(o),a=new d.GetCompositePoolDto(r,s,i),c=`${this.dexBackendBaseUrl}/v1/trade/composite-pool/direct`,u=await this.http.post(c,a);_t(u,`Pool not found: ${t}/${n} with fee ${i}`);const h=function(e){const t=e.token0Balance,n=e.token1Balance;return{pool:e.pool,tickDataMap:e.tickDataMap,token0Balance:t,token1Balance:n,token0Decimals:e.token0Decimals,token1Decimals:e.token1Decimals,compositePoolDto:e}}(function(e){const t=e.pool,n=new d.Pool(t.token0,t.token1,t.token0ClassKey,t.token1ClassKey,t.fee,bo(t.sqrtPrice),t.protocolFees);n.bitmap=t.bitmap,n.grossPoolLiquidity=bo(t.grossPoolLiquidity),n.liquidity=bo(t.liquidity),n.feeGrowthGlobal0=bo(t.feeGrowthGlobal0),n.feeGrowthGlobal1=bo(t.feeGrowthGlobal1),n.protocolFeesToken0=bo(t.protocolFeesToken0),n.protocolFeesToken1=bo(t.protocolFeesToken1),n.tickSpacing=t.tickSpacing,n.maxLiquidityPerTick=bo(t.maxLiquidityPerTick);const i={},o=e.tickDataMap;Object.keys(o).forEach(e=>{const t=o[e],n=t.initialised,r=t.liquidityNet,s=t.liquidityGross,a=t.feeGrowthOutside0,c=t.feeGrowthOutside1,l=new d.TickData(t.poolHash,t.tick);l.initialised=n,l.liquidityNet=bo(r),l.liquidityGross=bo(s),l.feeGrowthOutside0=bo(a),l.feeGrowthOutside1=bo(c),i[e]=l});const r=e.token0Balance,s=r.quantity,a={...r},c=new l.TokenBalance(a);c.quantity=bo(s),Object.keys(a).forEach(e=>{e in c||(c[e]=a[e])});const u=e.token1Balance,h=u.quantity,g={...u},m=new l.TokenBalance(g);return m.quantity=bo(h),Object.keys(g).forEach(e=>{e in m||(m[e]=g[e])}),new d.CompositePoolDto(n,i,c,m,e.token0Decimals,e.token1Decimals)}(u.Data),u.Data);return this.logger.debug("Composite pool data fetched successfully",{token0:t,token1:n,fee:i,liquidity:h.pool.liquidity.toString()}),h}catch(e){if(e instanceof Tt)throw e;this.logger.error("Failed to fetch composite pool data",e);throw Nt(e instanceof pt&&void 0!==e.originalError?e.originalError:e,"pool")}}async calculateDexPoolQuoteExactAmountLocal(e){const{compositePoolData:t,fromToken:n,toToken:i,amount:o}=e;if(this.logger.debug("Calculating local DEX quote",{fromToken:n,toToken:i,amount:o}),this.validateQuoteAmount(o),null==t)throw new At("compositePoolData is required for local quote calculation",{compositePoolData:t});try{const e=n===t.pool.token0.replace(/\$/g,"|"),r=ec(n),s=ec(i),a=this.convertTokenClassKey(r),c=this.convertTokenClassKey(s),[l,u]=n<i?[a,c]:[c,a],h=new d.QuoteExactAmountDto(l,u,t.pool.fee,bo(o),e,t.compositePoolDto),g=await d.quoteExactAmount(null,h);return this.logger.debug("Local quote calculated",{amount0:g.amount0,amount1:g.amount1}),{amount0:g.amount0.toString(),amount1:g.amount1.toString(),currentSqrtPrice:g.currentSqrtPrice.toString(),newSqrtPrice:g.newSqrtPrice.toString()}}catch(e){throw this.logger.error("Local quote calculation failed",e),new At(`Local quote calculation failed: ${Ct(e)}`,{fromToken:n,toToken:i,amount:o})}}async calculateDexPoolQuoteExactAmountExternal(e){const{compositePoolData:t,fromToken:n,toToken:i,amount:o}=e;if(this.logger.debug("Calculating external DEX quote",{fromToken:n,toToken:i,amount:o}),this.validateQuoteAmount(o),null==t)throw new At("compositePoolData is required for external quote calculation (token format info)",{compositePoolData:t});try{const e=n===t.pool.token0.replace(/\$/g,"|"),r=ec(n),s=ec(i),a=`${this.dexBackendBaseUrl}/v1/trade/quote`,c=await this.http.get(a,{tokenIn:pr(r),tokenOut:pr(s),amountIn:o,fee:t.pool.fee});if(c.error||200!==c.status||void 0===c.data)throw new Error(c.message??"External quote failed");const l=c.data,d=bo(l.amountOut).absoluteValue().negated().toString(),u=bo(l.amountIn).absoluteValue().toString(),h=e?u:d,g=e?d:u;return this.logger.debug("External quote calculated",{amount0:h,amount1:g}),{amount0:h,amount1:g,currentSqrtPrice:bo(l.currentSqrtPrice).toString(),newSqrtPrice:bo(l.newSqrtPrice).toString()}}catch(e){throw this.logger.error("External quote calculation failed",e),new At(`External quote calculation failed: ${Ct(e)}`,{fromToken:n,toToken:i,amount:o})}}async calculateDexPoolQuoteExactAmount(e,t="local"){return"external"===t?this.calculateDexPoolQuoteExactAmountExternal(e):this.calculateDexPoolQuoteExactAmountLocal(e)}}class nc extends gi{constructor(e,t,n,i=!1){super(i),this.dexBackendHttp=e,this.cache=t,this.galaChainService=n}async fetchTokenPrice(e){const{tokenId:t}=e,{hasB:n}=oi(e,"tokenName","tokenId",{description:"token identifier"});if(!0===n&&null!=t)return this.logger.debug(`Fetching spot price by tokenId: ${String(t)}`),this._fetchDexTokenSpotPrice(t);throw new gt("tokenName parameter requires LaunchpadSDK routing - call LaunchpadSDK.fetchTokenPrice({tokenName}) instead","tokenName","INVALID_PARAMS")}async _fetchDexTokenSpotPrice(e){if(null==e)throw Mt("tokenId","Token ID");try{const t=pa(e),n=mr(t),i=Ba(n);if(this.logger.debug(`Fetching DEX spot price for token: ${i}`),!this.dexBackendHttp)throw Kt("DEX Backend API client not configured");const o=en(await this.dexBackendHttp.request({method:"GET",url:"/v1/trade/price",params:{token:i}}));if(null==o||"string"!=typeof o)throw new gt("Invalid price response: data must be a string, got "+typeof o,"data","INVALID_RESPONSE");const r=function(e,t){if(gn(e)||""===e)throw Mt(t);const n="number"==typeof e?e:parseFloat(String(e));if(isNaN(n))throw Xt(t,e);if(!isFinite(n))throw Xt(t,e);return n}(o,"price"),s=n;let a;try{if(null!==this.cache&&void 0!==this.cache){const e=this.cache.getByTokenId(s);if(null!=e?.symbol)return a=e.symbol,this.logger.debug(`DEX spot price for ${a} (cached): $${r}`),{symbol:a,price:r}}this.logger.debug(`Symbol cache miss for ${s}, fetching from API`);a=(await this.fetchTokenDetails(e)).symbol,this.cache&&(this.cache.setByTokenId(s,{symbol:a}),this.logger.debug(`Cached symbol for ${s}: ${a}`)),this.logger.debug(`DEX spot price for ${a}: $${r}`)}catch(e){this.logger.debug(`Could not fetch token details for symbol, falling back to token format parsing: ${Et(e)?e.message:String(e)}`),a=ln("Token"===t.collection?t.type:t.collection),this.logger.debug(`DEX spot price for ${a} (fallback): $${r}`)}return{symbol:a,price:r}}catch(e){if(e instanceof gt)throw e;throw Kt(`Failed to fetch DEX spot price: ${Ct(e)}`)}}async fetchLaunchpadTokenSpotPrice(e,t,n){if(!Zn(e))throw new gt(Bt,"tokenName",at);try{if(null!=n)try{this.logger.debug(`Checking graduation status for token: ${e}`);const t=await n(e);if(!0===t?.isGraduated){this.logger.debug(`Token ${e} is graduated, using DEX spot price`);const n=mr(t.sellingToken);return this._fetchDexTokenSpotPrice(n)}}catch(t){this.logger.debug(`Could not determine graduation status for ${e}, falling back to bonding curve: ${Ct(t)}`)}this.logger.debug(`Using bonding curve calculation for token: ${e}`);const i=await t({tokenName:e,amount:"1",type:"native"}),o=await this._fetchDexTokenSpotPrice({collection:"GALA",category:"Unit",type:"none",additionalKey:"none"});if(null==o)throw Kt("GALA price not available");const r=Un(i.amount,0)/1e18;if(r<=0)throw new gt(`Invalid token amount calculation: ${r}`,"amount","INVALID_CALCULATION");const s=o.price/r;return{symbol:ln(e),price:s}}catch(t){if(Et(t))throw Kt(`Failed to calculate launchpad token spot price for ${e}: ${Ct(t)}`);throw Kt(`Failed to calculate launchpad token spot price for ${e}: ${Ct(t)}`)}}async fetchTokenDetails(e){this.logger.debug("Fetching token details from GalaChain for tokenId:",e);try{if(!this.galaChainService)throw Kt("GalaChainService not available for token metadata fetch",500);const t=await this.galaChainService.fetchTokenClassFromChain(e),n={collection:t.collection,category:t.category,type:t.type,additionalKey:t.additionalKey,symbol:t.symbol,decimals:t.decimals,name:t.name,image:t.image,description:t.description,network:t.network,...void 0!==t.contractAddress&&{contractAddress:t.contractAddress}};return this.logger.debug(`Fetched token details for ${t.symbol} from GalaChain`),n}catch(t){if((t instanceof gt||Et(t))&&("NetworkError"===t.name||Ct(t).includes("Token not found")))throw t;throw Kt(`Failed to fetch token details from GalaChain for ${String(e)}: ${Ct(t)}`,500)}}async fetchAllDexSeasons(){try{if(!this.dexBackendHttp)throw Kt("DEX Backend API client not configured");const e=await this.dexBackendHttp.request({method:"GET",url:"/leaderboard/seasons"});let t;if(Array.isArray(e))t=e;else{if(null==e||"object"!=typeof e)return this.logger.warn("Seasons endpoint returned invalid data:",e),[];{const n=en(e);if(Array.isArray(n))t=n;else if(null!=n&&"object"==typeof n&&Array.isArray(n.seasons))t=n.seasons;else{if(!Array.isArray(e.seasons))return this.logger.warn("Seasons endpoint returned unexpected structure:",e),[];t=e.seasons}}}const n=t.map(e=>{const t=e;return{id:t?.id??0,name:t?.name??"",start:pn(t?.start??null),end:pn(t?.end??null),rulesId:t?.rules_id??0}});return this.logger.debug(`Fetched ${n.length} DEX seasons`),n}catch(e){if(Et(e)&&Ct(e).includes("not configured"))throw e;if(xt(e)&&404===e.response?.status)return this.logger.warn("Seasons endpoint not available"),[];throw Kt(`Failed to fetch DEX seasons: ${Ct(e)}`)}}async fetchCurrentDexSeason(){const e=await this.fetchAllDexSeasons(),t=new Date,n=e.find(e=>t>=e.start&&t<=e.end);return n?this.logger.debug(`Current DEX season: ${n.name} (ID: ${n.id})`):this.logger.debug("No active DEX season found"),n??null}async fetchDexLeaderboardBySeasonId(e){try{Xn(e,"seasonId")}catch{throw Mt("seasonId","Season ID must be a positive number")}try{if(!this.dexBackendHttp)throw Kt("DEX Backend API client not configured");const t=await this.dexBackendHttp.request({method:"GET",url:"/leaderboard",params:{seasonId:e.toString()}});let n;if(Array.isArray(t))n=t;else{if(null==t||"object"!=typeof t)return this.logger.warn("Leaderboard endpoint returned invalid data:",t),{entries:[],seasonId:e,totalEntries:0};{const i=en(t);if(null!=i&&"object"==typeof i&&Array.isArray(i.leaderboard))n=i.leaderboard;else if(Array.isArray(t.leaderboard))n=t.leaderboard;else{if(!Array.isArray(i))return this.logger.warn("Leaderboard endpoint returned unexpected structure:",t),{entries:[],seasonId:e,totalEntries:0};n=i}}}const i=n.map(e=>{const t=e,n=t?.mastery_titles??[];return{wallet:t?.wallet??"",rank:t?.rank??0,totalXp:String(t?.total_xp??0),distributionPercent:String(t?.distribution_percent??0),liquidityXp:String(t?.liquidity_xp??0),tradingXp:String(t?.trading_xp??0),masteryTitles:n.map(e=>{const t=e;return{name:t?.name??"",type:t?.type??"trade",order:t?.order??0}})}});return this.logger.debug(`Fetched leaderboard for season ${e} with ${i.length} entries`),{entries:i,seasonId:e,totalEntries:i.length}}catch(t){if(Et(t)&&Ct(t).includes("must be a positive number"))throw t;throw Kt(`Failed to fetch DEX leaderboard for season ${e}: ${Ct(t)}`)}}async fetchCurrentDexLeaderboard(){const e=await this.fetchCurrentDexSeason();return e?this.fetchDexLeaderboardBySeasonId(e.id):(this.logger.debug("Cannot fetch current leaderboard - no active season"),null)}async fetchDexAggregatedVolumeSummary(){try{if(!this.dexBackendHttp)throw Kt("DEX Backend API client not configured");const e=en(await this.dexBackendHttp.request({method:"GET",url:"/explore/volume"}));if(!e)throw Kt("No data in DEX volume response",500);const t={volume1d:e.volume1d,volume1dDelta:e.volume1dDelta,volume7d:e.volume7d,volume7dDelta:e.volume7dDelta,volume30d:e.volume30d,volume30dDelta:e.volume30dDelta};return this.logger.debug(`Fetched DEX volume summary: $${t.volume1d.toFixed(2)} (1d)`),t}catch(e){throw Kt(`Failed to fetch DEX volume summary: ${Ct(e)}`)}}}const ic=20,oc=3e3,rc=1e3,sc=!0,ac=!0,cc=!1;class lc{constructor(e,t={}){this.eventBuffer=[],this.flushTimer=null,this.isShuttingDown=!1,this.totalQueued=0,this.totalFlushed=0,this.totalDropped=0,this.handleVisibilityChange=()=>{"hidden"===document.visibilityState&&this.eventBuffer.length>0&&this.flushWithBeacon()},this.handleBeforeUnload=()=>{this.eventBuffer.length>0&&this.flushWithBeacon()},this.httpClient=e,this.logger=new un({debug:t.debug??!1,context:"EventsBatcherService"}),this.config={batchSize:t.batchSize??ic,flushIntervalMs:t.flushIntervalMs??oc,maxQueueSize:t.maxQueueSize??rc,flushOnPageHide:t.flushOnPageHide??sc,flushOnPageUnload:t.flushOnPageUnload??ac,debug:t.debug??cc},this.setupPageLifecycleListeners()}track(e,t,n){if(this.isShuttingDown)return void this.logger.warn("EventsBatcher is shutting down, ignoring track call");const i={eventType:e,payload:t,clientTimestamp:(new Date).toISOString(),...void 0!==n?.userAddress&&""!==n.userAddress&&{userAddress:n.userAddress},...void 0!==n?.tokenName&&""!==n.tokenName&&{tokenName:n.tokenName},...void 0!==n?.sessionId&&""!==n.sessionId&&{sessionId:n.sessionId}};this.buffer(i),n?.immediate&&this.scheduleFlush(0)}async flush(){if(0===this.eventBuffer.length)return;this.cancelFlushTimer();const e=this.eventBuffer.splice(0);this.logger.debug(`Flushing ${e.length} events`);try{const t=await this.submitEvents(e);this.totalFlushed+=t.accepted,this.lastFlushTime=Date.now(),this.lastError=void 0,this.logger.debug(`Flush successful, accepted ${t.accepted} events`)}catch(t){throw this.eventBuffer.unshift(...e),this.lastError=t instanceof Error?t.message:String(t),this.logger.error(`Flush failed: ${this.lastError}`),t}}getStats(){const e={bufferedCount:this.eventBuffer.length,totalQueued:this.totalQueued,totalFlushed:this.totalFlushed,totalDropped:this.totalDropped};return void 0!==this.lastFlushTime&&(e.lastFlushTime=this.lastFlushTime),void 0!==this.lastError&&(e.lastError=this.lastError),e}configure(e){void 0!==e.batchSize&&(this.config.batchSize=e.batchSize),void 0!==e.flushIntervalMs&&(this.config.flushIntervalMs=e.flushIntervalMs),void 0!==e.maxQueueSize&&(this.config.maxQueueSize=e.maxQueueSize),void 0!==e.flushOnPageHide&&(this.config.flushOnPageHide=e.flushOnPageHide),void 0!==e.flushOnPageUnload&&(this.config.flushOnPageUnload=e.flushOnPageUnload)}async shutdown(e=5e3){if(this.isShuttingDown=!0,this.removePageLifecycleListeners(),0!==this.eventBuffer.length)try{await Promise.race([this.flush(),new Promise((t,n)=>setTimeout(()=>n(new Error("Flush timeout during shutdown")),e))])}catch(e){this.logger.error(`Shutdown flush failed: ${e instanceof Error?e.message:String(e)}`)}}buffer(e){this.eventBuffer.length>=this.config.maxQueueSize&&(this.eventBuffer.shift(),this.totalDropped++,this.logger.warn("Event buffer full, dropped oldest event")),this.eventBuffer.push(e),this.totalQueued++,this.eventBuffer.length>=this.config.batchSize?this.scheduleFlush(0):this.scheduleFlush(this.config.flushIntervalMs)}scheduleFlush(e){null===this.flushTimer&&(this.flushTimer=setTimeout(()=>{this.flushTimer=null,this.flush().catch(e=>{this.logger.error(`Scheduled flush failed: ${e instanceof Error?e.message:String(e)}`)})},e))}cancelFlushTimer(){null!==this.flushTimer&&(clearTimeout(this.flushTimer),this.flushTimer=null)}async submitEvents(e){return await this.httpClient.post("/v1/events",{events:e})}setupPageLifecycleListeners(){"undefined"!=typeof document&&(this.config.flushOnPageHide&&document.addEventListener("visibilitychange",this.handleVisibilityChange),this.config.flushOnPageUnload&&window.addEventListener("beforeunload",this.handleBeforeUnload))}removePageLifecycleListeners(){"undefined"!=typeof document&&(this.config.flushOnPageHide&&document.removeEventListener("visibilitychange",this.handleVisibilityChange),this.config.flushOnPageUnload&&window.removeEventListener("beforeunload",this.handleBeforeUnload))}flushWithBeacon(){if("undefined"==typeof navigator||!navigator.sendBeacon)return;const e=this.eventBuffer.splice(0),t=JSON.stringify({events:e});try{const n=this.getBaseUrl();navigator.sendBeacon(`${n}/v1/events`,t)?(this.totalFlushed+=e.length,this.lastFlushTime=Date.now()):(this.eventBuffer.unshift(...e),this.logger.warn("sendBeacon returned false, events re-buffered"))}catch(t){this.eventBuffer.unshift(...e),this.logger.error(`sendBeacon failed: ${t instanceof Error?t.message:String(t)}`)}}getBaseUrl(){const e=this.httpClient.config;return e?.baseUrl??""}}function dc(e){return 0===(e?.length??0)?"0":e.reduce((e,t)=>o(e).plus(t.quantity).toString(),"0")}function uc(e,t){if(0===(e?.length??0))return[];if(t)return e;const n=Date.now();return e.filter(e=>0===e.expires||e.expires>n)}class hc extends hi{constructor(e,t=!1){super(e,t)}getChannelForCollection(e){return"MUSIC"===(Ds(e)?e.slice(1).toUpperCase():e.toUpperCase())?"music":"asset"}async fetchGalaBalance(e){return this.fetchTokenBalance(e)}async fetchTokenBalance(e,t=!1){try{const n=`/api/${this.getChannelForCollection(e.collection)}/token-contract/FetchBalances`,i=await this.http.post(n,e);if(null==i)return null;try{_t(i,"Fetch balances")}catch{return null}if(0===(i.Data?.length??0))return null;const r=i.Data.find(t=>t.collection===e.collection&&t.category===e.category&&t.additionalKey===e.additionalKey&&t.type===e.type);if(!r||"0"===r.quantity)return null;const s=mr(r),a={quantity:r.quantity,collection:r.collection,category:r.category,tokenId:s};if((r.inUseHolds?.length??0)>0){const e=uc(r.inUseHolds??[],t);e.length>0&&(a.inUseHolds=e,a.inUseQuantity=dc(e))}if((r.lockedHolds?.length??0)>0){const e=uc(r.lockedHolds??[],t);e.length>0&&(a.lockedHolds=e,a.lockedQuantity=dc(e))}return void 0===a.lockedQuantity&&void 0===a.inUseQuantity||(a.availableQuantity=function(e,t="0",n="0"){return o(e).minus(t).minus(n).toString()}(a.quantity,a.lockedQuantity,a.inUseQuantity)),a}catch(e){throw Kt(`Failed to fetch token balance from GalaChain: ${Ct(e)}`,void 0,Et(e)?e:void 0)}}}function gc(){return`galaconnect-operation-${Date.now()}_${Math.random().toString(36).substring(2,8)}`}class mc extends n.ChainCallDTO{constructor(e){super(),this.lockAuthority=e.lockAuthority,this.tokenInstances=e.tokenInstances,this.uniqueKey=e.uniqueKey,void 0!==e.expires&&(this.expires=e.expires),void 0!==e.name&&(this.name=e.name),void 0!==e.signedPayload&&(this.signature=e.signedPayload.signature,this.domain=e.signedPayload.domain,this.types=e.signedPayload.types,void 0!==e.signedPayload.prefix&&(this.prefix=e.signedPayload.prefix))}static fromTokenClassKey(e,t,n,i,o){let r;if("string"==typeof i){r={...Oa(i),instance:"0"}}else r={collection:i.collection,category:i.category,type:i.type,additionalKey:i.additionalKey,instance:"0"};return new mc({lockAuthority:t??e,tokenInstances:[{owner:e,quantity:n,tokenInstanceKey:r}],...void 0!==o?.expires&&{expires:o.expires},...void 0!==o?.name&&{name:o.name},uniqueKey:o?.uniqueKey??gc()})}static forGALA(e,t,n,i){return new mc({lockAuthority:t??e,tokenInstances:[{owner:e,quantity:n,tokenInstanceKey:{collection:"GALA",category:"Unit",type:"none",additionalKey:"none",instance:"0"}}],...void 0!==i?.expires&&{expires:i.expires},...void 0!==i?.name&&{name:i.name},uniqueKey:i?.uniqueKey??gc()})}getTokenClassKey(){if(0===this.tokenInstances.length)return;return pr(this.tokenInstances[0].tokenInstanceKey)}toSigningPayload(){return{lockAuthority:this.lockAuthority,tokenInstances:this.tokenInstances,...void 0!==this.expires&&{expires:this.expires},...void 0!==this.name&&{name:this.name},uniqueKey:this.uniqueKey}}}class pc extends n.ChainCallDTO{constructor(e){super(),this.tokenInstances=e.tokenInstances,this.uniqueKey=e.uniqueKey,void 0!==e.name&&(this.name=e.name),e.signedPayload&&(this.signature=e.signedPayload.signature,this.domain=e.signedPayload.domain,this.types=e.signedPayload.types,null!=e.signedPayload.prefix&&(this.prefix=e.signedPayload.prefix))}static fromTokenClassKey(e,t,n,i){let o;if("string"==typeof n){o={...Oa(n),instance:"0"}}else o={collection:n.collection,category:n.category,type:n.type,additionalKey:n.additionalKey,instance:"0"};return new pc({tokenInstances:[{owner:e,quantity:t,tokenInstanceKey:o}],...void 0!==i?.name&&{name:i.name},uniqueKey:i?.uniqueKey??gc()})}static forGALA(e,t,n){return new pc({tokenInstances:[{owner:e,quantity:t,tokenInstanceKey:{collection:"GALA",category:"Unit",type:"none",additionalKey:"none",instance:"0"}}],...void 0!==n?.name&&{name:n.name},uniqueKey:n?.uniqueKey??gc()})}getTokenClassKey(){if(0===this.tokenInstances.length)return;return pr(this.tokenInstances[0].tokenInstanceKey)}toSigningPayload(){return{tokenInstances:this.tokenInstances,...void 0!==this.name&&{name:this.name},uniqueKey:this.uniqueKey}}}function fc(e){if(null==e||"object"!=typeof e)return!1;const t=e;return Zn(t.amount)&&(void 0!==t.tokenId||Zn(t.tokenName))&&(void 0===t.lockAuthority||"string"==typeof t.lockAuthority)&&(void 0===t.expires||"number"==typeof t.expires)&&(void 0===t.name||"string"==typeof t.name)}function yc(e){if(null==e||"object"!=typeof e)return!1;const t=e;return Zn(t.amount)&&(void 0!==t.tokenId||Zn(t.tokenName))&&(void 0===t.name||"string"==typeof t.name)}var kc,vc;!function(e){e.TOKEN_NOT_FOUND="TOKEN_NOT_FOUND",e.INVALID_AMOUNT="INVALID_AMOUNT",e.INSUFFICIENT_BALANCE="INSUFFICIENT_BALANCE",e.SIGNATURE_FAILED="SIGNATURE_FAILED",e.NETWORK_ERROR="NETWORK_ERROR",e.WALLET_REQUIRED="WALLET_REQUIRED",e.VALIDATION_ERROR="VALIDATION_ERROR",e.LOCK_NOT_FOUND="LOCK_NOT_FOUND",e.LOCK_EXPIRED="LOCK_EXPIRED",e.INSUFFICIENT_LOCKED_BALANCE="INSUFFICIENT_LOCKED_BALANCE",e.NOT_LOCK_AUTHORITY="NOT_LOCK_AUTHORITY",e.LOCK_NAME_MISMATCH="LOCK_NAME_MISMATCH"}(kc||(kc={}));class wc extends Error{constructor(e,t,n){super(e),this.type=t,this.details=n,this.name="LockError"}}!function(e){e.INVALID_RECIPIENT="INVALID_RECIPIENT",e.INVALID_AMOUNT="INVALID_AMOUNT",e.INSUFFICIENT_BALANCE="INSUFFICIENT_BALANCE",e.TOKEN_NOT_FOUND="TOKEN_NOT_FOUND",e.SIGNATURE_FAILED="SIGNATURE_FAILED",e.NETWORK_ERROR="NETWORK_ERROR",e.DUPLICATE_TRANSFER="DUPLICATE_TRANSFER",e.TRANSFER_LIMIT_EXCEEDED="TRANSFER_LIMIT_EXCEEDED",e.WALLET_REQUIRED="WALLET_REQUIRED"}(vc||(vc={}));class bc extends Error{constructor(e,t,n){super(e),this.type=t,this.details=n,this.name="TransferError"}}class Sc{constructor(e){this.wallet=e}static generateUniqueKey(){return`${Date.now()}_${Math.random().toString(36).substring(2,8)}`}async signTransferToken(e){const t={name:"GalaChain",chainId:1},n={TransferToken:[{name:"from",type:"string"},{name:"to",type:"string"},{name:"quantity",type:"string"},{name:"tokenInstance",type:"TokenInstance"},{name:"uniqueKey",type:"string"}],TokenInstance:[{name:"collection",type:"string"},{name:"category",type:"string"},{name:"type",type:"string"},{name:"additionalKey",type:"string"},{name:"instance",type:"string"}]};return{signature:await this.wallet.signTypedData(t,n,e),domain:t,types:n,signerPublicKey:this.wallet.signingKey.publicKey}}async signLockToken(e){const t={name:"GalaChain",chainId:1},n={LockToken:[{name:"lockAuthority",type:"string"},{name:"tokenInstances",type:"TokenInstanceQuantity[]"},{name:"uniqueKey",type:"string"},...void 0!==e.expires?[{name:"expires",type:"uint256"}]:[],...void 0!==e.name?[{name:"name",type:"string"}]:[]],TokenInstanceQuantity:[{name:"owner",type:"string"},{name:"quantity",type:"string"},{name:"tokenInstanceKey",type:"TokenInstanceKey"}],TokenInstanceKey:[{name:"collection",type:"string"},{name:"category",type:"string"},{name:"type",type:"string"},{name:"additionalKey",type:"string"},{name:"instance",type:"string"}]},i={lockAuthority:e.lockAuthority,tokenInstances:e.tokenInstances,uniqueKey:e.uniqueKey};void 0!==e.expires&&(i.expires=e.expires),void 0!==e.name&&(i.name=e.name);return{signature:await this.wallet.signTypedData(t,n,i),domain:t,types:n,signerPublicKey:this.wallet.signingKey.publicKey}}async signBurnTokens(e){const t={name:"GalaChain",chainId:1},n={BurnTokens:[{name:"tokenInstances",type:"TokenInstanceQuantity[]"},{name:"uniqueKey",type:"string"}],TokenInstanceQuantity:[{name:"quantity",type:"string"},{name:"tokenInstanceKey",type:"TokenInstanceKey"}],TokenInstanceKey:[{name:"collection",type:"string"},{name:"category",type:"string"},{name:"type",type:"string"},{name:"additionalKey",type:"string"},{name:"instance",type:"string"}]},i={tokenInstances:e.tokenInstances,uniqueKey:e.uniqueKey};return{signature:await this.wallet.signTypedData(t,n,i),domain:t,types:n,signerPublicKey:this.wallet.signingKey.publicKey}}async signUnlockToken(e){const t={name:"GalaChain",chainId:1},n={UnlockToken:[{name:"tokenInstances",type:"TokenInstanceQuantity[]"},{name:"uniqueKey",type:"string"},...void 0!==e.name?[{name:"name",type:"string"}]:[]],TokenInstanceQuantity:[{name:"owner",type:"string"},{name:"quantity",type:"string"},{name:"tokenInstanceKey",type:"TokenInstanceKey"}],TokenInstanceKey:[{name:"collection",type:"string"},{name:"category",type:"string"},{name:"type",type:"string"},{name:"additionalKey",type:"string"},{name:"instance",type:"string"}]},i={tokenInstances:e.tokenInstances,uniqueKey:e.uniqueKey};void 0!==e.name&&(i.name=e.name);return{signature:await this.wallet.signTypedData(t,n,i),domain:t,types:n,signerPublicKey:this.wallet.signingKey.publicKey}}static toGalaChainAddress(e){return(new vi).toBackendFormat(e)}static fromGalaChainAddress(e){try{return(new vi).toEthereumFormat(e)}catch{try{return Ai(e)}catch{return e}}}static createGALATokenInstance(){return{collection:"GALA",category:"Unit",type:"none",additionalKey:"none",instance:"0"}}static createTokenInstanceFromClassKey(e){return{...Oa(e),instance:"0"}}}const Ac=100,Tc=100;class Ec extends hi{constructor(e,t,n,i=!1){super(e,i),this.wallet=t,this.tokenResolver=n,this.signatureHelper=t?new Sc(t):void 0}async lockTokens(e){if(this.validateLockTokensData(e),!this.wallet||!this.signatureHelper)throw new wc("Wallet required for token lock operations",kc.WALLET_REQUIRED);return sr(async()=>{const t=Si(this.wallet.address),n=[],i=[];let o=t;const r=e.tokens.find(e=>void 0!==e.lockAuthority);void 0!==r?.lockAuthority&&(o=Si(r.lockAuthority));const s=e.tokens.find(e=>void 0!==e.expires),a=e.tokens.find(e=>void 0!==e.name);for(const r of e.tokens){let e;if(void 0!==r.tokenId)e=pa(r.tokenId),this.logger.debug("[DEBUG] Using provided tokenId:",r.tokenId);else{if(void 0===r.tokenName)throw new wc("Must provide either tokenId or tokenName for token identification",kc.TOKEN_NOT_FOUND);e=await this.resolveTokenInstance(r.tokenName)}n.push({owner:t,quantity:r.amount,tokenInstanceKey:e}),i.push({tokenClassKey:{collection:e.collection,category:e.category,type:e.type,additionalKey:e.additionalKey},quantity:r.amount,lockAuthority:void 0!==r.lockAuthority?Si(r.lockAuthority):o})}const c=new mc({lockAuthority:o,tokenInstances:n,...void 0!==s?.expires&&{expires:s.expires},...void 0!==a?.name&&{name:a.name},uniqueKey:e.uniqueKey??gc()}),l=await this.signatureHelper.signLockToken(c.toSigningPayload()),d=new mc({...c.toSigningPayload(),signedPayload:l}),u=await this.http.post("/api/asset/token-contract/LockTokens",d);try{_t(u,"Token lock failed")}catch(e){const t=Rt(u);throw new wc(`${Ct(e)}${t}`,kc.NETWORK_ERROR)}return this.extractLockResult(u,i)},"Token lock failed",this.logger,t=>{throw this.handleLockError(t,"Token lock failed",e)})}async unlockTokens(e){if(this.validateUnlockTokensData(e),!this.wallet||!this.signatureHelper)throw new wc("Wallet required for token unlock operations",kc.WALLET_REQUIRED);return sr(async()=>{const t=Si(this.wallet.address),n=[],i=[],o=e.tokens.find(e=>void 0!==e.name);for(const o of e.tokens){let e;if(void 0!==o.tokenId)e=pa(o.tokenId),this.logger.debug("[DEBUG] Using provided tokenId:",o.tokenId);else{if(void 0===o.tokenName)throw new wc("Must provide either tokenId or tokenName for token identification",kc.TOKEN_NOT_FOUND);e=await this.resolveTokenInstance(o.tokenName)}n.push({owner:t,quantity:o.amount,tokenInstanceKey:e}),i.push({tokenClassKey:{collection:e.collection,category:e.category,type:e.type,additionalKey:e.additionalKey},quantity:o.amount})}const r=new pc({tokenInstances:n,...void 0!==o?.name&&{name:o.name},uniqueKey:e.uniqueKey??gc()}),s=await this.signatureHelper.signUnlockToken(r.toSigningPayload()),a=new pc({...r.toSigningPayload(),signedPayload:s}),c=await this.http.post("/api/asset/token-contract/UnlockTokens",a);try{_t(c,"Token unlock failed")}catch(e){const t=Rt(c);throw new wc(`${Ct(e)}${t}`,kc.NETWORK_ERROR)}return this.extractUnlockResult(c,i)},"Token unlock failed",this.logger,t=>{throw this.handleLockError(t,"Token unlock failed",e)})}validateLockTokensData(e){if(!function(e){if(null==e||"object"!=typeof e)return!1;const t=e;return Array.isArray(t.tokens)&&t.tokens.length>0&&t.tokens.every(fc)&&(void 0===t.uniqueKey||"string"==typeof t.uniqueKey)&&(void 0===t.privateKey||"string"==typeof t.privateKey)}(e))throw new wc("Invalid lock data: missing required fields",kc.VALIDATION_ERROR);if(e.tokens.length>Ac)throw new wc(`Batch size exceeds maximum limit of ${Ac} tokens per lock operation`,kc.VALIDATION_ERROR);for(const t of e.tokens){if(void 0===t.tokenId&&void 0===t.tokenName)throw new wc("Must provide either tokenId or tokenName for token identification",kc.TOKEN_NOT_FOUND);if(void 0!==t.tokenName)try{si(t.tokenName,"tokenName")}catch{throw new wc("Invalid token name format",kc.TOKEN_NOT_FOUND,{tokenName:t.tokenName})}const e=bo(t.amount);try{xo(e)}catch{throw new wc($t("lockAmount","a positive number","Lock amount").message,kc.INVALID_AMOUNT,{amount:t.amount})}if(void 0!==t.lockAuthority&&!Ti(t.lockAuthority))throw new wc("Invalid lock authority address format",kc.VALIDATION_ERROR,{lockAuthority:t.lockAuthority});if(void 0!==t.expires)try{Xn(t.expires,"expires")}catch{throw new wc($t("expires","a positive integer (epoch milliseconds)","Expires").message,kc.VALIDATION_ERROR)}}}validateUnlockTokensData(e){if(!function(e){if(null==e||"object"!=typeof e)return!1;const t=e;return Array.isArray(t.tokens)&&t.tokens.length>0&&t.tokens.every(yc)&&(void 0===t.uniqueKey||"string"==typeof t.uniqueKey)&&(void 0===t.privateKey||"string"==typeof t.privateKey)}(e))throw new wc("Invalid unlock data: missing required fields",kc.VALIDATION_ERROR);if(e.tokens.length>Tc)throw new wc(`Batch size exceeds maximum limit of ${Tc} tokens per unlock operation`,kc.VALIDATION_ERROR);for(const t of e.tokens){if(void 0===t.tokenId&&void 0===t.tokenName)throw new wc("Must provide either tokenId or tokenName for token identification",kc.TOKEN_NOT_FOUND);if(void 0!==t.tokenName)try{si(t.tokenName,"tokenName")}catch{throw new wc("Invalid token name format",kc.TOKEN_NOT_FOUND,{tokenName:t.tokenName})}const e=bo(t.amount);try{xo(e)}catch{throw new wc($t("unlockAmount","a positive number","Unlock amount").message,kc.INVALID_AMOUNT,{amount:t.amount})}}}extractLockResult(e,t){let n;if(void 0!==e.Data&&e.Data.length>0){const t=e.Data[0];n=t.transactionId??t.txnId??t.TxnId??t.id??void 0}return{...void 0!==n&&{transactionId:n},locked:t}}extractUnlockResult(e,t){let n;if(void 0!==e.Data&&e.Data.length>0){const t=e.Data[0];n=t.transactionId??t.txnId??t.TxnId??t.id??void 0}return{...void 0!==n&&{transactionId:n},unlocked:t}}handleLockError(e,t,n){if(e instanceof wc)return e;let i=t,o=kc.NETWORK_ERROR;if(xt(e)){const n=e.response?.data;if("object"==typeof n&&null!==n){const e=n;void 0!==e.Message&&"string"==typeof e.Message&&(i=`${t}: ${e.Message}`);const r=String(e.Message??"").toLowerCase();r.includes("insufficient")||r.includes("balance")?o=kc.INSUFFICIENT_BALANCE:r.includes("lock")&&r.includes("not found")?o=kc.LOCK_NOT_FOUND:r.includes("not found")||r.includes("token")?o=kc.TOKEN_NOT_FOUND:r.includes("authority")?o=kc.NOT_LOCK_AUTHORITY:r.includes("expired")&&(o=kc.LOCK_EXPIRED)}}else Et(e)&&(i=`${t}: ${Ct(e)}`);const r={};return void 0!==n?.tokens?.[0]?.tokenName&&(r.tokenName=n.tokens[0].tokenName),void 0!==n?.tokens?.[0]?.amount&&(r.amount=n.tokens[0].amount),new wc(i,o,Object.keys(r).length>0?r:void 0)}async resolveTokenInstance(e){return sr(async()=>{const t=await this.tokenResolver.resolveTokenToVault(e);if(null!==t){const n=ya(t);return this.logger.debug("[DEBUG] Token resolution (launchpad)",{tokenName:e,vaultAddress:t,tokenInstance:{collection:n.collection,category:n.category,type:n.type,instance:n.instance}}),n}const n={collection:cn(e),category:"Unit",type:"none",additionalKey:"none",instance:"0"};return this.logger.debug("[DEBUG] Token resolution (standard format)",{tokenName:e,tokenInstance:{collection:n.collection,category:n.category,type:n.type}}),n},`Failed to resolve token '${e}'`,this.logger,t=>{if(t instanceof bc)throw new wc(Ct(t),kc.TOKEN_NOT_FOUND);throw new wc(`Failed to resolve token '${e}': ${Ct(t)}`,kc.TOKEN_NOT_FOUND,{tokenName:e})})}}class Cc extends hi{constructor(e,t=!1,n){super(e,t),this.publicAxios=n}async fetchTokenClassFromChain(e){try{const t="string"==typeof e?pa(e):e,n={tokenClasses:[{collection:t.collection,category:t.category,type:t.type,additionalKey:t.additionalKey}]};if(!this.publicAxios)throw Mt("publicAxios","Public Axios instance");const i=(await this.publicAxios.post("/api/asset/token-contract/FetchTokenClasses",n)).data;if(_t(i,"Failed to fetch token class from GalaChain"),null===i.Data||void 0===i.Data||0===i.Data.length)throw Kt(`Token not found on GalaChain: ${mr(t)}`,404);return i.Data[0]}catch(e){if(e instanceof gt)throw e;if(xt(e)&&404===e.response?.status)throw Kt("Token not found on GalaChain",404,Et(e)?e:void 0);if(Et(e)&&"Error"===e.name&&Ct(e).includes("status indicates failure"))throw Kt(Ct(e),400,Et(e)?e:void 0);const t=Ct(e);if(t.includes("Token not found"))throw e;throw Kt(`Failed to fetch token class from GalaChain: ${t}`,void 0,Et(e)?e:void 0)}}async fetchTokenClassesWithSupply(e){try{if(null==e||0===e.length)throw Mt("tokenClasses","Token classes array");const t={tokenClasses:e};if(!this.publicAxios)throw Mt("publicAxios","Public Axios instance");const n=(await this.publicAxios.post("/api/asset/token-contract/FetchTokenClassesWithSupply",t)).data;if(_t(n,"Failed to fetch token classes with supply from GalaChain"),!n.Data||0===n.Data.length)throw Kt("No token supply data found for requested token classes",404);return n.Data}catch(e){if(e instanceof gt)throw e;if(xt(e)&&404===e.response?.status)throw Kt("Token supply data not found on GalaChain",404,Et(e)?e:void 0);if(Et(e)&&"Error"===e.name&&Ct(e).includes("status indicates failure"))throw Kt(Ct(e),400,Et(e)?e:void 0);const t=Ct(e);if(t.includes("Token not found"))throw e;throw Kt(`Failed to fetch token classes with supply from GalaChain: ${t}`,void 0,Et(e)?e:void 0)}}}class Ic extends n.ChainCallDTO{constructor(e){super(),this.tokenInstances=e.tokenInstances,this.uniqueKey=e.uniqueKey,e.signedPayload&&(this.signature=e.signedPayload.signature,this.domain=e.signedPayload.domain,this.types=e.signedPayload.types,void 0!==e.signedPayload.prefix&&""!==e.signedPayload.prefix&&(this.prefix=e.signedPayload.prefix))}static fromTokens(e,t){const n=e.map(e=>{let t;if("string"==typeof e.tokenClassKey){t={...Oa(e.tokenClassKey),instance:"0"}}else t={collection:e.tokenClassKey.collection,category:e.tokenClassKey.category,type:e.tokenClassKey.type,additionalKey:e.tokenClassKey.additionalKey,instance:"0"};return{quantity:e.quantity,tokenInstanceKey:t}});return new Ic({tokenInstances:n,uniqueKey:t?.uniqueKey??gc()})}static fromTokenClassKey(e,t,n){return Ic.fromTokens([{tokenClassKey:t,quantity:e}],n)}static forGALA(e,t){return new Ic({tokenInstances:[{quantity:e,tokenInstanceKey:{collection:"GALA",category:"Unit",type:"none",additionalKey:"none",instance:"0"}}],uniqueKey:t?.uniqueKey??gc()})}getTokenClassKey(){if(0===this.tokenInstances.length)return;return pr(this.tokenInstances[0].tokenInstanceKey)}toSigningPayload(){return{tokenInstances:this.tokenInstances,uniqueKey:this.uniqueKey}}}class Nc extends n.ChainCallDTO{constructor(e){super(),this.from=e.from,this.to=e.to,this.quantity=e.quantity,this.tokenInstance=e.tokenInstance,this.uniqueKey=e.uniqueKey,e.signedPayload&&(this.signature=e.signedPayload.signature,this.domain=e.signedPayload.domain,this.types=e.signedPayload.types,void 0!==e.signedPayload.prefix&&""!==e.signedPayload.prefix&&(this.prefix=e.signedPayload.prefix))}static fromTokenClassKey(e,t,n,i,o){let r;if("string"==typeof i){r={...Oa(i),instance:"0"}}else r={collection:i.collection,category:i.category,type:i.type,additionalKey:i.additionalKey,instance:"0"};return new Nc({from:e,to:t,quantity:n,tokenInstance:r,uniqueKey:o??gc()})}static forGALA(e,t,n,i){return new Nc({from:e,to:t,quantity:n,tokenInstance:{collection:"GALA",category:"Unit",type:"none",additionalKey:"none",instance:"0"},uniqueKey:i??gc()})}getTokenClassKey(){return pr(this.tokenInstance)}toSigningPayload(){return{from:this.from,to:this.to,quantity:this.quantity,tokenInstance:this.tokenInstance,uniqueKey:this.uniqueKey}}}function Dc(e){if(null==e||"object"!=typeof e)return!1;const t=e;return Zn(t.amount)&&(void 0!==t.tokenId||Zn(t.tokenName))}var Pc;!function(e){e.TOKEN_NOT_FOUND="TOKEN_NOT_FOUND",e.INVALID_AMOUNT="INVALID_AMOUNT",e.INSUFFICIENT_BALANCE="INSUFFICIENT_BALANCE",e.SIGNATURE_FAILED="SIGNATURE_FAILED",e.NETWORK_ERROR="NETWORK_ERROR",e.WALLET_REQUIRED="WALLET_REQUIRED",e.VALIDATION_ERROR="VALIDATION_ERROR"}(Pc||(Pc={}));class xc extends Error{constructor(e,t,n){super(e),this.type=t,this.details=n,this.name="BurnError"}}class _c{static validateAmount(e){const t=bo(e);try{Ro(t,"amount")}catch(t){throw new bc(t.message,vc.INVALID_AMOUNT,{amount:e})}}static validateUniqueKey(e){if(!ei(e)&&Zn(e)){if(e.length>Dn.MAX_LENGTH)throw new gt(`Unique key too long. Maximum length: ${Dn.MAX_LENGTH}`);if(!Dn.PATTERN.test(e))throw new bc('Invalid unique key format. Must start with "galaswap-operation-" or "galaconnect-operation-"',vc.INVALID_AMOUNT,{uniqueKey:e})}}}const Rc="gala-transfer-successful",Fc="token-transfer-successful",Bc="token-locked-successfully",Oc="token-unlocked-successfully",Uc="transfer-successful-no-id",Lc=50;class Mc extends hi{constructor(e,t,n,i=!1){super(e,i),this.wallet=t,this.tokenResolver=n,this.signatureHelper=t?new Sc(t):void 0}async transferGala(e){if(this.validateTransferGalaData(e),!this.wallet||!this.signatureHelper)throw new bc("Wallet required for GALA transfer operations",vc.WALLET_REQUIRED);try{const t=Si(e.recipientAddress),n=Si(this.wallet.address),i=Nc.forGALA(n,t,e.amount,e.uniqueKey),o=await this.signatureHelper.signTransferToken(i.toSigningPayload()),r=new Nc({...i.toSigningPayload(),signedPayload:o}),s=await this.http.post("/api/asset/token-contract/TransferToken",r);if(null==s)throw new bc("No response from GalaChain transfer service",vc.NETWORK_ERROR);return this.extractTransactionIdFromResponse(s,"gala")}catch(t){throw this.handleTransferError(t,"GALA transfer failed",e)}}async transferToken(e){if(this.validateTransferTokenData(e),!this.wallet||!this.signatureHelper)throw new bc("Wallet required for token transfer operations",vc.WALLET_REQUIRED);try{const t=Si(e.to),n=Si(this.wallet.address);let i;if(null!==e.tokenId&&void 0!==e.tokenId)i=pa(e.tokenId),this.logger.debug("[DEBUG] Using provided tokenId:",e.tokenId),this.logger.debug("[DEBUG] Normalized Token Instance:",{collection:i.collection,category:i.category,type:i.type,instance:i.instance});else{if(null===e.tokenName||void 0===e.tokenName)throw new bc("Must provide either tokenId or tokenName for token identification",vc.TOKEN_NOT_FOUND);i=await this.resolveTokenInstance(e.tokenName)}const o=new Nc({from:n,to:t,quantity:e.amount,tokenInstance:i,uniqueKey:e.uniqueKey??gc()}),r=await this.signatureHelper.signTransferToken(o.toSigningPayload()),s=new Nc({...o.toSigningPayload(),signedPayload:r}),a=await this.http.post("/api/asset/token-contract/TransferToken",s);if(null==a)throw new bc("No response from GalaChain transfer service",vc.NETWORK_ERROR);return this.extractTransactionIdFromResponse(a,"token")}catch(t){throw this.handleTransferError(t,"Token transfer failed",e)}}async resolveTokenClassKey(e){try{const t=await this.tokenResolver.resolveTokenClassKey(e);return this.logger.debug(`[DEBUG] Token class key resolution for '${e}':`,{collection:t.collection,category:t.category,type:t.type}),t}catch(t){if(t instanceof bc)throw t;throw new bc(`Failed to resolve token class key for '${e}': ${Ct(t)}`,vc.TOKEN_NOT_FOUND,{tokenName:e})}}async burnTokens(e){if(this.validateBurnTokensData(e),!this.wallet||!this.signatureHelper)throw new xc("Wallet required for token burn operations",Pc.WALLET_REQUIRED);try{const t=[];for(const n of e.tokens){let e;if(null!==n.tokenId&&void 0!==n.tokenId)e=pa(n.tokenId),this.logger.debug("[DEBUG] Using provided tokenId:",n.tokenId);else{if(null===n.tokenName||void 0===n.tokenName)throw new xc("Must provide either tokenId or tokenName for token identification",Pc.TOKEN_NOT_FOUND);e=await this.resolveTokenInstance(n.tokenName)}t.push({quantity:n.amount,tokenInstanceKey:e})}const n=new Ic({tokenInstances:t,uniqueKey:e.uniqueKey??gc()}),i=await this.signatureHelper.signBurnTokens(n.toSigningPayload()),o=new Ic({...n.toSigningPayload(),signedPayload:i}),r=await this.http.post("/api/asset/token-contract/BurnTokens",o);if(null==r)throw new xc("No response from GalaChain burn service",Pc.NETWORK_ERROR);try{_t(r,"Token burn operation")}catch(e){throw new pt(Ct(e),500)}return this.extractBurnResult(r)}catch(t){throw this.handleBurnError(t,"Token burn failed",e)}}validateTransferGalaData(e){if(!function(e){if(null==e||"object"!=typeof e)return!1;const t=e;return Zn(t.recipientAddress)&&Zn(t.amount)&&(void 0===t.uniqueKey||"string"==typeof t.uniqueKey)}(e))throw new gt("Invalid GALA transfer data: missing required fields");if(!Ti(e.recipientAddress))throw new bc("Invalid recipient address format",vc.INVALID_RECIPIENT,{recipientAddress:e.recipientAddress});_c.validateAmount(e.amount),_c.validateUniqueKey(e.uniqueKey)}validateTransferTokenData(e){if(!function(e){if(null==e||"object"!=typeof e)return!1;const t=e;return Zn(t.to)&&Zn(t.amount)&&(void 0!==t.tokenId||Zn(t.tokenName))&&(void 0===t.uniqueKey||"string"==typeof t.uniqueKey)}(e))throw new gt("Invalid token transfer data: missing required fields");if(!Ti(e.to))throw new bc("Invalid recipient address format",vc.INVALID_RECIPIENT,{recipientAddress:e.to});if(!(null!==e.tokenId&&void 0!==e.tokenId||null!==e.tokenName&&void 0!==e.tokenName))throw new bc("Must provide either tokenId or tokenName for token identification",vc.TOKEN_NOT_FOUND);if(null!==e.tokenName&&void 0!==e.tokenName)try{si(e.tokenName,"tokenName")}catch{throw new bc("Invalid token name format",vc.TOKEN_NOT_FOUND,{tokenName:e.tokenName})}_c.validateAmount(e.amount),_c.validateUniqueKey(e.uniqueKey)}validateBurnTokensData(e){if(!function(e){if(null==e||"object"!=typeof e)return!1;const t=e;return Array.isArray(t.tokens)&&t.tokens.length>0&&t.tokens.every(Dc)&&(void 0===t.uniqueKey||"string"==typeof t.uniqueKey)&&(void 0===t.privateKey||"string"==typeof t.privateKey)}(e))throw new xc("Invalid burn data: missing required fields",Pc.VALIDATION_ERROR);if(e.tokens.length>Lc)throw new xc(`Batch size exceeds maximum limit of ${Lc} tokens per burn operation`,Pc.VALIDATION_ERROR);for(const t of e.tokens){if(!(null!==t.tokenId&&void 0!==t.tokenId||null!==t.tokenName&&void 0!==t.tokenName))throw new xc("Must provide either tokenId or tokenName for token identification",Pc.TOKEN_NOT_FOUND);const e=bo(t.amount);try{xo(e)}catch{throw new xc("Burn amount must be a positive number",Pc.INVALID_AMOUNT,{amount:t.amount})}}}async resolveTokenInstance(e){try{const t=await this.tokenResolver.resolveTokenToVault(e);if(null!=t){const n=ya(t);return this.logger.debug(`[DEBUG] Token resolution for '${e}' (launchpad):`,{collection:n.collection,category:n.category,type:n.type,instance:n.instance}),n}const n={collection:cn(e),category:"Unit",type:"none",additionalKey:"none",instance:"0"};return this.logger.debug("[DEBUG] Token resolution (standard format)",{tokenName:e,tokenInstance:{collection:n.collection,category:n.category,type:n.type}}),n}catch(t){if(t instanceof bc)throw t;throw new bc(`Failed to resolve token '${e}': ${Ct(t)}`,vc.TOKEN_NOT_FOUND,{tokenName:e})}}extractTransactionIdFromResponse(e,t){if(null!=e&&"object"==typeof e){if("Status"in e&&"Data"in e)try{_t(e,"Extract transaction ID");const n=e;if(Array.isArray(n.Data)&&n.Data.length>0)switch(t){case"gala":return Rc;case"token":return Fc;case"lock":return Bc;case"unlock":return Oc}return Uc}catch{}if("transactionId"in e&&"string"==typeof e.transactionId&&e.transactionId.length>0)return e.transactionId}throw new bc("Operation succeeded but transaction ID could not be extracted",vc.NETWORK_ERROR)}extractBurnResult(e){const t=[];if(null!==e.Data&&void 0!==e.Data&&Array.isArray(e.Data))for(const n of e.Data)t.push({collection:n.collection??"",category:n.category??"",type:n.type??"",additionalKey:n.additionalKey??"",instance:n.instance??"0",quantity:n.quantity??"0",burnedBy:n.burnedBy??""});let n;if(null!==e.Data&&void 0!==e.Data&&e.Data.length>0){const t=e.Data[0];n=t.transactionId??t.txnId??t.TxnId??t.id??void 0}return{...void 0!==n&&{transactionId:n},burned:t}}handleTransferError(e,t,n){if(e instanceof bc)return e;if(e instanceof gt)return new bc(Ct(e),vc.INVALID_AMOUNT);if(xt(e)&&e.response){const t=e.response.status,i=e.response.data;if(400===t){const e="string"==typeof i?.message?i.message:void 0;return new bc(e??"Invalid transfer request",vc.INVALID_AMOUNT)}if(403===t)return new bc("Insufficient balance for transfer",vc.INSUFFICIENT_BALANCE);if(404===t){const e={};return"tokenName"in n&&(e.tokenName=n.tokenName),new bc("Token not found",vc.TOKEN_NOT_FOUND,e)}}if("object"==typeof e&&null!==e&&"code"in e&&("ECONNABORTED"===Pt(e)||"ETIMEDOUT"===Pt(e)))return new bc("Transfer request timed out",vc.NETWORK_ERROR);const i=""!==Ct(e)?Ct(e):t;return new bc(i,vc.NETWORK_ERROR)}handleBurnError(e,t,n){if(e instanceof xc)return e;let i=t,o=Pc.NETWORK_ERROR;if(xt(e)){const n=e.response?.data;if("object"==typeof n&&"string"==typeof n.Message&&n.Message.length>0){i=`${t}: ${n.Message}`;const e=n.Message.toLowerCase();e.includes("insufficient")||e.includes("balance")?o=Pc.INSUFFICIENT_BALANCE:(e.includes("not found")||e.includes("token"))&&(o=Pc.TOKEN_NOT_FOUND)}}else Et(e)&&(i=`${t}: ${Ct(e)}`);const r={};return void 0!==n?.tokens?.[0]?.tokenName&&(r.tokenName=n.tokens[0].tokenName),void 0!==n?.tokens?.[0]?.amount&&(r.amount=n.tokens[0].amount),new xc(i,o,Object.keys(r).length>0?r:void 0)}}class $c extends hi{constructor(e,t,n,i=!1,o){super(e,i),this.balanceService=new hc(e,i),this.tokenService=new Cc(e,i,o),this.lockService=new Ec(e,t,n,i),this.transferService=new Mc(e,t,n,i)}async fetchPoolDetails(e){this.validateFetchPoolDetailsData(e);const t=await this.http.post("/api/asset/launchpad-contract/FetchSaleDetails",e);ar(()=>_t(t,"Failed to fetch pool details"),"Failed to fetch pool details",this.logger,e=>{throw Kt(Ct(e),500)});const n=t.Data.reverseBondingCurveConfiguration,i=n?.minFeePortion??"0",o=n?.maxFeePortion??"0",r=!Io(i)||!Io(o),s=t.Data;return s.reverseBondingCurveMinFeePortion=i,s.reverseBondingCurveMaxFeePortion=o,s.hasReverseBondingCurveFee=r,s.isGraduated="Finished"===t.Data.saleStatus,delete s.reverseBondingCurveConfiguration,t}async fetchLaunchTokenFee(){const e=await this.http.post("/api/asset/launchpad-contract/FetchLaunchpadFeeAmount",{});return ar(()=>_t(e,"Failed to fetch launch token fee"),"Failed to fetch launch token fee",this.logger,e=>{throw Kt(Ct(e),500)}),e.Data.feeAmount}validateFetchPoolDetailsData(e){if(!ko(e))throw Mt("data","Fetch pool details data");if("string"!=typeof e.vaultAddress||""===e.vaultAddress)throw Mt("vaultAddress","Vault address");if(!e.vaultAddress.startsWith("service|Token$Unit$"))throw new gt("Vault address must be in service format: service|Token$Unit$...","vaultAddress","INVALID_VAULT_ADDRESS")}async fetchGalaBalance(e){return this.balanceService.fetchGalaBalance(e)}async fetchTokenBalance(e,t=!1){return this.balanceService.fetchTokenBalance(e,t)}async fetchTokenClassFromChain(e){return this.tokenService.fetchTokenClassFromChain(e)}async fetchTokenClassesWithSupply(e){return this.tokenService.fetchTokenClassesWithSupply(e)}async transferGala(e){return this.transferService.transferGala(e)}async transferToken(e){return this.transferService.transferToken(e)}async resolveTokenClassKey(e){return this.transferService.resolveTokenClassKey(e)}async lockTokens(e){return this.lockService.lockTokens(e)}async unlockTokens(e){return this.lockService.unlockTokens(e)}async burnTokens(e){return this.transferService.burnTokens(e)}}class Kc{constructor(e={}){this.attempts=0,this.config={maxAttempts:e.maxAttempts??5,baseDelayMs:e.baseDelayMs??2e3,useExponentialBackoff:e.useExponentialBackoff??!1,maxDelayMs:e.maxDelayMs??3e4,backoffMultiplier:e.backoffMultiplier??2},this.currentDelayMs=this.config.baseDelayMs}shouldRetry(){return this.attempts<this.config.maxAttempts}getNextDelay(){return this.currentDelayMs}recordAttempt(){this.attempts++,this.config.useExponentialBackoff&&(this.currentDelayMs=Math.min(this.currentDelayMs*this.config.backoffMultiplier,this.config.maxDelayMs))}reset(){this.attempts=0,this.currentDelayMs=this.config.baseDelayMs}getAttempts(){return this.attempts}getMaxAttempts(){return this.config.maxAttempts}isExhausted(){return this.attempts>=this.config.maxAttempts}getState(){return{attempts:this.attempts,maxAttempts:this.config.maxAttempts,canRetry:this.shouldRetry(),nextDelayMs:this.currentDelayMs,exhausted:this.isExhausted()}}getStatusString(){return`${this.attempts}/${this.config.maxAttempts} attempts`}}class qc extends Error{constructor(e,t,n){super(t),this.name="GdexStreamError",this.code=e,void 0!==n&&(this.data=n)}}class Gc extends gi{constructor(e={}){super(),this.nextRequestId=0,this.pending=new Map,this.subscriptionsByServerId=new Map,this.activeSubscriptions=new Set,this.intentionalClose=!1,this.reconnecting=!1,this.url=e.url??gr("PROD").gdexWebSocketUrl,this.requestTimeoutMs=e.requestTimeoutMs??15e3,this.reconnectionManager=new Kc({maxAttempts:e.reconnectAttempts??5,baseDelayMs:e.reconnectDelayMs??2e3,useExponentialBackoff:!0});const t=e.webSocketImpl??globalThis.WebSocket;if("function"!=typeof t)throw new Error('GdexStreamService requires a standards-compatible WebSocket constructor. Node.js versions before 22 must provide one with config.webSocketImpl (for example, from the "ws" package).');this.webSocketConstructor=t}connect(){return this.isConnected()?Promise.resolve():(this.connectPromise||(this.intentionalClose=!1,this.clearReconnectTimer(),this.connectPromise=this.openSocket()),this.connectPromise)}disconnect(){this.intentionalClose=!0,this.reconnecting=!1,this.clearReconnectTimer(),this.rejectPending(new Error("GDEX stream disconnected"));const e=this.socket;this.socket=void 0,this.connectPromise=void 0,e?.close(1e3,"client disconnect")}isConnected(){return 1===this.socket?.readyState}request(e,t){if(!this.isConnected()||!this.socket)return Promise.reject(new Error("GDEX stream is not connected. Call connect() first."));const n=++this.nextRequestId,i={jsonrpc:"2.0",id:n,method:e};return void 0!==t&&(i.params=t),new Promise((t,o)=>{const r=setTimeout(()=>{this.pending.delete(n),o(new Error(`GDEX request "${e}" timed out after ${this.requestTimeoutMs}ms`))},this.requestTimeoutMs);this.pending.set(n,{resolve:e=>t(e),reject:o,timeout:r});try{this.socket?.send(JSON.stringify(i))}catch(e){clearTimeout(r),this.pending.delete(n),o(e instanceof Error?e:new Error(String(e)))}})}serverInfo(){return this.request("gdex_serverInfo")}ping(){return this.request("gdex_ping")}getPool(e){return this.request("gdex_getPool",e)}getBalance(e,t){return this.request("gdex_getBalance",void 0===t?{owner:e}:{owner:e,tokenClassKey:t})}getPositions(e){return this.request("gdex_getPositions",e)}getBlockHeight(){return this.request("gdex_getBlockHeight")}quote(e){return this.request("gdex_quote",e)}getToken(e){return this.request("gdex_getToken",{tokenClassKey:e})}subscribeSwaps(e,t={}){return this.subscribe("swap",e,t)}subscribePool(e,t,n={}){return this.subscribe("pool",t,{...e,...n})}subscribeBalances(e,t,n={}){return this.subscribe("balance",t,{owner:e,...n})}subscribePoolCreated(e,t={}){return this.subscribe("poolCreated",e,t)}subscribeBlocks(e,t={}){return this.subscribe("blocks",e,t)}openSocket(){return new Promise((e,t)=>{let n=!1;const i=new this.webSocketConstructor(this.url,"gdex.jsonrpc.v1");this.socket=i,i.onopen=()=>{this.socket===i&&(n=!0,this.connectPromise=void 0,this.reconnecting||this.reconnectionManager.reset(),this.logger.info("Connected to GDEX stream"),e())},i.onmessage=e=>this.handleMessage(e.data),i.onerror=()=>{n||t(new Error(`Failed to connect to GDEX stream at ${this.url}`))},i.onclose=e=>{this.socket===i&&(this.socket=void 0,this.connectPromise=void 0,n||t(new Error(`GDEX stream closed before connecting (code ${e.code??0})`)),this.rejectPending(new Error(`GDEX stream connection closed (code ${e.code??0})`)),this.intentionalClose||this.reconnecting||this.startReconnectLoop())}})}handleMessage(e){if("string"!=typeof e)return void this.logger.warn("Ignoring non-text GDEX WebSocket frame");let t;try{t=JSON.parse(e)}catch{return void this.logger.warn("Ignoring invalid JSON from GDEX stream")}if("number"==typeof t.id){const e=this.pending.get(t.id);if(!e)return;if(clearTimeout(e.timeout),this.pending.delete(t.id),t.error){const n="number"==typeof t.error.code?t.error.code:-32603,i="string"==typeof t.error.message?t.error.message:"GDEX request failed";e.reject(new qc(n,i,t.error.data))}else e.resolve(t.result);return}if("gdex_subscription"!==t.method||!this.isRecord(t.params))return;const n=t.params.subscription,i=t.params.result;if("string"!=typeof n||!this.isRecord(i))return;const o=this.subscriptionsByServerId.get(n);if(o?.active)try{o.callback(i)}catch(e){this.logger.error("GDEX subscription callback failed",e)}}async subscribe(e,t,n){const i={channel:e,...n},o=await this.request("gdex_subscribe",i);let r;const s={subscriptionId:o.subscriptionId,unsubscribe:async()=>this.unsubscribe(r)};return r={serverId:o.subscriptionId,params:i,callback:t,handle:s,active:!0},this.activeSubscriptions.add(r),this.subscriptionsByServerId.set(r.serverId,r),s}async unsubscribe(e){e.active&&(e.active=!1,this.activeSubscriptions.delete(e),this.subscriptionsByServerId.delete(e.serverId),this.isConnected()&&await this.request("gdex_unsubscribe",{subscriptionId:e.serverId}))}startReconnectLoop(){this.reconnecting||this.intentionalClose||(this.reconnecting=!0,this.reconnectLoop())}async reconnectLoop(){for(;!this.intentionalClose&&this.reconnectionManager.shouldRetry();){const e=this.reconnectionManager.getNextDelay();if(this.reconnectionManager.recordAttempt(),this.logger.warn(`GDEX reconnect attempt ${this.reconnectionManager.getAttempts()}/${this.reconnectionManager.getMaxAttempts()} in ${e}ms`),await this.waitForReconnectDelay(e),this.intentionalClose)break;try{return await this.openSocket(),await this.resubscribeAll(),this.reconnectionManager.reset(),void(this.reconnecting=!1)}catch(e){this.logger.warn(`GDEX reconnect failed: ${e instanceof Error?e.message:String(e)}`)}}this.reconnecting=!1,this.intentionalClose||this.logger.error("GDEX reconnection attempts exhausted")}async resubscribeAll(){this.subscriptionsByServerId.clear();for(const e of this.activeSubscriptions){if(!e.active)continue;const t={...e.params,snapshot:!0},n=await this.resubscribeWithRateLimitRetry(t);e.active?(e.serverId=n.subscriptionId,e.handle.subscriptionId=n.subscriptionId,this.subscriptionsByServerId.set(n.subscriptionId,e)):await this.request("gdex_unsubscribe",{subscriptionId:n.subscriptionId})}}async resubscribeWithRateLimitRetry(e){for(let t=0;;t++)try{return await this.request("gdex_subscribe",e)}catch(e){if(!(e instanceof qc)||-32003!==e.code||t>=5)throw e;const n=this.readRetryAfterMs(e.data);this.logger.warn(`GDEX resubscribe rate limited; retrying in ${n}ms`),await new Promise(e=>setTimeout(e,n))}}waitForReconnectDelay(e){return new Promise(t=>{this.reconnectTimer=setTimeout(()=>{this.reconnectTimer=void 0,this.reconnectDelayResolve=void 0,t()},e),this.reconnectDelayResolve=t})}clearReconnectTimer(){void 0!==this.reconnectTimer&&clearTimeout(this.reconnectTimer),this.reconnectTimer=void 0;const e=this.reconnectDelayResolve;this.reconnectDelayResolve=void 0,e?.()}rejectPending(e){for(const t of this.pending.values())clearTimeout(t.timeout),t.reject(e);this.pending.clear()}readRetryAfterMs(e){return!this.isRecord(e)||"number"!=typeof e.retryAfterMs||e.retryAfterMs<0?1e3:e.retryAfterMs}isRecord(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}}function Wc(e,t=3e4){return u.create({baseURL:e,timeout:t,headers:{"Content-Type":"application/json"}})}class Hc{static createClient(e,t=6e4){return Wc(e,t)}}class zc{constructor(e){this.http=e}async getUserAssets(e,t=20,n=0){return sr(async()=>{if(!Zn(e))throw Mt("walletAddress","Wallet address");const i=Math.max(1,Math.floor(n/t)+1),o={};o.address=e,o.page=i,o.pageSize=t;const r=await this.http.get("/user/assets",o);if("object"!=typeof r||null===r)throw new ot(500,"Invalid response format: not an object");const s=en(r);if(!s||"object"!=typeof s)throw new ot(500,"Invalid response format: missing data wrapper");const a=s.token;if(!Array.isArray(a))throw new ot(500,"Invalid response format: token array must be an array");const c=[];for(const e of a){if("object"!=typeof e||null===e)throw new ot(500,"Invalid asset in response: asset must be an object");const t=e;if(!Zn(t.symbol)||!Zn(t.name))throw new ot(500,"Invalid asset in response: missing symbol or name",t);const n="number"==typeof t.decimals?t.decimals:"string"==typeof t.decimals?parseInt(t.decimals,10):void 0;if("number"!=typeof n||isNaN(n))throw new ot(500,"Invalid asset in response: decimals must be a number",t);const i={tokenId:"string"==typeof t.compositeKey&&t.compositeKey.length>0?t.compositeKey:`${t.symbol}$Unit$none$none`,symbol:t.symbol,name:t.name,decimals:n,balance:"string"==typeof t.quantity&&t.quantity.length>0?t.quantity:"0"};"string"==typeof t.image&&t.image.length>0&&(i.imageUrl=t.image),"boolean"==typeof t.verify&&t.verify&&(i.verified=t.verify),c.push(i)}const l={tokens:c,count:"number"==typeof s.count?s.count:c.length};return void 0!==s.totalValue&&(l.totalValue=String(s.totalValue)),l},`getUserAssets(${e})`,void 0,t=>{throw this.handleError(t,`getUserAssets(${e})`)})}async fetchTokenList(e={}){return sr(async()=>{const{address:t,search:n,page:i=1,limit:o=20}=e,r={page:i,limit:Zs(o,1,20)};"string"==typeof t&&t.length>0&&(r.address=t),"string"==typeof n&&n.length>0&&(r.search=n);const s=await this.http.get("/user/token-list",r);if("object"!=typeof s||null===s)throw new ot(500,"Invalid response format: not an object");const a=en(s);if(!a||"object"!=typeof a)throw new ot(500,"Invalid response format: missing data wrapper");const c=a.token;if(!Array.isArray(c))throw new ot(500,"Invalid response format: token array must be an array");const l=[];for(const e of c){if("object"!=typeof e||null===e)throw new ot(500,"Invalid token in response: must be an object");const t=e;if(!Zn(t.symbol))throw new ot(500,'Invalid token in response: missing required field "symbol"',{token:t});if(!Zn(t.name))throw new ot(500,'Invalid token in response: missing required field "name"',{token:t});const n=t.decimals;if("string"!=typeof n&&"number"!=typeof n)throw new ot(500,'Invalid token in response: missing required field "decimals"',{token:t});if(!Zn(t.compositeKey))throw new ot(500,'Invalid token in response: missing required field "compositeKey"',{token:t});l.push({image:"string"==typeof t.image?t.image:"",name:t.name,symbol:t.symbol,decimals:String(n),description:"string"==typeof t.description?t.description:"",verify:"boolean"==typeof t.verify&&t.verify,compositeKey:t.compositeKey,additionalKey:"string"==typeof t.additionalKey?t.additionalKey:"",category:"string"==typeof t.category?t.category:"",type:"string"==typeof t.type?t.type:"",collection:"string"==typeof t.collection?t.collection:"",subscribePrice:"boolean"==typeof t.subscribePrice&&t.subscribePrice,quantity:"string"==typeof t.quantity?t.quantity:"0"})}return{token:l,count:"number"==typeof a.count?a.count:l.length}},"fetchTokenList",void 0,e=>{throw this.handleError(e,"fetchTokenList")})}handleError(e,t){if(e instanceof ot)return e;if(xt(e)){const n=e.response?.status??500,i=e.response?.data,o=i?.message??i?.Message??Ct(e),r=i?.Data??i?.data??void 0;return new ot(n,`${t}: ${String(o)}`,r)}return new ot(500,`${t}: ${Ct(e)}`)}}class jc{constructor(e){this.client=Wc(e.baseUrl,e.timeout??3e4)}async getPoolData(e){return sr(async()=>{this.validateTokenObjects(e.token0,e.token1,"getPoolData");const t=await this.client.get("/v1/trade/pool",{params:this.poolParams(e)}),n=this.unwrapEnvelope(t);this.validateResponse(n);const i=n.Data;if(!function(e){if("object"!=typeof e||null===e)return!1;const t=e;return"string"==typeof t.token0&&"string"==typeof t.token1&&rt(t.token0ClassKey)&&rt(t.token1ClassKey)&&"number"==typeof t.fee&&"number"==typeof t.tickSpacing&&"string"==typeof t.liquidity&&"string"==typeof t.sqrtPrice&&"number"==typeof t.tick&&"string"==typeof t.feeGrowthGlobal0&&"string"==typeof t.feeGrowthGlobal1}(i))throw new ot(t.status,"Invalid pool data response format",i);return i},"DexBackendTradeClient.getPoolData",void 0,e=>{throw this.handleError(e,"pool")})}async getSlot0(e){return sr(async()=>{this.validateTokenObjects(e.token0,e.token1,"getSlot0");const t=await this.client.get("/v1/trade/slot0",{params:this.poolParams(e)}),n=this.unwrapEnvelope(t);this.validateResponse(n);const i=n.Data;if(!function(e){if("object"!=typeof e||null===e)return!1;const t=e;return"string"==typeof t.sqrtPrice&&"number"==typeof t.tick&&"string"==typeof t.liquidity}(i))throw new ot(t.status,"Invalid slot0 data response format",i);return i},"DexBackendTradeClient.getSlot0",void 0,e=>{throw this.handleError(e,"pool")})}async getPositions(e){return sr(async()=>{const t=this.positionParams(e),n=await this.client.get("/v1/trade/position",{params:t}),i=this.unwrapEnvelope(n);this.validateResponse(i);const o=this.normalizePositions(i.Data,n.status);return{positions:o,count:o.length}},"DexBackendTradeClient.getPositions",void 0,e=>{throw this.handleError(e,"position")})}async getPositionById(e,t,n,i,o,r,s){return sr(async()=>{if(void 0===t||void 0===n||void 0===i||void 0===o||void 0===r)throw new ot(404,`Position not found: ${e}`);const a=this.toTokenClassKey(t),c=this.toTokenClassKey(n),l={token0:pr(a),token1:pr(c),fee:i,tickLower:o,tickUpper:r,owner:e};void 0!==s&&(l.positionId=s);const d=await this.client.get("/v1/trade/position",{params:this.toSearchParams(l)}),u=this.unwrapEnvelope(d);this.validateResponse(u);const h=this.normalizePositions(u.Data,d.status);if(0===h.length)throw new ot(404,`Position not found: ${e}`);const g={Data:h[0],Status:d.status};return void 0!==u.Message&&(g.Message=u.Message),g},"DexBackendTradeClient.getPositionById",void 0,e=>{throw this.handleError(e,"position")})}async getRemoveLiquidityEstimation(e){return sr(async()=>{const t=await this.client.get("/v1/trade/remove-liq-estimate",{params:this.toSearchParams({token0:pr(e.token0),token1:pr(e.token1),fee:e.fee,tickLower:e.tickLower,tickUpper:e.tickUpper,amount:e.amount,owner:e.owner})}),n=this.unwrapEnvelope(t);this.validateResponse(n);const i=n.Data;if("string"!=typeof i.amount0||"string"!=typeof i.amount1)throw new ot(t.status,"Invalid removal estimation response format",i);return i},"DexBackendTradeClient.getRemoveLiquidityEstimation",void 0,e=>{throw this.handleError(e,"position")})}async getUserPositions(e,t,n){return sr(async()=>{const i={user:e,limit:Math.max(1,Math.min(10,t))};void 0!==n&&""!==n&&(i.bookMark=n);const o=await this.client.get("/v1/trade/positions",{params:this.toSearchParams(i)}),r=this.unwrapEnvelope(o);this.validateResponse(r);const s=this.asRecord(r.Data),a=this.normalizePositions(s.positions??[],o.status),c={positions:a,count:a.length};return"string"==typeof s.nextBookMark&&(c.nextBookMark=s.nextBookMark),c},"DexBackendTradeClient.getUserPositions",void 0,e=>{throw this.handleError(e,"position")})}poolParams(e){return this.toSearchParams({token0:pr(e.token0),token1:pr(e.token1),fee:e.fee})}positionParams(e){if(void 0===e.token0||void 0===e.token1||void 0===e.fee||void 0===e.tickLower||void 0===e.tickUpper||void 0===e.owner)throw new ot(400,"Position lookup requires owner, token0, token1, fee, tickLower, and tickUpper");return this.toSearchParams({token0:pr(e.token0),token1:pr(e.token1),fee:e.fee,tickLower:e.tickLower,tickUpper:e.tickUpper,owner:e.owner})}toSearchParams(e){const t=new URLSearchParams;for(const[n,i]of Object.entries(e))t.set(n,String(i));return t}normalizePositions(e,t){const n=this.asRecord(e);let i;i=Array.isArray(e)?e:Array.isArray(n.positions)?n.positions:"positionId"in n?[n]:[];const o=[];for(const e of i){if(!st(e))throw new ot(t,"Invalid position in response",this.asRecord(e));o.push(e)}return o}unwrapEnvelope(e){const t=e.data;if(t.error||void 0===t.data)throw new ot(t.status,t.message??"Trade backend error");return t.data}validateResponse(e){const t=e;if(null==t||"object"!=typeof t)throw new ot(500,"Invalid response format: not an object");if(!("Data"in t)||!("Status"in t))throw new ot(500,"Invalid response format: missing Data or Status field");if(e.Status>=400)throw new ot(e.Status,e.Message??"Gateway error",e.Data)}validateTokenObjects(e,t,n){if("string"==typeof e||"string"==typeof t)throw new gt(`Defi backend ${n} requires TokenClassKey objects, not strings.`,"token","INVALID_TOKEN_FORMAT")}toTokenClassKey(e){if("string"==typeof e)return{collection:e,category:"Unit",type:"none",additionalKey:"none"};const{collection:t,category:n,type:i,additionalKey:o}=e;if("string"!=typeof t||"string"!=typeof n||"string"!=typeof i||"string"!=typeof o)throw new gt("Invalid TokenClassKey object","token","INVALID_TOKEN_FORMAT");return{collection:t,category:n,type:i,additionalKey:o}}asRecord(e){return"object"==typeof e&&null!==e?e:{}}handleError(e,t){return Nt(e,t)}}const Vc=10;class Xc extends gi{constructor(e,t,n){if(super(!1),this.pricingConcurrency=5,this.tokenConverter=new Fa,this.webSocketService=t,this.dexQuoteService=n,this.getWalletAddress=e.getWalletAddress,this.bundlerBaseUrl=e.bundlerBaseUrl,this.privateKey=e.privateKey,void 0===e.bundlerBaseUrl||null===e.bundlerBaseUrl||""===e.bundlerBaseUrl||void 0===e.dexBackendBaseUrl||null===e.dexBackendBaseUrl||""===e.dexBackendBaseUrl||void 0===e.dexBackendHttp||null===e.dexBackendHttp)throw new ft("GSwapService requires explicit bundlerBaseUrl, dexBackendBaseUrl, and dexBackendHttp configuration. These must be provided by LaunchpadSDK to ensure environment alignment.","gswapConfig");try{this.tradeClient=new jc({baseUrl:e.dexBackendBaseUrl,timeout:3e4}),this.dexBackendClient=new zc(e.dexBackendHttp),this.logger.debug("HTTP clients initialized successfully",{dexBackendUrl:e.dexBackendBaseUrl})}catch(e){throw this.logger.error("Failed to initialize HTTP clients",e),new ft("Failed to initialize GSwapService HTTP clients","httpClients")}}setPricingConcurrency(e){if(e<1)throw zt("pricingConcurrency",1,e,"Pricing concurrency");e>100&&this.logger.warn("Pricing concurrency > 100 may cause performance issues",{concurrency:e}),this.pricingConcurrency=e,this.logger.debug("Updated pricing concurrency",{concurrency:this.pricingConcurrency})}async getSwapQuoteExactInput(e){try{if(bo(e.amount).isLessThanOrEqualTo(0))throw new kt("Amount must be greater than zero",{amount:e.amount,fromToken:e.fromToken,toToken:e.toToken});if(!this.dexQuoteService)throw new kt("DexQuoteService not configured - cannot provide quotes",{fromToken:e.fromToken,toToken:e.toToken});this.logger.debug("Getting swap quote for exact input",{fromToken:e.fromToken,toToken:e.toToken,amount:e.amount});const t=this.tokenConverter.toLaunchpadFormat(e.fromToken),n=this.tokenConverter.toLaunchpadFormat(e.toToken),[i,o]=t<n?[t,n]:[n,t],r=[3e3,500,1e4];let s;for(const a of r)try{const r=await this.dexQuoteService.fetchCompositePoolData({token0:i,token1:o,fee:a}),s=await this.dexQuoteService.calculateDexPoolQuoteExactAmount({compositePoolData:r,fromToken:t,toToken:n,amount:e.amount}),c=bo(s.currentSqrtPrice),l=bo(s.newSqrtPrice),d=c.gt(l)?c.minus(l).dividedBy(c):bo(0),u=bo(s.amount0),h=bo(s.amount1),g=No(u),m=No(h);this.logger.debug("=== AMOUNT SELECTION RAW DATA ===",{"quoteResult.amount0":s.amount0,"quoteResult.amount1":s.amount1,"amount0BN.isNegative()":g,"amount1BN.isNegative()":m});const p=g?u:h;this.logger.debug("=== AMOUNT SELECTION RESULT ===",{selectedFromAmount0:g,selectedAmount:p.toFixed(),selectedAmountAbs:p.absoluteValue().toFixed()});const f=p.absoluteValue().toFixed();return{fromToken:e.fromToken,toToken:e.toToken,inputAmount:e.amount,estimatedOutput:f,feeTier:a,priceImpact:d.toFixed(),executionPrice:this.calculateExecutionPrice(e.amount,f),currentSqrtPrice:s.currentSqrtPrice,newSqrtPrice:s.newSqrtPrice}}catch(e){s=e,this.logger.debug("DexQuoteService failed for fee tier, trying next",{feeTier:a,error:Et(e)?e.message:"Unknown error"})}throw s??new kt("No available fee tiers for quote",{feeTiers:r,fromToken:e.fromToken,toToken:e.toToken})}catch(e){this.handleGSwapError("Failed to get swap quote for exact input",kt,e)}}async getSwapQuoteExactOutput(e){try{if(bo(e.amount).isLessThanOrEqualTo(0))throw new kt("Amount must be greater than zero",{amount:e.amount,fromToken:e.fromToken,toToken:e.toToken});if(!this.dexQuoteService)throw new kt("DexQuoteService not configured - cannot provide quotes",{fromToken:e.fromToken,toToken:e.toToken});this.logger.debug("Getting swap quote for exact output",{fromToken:e.fromToken,toToken:e.toToken,amount:e.amount});const t=this.tokenConverter.toLaunchpadFormat(e.fromToken),n=this.tokenConverter.toLaunchpadFormat(e.toToken),[i,o]=t<n?[t,n]:[n,t],r=[3e3,500,1e4];let s;for(const a of r)try{const r=await this.dexQuoteService.fetchCompositePoolData({token0:i,token1:o,fee:a}),s=await this.dexQuoteService.calculateDexPoolQuoteExactAmount({compositePoolData:r,fromToken:t,toToken:n,amount:e.amount}),c=bo(s.currentSqrtPrice),l=bo(s.newSqrtPrice),d=c.gt(l)?c.minus(l).dividedBy(c):bo(0),u=r.pool.token0,h="string"==typeof u?Cs(u).collection:"object"==typeof u&&null!==u&&"tokenName"in u?u.tokenName:String(u),g=Cs(n).collection===h?s.amount1:s.amount0;return{fromToken:e.fromToken,toToken:e.toToken,inputAmount:g,estimatedOutput:e.amount,feeTier:a,priceImpact:d.toFixed(),executionPrice:this.calculateExecutionPrice(g,e.amount),currentSqrtPrice:s.currentSqrtPrice,newSqrtPrice:s.newSqrtPrice}}catch(e){s=e,this.logger.debug("DexQuoteService failed for fee tier, trying next",{feeTier:a,error:Et(e)?e.message:"Unknown error"})}throw s??new kt("No available fee tiers for quote",{feeTiers:r,fromToken:e.fromToken,toToken:e.toToken})}catch(e){this.handleGSwapError("Failed to get swap quote for exact output",kt,e)}}async executeSwap(e){try{if(void 0===this.privateKey||null===this.privateKey||""===this.privateKey)throw new ft("GSwapService not initialized with signing capability (privateKey required)","privateKey");this.logger.debug("Executing swap",{fromToken:e.fromToken,toToken:e.toToken,inputAmount:e.inputAmount});const{gswapToken0:t,gswapToken1:n}=this.convertTokenPair(e.fromToken,e.toToken),i=function(e,t=.01){const n=bo(e),i=new o(1).minus(t);return n.multipliedBy(i)}(e.estimatedOutput,e.slippageTolerance??.01),r=this.getWalletAddress();if(null==r||""===r)throw new gt("Wallet address required for swap execution","walletAddress",at);let s;try{const t=await this.getSwapQuoteExactInput({fromToken:e.fromToken,toToken:e.toToken,amount:e.inputAmount});s=t.currentSqrtPrice,this.logger.debug("Quote refetch successful - extracted sqrtPrices",{currentSqrtPrice:s,newSqrtPrice:t.newSqrtPrice,feeTier:t.feeTier})}catch(t){this.logger.debug("Could not re-fetch quote for sqrtPrice, using default",{fromToken:e.fromToken,toToken:e.toToken,error:Ct(t)})}const a={fromToken:t,toToken:n,inputAmount:e.inputAmount,minOutput:i.toFixed(),feeTier:e.feeTier,walletAddress:r,slippageTolerance:e.slippageTolerance??.01,...!ei(s)&&{currentSqrtPrice:s}},c=await this.sendSwapToBundler(a);this.logger.debug("Swap submitted, monitoring transaction",{transactionId:c,fromToken:e.fromToken,toToken:e.toToken}),await this.ensureWebSocketConnected();const l=await this.webSocketService.waitForTransaction(c);return{transactionId:l.transactionId,status:l.status,fromToken:e.fromToken,toToken:e.toToken,inputAmount:e.inputAmount,outputAmount:e.estimatedOutput,feeTier:e.feeTier,slippageTolerance:e.slippageTolerance??.01,timestamp:new Date(l.timestamp),wait:async e=>{await this.webSocketService.waitForTransaction(c)}}}catch(e){const t=e;this.handleGSwapError("Failed to execute swap",vt,e,{transactionHash:t?.txHash})}}async getUserAssets(e,t=1,n=20){return sr(async()=>{if(!Ti(e))throw new bt($t("walletAddress","a valid address (0x..., eth|..., or client|...)").message,new Error("INVALID_ADDRESS_FORMAT"),e,"INVALID_ADDRESS");this.logger.debug("Fetching user assets",{walletAddress:e,page:t,limit:n});return(await this.dexBackendClient.fetchTokenList({address:e,page:t,limit:n})).token.filter(e=>"0"!==e.quantity).map(e=>this.transformRawTokenToUserAsset(e)).filter(e=>null!==e)},"Failed to fetch user assets",this.logger,this.createGSwapErrorHandler(bt,{walletAddress:e,page:t,limit:n}))}async getAllUserAssets(e){return sr(async()=>{if(!Ti(e))throw new bt($t("walletAddress","a valid address (0x..., eth|..., or client|...)").message,new Error("INVALID_ADDRESS_FORMAT"),e,"INVALID_ADDRESS");this.logger.debug("Fetching all user assets (auto-paginated with optimization)",{walletAddress:e});let t=!1;const n=await ma(async(n,i)=>{const o=await this.dexBackendClient.fetchTokenList({address:e,page:n,limit:i}),r=[];for(const e of o.token){if("0"===e.quantity){t=!0;break}const n=this.transformRawTokenToUserAsset(e);n&&r.push(n)}return{items:r,page:n,limit:i,total:r.length,totalPages:1,hasNext:!t&&o.token.length===i,hasPrevious:n>1}},{maxPages:20,pageSize:20,logger:this.logger});return this.logger.debug("Fetched all user assets",{walletAddress:e,totalAssets:n.items.length}),n.items},"Failed to fetch all user assets",this.logger,this.createGSwapErrorHandler(bt,{walletAddress:e}))}async fetchAvailableDexTokens(e={}){return sr(async()=>{const{search:t,limit:n=20,page:i=1}=e;this.logger.debug("Fetching available DEX tokens",{search:t,limit:n,page:i});const o=await this.dexBackendClient.fetchTokenList({...!ei(t)&&{search:t},limit:n,page:i}),r=o.token.map(e=>this.transformRawTokenToDexToken(e)),s=i*n<o.count;return{tokens:r,count:o.count,page:i,limit:n,hasMore:s}},"Failed to fetch available DEX tokens",this.logger,this.createGSwapErrorHandler(bt,{...e}))}async fetchAllAvailableDexTokens(e={}){return sr(async()=>{const{search:t}=e;this.logger.debug("Fetching all available DEX tokens (auto-paginated)",{search:t});const n=[];let i=1;for(;;){const e=await this.dexBackendClient.fetchTokenList({...!ei(t)&&{search:t},limit:20,page:i}),o=e.token.map(e=>this.transformRawTokenToDexToken(e));if(n.push(...o),o.length<20||20*i>=e.count)break;i+=1}return this.logger.debug("Fetched all available DEX tokens",{search:t,totalTokens:n.length}),n},"Failed to fetch all available DEX tokens",this.logger,this.createGSwapErrorHandler(bt,e))}async getPoolInfo(e,t){try{if(null==e||""===e)throw Mt("tokenA","Token A");if(null==t||""===t)throw Mt("tokenB","Token B");this.logger.debug("Fetching pool info",{tokenA:e,tokenB:t});const{gswapToken0:n,gswapToken1:i}=this.convertTokenPair(e,t),o=[500,3e3,1e4];let r=bo(0),s=0;for(const a of o)try{const e="string"==typeof n?Cs(n):n,t="string"==typeof i?Cs(i):i,o=await this.tradeClient.getPoolData({token0:e,token1:t,fee:a});null!=o&&(r=r.plus(bo(o.liquidity)),s++)}catch{this.logger.debug("Pool not found for fee tier",{tokenA:e,tokenB:t,feeTier:a})}return{tokenA:e,tokenB:t,liquidity:r.toFixed(),feeTiers:o,swapCount:s}}catch(n){return this.logger.warn("Failed to fetch pool info",n),this.logger.debug("Pool error details",{error:new wt(`Failed to fetch pool info: ${Ct(n)}`,n,e,t,this.extractGSwapErrorCode(n))}),{tokenA:e,tokenB:t,liquidity:"0",feeTiers:[500,3e3,1e4],swapCount:0}}}chunkArray(e,t){const n=[];for(let i=0;i<e.length;i+=t)n.push(e.slice(i,i+t));return n}async fetchPositionPrices(e){const t=this.pricingConcurrency;if(0===e.length)return new Map;const n=new Map;for(const t of e){const e=`${t.token0}|${t.token1}|${t.feeTier}`;n.has(e)||n.set(e,{token0:t.token0,token1:t.token1,feeTier:t.feeTier})}const i=Array.from(n.values()),o=this.chunkArray(i,t);this.logger.debug("Fetching pricing for positions",{totalPositions:e.length,uniquePoolsToPrice:n.size,chunks:o.length,concurrency:t});const r=new Map;for(let e=0;e<o.length;e++){const t=o[e];(await Promise.allSettled(t.map(async e=>{const t=await this.getSwapQuoteExactInput({fromToken:e.token0,toToken:e.token1,amount:"1"});return{key:`${e.token0}|${e.token1}|${e.feeTier}`,data:{token0:e.token0,token1:e.token1,feeTier:e.feeTier,currentPrice:t.executionPrice,executionPrice:t.executionPrice,priceImpact:t.priceImpact,estimatedOutput:t.estimatedOutput,pricedAt:new Date}}}))).forEach(e=>{"fulfilled"===e.status?r.set(e.value.key,e.value.data):this.logger.warn("Failed to fetch price for pool",{error:e.reason})})}return r}normalizePositionResponse(e,t){const n=e,i=e=>{if(null==e)return"";if("string"==typeof e)return e;if("object"==typeof e){const t=e;if(null!==t.type&&void 0!==t.type&&"none"!==t.type)return t.type;if(null!==t.collection&&void 0!==t.collection&&""!==t.collection)return t.collection;if(null!==t.symbol&&void 0!==t.symbol&&""!==t.symbol)return t.symbol;if(null!==t.tokenSymbol&&void 0!==t.tokenSymbol&&""!==t.tokenSymbol)return t.tokenSymbol;if(null!==t.name&&void 0!==t.name&&""!==t.name)return t.name}return""},o=i(n.token0),r=i(n.tokenA),s=i(n.token1),a=i(n.tokenB),c=n.token0Symbol??(""!==o?o:""!==r?r:n.tokenSymbol0??""),l=n.token1Symbol??(""!==s?s:""!==a?a:n.tokenSymbol1??""),d=""!==c?this.tokenConverter.normalizeInternalApiResponse(c):"",u=""!==l?this.tokenConverter.normalizeInternalApiResponse(l):"";return{positionId:n.positionId??n.id??"",ownerAddress:null!=t&&""!==t?t:n.ownerAddress??n.owner??"",token0:d,token1:u,feeTier:n.feeTier??n.fee??n.feeAmount??0,tickLower:n.tickLower??n.lowerTick??0,tickUpper:n.tickUpper??n.upperTick??0,liquidity:String(n.liquidity??n.liquidityAmount??"0"),amount0:String(n.amount0??n.amountA??"0"),amount1:String(n.amount1??n.amountB??"0"),feeAmount0:String(n.feeAmount0??n.feesA??"0"),feeAmount1:String(n.feeAmount1??n.feesB??"0"),...null!==n.createdAt&&void 0!==n.createdAt&&{createdAt:new Date(n.createdAt)},...null!==n.updatedAt&&void 0!==n.updatedAt&&{updatedAt:new Date(n.updatedAt)}}}parseTokenFlexible(e){try{return Cs(e)}catch(t){if(Et(t)&&Ct(t).includes("Plain token string"))return this.logger.debug("Using default TokenClassKey for simple token symbol",{token:e}),{collection:"Token",category:"Unit",type:e,additionalKey:"none"};throw t}}transformRawTokenToDexToken(e){return{image:e.image,name:e.name,symbol:e.symbol,decimals:$n(e.decimals,18),description:e.description,verified:e.verify,compositeKey:e.compositeKey,additionalKey:e.additionalKey,category:e.category,type:e.type,collection:e.collection,subscribePrice:e.subscribePrice}}transformRawTokenToUserAsset(e){const t=null!==e.symbol&&void 0!==e.symbol&&""!==e.symbol?e.symbol:"UNKNOWN";try{const n=null!==e.compositeKey&&void 0!==e.compositeKey&&""!==e.compositeKey?Cs(e.compositeKey.replace(/\$/g,"|")):Cs(`${t}|Unit|none|none`);return{...this.transformRawTokenToDexToken(e),tokenId:n,balance:So(null!==e.quantity&&void 0!==e.quantity&&""!==e.quantity?e.quantity:"0")}}catch(e){return this.logger.debug(`Skipping asset with processing error: ${t}`,{error:Ct(e)}),null}}async getUserLiquidityPositions(e,t=10,n,i){try{if(null==e||""===e)throw Mt("ownerAddress","Owner address");this.logger.debug("Fetching user liquidity positions",{ownerAddress:e,limit:t,bookmark:n});const o=await this.tradeClient.getUserPositions(e,t,n),r=o.positions,s=o.nextBookMark,a=r.filter(e=>null!=e&&"object"==typeof e&&("positionId"in e||"id"in e)).map(t=>this.normalizePositionResponse(t,e));let c;this.logger.debug("Retrieved liquidity positions",{count:a.length,hasNextBookmark:null!=s,nextBookmark:s}),i?.withPrices&&a.length>0&&(c=await this.fetchPositionPrices(a));const l={items:a};return ei(s)||(l.nextBookmark=s),ei(c)||(l.prices=c),l}catch(e){this.handleGSwapError("Failed to fetch user liquidity positions",St,e)}}async getAllSwapUserLiquidityPositions(e,t){try{if(null==e||""===e)throw Mt("ownerAddress","Owner address");this.logger.debug("Fetching all user liquidity positions (auto-paginated)",{ownerAddress:e});const n=async t=>{const n=await this.getUserLiquidityPositions(e,Vc,t,void 0);return{items:n.items,nextBookmark:n.nextBookmark}},i=await async function(e,t={}){const{maxPages:n=1e4,logger:i,pageSize:o=20}=t,r=[];let s,a=0;for(;a<n;){i&&i.debug(`Auto-pagination (bookmark): fetching page ${a+1} with pageSize ${o}`,{bookmark:s});const t=await e(s,o);let n,c,l;if(!0===Array.isArray(t))n=t,c=void 0,l=!1;else{if(null==t||"object"!=typeof t||!("items"in t)){i&&i.warn("Auto-pagination (bookmark): received invalid result structure, stopping");break}n=t.items,c=t.nextBookmark,l=!0}if(!Array.isArray(n)){i&&i.warn("Auto-pagination (bookmark): received invalid items array, stopping");break}if(0===n.length){i&&i.debug(`Auto-pagination (bookmark): no items returned on page ${a+1}, exiting loop`);break}r.push(...n),a++,i&&i.debug(`Auto-pagination (bookmark): page ${a} returned ${n.length} items`,{hasNextBookmark:""!==(c??""),format:l?"BookmarkPaginationResult":"legacy-array"});const d=n.length<o;if(l&&(""===c||void 0===c)){i&&i.debug("Auto-pagination (bookmark): no nextBookmark returned, reached end of results",{nextBookmark:""===c?"(empty string)":"(undefined)"});break}if(d){i&&i.debug("Auto-pagination (bookmark): received fewer items than limit, reached last page",{received:n.length,pageSize:o,format:l?"BookmarkPaginationResult":"legacy-array"});break}s=c}return a>=n&&i&&i.warn(`Auto-pagination (bookmark): exceeded maxPages limit of ${n}, stopping iteration`),i&&i.debug(`Auto-pagination (bookmark): completed with total items: ${r.length}`,{pageCount:a}),{items:r,total:r.length}}(n,{maxPages:1e4,logger:this.logger,pageSize:Vc}),o=i.items;if(this.logger.debug("Fetched all user liquidity positions",{ownerAddress:e,totalPositions:o.length}),t?.withPrices&&o.length>0){return{items:o,prices:await this.fetchPositionPrices(o)}}return o}catch(t){this.handleGSwapError("Failed to fetch all user liquidity positions",St,t,{ownerAddress:e})}}async getLiquidityPosition(e,t){try{if(null==e||""===e)throw Mt("ownerAddress","Owner address");if(void 0===t.token0||null===t.token0||""===t.token0)throw Mt("token0","Token 0");if(void 0===t.token1||null===t.token1||""===t.token1)throw Mt("token1","Token 1");this.logger.debug("Fetching liquidity position",{ownerAddress:e,position:t}),this.validateTickSpacing(t.tickLower,t.tickUpper,t.fee);const{gswapToken0:n,gswapToken1:i}=this.convertTokenPair(t.token0,t.token1),o=ec(n),r=ec(i),s=(await this.tradeClient.getPositions({owner:e,token0:o,token1:r,fee:t.fee,tickLower:t.tickLower,tickUpper:t.tickUpper})).positions.find(e=>e.tickLower===t.tickLower&&e.tickUpper===t.tickUpper);if(!s||"object"!=typeof s||!("positionId"in s)&&!("id"in s))throw new St("Invalid position data returned from API",null,"INVALID_DATA");const a=this.normalizePositionResponse(s,e);return this.logger.debug("Retrieved liquidity position",{positionId:a.positionId}),a}catch(e){this.handleGSwapError("Failed to fetch liquidity position",St,e)}}async getLiquidityPositionById(e,t,n,i,o,r,s){try{if(null==e||""===e)throw Mt("ownerAddress","Owner address");if(null==t||""===t)throw Mt("positionId","Position ID");let a;this.logger.debug("Fetching liquidity position by ID",{ownerAddress:e,positionId:t,hasToken0:null!=n,hasToken1:null!=i,hasFee:null!=o,hasTickLower:!ei(r),hasTickUpper:!ei(s)});let c=null;const l=5,d=2e3;for(let u=1;u<=l;u++)try{if(null!=n&&""!==n&&null!=i&&""!==i&&!ei(o)&&!ei(r)&&!ei(s))try{this.logger.debug("Attempting compound key lookup",{ownerAddress:e,token0:n,token1:i,feeTier:o,tickLower:r,tickUpper:s});if(a=(await this.tradeClient.getPositionById(e,n,i,o,r,s,t)).Data,null!=a&&"object"==typeof a&&("positionId"in a||"id"in a)){this.logger.debug("Successfully fetched position via compound key",{attempt:u,positionId:t});break}throw new St("Invalid position data from compound key lookup",null,"INVALID_DATA")}catch(e){this.logger.debug("Compound key lookup failed, trying fallback",{attempt:u,error:Et(e)?e.message:e})}const h=await this.getAllSwapUserLiquidityPositions(e),g=Array.isArray(h)?h:h.items,m=g.find(e=>$o(e.positionId,t));if(m){a=m,this.logger.debug("Found position via user positions scan",{attempt:u,positionId:t,totalPositions:g.length});break}if(c=Qt(t),u<l){this.logger.warn("User positions scan did not find position, retrying",{attempt:u,positionId:t,ownerAddress:e,foundCount:g.length}),await new Promise(e=>setTimeout(e,d));continue}}catch(e){if(u<l){this.logger.warn("Error fetching position, retrying",{attempt:u,positionId:t,error:Ct(e)}),await new Promise(e=>setTimeout(e,d));continue}c=Et(e)?e:new Error(String(e))}if(!a||"object"!=typeof a||!("positionId"in a)&&!("id"in a))throw this.logger.error("Invalid position data returned from API after retries",{positionId:t,resultType:typeof a,resultKeys:null!=a?Object.keys(a):"null",lastError:c?.message}),c??Qt(t);const u=this.normalizePositionResponse(a,e);return this.logger.debug("Retrieved liquidity position by ID",{positionId:u.positionId}),u}catch(e){this.handleGSwapError("Failed to fetch liquidity position by ID",St,e)}}async fetchSwapPositionDirect(e){try{this.logger.debug("Fetching swap position via direct compound key",{token0:e.token0,token1:e.token1,fee:e.fee,owner:e.owner});const t="string"==typeof e.token0?this.parseTokenFlexible(e.token0):e.token0,n="string"==typeof e.token1?this.parseTokenFlexible(e.token1):e.token1;this.logger.debug("Fetching position via compound key",{token0:e.token0,token1:e.token1,fee:e.fee,owner:e.owner});const i=await this.tradeClient.getPositions({token0:t,token1:n,fee:e.fee,tickLower:e.tickLower,tickUpper:e.tickUpper,owner:e.owner});if(null===i.positions||void 0===i.positions||0===i.positions.length)throw new St("Position not found: No position exists for this compound key",null,"NOT_FOUND");const o=i.positions[0],r=this.normalizePositionResponse(o,e.owner);return this.logger.debug("Retrieved swap position via compound key",{positionId:r.positionId,token0:r.token0,token1:r.token1}),r}catch(e){this.handleGSwapError("Failed to fetch swap position via compound key",St,e)}}async estimateRemoveLiquidity(e){try{if(void 0===e.token0||null===e.token0||""===e.token0)throw Mt("token0","Token 0");if(void 0===e.token1||null===e.token1||""===e.token1)throw Mt("token1","Token 1");if(void 0===e.liquidity||null===e.liquidity||""===e.liquidity)throw Mt("liquidity","Liquidity amount");if(void 0===e.owner||null===e.owner||""===e.owner)throw Mt("owner","Owner address");this.logger.debug("Estimating liquidity removal",{token0:e.token0,token1:e.token1,owner:e.owner}),this.validateTickSpacing(e.tickLower,e.tickUpper,e.fee);const{gswapToken0:t,gswapToken1:n}=this.convertTokenPair(e.token0,e.token1),i=ec(t),o=ec(n),r=await this.tradeClient.getRemoveLiquidityEstimation({token0:i,token1:o,fee:e.fee,amount:e.liquidity,tickLower:e.tickLower,tickUpper:e.tickUpper,owner:e.owner});return this.logger.debug("Estimated removal",{result:r}),r}catch(e){this.handleGSwapError("Failed to estimate liquidity removal",St,e)}}async addLiquidityByPrice(e){try{if(void 0===this.privateKey||null===this.privateKey||""===this.privateKey)throw new ft("GSwapService not initialized with signing capability (privateKey required)","privateKey");this.logger.debug("Adding liquidity by price",{token0:e.token0,token1:e.token1,priceRange:`${e.minPrice}-${e.maxPrice}`});const{gswapToken0:t,gswapToken1:n}=this.convertTokenPair(e.token0,e.token1);await this.ensureWebSocketConnected(),this.logger.debug("Converting price range to ticks",{token0:e.token0,token1:e.token1,minPrice:e.minPrice,maxPrice:e.maxPrice,fee:e.fee});const i=Cs(t),o=Cs(n),r=(await this.tradeClient.getPoolData({token0:i,token1:o,fee:e.fee})).tickSpacing;this.logger.debug("Retrieved tick spacing from pool",{tickSpacing:r,fee:e.fee});const s=bo(e.minPrice),a=bo(e.maxPrice),c=Math.floor(Ao(s)),l=Math.ceil(Ao(a)),d=Bo(c,r),u=Bo(l,r);this.logger.debug("Converted price range to ticks",{minPrice:e.minPrice,maxPrice:e.maxPrice,tickLower:d,tickUpper:u,tickSpacing:r});const h=this.getWalletAddress();if(null==h||""===h)throw new ft("GSwapService: No wallet address available - cannot create position","walletAddress");const g="string"==typeof e.token0?Cs(e.token0):e.token0,m="string"==typeof e.token1?Cs(e.token1):e.token1;this.logger.debug("Sending AddLiquidity by price to bundler",{fee:e.fee,tickRange:`${d}-${u}`,walletAddress:h});const p=await this.sendAddLiquidityToBundler({token0:g,token1:m,fee:e.fee,tickLower:d,tickUpper:u,amount0Desired:e.amount0Desired,amount1Desired:e.amount1Desired,amount0Min:null!==e.amount0Min&&void 0!==e.amount0Min&&""!==e.amount0Min?e.amount0Min:"0",amount1Min:null!==e.amount1Min&&void 0!==e.amount1Min&&""!==e.amount1Min?e.amount1Min:"0",owner:h}),f={transactionId:p};if(null!==f.positionId&&void 0!==f.positionId&&""!==f.positionId&&null!=p&&""!==p){this.logger.debug("Position ID returned directly from backend",{transactionId:p,positionId:f.positionId}),await this.ensureWebSocketConnected();const e=await this.webSocketService.waitForTransaction(p);this.logger.debug("Liquidity transaction confirmed on-chain",{transactionId:p,status:e.status});const t=this.getWalletAddress();if(null!=t&&""!==t&&null!==f.positionId&&void 0!==f.positionId&&""!==f.positionId)try{const n=await this.getLiquidityPositionById(t,f.positionId);this.logger.debug("Fetched full position data",{positionId:n.positionId,liquidity:n.liquidity,amount0:n.amount0,amount1:n.amount1});const{createdAt:i,updatedAt:o,...r}=n,s=i instanceof Date?i.getTime():"number"==typeof i?i:void 0,a={...f,...r,positionId:f.positionId,status:e.status,transactionId:e.transactionId,timestamp:new Date(e.timestamp),wait:async e=>{await this.webSocketService.waitForTransaction(p)}};return ei(s)||(a.createdAt=s),a}catch(t){return this.logger.debug("Could not fetch full position details",{error:Ct(t)}),{...f,positionId:f.positionId,status:e.status,transactionId:e.transactionId,timestamp:new Date(e.timestamp),wait:async e=>{await this.webSocketService.waitForTransaction(p)}}}}if(null!=p&&""!==p){this.logger.debug("Monitoring liquidity transaction (discovery mode)",{transactionId:p}),await this.ensureWebSocketConnected();const t=await this.webSocketService.waitForTransaction(p);let n;this.logger.debug("Liquidity transaction confirmed on-chain",{transactionId:p,status:t.status});let i=null;this.logger.debug("Waiting for position indexing after WebSocket confirmation",{token0:e.token0,token1:e.token1,fee:e.fee}),await new Promise(e=>setTimeout(e,2e3));try{const t=this.getWalletAddress();if(null==t||""===t)throw new ft("No wallet address available","walletAddress");this.logger.debug("Fetching positions",{walletAddress:t});const o=(await this.getUserLiquidityPositions(t,10)).items;if(this.logger.debug("Fetched positions",{count:null!=o?o.length:0}),null!=o&&o.length>0){const t=Cs(e.token0).collection.toUpperCase(),r=Cs(e.token1).collection.toUpperCase(),s=[];for(const n of o){if(""===(n?.positionId??""))continue;const i=null!==n.token0&&void 0!==n.token0?n.token0.toUpperCase():void 0,o=null!==n.token1&&void 0!==n.token1?n.token1.toUpperCase():void 0;if(null==i||""===i||null==o||""===o){this.logger.debug("Skipping position with empty tokens",{positionId:n.positionId});continue}const a=qo(i,o,t,r),c=n.feeTier===e.fee;this.logger.debug("Checking position",{positionId:n.positionId,tokens:`${i}/${o}`,tokensMatch:a,fee:n.feeTier,feeMatches:c}),a&&c&&s.push(n)}s.length>0?(i=s[s.length-1],n=i.positionId,this.logger.debug("Found newly created position",{positionId:n,expectedTokens:`${Cs(e.token0).collection}/${Cs(e.token1).collection}`,expectedFee:e.fee,positionCount:o.length,liquidity:i.liquidity,amount0:i.amount0,amount1:i.amount1})):this.logger.debug("No matching position found",{availablePositions:o.map(e=>({id:e.positionId,token0:e.token0,token1:e.token1,fee:e.feeTier}))})}else this.logger.debug("No positions returned from API")}catch(e){this.logger.debug("Error fetching positions",{error:Ct(e)})}this.logger.debug("Discovery complete",{positionId:null!=n&&""!==n?n:"not found",matchedPositionData:{positionId:i?.positionId,liquidity:i?.liquidity,amount0:i?.amount0,amount1:i?.amount1,feeAmount0:i?.feeAmount0,feeAmount1:i?.feeAmount1,token0:i?.token0,token1:i?.token1,feeTier:i?.feeTier}});let o=i;if(null!=n&&""!==n)try{o=await this.getLiquidityPositionById(h,n),this.logger.debug("Fetched full position details",{positionId:o.positionId,liquidity:o.liquidity,amount0:o.amount0,amount1:o.amount1,feeAmount0:o.feeAmount0,feeAmount1:o.feeAmount1})}catch(e){this.logger.debug("Could not fetch full position details, using discovered data",{error:Ct(e)})}const r=o?{ownerAddress:o.ownerAddress,token0:o.token0,token1:o.token1,feeTier:o.feeTier,tickLower:o.tickLower,tickUpper:o.tickUpper,liquidity:o.liquidity,amount0:o.amount0,amount1:o.amount1,feeAmount0:o.feeAmount0,feeAmount1:o.feeAmount1}:{};return{...f,...r,...null!=n&&""!==n&&{positionId:n},status:t.status,transactionId:t.transactionId,timestamp:new Date(t.timestamp),wait:async e=>{await this.webSocketService.waitForTransaction(p)}}}return this.logger.warn("No transaction ID in liquidity result, cannot confirm position creation"),f}catch(e){this.logger.error("Error in addSwapLiquidityByPrice",{error:Ct(e),stack:Et(e)?Dt(e)?.split("\n").slice(0,3).join(" | "):void 0}),this.handleGSwapError("Failed to add liquidity by price",St,e)}}async addSwapLiquidityByTicks(e){try{if(void 0===this.privateKey||null===this.privateKey||""===this.privateKey)throw new ft("GSwapService not initialized with signing capability (privateKey required)","privateKey");const t=this.getWalletAddress();if(null==t||""===t)throw new ft("GSwapService: No wallet address available - cannot create position","walletAddress");this.logger.debug("Adding liquidity by ticks with direct bundler",{token0:e.token0,token1:e.token1,fee:e.fee,walletAddress:t,tickRange:`${e.tickLower}-${e.tickUpper}`});const n="string"==typeof e.token0?Cs(e.token0):e.token0,i="string"==typeof e.token1?Cs(e.token1):e.token1;await this.ensureWebSocketConnected();const o=await this.sendAddLiquidityToBundler({token0:n,token1:i,fee:e.fee,tickLower:e.tickLower,tickUpper:e.tickUpper,amount0Desired:e.amount0Desired,amount1Desired:e.amount1Desired,amount0Min:null!==e.amount0Min&&void 0!==e.amount0Min&&""!==e.amount0Min?e.amount0Min:"0",amount1Min:null!==e.amount1Min&&void 0!==e.amount1Min&&""!==e.amount1Min?e.amount1Min:"0",owner:t});this.logger.info("Liquidity transaction submitted to bundler",{transactionId:o});const r=this.webSocketService.waitForTransaction(o),s={transactionId:o};if(null!==s.positionId&&void 0!==s.positionId&&""!==s.positionId&&null!=o&&""!==o){this.logger.info("Position ID returned directly from backend",{transactionId:o,positionId:s.positionId});const e=await r;this.logger.debug("Liquidity transaction confirmed on-chain",{transactionId:o,status:e.status});const t=this.getWalletAddress();if(null!=t&&""!==t&&null!==s.positionId&&void 0!==s.positionId&&""!==s.positionId)try{this.logger.debug("Fetching full position details",{positionId:s.positionId});const n=await this.getLiquidityPositionById(t,s.positionId);this.logger.debug("Fetched full position data",{positionId:n.positionId,liquidity:n.liquidity,amount0:n.amount0,amount1:n.amount1});const{createdAt:i,updatedAt:r,...a}=n,c=i instanceof Date?i.getTime():"number"==typeof i?i:void 0,l={...s,...a,positionId:s.positionId,status:e.status,transactionId:e.transactionId,timestamp:new Date(e.timestamp),wait:async e=>{await this.webSocketService.waitForTransaction(o)}};return ei(c)||(l.createdAt=c),l}catch(t){return this.logger.warn("Could not fetch full position details",{positionId:s.positionId,error:Ct(t)}),{...s,positionId:s.positionId,status:e.status,transactionId:e.transactionId,timestamp:new Date(e.timestamp),wait:async e=>{await this.webSocketService.waitForTransaction(o)}}}}if(null!=o&&""!==o){this.logger.debug("Monitoring liquidity transaction (discovery mode)",{transactionId:o});const n=await r;let i;this.logger.debug("Liquidity transaction confirmed on-chain",{transactionId:o,status:n.status});let a=null;const c="string"==typeof e.token0?e.token0:e.token0?.type??"unknown",l="string"==typeof e.token1?e.token1:e.token1?.type??"unknown";this.logger.debug("Waiting for position indexing after WebSocket confirmation"),this.logger.debug("Looking for matching position",{token0:c,token1:l,fee:e.fee});try{const t=this.getWalletAddress();if(null==t||""===t)throw new ft("No wallet address available","walletAddress");this.logger.debug("Fetching positions from API",{walletAddress:t,pageSize:Vc});const n=3,o=5e3,r=3e3;let s=[];for(let c=1;c<=n;c++){const l=1===c?o:r;this.logger.debug("Position discovery attempt",{attempt:c,maxAttempts:n,delayMs:l}),await new Promise(e=>setTimeout(e,l)),this.logger.debug("Querying positions from API",{attempt:c,pageSize:Vc});if(s=(await this.getUserLiquidityPositions(t,Vc)).items,this.logger.debug("Got positions from API",{count:null!=s?s.length:0}),null!=s&&s.length>0){const t=("string"==typeof e.token0?Cs(e.token0).collection:e.token0.collection).toUpperCase(),n=("string"==typeof e.token1?Cs(e.token1).collection:e.token1.collection).toUpperCase(),o=[];for(const i of s){if(""===(i?.positionId??""))continue;const r=null!==i.token0&&void 0!==i.token0?i.token0.toUpperCase():void 0,s=null!==i.token1&&void 0!==i.token1?i.token1.toUpperCase():void 0;if(null==r||""===r||null==s||""===s){this.logger.debug("Skipping position with empty tokens",{positionId:i.positionId});continue}const a=qo(r,s,t,n),c=i.feeTier===e.fee;this.logger.debug("Checking position against target",{positionId:i.positionId,tokens:`${r}/${s}`,tokensMatch:a,fee:i.feeTier,feeMatches:c}),a&&c&&o.push(i)}if(o.length>0){a=o[o.length-1],i=a.positionId,this.logger.info("Found newly created position",{positionId:i,liquidity:a.liquidity,amount0:a.amount0,amount1:a.amount1,fee:a.feeTier}),this.logger.debug("Found newly created position",{positionId:i,expectedTokens:`${Cs(e.token0).collection}/${Cs(e.token1).collection}`,expectedFee:e.fee,positionCount:s.length});break}this.logger.debug("No matching position found in this attempt")}else this.logger.debug("No positions returned from API in this attempt")}}catch(e){this.logger.error("Error fetching positions during discovery",{error:Ct(e)}),this.logger.debug("Error waiting for position indexing",{error:Ct(e)})}this.logger.debug("Position discovery complete",{positionId:null!=i&&""!==i?i:"not found",found:null!=i&&""!==i}),this.logger.debug("Matched position data",{positionId:a?.positionId,liquidity:a?.liquidity,amount0:a?.amount0,amount1:a?.amount1,feeAmount0:a?.feeAmount0,feeAmount1:a?.feeAmount1,token0:a?.token0,token1:a?.token1,feeTier:a?.feeTier});let d=a;if(null!=i&&""!==i)try{this.logger.debug("Fetching full position details",{positionId:i}),d=await this.getLiquidityPositionById(t,i),this.logger.debug("Fetched full position data",{positionId:d.positionId,liquidity:d.liquidity,amount0:d.amount0,amount1:d.amount1,feeAmount0:d.feeAmount0,feeAmount1:d.feeAmount1})}catch(e){this.logger.warn("Could not fetch full position details, using discovered data",{positionId:i,error:Ct(e)})}const u=d?{ownerAddress:d.ownerAddress,token0:d.token0,token1:d.token1,feeTier:d.feeTier,tickLower:d.tickLower,tickUpper:d.tickUpper,liquidity:d.liquidity,amount0:d.amount0,amount1:d.amount1,feeAmount0:d.feeAmount0,feeAmount1:d.feeAmount1}:{};return{...s,...u,...null!=i&&""!==i&&{positionId:i},status:n.status,transactionId:n.transactionId,timestamp:new Date(n.timestamp),wait:async e=>{await this.webSocketService.waitForTransaction(o)}}}return this.logger.warn("No transaction ID in liquidity result, cannot confirm position creation"),s}catch(e){this.handleGSwapError("Failed to add liquidity by ticks",St,e)}}async monitorBundlerTransaction(e,t,n="bundler"){let i;try{const o=await t;i={status:o.status,transactionId:null!==o.transactionId&&void 0!==o.transactionId&&""!==o.transactionId?o.transactionId:e,timestamp:null!==o.timestamp&&void 0!==o.timestamp&&0!==o.timestamp?o.timestamp:Date.now(),data:o.data},this.logger.debug(`${n} transaction confirmed on-chain`,{transactionId:e,status:i.status})}catch(t){return this.logger.warn(`WebSocket monitoring timeout for ${n} transaction, returning result with transaction ID`,{transactionId:e,error:Ct(t)}),{transactionId:e,status:"SUBMITTED",timestamp:new Date,wait:async t=>{try{await this.webSocketService.waitForTransaction(e)}catch{this.logger.debug("Explicit wait also timed out",{transactionId:e})}}}}return{transactionId:i.transactionId,status:i.status,timestamp:new Date(i.timestamp),wait:async t=>{await this.webSocketService.waitForTransaction(e)}}}async removeLiquidity(e){try{if(void 0===this.privateKey||null===this.privateKey||""===this.privateKey)throw new ft("Private key not available for bundler-direct operations","privateKey");this.logger.debug("Removing liquidity via bundler",{token0:e.token0,token1:e.token1,liquidity:e.liquidity});try{const t=Un(e.liquidity,Number.NaN);if(isNaN(t))throw new gt(`Invalid liquidity value: "${e.liquidity}". Must be a valid number. Position ID: ${null!==e.positionId&&void 0!==e.positionId&&""!==e.positionId?e.positionId:"unknown"}`,"liquidity","INVALID_VALUE");if(0===t)throw new gt(`Cannot remove zero liquidity from position. This would waste gas fees without any effect. Position ID: ${null!==e.positionId&&void 0!==e.positionId&&""!==e.positionId?e.positionId:"unknown"}`,"liquidity","ZERO_VALUE")}catch(e){if(Et(e)&&Ct(e).includes("Cannot remove zero liquidity"))throw e;if(Et(e)&&Ct(e).includes("Invalid liquidity value"))throw e;throw e}const t="string"==typeof e.token0?Cs(e.token0):e.token0,n="string"==typeof e.token1?Cs(e.token1):e.token1;await this.ensureWebSocketConnected();const i=await this.sendRemoveLiquidityToBundler(e.tickLower,e.tickUpper,e.liquidity,t,n,e.fee,null!==e.amount0Min&&void 0!==e.amount0Min&&""!==e.amount0Min?e.amount0Min:"0",null!==e.amount1Min&&void 0!==e.amount1Min&&""!==e.amount1Min?e.amount1Min:"0",null!==e.positionId&&void 0!==e.positionId&&""!==e.positionId?e.positionId:"");this.logger.debug("Liquidity removal submitted to bundler",{transactionId:i});const o=this.webSocketService.waitForTransaction(i);return this.monitorBundlerTransaction(i,o,"liquidity removal")}catch(e){this.handleGSwapError("Failed to remove liquidity",St,e)}}async collectPositionFees(e){try{if(void 0===this.privateKey||null===this.privateKey||""===this.privateKey)throw new ft("Private key not available for bundler-direct operations","privateKey");if(null!==e.ownerAddress&&void 0!==e.ownerAddress&&""!==e.ownerAddress&&null!==e.positionId&&void 0!==e.positionId&&""!==e.positionId&&(null===e.token0||void 0===e.token0)){this.logger.debug("Fetching position data before collecting fees",{ownerAddress:e.ownerAddress,positionId:e.positionId});const t=await this.getLiquidityPositionById(e.ownerAddress,e.positionId);if(null==t)throw Qt(e.positionId);if(null===t.token0||void 0===t.token0||""===t.token0||null===t.token1||void 0===t.token1||""===t.token1)throw new St("Position missing token information",null,"INVALID_DATA");const{gswapToken0:n,gswapToken1:i}=this.convertTokenPair(t.token0,t.token1);return this.collectPositionFees({token0:n,token1:i,fee:t.feeTier,tickLower:t.tickLower,tickUpper:t.tickUpper,amount0Requested:null!==e.amount0Max&&void 0!==e.amount0Max&&""!==e.amount0Max?e.amount0Max:null!==e.amount0Requested&&void 0!==e.amount0Requested&&""!==e.amount0Requested?e.amount0Requested:"0",amount1Requested:null!==e.amount1Max&&void 0!==e.amount1Max&&""!==e.amount1Max?e.amount1Max:null!==e.amount1Requested&&void 0!==e.amount1Requested&&""!==e.amount1Requested?e.amount1Requested:"0",positionId:e.positionId})}if(null===e.token0||void 0===e.token0||null===e.token1||void 0===e.token1||void 0===e.fee||void 0===e.tickLower||void 0===e.tickUpper)throw Mt("parameters","token0, token1, fee, tickLower, tickUpper");this.logger.debug("Collecting position fees via bundler",{token0:"string"==typeof e.token0?e.token0:e.token0?.type??"unknown",token1:"string"==typeof e.token1?e.token1:e.token1?.type??"unknown",tickLower:e.tickLower,tickUpper:e.tickUpper});const t="string"==typeof e.token0?Cs(e.token0):e.token0,n="string"==typeof e.token1?Cs(e.token1):e.token1;await this.ensureWebSocketConnected();const i=await this.sendCollectPositionFeesToBundler(t,n,e.fee,null!==e.amount0Requested&&void 0!==e.amount0Requested&&""!==e.amount0Requested?e.amount0Requested:"0",null!==e.amount1Requested&&void 0!==e.amount1Requested&&""!==e.amount1Requested?e.amount1Requested:"0",e.tickLower,e.tickUpper,null!==e.positionId&&void 0!==e.positionId&&""!==e.positionId?e.positionId:"");this.logger.debug("Fee collection submitted to bundler",{transactionId:i});const o=this.webSocketService.waitForTransaction(i);return this.monitorBundlerTransaction(i,o,"fee collection")}catch(e){this.handleGSwapError("Failed to collect position fees",St,e)}}async getPoolData(e,t,n){try{this.logger.debug("Getting pool data",{tokenA:e,tokenB:t,feeTier:n});const{gswapToken0:i,gswapToken1:o}=this.convertTokenPair(e,t),r=Cs(i),s=Cs(o),a=await this.tradeClient.getPoolData({token0:r,token1:s,fee:n}),c=this.calculatePriceFromSqrtPriceX96(bo(a.sqrtPrice));return{tokenA:e,tokenB:t,feeTier:n,liquidity:a.liquidity.toString(),sqrtPriceX96:a.sqrtPrice.toString(),tick:a.tick,feeGrowthGlobal0X128:a.feeGrowthGlobal0.toString(),feeGrowthGlobal1X128:a.feeGrowthGlobal1.toString(),currentPrice:c.toFixed()}}catch(e){this.handleGSwapError("Failed to get pool data",wt,e)}}async calculateDexPoolSpotPrice(e,t,n){try{this.logger.debug("Calculating spot price",{tokenA:e,tokenB:t,feeTier:n});const i=await this.getPoolData(e,t,n),o=bo(i.currentPrice);return{tokenA:e,tokenB:t,feeTier:n,price:o.toFixed(),invertedPrice:To(o,!0),tick:i.tick,liquidity:i.liquidity}}catch(e){this.handleGSwapError("Failed to calculate spot price",wt,e)}}async calculateOptimalPositionSize(e,t,n,i,o,r,s){try{this.logger.debug("Calculating optimal position size",{tokenA:e,tokenB:t,desiredAmount0:i,desiredAmount1:o});const a=(await this.getPoolData(e,t,n)).tick,c=d.tickToSqrtPrice(r),l=d.tickToSqrtPrice(a),u=d.tickToSqrtPrice(s),h=d.getLiquidityForAmounts(bo(i),bo(o),c,l,u),g=d.getAmountsForLiquidity(h,l,c,u),m=g[0],p=g[1],f=bo(i),y=bo(o);return{amount0:m.toFixed(),amount1:p.toFixed(),liquidity:h.toFixed(),ratio:Fo(m,p).toFixed(),utilizationPercent:{amount0:Po(Fo(m,f),100).toFixed(2),amount1:Po(Fo(p,y),100).toFixed(2)}}}catch(e){this.handleGSwapError("Failed to calculate optimal position size",St,e)}}async validatePositionParameters(e,t,n,i,o,r,s){const a=[],c=[];try{this.logger.debug("Validating position parameters",{tokenA:e,tokenB:t,tickLower:i,tickUpper:o});const l=[500,3e3,1e4];l.includes(n)||a.push(`Invalid fee tier: ${n}. Must be one of: ${l.join(", ")}`);const d=this.getTickSpacing(n);let u;i%d!==0&&a.push(`tickLower must be multiple of ${d}`),o%d!==0&&a.push(`tickUpper must be multiple of ${d}`),i>=o&&a.push(`tickLower (${i}) must be less than tickUpper (${o})`);try{u=await this.getPoolData(e,t,n)}catch{return a.push(`Pool not found for ${e}/${t} at fee tier ${n}`),{valid:!1,errors:a,warnings:c,gasEstimate:0}}const h=bo(r),g=bo(s);if(h.isNaN()||g.isNaN())a.push("Amounts must be valid numbers");else try{_o(h,g)}catch(e){a.push(`Liquidity amounts must be non-negative: ${e.message}`)}const m=u.tick;(m<i||m>o)&&c.push("Position is out of current price range - will not earn fees until price moves into range");bo(u.liquidity).lt("1000000")&&c.push("Low pool liquidity - consider higher slippage tolerance");const p=0===a.length?35e4:0;return{valid:0===a.length,errors:a,warnings:c,gasEstimate:p,tickSpacing:d,currentTick:m,poolLiquidity:u.liquidity}}catch(e){const t=Ct(e);return a.includes(t)||a.push(`Validation failed: ${t}`),{valid:!1,errors:a,warnings:c,gasEstimate:0}}}calculateTicksForPrice(e,t,n,i,o){try{this.logger.debug("Calculating ticks for price range",{tokenA:e,tokenB:t,minPrice:n,maxPrice:i});const r=this.getTickSpacing(o),s=bo(n),a=bo(i);Qn(n,i,"priceRange");const c=Math.floor(Ao(s)),l=Math.ceil(Ao(a)),d=Bo(c,r),u=Bo(l,r),h=Math.pow(1.0001,d),g=Math.pow(1.0001,u),m=bo(h),p=bo(g);return{tokenA:e,tokenB:t,feeTier:o,tickLower:d,tickUpper:u,tickSpacing:r,requestedMinPrice:n,requestedMaxPrice:i,actualMinPrice:m.toFixed(8),actualMaxPrice:p.toFixed(8),priceDeviation:{minPriceDeviation:Po(m.minus(s).dividedBy(s),100).toFixed(4),maxPriceDeviation:Po(p.minus(a).dividedBy(a),100).toFixed(4)}}}catch(e){this.handleGSwapError("Failed to calculate ticks for price",St,e)}}async calculatePriceForTicks(e,t,n,i){try{this.logger.debug("Calculating price for ticks",{tokenA:e,tokenB:t,tickLower:n,tickUpper:i});const o=Math.pow(1.0001,n),r=Math.pow(1.0001,i);let s;try{s=(await this.getPoolData(e,t,3e3)).currentPrice}catch{}const a=bo(o),c=bo(r),l={tokenA:e,tokenB:t,tickLower:n,tickUpper:i,minPrice:a.toFixed(8),maxPrice:c.toFixed(8),priceRange:`${a.toFixed(4)} - ${c.toFixed(4)}`,tickSpread:i-n};return ei(s)||(l.currentPrice=s),l}catch(e){throw this.handleGSwapError("Failed to calculate price for ticks",St,e),e}}calculateExecutionPrice(e,t){try{const n=bo(e);return Fo(bo(t),n,"0").toFixed()}catch{return"0"}}getTickSpacing(e){switch(e){case 500:return 10;case 3e3:return 60;case 1e4:return 200;default:throw $t("feeTier","500, 3000, or 10000","Fee tier")}}validateTickSpacing(e,t,n){const i=this.getTickSpacing(n);if(e%i!==0)throw new gt(`Invalid tickLower: ${e} must be a multiple of ${i} for fee tier ${n}. Tip: Use getAllSwapUserLiquidityPositions() to discover valid positions with correct tick spacing.`,"tickLower","INVALID_TICK_SPACING");if(t%i!==0)throw new gt(`Invalid tickUpper: ${t} must be a multiple of ${i} for fee tier ${n}. Tip: Use getAllSwapUserLiquidityPositions() to discover valid positions with correct tick spacing.`,"tickUpper","INVALID_TICK_SPACING")}calculatePriceFromSqrtPriceX96(e){try{const t=new o(2).pow(96);return Fo(e,t).pow(2)}catch{return bo(0)}}calculatePriceFromSqrtPriceDecimal(e){try{return e.pow(2)}catch{return bo(0)}}async getPoolSlot0(e,t,n){try{this.logger.debug("Fetching pool slot0 data",{token0:e,token1:t,fee:n});const i="string"==typeof e?Cs(e):e,o="string"==typeof t?Cs(t):t,r=await this.tradeClient.getSlot0({token0:i,token1:o,fee:n}),s={sqrtPrice:null!==r.sqrtPrice&&void 0!==r.sqrtPrice&&""!==r.sqrtPrice?r.sqrtPrice:"0",tick:null!==r.tick&&void 0!==r.tick&&0!==r.tick?r.tick:0,liquidity:null!==r.liquidity&&void 0!==r.liquidity&&""!==r.liquidity?r.liquidity:"0",grossPoolLiquidity:null!==r.grossPoolLiquidity&&void 0!==r.grossPoolLiquidity&&""!==r.grossPoolLiquidity?r.grossPoolLiquidity:"0"};return this.logger.debug("Retrieved pool slot0 data",{sqrtPrice:s.sqrtPrice,tick:s.tick,liquidity:s.liquidity}),s}catch(i){this.handleGSwapError("Failed to fetch pool slot0 data",wt,i,{token0:e,token1:t,fee:n})}}async getPositionCurrentPrice(e){try{this.logger.debug("Fetching position current price",{token0:e.token0,token1:e.token1,feeTier:e.feeTier});const t=await this.getPoolSlot0(e.token0,e.token1,e.feeTier),n=bo(t.sqrtPrice),i={price:this.calculatePriceFromSqrtPriceDecimal(n).toFixed(18),sqrtPrice:t.sqrtPrice,tick:t.tick,liquidity:t.liquidity};return this.logger.debug("Calculated position current price",{price:i.price,tick:i.tick}),i}catch(t){this.handleGSwapError("Failed to fetch position current price",wt,t,{token0:e.token0,token1:e.token1})}}_calculateLiquidityFromAmount0(e,t,n){try{const i=d.tickToSqrtPrice(t),o=d.tickToSqrtPrice(n);return d.liquidity0(e,i,o)}catch{return bo(0)}}_calculateLiquidityFromAmount1(e,t,n){try{const i=d.tickToSqrtPrice(t),o=d.tickToSqrtPrice(n);return d.liquidity1(e,i,o)}catch{return bo(0)}}_calculateAmount0FromLiquidity(e,t,n){try{const i=d.tickToSqrtPrice(t),o=d.tickToSqrtPrice(n);return d.getAmount0Delta(i,o,e)}catch{return bo(0)}}_calculateAmount1FromLiquidity(e,t,n){try{const i=d.tickToSqrtPrice(t),o=d.tickToSqrtPrice(n);return d.getAmount1Delta(i,o,e)}catch{return bo(0)}}convertTokenPair(e,t){return{gswapToken0:this.tokenConverter.toLaunchpadFormat(e),gswapToken1:this.tokenConverter.toLaunchpadFormat(t)}}async sendAddLiquidityToBundler(e){if(void 0===this.privateKey||null===this.privateKey||""===this.privateKey)throw new ft("GSwapService: AddLiquidity requires wallet (full-access mode)","privateKey");if(void 0===this.bundlerBaseUrl||null===this.bundlerBaseUrl||""===this.bundlerBaseUrl)throw new ft("GSwapService: Bundler URL not configured","bundlerBaseUrl");try{this.logger.debug("Sending AddLiquidity to bundler",{token0:e.token0?.type??"unknown",token1:e.token1?.type??"unknown",fee:e.fee,tickRange:`${e.tickLower}-${e.tickUpper}`});const n=`galaswap - operation - ${i.v4()}-${Date.now()}-${e.owner}`,o={token0:e.token0,token1:e.token1,fee:e.fee,owner:e.owner,tickLower:e.tickLower,tickUpper:e.tickUpper,amount0Desired:e.amount0Desired,amount1Desired:e.amount1Desired,amount0Min:e.amount0Min,amount1Min:e.amount1Min,positionId:"",uniqueKey:n},r=new t.ethers.Wallet(this.privateKey),s={AddLiquidity:[{name:"token0",type:"token0"},{name:"token1",type:"token1"},{name:"fee",type:"int256"},{name:"owner",type:"string"},{name:"tickLower",type:"int256"},{name:"tickUpper",type:"int256"},{name:"amount0Desired",type:"string"},{name:"amount1Desired",type:"string"},{name:"amount0Min",type:"string"},{name:"amount1Min",type:"string"},{name:"positionId",type:"string"},{name:"uniqueKey",type:"string"}],token0:[{name:"additionalKey",type:"string"},{name:"category",type:"string"},{name:"collection",type:"string"},{name:"type",type:"string"}],token1:[{name:"additionalKey",type:"string"},{name:"category",type:"string"},{name:"collection",type:"string"},{name:"type",type:"string"}]},a={name:"ethereum",chainId:1},c=this.calculatePersonalSignPrefix(o),l={...o,prefix:c},d=await r.signTypedData(a,s,l),u={...l,signature:d,types:s,domain:a};this.logger.debug("AddLiquidity DTO signed with manual types",{prefix:u.prefix,tickLower:o.tickLower,tickUpper:o.tickUpper});const h=this.buildLiquidityStringsInstructions(e.token0,e.token1,e.fee,e.owner),g=Hc.createClient(this.bundlerBaseUrl,3e4),m=await g.post("/bundle",{method:"AddLiquidity",signedDto:u,stringsInstructions:h}),p=en(m),f=p?.data??p?.transactionId??p?.id;if(null==f)throw this.logger.error("Bundler response structure",{status:m.status,dataType:typeof p}),new yt("Bundler response does not contain transaction ID. Response type: "+typeof p,void 0,"INVALID_RESPONSE");return this.logger.debug("AddLiquidity transaction sent to bundler",{transactionId:f}),f}catch(e){throw this.logger.error("Failed to send AddLiquidity to bundler",e),e}}async sendRemoveLiquidityToBundler(e,n,o,r,s,a,c,l,d){try{if(void 0===this.bundlerBaseUrl||null===this.bundlerBaseUrl||""===this.bundlerBaseUrl)throw new ft("GSwapService: Bundler URL not configured","bundlerBaseUrl");const u=new t.ethers.Wallet(this.privateKey),h=await u.getAddress(),g=`galaswap - operation - ${i.v4()}-${Date.now()}-${h}`,m={tickLower:e,tickUpper:n,amount:o,token0:r,token1:s,fee:a,amount0Min:c,amount1Min:l,positionId:d,uniqueKey:g},p={RemoveLiquidity:[{name:"tickLower",type:"int256"},{name:"tickUpper",type:"int256"},{name:"amount",type:"string"},{name:"token0",type:"token0"},{name:"token1",type:"token1"},{name:"fee",type:"int256"},{name:"amount0Min",type:"string"},{name:"amount1Min",type:"string"},{name:"positionId",type:"string"},{name:"uniqueKey",type:"string"}],token0:[{name:"additionalKey",type:"string"},{name:"category",type:"string"},{name:"collection",type:"string"},{name:"type",type:"string"}],token1:[{name:"additionalKey",type:"string"},{name:"category",type:"string"},{name:"collection",type:"string"},{name:"type",type:"string"}]},f={name:"ethereum",chainId:1},y=this.calculatePersonalSignPrefix(m),k={...m,prefix:y},v=await u.signTypedData(f,p,k),w={...k,signature:v,types:p,domain:f},b=this.buildLiquidityStringsInstructions(r,s,a,h);this.logger.debug("Submitting RemoveLiquidity to bundler",{tickLower:e,tickUpper:n,amount:o,fee:a,positionId:d,transactionId:g});const S=Hc.createClient(this.bundlerBaseUrl,3e4),A=await S.post("/bundle",{method:"RemoveLiquidity",signedDto:w,stringsInstructions:b}),T=en(A),E=T?.data??T?.transactionId??T?.id;if(null==E)throw this.logger.error("Bundler response structure",{status:A.status,dataType:typeof T}),new yt("Bundler response does not contain transaction ID. Response type: "+typeof T,void 0,"INVALID_RESPONSE");return this.logger.info("RemoveLiquidity transaction sent to bundler",{transactionId:E}),E}catch(e){throw this.logger.error("Failed to send RemoveLiquidity to bundler",e),e}}async sendCollectPositionFeesToBundler(e,n,o,r,s,a,c,l){try{if(void 0===this.bundlerBaseUrl||null===this.bundlerBaseUrl||""===this.bundlerBaseUrl)throw new ft("GSwapService: Bundler URL not configured","bundlerBaseUrl");const d=new t.ethers.Wallet(this.privateKey),u=await d.getAddress(),h=`galaswap - operation - ${i.v4()}-${Date.now()}-${u}`,g={token0:e,token1:n,fee:o,amount0Requested:r,amount1Requested:s,tickLower:a,tickUpper:c,positionId:l,uniqueKey:h},m={CollectPositionFees:[{name:"token0",type:"token0"},{name:"token1",type:"token1"},{name:"fee",type:"int256"},{name:"amount0Requested",type:"string"},{name:"amount1Requested",type:"string"},{name:"tickLower",type:"int256"},{name:"tickUpper",type:"int256"},{name:"positionId",type:"string"},{name:"uniqueKey",type:"string"}],token0:[{name:"additionalKey",type:"string"},{name:"category",type:"string"},{name:"collection",type:"string"},{name:"type",type:"string"}],token1:[{name:"additionalKey",type:"string"},{name:"category",type:"string"},{name:"collection",type:"string"},{name:"type",type:"string"}]},p={name:"ethereum",chainId:1},f=this.calculatePersonalSignPrefix(g),y={...g,prefix:f},k=await d.signTypedData(p,m,y),v={...y,signature:k,types:m,domain:p},w=this.buildLiquidityStringsInstructions(e,n,o,u);this.logger.debug("Submitting CollectPositionFees to bundler",{fee:o,amount0Requested:r,amount1Requested:s,tickLower:a,tickUpper:c,positionId:l,transactionId:h});const b=Hc.createClient(this.bundlerBaseUrl,3e4),S=await b.post("/bundle",{method:"CollectPositionFees",signedDto:v,stringsInstructions:w}),A=en(S),T=A?.data??A?.transactionId??A?.id;if(null==T)throw this.logger.error("Bundler response structure",{status:S.status,dataType:typeof A}),new yt("Bundler response does not contain transaction ID. Response type: "+typeof A,void 0,"INVALID_RESPONSE");return this.logger.info("CollectPositionFees transaction sent to bundler",{transactionId:T}),T}catch(e){throw this.logger.error("Failed to send CollectPositionFees to bundler",e),e}}async sendSwapToBundler(e){if(void 0===this.privateKey||null===this.privateKey||""===this.privateKey)throw new ft("GSwapService: Swap requires wallet (full-access mode)","privateKey");if(void 0===this.bundlerBaseUrl||null===this.bundlerBaseUrl||""===this.bundlerBaseUrl)throw new ft("GSwapService: Bundler URL not configured","bundlerBaseUrl");const n=[500,3e3,1e4];if(!n.includes(e.feeTier))throw new gt(`GSwapService: Invalid fee tier ${e.feeTier}. Must be one of: ${n.join(", ")} (basis points)`,"feeTier","INVALID_FEE_TIER");try{this.logger.debug("Sending Swap to bundler",{fromToken:"string"==typeof e.fromToken?e.fromToken:e.fromToken?.type??"unknown",toToken:"string"==typeof e.toToken?e.toToken:e.toToken?.type??"unknown",inputAmount:e.inputAmount,minOutput:e.minOutput,feeTier:e.feeTier});let n=e.fromToken,r=e.toToken;"string"==typeof n&&(n=Cs(n)),"string"==typeof r&&(r=Cs(r));const s=mr(n),a=mr(r),c=s<a?[n,r,s,a]:[r,n,a,s],[l,d,u,h]=c,g=mr("string"==typeof e.fromToken?Cs(e.fromToken):e.fromToken),m=g===u,p=`galaswap - operation - ${i.v4()}-${Date.now()}-${e.walletAddress}`;let f;if(void 0===e.currentSqrtPrice||null===e.currentSqrtPrice||""===e.currentSqrtPrice)throw new gt("GSwapService: currentSqrtPrice is required for sqrtPriceLimit calculation","currentSqrtPrice",at);const y=bo(e.currentSqrtPrice),k=e.slippageTolerance??.01;if(m){const e=function(e=.01){return new o(1).minus(e)}(k);f=y.multipliedBy(e).toString()}else{const e=function(e=.01){return new o(1).plus(e)}(k);f=y.multipliedBy(e).toString()}this.logger.debug("Calculated sqrtPriceLimit based on slippage tolerance",{currentSqrtPrice:e.currentSqrtPrice,slippageTolerance:100*k+"%",zeroForOne:m,sqrtPriceLimit:f,direction:m?"token0→token1 (downward price movement)":"token1→token0 (upward price movement)",reason:"sqrtPriceLimit sets price boundaries, amountOutMinimum provides volume protection"});const v={token0:l,token1:d,fee:e.feeTier,amount:bo(e.inputAmount).toFixed(),zeroForOne:m,sqrtPriceLimit:f,recipient:e.walletAddress,amountOutMinimum:bo(e.minOutput).multipliedBy(-1).toFixed(),uniqueKey:p};this.logger.info("🔄 SWAP DTO DETAILS (what we're sending to bundler)",{orderedToken0String:u,orderedToken1String:h,fromTokenStr:g,zeroForOne:m?`TRUE (${u} → ${h})`:`FALSE (${h} → ${u})`,inputAmount:e.inputAmount,expectedOutput:e.minOutput,slippageTolerance:100*(null!==e.slippageTolerance&&void 0!==e.slippageTolerance&&0!==e.slippageTolerance?e.slippageTolerance:.01)+"%",currentSqrtPrice:e.currentSqrtPrice,swapDto:{amount:v.amount,zeroForOne:v.zeroForOne,sqrtPriceLimit:v.sqrtPriceLimit,amountOutMinimum:v.amountOutMinimum}});const w=new t.ethers.Wallet(this.privateKey),b={Swap:[{name:"token0",type:"token0"},{name:"token1",type:"token1"},{name:"fee",type:"int256"},{name:"amount",type:"string"},{name:"zeroForOne",type:"bool"},{name:"sqrtPriceLimit",type:"string"},{name:"recipient",type:"string"},{name:"amountOutMinimum",type:"string"},{name:"uniqueKey",type:"string"}],token0:[{name:"additionalKey",type:"string"},{name:"category",type:"string"},{name:"collection",type:"string"},{name:"type",type:"string"}],token1:[{name:"additionalKey",type:"string"},{name:"category",type:"string"},{name:"collection",type:"string"},{name:"type",type:"string"}]},S={name:"ethereum",chainId:1},A=this.calculatePersonalSignPrefix(v),T={...v,prefix:A},E=await w.signTypedData(S,b,T),C={...T,signature:E,types:b,domain:S};this.logger.debug("Swap DTO signed",{prefix:C.prefix,zeroForOne:v.zeroForOne});const I=this.buildLiquidityStringsInstructions(l,d,e.feeTier,e.walletAddress),N=Hc.createClient(this.bundlerBaseUrl,3e4),D=await N.post("/bundle",{method:"Swap",signedDto:C,stringsInstructions:I}),P=en(D),x=P?.data??P?.transactionId??P?.id;if(null==x)throw this.logger.error("Bundler response structure",{status:D.status,dataType:typeof P}),new yt("Bundler response does not contain transaction ID. Response type: "+typeof P,void 0,"INVALID_RESPONSE");return this.logger.debug("Swap transaction sent to bundler",{transactionId:x,inputAmount:e.inputAmount,minOutput:e.minOutput}),x}catch(e){throw this.logger.error("Failed to send Swap to bundler",e),e}}buildLiquidityStringsInstructions(e,t,n,i){const o=fr(e),r=fr(t),s=`$pool${o}${r}$${n}`;return[s,`$userPosition${i}`,`$tokenBalance${o}${i}`,`$tokenBalance${r}${i}`,`$tokenBalance${o}${s}`,`$tokenBalance${r}${s}`]}createGSwapErrorHandler(e,t){return(n,i,o)=>{this.handleGSwapError(i,e,n,t)}}handleGSwapError(e,t,n,i){this.logger.error(e,n);const o=this.extractGSwapErrorCode(n),r=n,s=[`${e}: ${r?.message??Ct(n)}`,n],a=t.name;throw i&&("GSwapSwapError"===a&&null!==i.transactionHash&&void 0!==i.transactionHash&&s.push(i.transactionHash),"GSwapPoolError"===a&&(null!==i.tokenA&&void 0!==i.tokenA&&s.push(i.tokenA),null!==i.tokenB&&void 0!==i.tokenB&&s.push(i.tokenB)),"GSwapAssetError"===a&&null!==i.walletAddress&&void 0!==i.walletAddress&&s.push(i.walletAddress)),null!=o&&""!==o&&s.push(o),new t(...s)}extractGSwapErrorCode(e){const t=Pt(e);return void 0!==t?String(t):void 0}async ensureWebSocketConnected(){this.webSocketService.isConnected()||await this.webSocketService.connect()}calculatePersonalSignPrefix(e){return`Ethereum Signed Message:\n${JSON.stringify(e).length}${JSON.stringify(e)}`}}function Qc(e,t="image",n){const i=new FormData;if("undefined"!=typeof File&&e instanceof File)i.append(t,e);else{if(!Buffer.isBuffer(e))throw $t("file","a File object (browser) or Buffer (Node.js)");{const o=new Blob([e],{type:"image/png"});i.append(t,o,n)}}return i}class Jc extends hi{constructor(e,t,n=!1){super(e,n,t)}async uploadImageByTokenName(e){const{tokenName:t,options:n}=e;Ho(t);const i=`${t}.png`;Lo(n.file,i,"image/png");try{const e=`${n.tokenName??t}.png`,i=Qc(n.file,"image",e),o=await nn(()=>this.http.request({method:"POST",url:`${g.UPLOAD_IMAGE}?tokenName=${encodeURIComponent(n.tokenName??t)}`,data:i,headers:this.getJwtHeaders()}),{errorContext:"Image upload failed"});return"string"==typeof o?o:""}catch(e){if(e instanceof ft)throw e;if(Et(e)&&Ct(e).includes("FormData"))throw qt("File upload failed: FormData not supported in this environment. Ensure you have proper polyfills for Node.js environments.","FormData");throw e}}}const Yc={CHAT_MESSAGE:"CHAT_MESSAGE",COMMENT:"COMMENT"};function Zc(e,t){if(null==e)return[];if(Array.isArray(e))return e;const n=e[t];return Array.isArray(n)?n:[]}class el extends hi{constructor(e,t,n=!1){super(e,n,t)}buildPoolFilters(e){return{...!ei(e.search)&&{search:e.search},...!ei(e.tokenName)&&{tokenName:e.tokenName},...!ei(e.type)&&{type:e.type},...!ei(e.hasUpcomingShows)&&{hasUpcomingShows:e.hasUpcomingShows},...!ei(e.language)&&{language:e.language},...!ei(e.recentlyStreamed)&&{recentlyStreamed:e.recentlyStreamed},...!ei(e.hasRecordings)&&{hasRecordings:e.hasRecordings},...!ei(e.streamStatus)&&{streamStatus:e.streamStatus}}}async fetchSinglePage(e){const t=Math.min(e.pageSize,20),n=e.cursor,i={pageSize:String(t)};void 0!==n&&(i.cursor=n),ei(e.type)||(i.type=e.type),ei(e.tokenName)||(i.tokenName=e.tokenName),ei(e.search)||(i.search=e.search),ei(e.hasUpcomingShows)||(i.hasUpcomingShows=e.hasUpcomingShows.toString()),ei(e.language)||(i.language=e.language),ei(e.recentlyStreamed)||(i.recentlyStreamed=e.recentlyStreamed.toString()),ei(e.hasRecordings)||(i.hasRecordings=e.hasRecordings.toString()),ei(e.streamStatus)||(i.streamStatus=e.streamStatus);const o=wo(i),r=en(await rn(()=>this.http.get(g.FETCH_POOLS,o),{errorContext:"Failed to fetch pools"})),s=function(e){if(!e)return[];let t=[];if(e.tokens)if(Array.isArray(e.tokens))t=e.tokens.map(e=>({...e,createdAt:e.created_at??e.createdAt??""}));else{const n=e.tokens;t=[{...n,createdAt:n.created_at??n.createdAt??""}]}else null!==e.pools&&void 0!==e.pools&&Array.isArray(e.pools)&&(t=e.pools.map(e=>({...e,createdAt:e.created_at??e.createdAt??""})));return t}(r),a={hasNextPage:r.hasNextPage??!1},c=r.count??r.total;return void 0!==c&&(a.totalCount=c),void 0!==r.nextCursor&&null!==r.nextCursor&&(a.nextCursor=r.nextCursor),void 0!==r.prevCursor&&null!==r.prevCursor&&(a.prevCursor=r.prevCursor),void 0!==r.hasPrevPage&&(a.hasPrevPage=r.hasPrevPage),{items:s,pageInfo:a}}async fetchPools(e){const t=e?.cursor,n=e?.pageSize??Ys.DEFAULT_LIMIT;Zn(e?.tokenName)&&Ho(e.tokenName);const i=void 0!==e?.type?{recent:"RECENT",popular:"POPULAR",recordings:"RECORDINGS",seconds_streamed:"SECONDS_STREAMED"}[e.type]:void 0,o=void 0!==e?.streamStatus?{idle:"IDLE",active:"ACTIVE",disabled:"DISABLED"}[e.streamStatus]:void 0,r={...this.buildPoolFilters({search:e?.search,tokenName:e?.tokenName,type:i,hasUpcomingShows:e?.hasUpcomingShows,language:e?.language,recentlyStreamed:e?.recentlyStreamed,hasRecordings:e?.hasRecordings,streamStatus:o}),pageSize:n,...void 0!==t&&{cursor:t}},s=await this.fetchSinglePage(r);return{items:s.items,pageInfo:s.pageInfo}}async fetchAllPools(e){const t=[];let n;const i=Ys.BACKEND_MAX_PAGE_SIZE;for(;;){const o={...e,pageSize:i,...void 0!==n&&{cursor:n}},r=await this.fetchPools(o);if(t.push(...r.items),!r.pageInfo.hasNextPage)break;n=r.pageInfo.nextCursor}return{items:t,pageInfo:{hasNextPage:!1,totalCount:t.length}}}async checkPool(e){zo(e),Zn(e.tokenName)&&Ho(e.tokenName);try{const t=await this.http.post(g.VALIDATE_TOKEN,{tokenName:e.tokenName,symbol:e.symbol});if(null==t)throw new Error("Invalid response from check pool endpoint");const n=t.data??t;if(null==n)throw new Error("Invalid response from check pool endpoint");if(!0===Zn(e.symbol)){return!n.symbolAvailable}if(!0===Zn(e.tokenName)){return!n.nameAvailable}return!1}catch(e){const t=String(e),n=e,i="string"==typeof n.message?n.message:"";if(t.includes("404")||t.includes("Pool not found")||i.includes("404")||i.includes("Pool not found"))return!1;const o="number"==typeof n.statusCode?n.statusCode:null;if(404===o)return!1;if(t.includes("400")||t.includes("Missing required pool identifier")||i.includes("400")||i.includes("Missing required pool identifier"))return!1;if(400===o&&i.includes("Missing required pool identifier"))return!1;throw e}}async isTokenNameAvailable(e){try{return!await this.checkPool({tokenName:e})}catch{return!1}}async isTokenSymbolAvailable(e){try{return!await this.checkPool({symbol:e})}catch{return!1}}async fetchVolumeData(e){if(!po(e))throw new gt("Invalid options provided. Expected { tokenName: string, from?: number, to?: number, resolution?: number }","options","INVALID_OPTIONS");const{tokenName:t,from:n,to:i,resolution:o}=e;if(Ho(t),null==n||null==i||null==o)throw new gt("Graph options (from, to, resolution) are required","options","MISSING_GRAPH_OPTIONS");const r={tokenName:t,from:n,to:i,resolution:o};jo(r);const s=wo(r);return{dataPoints:await nn(()=>this.http.get(g.CHART,s),{errorContext:"Failed to fetch graph data"})}}async fetchTokenDistribution(e){if(""===e||null==e)throw Mt("tokenName","Token name");let t;Ho(e);try{t=await rn(()=>this.http.get(`${g.GET_TOKEN_DISTRIBUTION}?tokenName=${e}`),{errorContext:"Failed to fetch token distribution"})}catch(t){if(xt(t)&&500===t.response?.status)throw Kt(`Token distribution data temporarily unavailable for ${e}. This is a backend issue - please try again later.`,500);throw t}const n=en(t);if(!Array.isArray(n))throw Kt("Invalid API response: expected array of holders",t.status);for(const e of n){if(""===e.owner||null===e.owner||void 0===e.owner||"string"!=typeof e.owner)throw Kt("Invalid holder data: missing or invalid owner field",t.status);if(""===e.quantity||null===e.quantity||void 0===e.quantity||"string"!=typeof e.quantity)throw Kt("Invalid holder data: missing or invalid quantity field",t.status);const n=Un(e.quantity,NaN);if(isNaN(n)||!isFinite(n))throw Kt(`Invalid holder quantity: "${e.quantity}"`,t.status)}const i=n.reduce((e,t)=>e.plus(t.quantity),bo(0));return{holders:n.map(e=>{const t=Fo(bo(e.quantity),i,bo(0)).multipliedBy(100).toNumber();return{address:e.owner,balance:e.quantity,percentage:t}}),totalSupply:i.toFixed(),totalHolders:n.length,lastUpdated:new Date}}async fetchUserHolderContext(e,t){if(""===e||null==e)throw Mt("tokenName","Token name");if(""===t||null==t)throw Mt("userAddress","User address");return Ho(e),nn(()=>this.http.get(`${g.GET_TOKEN_DISTRIBUTION}?tokenName=${e}`,{userAddress:t}),{errorContext:"Failed to fetch user holder context"})}async fetchTokenBadges(e){if(""===e||null==e)throw Mt("tokenName","Token name");Ho(e);const t=g.GET_TOKEN_BADGES.replace(":tokenName",e.toLowerCase().trim()),n=await nn(()=>this.http.get(t),{errorContext:"Failed to fetch token badges"});return{volumeBadges:n.volumeBadge??[],engagementBadges:n.engagementBadge??[]}}async hasTokenBadge(e){const{tokenName:t,badgeType:n,badgeName:i}=e;try{const e=await this.fetchTokenBadges(t);if(null==e)return!1;const o=("volume"===n?e.volumeBadges:e.engagementBadges).find(e=>e.badgeName===i);return o?.isActive??!1}catch{return!1}}async resolveTokenNameToVault(e){try{const t=await this.fetchPools({tokenName:e});if(null!==t.items&&void 0!==t.items&&Array.isArray(t.items)&&t.items.length>0)return t.items[0].vaultAddress??null;if(null!==t.items&&void 0!==t.items&&"object"==typeof t.items){const e=t.items.tokens;return e?.vaultAddress??null}return null}catch{return null}}async fetchToken(e){if(null==e||"string"!=typeof e||""===e.trim())throw new Error("Token name is required and must be a non-empty string");Ho(e);try{const t=g.GET_TOKEN.replace(":tokenName",e.toLowerCase().trim()),n=en(await this.http.get(t));if(null!=n?.tokens){const t=Array.isArray(n.tokens)?n.tokens[0]:n.tokens;if(null==t)throw new Error(`Token not found: ${e}`);return t}throw new Error(`Invalid response format when fetching token: ${e}`)}catch(t){const n=String(t);if(n.includes("404")||n.includes("not found"))throw new Error(`Token not found: ${e}`);throw t}}async validateToken(e){if(!(null!==e.tokenName&&void 0!==e.tokenName||null!==e.symbol&&void 0!==e.symbol))throw new Error("At least one of tokenName or symbol is required");if(null!==e.tokenName&&void 0!==e.tokenName&&("string"!=typeof e.tokenName||""===e.tokenName.trim()))throw new Error("tokenName must be a non-empty string");if(null!==e.symbol&&void 0!==e.symbol&&("string"!=typeof e.symbol||""===e.symbol.trim()))throw new Error("symbol must be a non-empty string");null!==e.tokenName&&void 0!==e.tokenName&&Ho(e.tokenName);try{const t=await this.http.post(g.VALIDATE_TOKEN,{tokenName:e.tokenName?.toLowerCase().trim(),symbol:e.symbol?.toUpperCase().trim()});if(null==t)throw new Error("Invalid response from validation endpoint");const n=t.data??t;if(null==n)throw new Error("Invalid response from validation endpoint");return n}catch(e){throw this.logger.warn(`Token validation failed: ${String(e)}`),e}}async fetchTokenStats(e){if(!Zn(e))throw Mt("tokenName","Token name");Ho(e);const t=g.TOKEN_STATS.replace(":tokenName",e.toLowerCase().trim());try{const e=en(await this.http.get(t));if(!e?.stats)throw new Error("Invalid response: missing stats data");return{success:!0,data:e.stats}}catch(t){throw this.logger.warn(`Failed to fetch token stats for ${e}: ${String(t)}`),t}}async updateTokenConfig(e,t){if(""===e||null==e)throw Mt("tokenName","Token name");Ho(e),function(e){if(void 0===e.messagesEnabled&&void 0===e.commentsEnabled&&void 0===e.streamingEnabled&&void 0===e.nextLiveStreamAt&&void 0===e.streamLanguage&&void 0===e.websiteUrl&&void 0===e.telegramUrl&&void 0===e.twitterUrl&&void 0===e.instagramUrl&&void 0===e.facebookUrl&&void 0===e.redditUrl&&void 0===e.tiktokUrl)throw new gt("At least one config option must be provided (messagesEnabled, commentsEnabled, streamingEnabled, nextLiveStreamAt, streamLanguage, or social URLs)","options",at);if(void 0!==e.messagesEnabled&&"boolean"!=typeof e.messagesEnabled)throw Vt("messagesEnabled","boolean");if(void 0!==e.commentsEnabled&&"boolean"!=typeof e.commentsEnabled)throw Vt("commentsEnabled","boolean");if(void 0!==e.streamingEnabled&&"boolean"!=typeof e.streamingEnabled)throw Vt("streamingEnabled","boolean");if(void 0!==e.streamLanguage&&"string"!=typeof e.streamLanguage)throw Vt("streamLanguage","string");const t=["websiteUrl","telegramUrl","twitterUrl","instagramUrl","facebookUrl","redditUrl","tiktokUrl"];for(const n of t){const t=e[n];if(null!=t&&"string"!=typeof t)throw Vt(n,"string or null")}if(void 0!==e.nextLiveStreamAt&&null!==e.nextLiveStreamAt){if("string"!=typeof e.nextLiveStreamAt)throw Vt("nextLiveStreamAt","string or null");const t=new Date(e.nextLiveStreamAt);if(isNaN(t.getTime()))throw new gt("nextLiveStreamAt must be a valid ISO date string","nextLiveStreamAt",dt)}}(t);const n=g.UPDATE_TOKEN_CONFIG.replace(":tokenName",e.toLowerCase().trim()),i={};void 0!==t.messagesEnabled&&(i.messagesEnabled=t.messagesEnabled),void 0!==t.commentsEnabled&&(i.commentsEnabled=t.commentsEnabled),void 0!==t.streamingEnabled&&(i.streamingEnabled=t.streamingEnabled),void 0!==t.nextLiveStreamAt&&(i.nextLiveStreamAt=t.nextLiveStreamAt),void 0!==t.streamLanguage&&(i.streamLanguage=t.streamLanguage),void 0!==t.websiteUrl&&(i.websiteUrl=t.websiteUrl),void 0!==t.telegramUrl&&(i.telegramUrl=t.telegramUrl),void 0!==t.twitterUrl&&(i.twitterUrl=t.twitterUrl),void 0!==t.instagramUrl&&(i.instagramUrl=t.instagramUrl),void 0!==t.facebookUrl&&(i.facebookUrl=t.facebookUrl),void 0!==t.redditUrl&&(i.redditUrl=t.redditUrl),void 0!==t.tiktokUrl&&(i.tiktokUrl=t.tiktokUrl),await this.http.patch(n,i,this.getJwtHeaders())}}const tl=An,nl=wn,il={MAX_LENGTH:100};class ol extends hi{constructor(e,t=!1){super(e,t)}async fetchTrades(e){if(!function(e){if(null==e||"object"!=typeof e)return!1;const t=e;return ho(t,"tokenName")&&(void 0===t.tradeType||"buy"===t.tradeType||"sell"===t.tradeType)&&go(t,"userAddress")&&mo(t,"offset")&&mo(t,"pageSize")&&mo(t,"page")&&mo(t,"limit")}(e))throw new gt("Invalid options provided. Expected { tokenName: string, tradeType?: string, userAddress?: string, cursor?: string, pageSize?: number, startDate?: Date, endDate?: Date, sortOrder?: string }","options","INVALID_OPTIONS");const{tokenName:t,tradeType:n,userAddress:i,cursor:o,pageSize:r=Ys.DEFAULT_LIMIT,startDate:s,endDate:a,sortOrder:c}=e;if(!Zn(t))throw Mt("tokenName","Token name");const l={pageSize:String(Math.min(r,Sn))};void 0!==o&&(l.cursor=o);const d={...l};d.tokenName=t;const u=await this.http.get(g.GET_TRADES,d);if(null==u)throw new gt("No response from trade service","response","NO_RESPONSE");const h=en(u),m=Zc(h,"trades"),p=h?.pageInfo;return{items:m,pageInfo:p??{hasNextPage:!1}}}buildTradesQueryParams(e){const t={};null!==e.tokenName&&void 0!==e.tokenName&&e.tokenName.length>0&&(t.tokenName=an(e.tokenName)),null!==e.userAddress&&void 0!==e.userAddress&&e.userAddress.length>0&&(t.userAddress=e.userAddress),null!==e.search&&void 0!==e.search&&e.search.length>0&&(t.search=e.search);const n=void 0!==e.pageSize?Zs(e.pageSize,1,tl.MAX_LIMIT):tl.MAX_LIMIT;return void 0!==e.cursor&&(t.cursor=e.cursor),t.pageSize=String(n),null!==e.txnType&&void 0!==e.txnType&&e.txnType.length>0&&(t.txnType=e.txnType),null!==e.startDate&&void 0!==e.startDate&&e.startDate.length>0&&(t.startDate=e.startDate),null!==e.endDate&&void 0!==e.endDate&&e.endDate.length>0&&(t.endDate=e.endDate),void 0!==e.minAmount&&(t.minAmount=String(e.minAmount)),void 0!==e.maxAmount&&(t.maxAmount=String(e.maxAmount)),t}async getTrades(e){!function(e){if(void 0!==e.tokenName){if(!Zn(e.tokenName))throw Vt("tokenName","a non-empty string",typeof e.tokenName);if(e.tokenName.length>nl.MAX_LENGTH)throw jt("tokenName",nl.MAX_LENGTH,e.tokenName.length)}if(void 0!==e.userAddress){if(!Zn(e.userAddress))throw Vt("userAddress","a non-empty string",typeof e.userAddress);if(e.userAddress.length>il.MAX_LENGTH)throw jt("userAddress",il.MAX_LENGTH,e.userAddress.length)}if(void 0!==e.search){if("string"!=typeof e.search)throw Vt("search","a string",typeof e.search);if(e.search.length>256)throw jt("search",256,e.search.length)}if(ti(0,void 0,tl.MAX_LIMIT,e.pageSize),void 0!==e.txnType&&"BUY"!==e.txnType&&"SELL"!==e.txnType)throw $t("txnType",'"BUY" or "SELL"');if(void 0!==e.startDate){if(!Zn(e.startDate))throw Vt("startDate","a non-empty string",typeof e.startDate);if(isNaN(Date.parse(e.startDate)))throw $t("startDate","a valid ISO 8601 date")}if(void 0!==e.endDate){if(!Zn(e.endDate))throw Vt("endDate","a non-empty string",typeof e.endDate);if(isNaN(Date.parse(e.endDate)))throw $t("endDate","a valid ISO 8601 date")}if(void 0!==e.minAmount)try{jn(e.minAmount,0,Number.MAX_SAFE_INTEGER,"minAmount")}catch{throw $t("minAmount","a non-negative number")}if(void 0!==e.maxAmount)try{jn(e.maxAmount,0,Number.MAX_SAFE_INTEGER,"maxAmount")}catch{throw $t("maxAmount","a non-negative number")}void 0!==e.minAmount&&void 0!==e.maxAmount&&Qn(e.minAmount,e.maxAmount,"amountRange")}(e);const t=this.buildTradesQueryParams(e);return nn(()=>this.http.get(_e,t),{errorContext:"Failed to fetch trades"})}}function rl(e){return!!Zn(e)&&Tn.PATTERN.test(e)}ni({ALL:"all",DEFI:"DEFI",ASSET:"ASSET",COLLECTION:"COLLECTION",CREATED:"created"});class sl extends hi{constructor(e,t,n=!1){super(e,n,t)}async fetchProfile(e){const t=e??this.http.getAddress();if(""===t||null==t||!rl(t))throw $t("address","eth|[40-hex-chars] or client|[identifier]","Address");const n={userAddress:t},i=await this.http.get(g.GET_PROFILE,n);if(null==i)throw new gt("No response from user service","response","NO_RESPONSE");return i}async updateProfile(e){this.validateUpdateProfileData(e);let t=e.profileImage;if(!Zn(t))try{const n=await this.fetchProfile(e.address);t=n.data?.profileImage??""}catch{t=""}const n={profileImage:t,fullName:e.fullName};await nn(()=>this.http.put(g.UPDATE_PROFILE,n,this.getJwtHeaders()),{errorContext:"Profile update failed"})}async uploadProfileImage(e){this.validateUploadProfileImageOptions(e);const t=e.address??this.http.getAddress();if(null==t||""===t)throw new gt("Wallet address not available - wallet not configured","address","NO_WALLET");try{const n=`profile-image-${t}.png`,i=Qc(e.file,"image",n),o=await nn(()=>this.http.request({method:"POST",url:`${g.UPLOAD_IMAGE}?tokenName=${encodeURIComponent(t)}`,data:i,headers:this.getJwtHeaders()}),{errorContext:"Image upload failed"});return"string"==typeof o?o:""}catch(e){if(e instanceof gt||e instanceof ft)throw e;throw new gt(`Profile image upload failed: ${Ct(e)}`,"file","UPLOAD_FAILED")}}async fetchTokenList(e){return this.buildFetchRequest(g.GET_TOKEN_LIST,e,{includeType:!0,errorMessage:"Failed to fetch token list"})}async fetchTokensHeld(e){return this.buildFetchRequest(g.GET_TOKENS_HELD,e,{includeType:!1,errorMessage:"Failed to fetch tokens held"})}async fetchTokensCreated(e){const{cursor:t,pageSize:n,search:i,tokenName:o,status:r}=e??{},s=e?.type??(void 0!==r?"created":"DEFI"),a=this.http.getAddress();if(null==a||""===a)throw new gt("Wallet address not available - wallet not configured","address","NO_WALLET");const c={type:s,address:a,pageSize:n??Ys.DEFAULT_LIMIT};return void 0!==t&&(c.cursor=t),void 0!==i&&(c.search=i),void 0!==o&&(c.tokenName=o),void 0!==r&&(c.status=r),this.fetchTokenList(c)}async getManagedTokens(e={}){const t=ta({pageSize:e.pageSize??Ys.DEFAULT_LIMIT,...void 0!==e.cursor&&{cursor:e.cursor}},Sn);return nn(()=>this.http.get(g.GET_MANAGED_TOKENS,t,this.getJwtHeaders()),{errorContext:"Failed to fetch managed tokens"})}async buildFetchRequest(e,t,n){this.validateGetTokenListOptions(t);const i=ta({pageSize:t.pageSize??Ys.DEFAULT_LIMIT,...void 0!==t.cursor&&{cursor:t.cursor}},Sn);na(i,t,["address","search","tokenName","status"]),n.includeType&&!e.includes("?type=")&&(i.type="all"===(t.type??"DEFI")?"DEFI":t.type??"DEFI");let o=e;if(e.includes(":address")){const n=t.address??this.http.getAddress();if(0===n.length)throw Mt("address","User address");o=e.replace(":address",n),delete i.address}const r=en(await rn(()=>this.http.get(o,i),{errorContext:n.errorMessage})),s=Zc(r,"token"),a={hasNextPage:r.hasNextPage??!1},c=r.count??r.total;void 0!==c&&(a.totalCount=c),void 0!==r.nextCursor&&(a.nextCursor=r.nextCursor),void 0!==r.prevCursor&&(a.prevCursor=r.prevCursor),void 0!==r.hasPrevPage&&(a.hasPrevPage=r.hasPrevPage);const l={tokens:s,pageInfo:a};return void 0!==c&&(l.total=c),l}async fetchUserBalances(e){if(!rl(e.address))throw $t("address","eth|[40-hex-chars] or client|[identifier]","Address");const t=ta({pageSize:e.pageSize??Ys.DEFAULT_LIMIT,...void 0!==e.cursor&&{cursor:e.cursor}},Sn),n=g.USER_BALANCES.replace(":address",e.address),i=en(await rn(()=>this.http.get(n,t),{errorContext:"Failed to fetch user balances"}));if(!i)throw new gt("Invalid response: missing data","response","NO_DATA");const o={hasNextPage:i.hasNextPage??!1};return void 0!==i.nextCursor&&(o.nextCursor=i.nextCursor),void 0!==i.prevCursor&&(o.prevCursor=i.prevCursor),void 0!==i.hasPrevPage&&(o.hasPrevPage=i.hasPrevPage),void 0!==i.total&&(o.totalCount=i.total),{balances:Array.isArray(i.balances)?i.balances:[],pageInfo:o,total:i.total}}async fetchUserReport(e){if(!rl(e.address))throw $t("address","eth|[40-hex-chars] or client|[identifier]","Address");if(!this.jwtAuth)throw new ft("JWT authentication is required for fetchUserReport. Call sdk.login() first.","jwtAuth");const t=g.USER_REPORT.replace(":address",e.address),n=en(await rn(()=>this.http.get(t,{},this.getJwtHeaders()),{errorContext:"Failed to fetch user report"}));if(!n?.report)throw new gt("Invalid response: missing report data","response","NO_DATA");return{report:n.report}}validateGetTokenListOptions(e){const t=e.pageSize??Ys.DEFAULT_LIMIT;if(t<1||t>Sn)throw new gt(`pageSize must be between 1 and ${Sn}`,"pageSize","OUT_OF_RANGE");if(void 0!==e.address&&!rl(e.address))throw $t("address","eth|[40-hex-chars] or client|[identifier]","Address");const n=Mo(e.search);if(null!==n&&!(Zn(i=n)&&i.length>=Rn&&i.length<=Fn))throw Ht("search",Rn,Fn,n.length,"Search query");var i;const o=Mo(e.tokenName);if(null!==o&&!(Zn(r=o)&&r.length>=wn.MIN_LENGTH&&r.length<=wn.MAX_LENGTH))throw Ht("tokenName",wn.MIN_LENGTH,wn.MAX_LENGTH,o.length,"Token name");var r}validateUpdateProfileData(e){if(!rl(e.address))throw $t("address","eth|[40-hex-chars] or client|[identifier]","Address");if(t=e.fullName,!(Zn(t)&&t.length>=Bn.FULL_NAME.MIN_LENGTH&&t.length<=Bn.FULL_NAME.MAX_LENGTH&&Bn.FULL_NAME.ALPHABETS_ONLY_PATTERN.test(t)))throw Ht("fullName",Bn.FULL_NAME.MIN_LENGTH,Bn.FULL_NAME.MAX_LENGTH,e.fullName.length,"Full name");var t}validateUploadProfileImageOptions(e){if(void 0!==e.address&&!rl(e.address))throw $t("address","eth|[40-hex-chars] or client|[identifier]","Address")}}class al{constructor(e,t,n=!1){this.http=e,this.poolService=new el(e,t,n),this.tradeService=new ol(e,n),this.userService=new sl(e,t,n),this.imageService=new Jc(e,t,n)}setJwtAuth(e){this.poolService.setJwtAuth(e),this.userService.setJwtAuth(e),this.imageService.setJwtAuth(e)}async uploadImageByTokenName(e){return this.imageService.uploadImageByTokenName(e)}async fetchPools(e={}){return this.poolService.fetchPools(e)}async fetchAllPools(e){return this.poolService.fetchAllPools(e)}async checkPool(e){return this.poolService.checkPool(e)}async checkPoolExists(e,t){const n={};return void 0!==e&&(n.tokenName=e),void 0!==t&&(n.symbol=t),this.poolService.checkPool(n)}async isTokenNameAvailable(e){return this.poolService.isTokenNameAvailable(e)}async isTokenSymbolAvailable(e){return this.poolService.isTokenSymbolAvailable(e)}async fetchVolumeData(e){return this.poolService.fetchVolumeData(e)}async fetchTokenDistribution(e){return this.poolService.fetchTokenDistribution(e)}async fetchUserHolderContext(e,t){return this.poolService.fetchUserHolderContext(e,t)}async fetchTokenBadges(e){return this.poolService.fetchTokenBadges(e)}async hasTokenBadge(e){return this.poolService.hasTokenBadge(e)}async fetchTrades(e){return this.tradeService.fetchTrades(e)}async getTrades(e){return this.tradeService.getTrades(e)}async fetchProfile(e){return this.userService.fetchProfile(e)}async updateProfile(e){return this.userService.updateProfile(e)}async uploadProfileImage(e){return this.userService.uploadProfileImage(e)}async fetchTokenList(e){return this.userService.fetchTokenList(e)}async fetchTokensHeld(e){return this.userService.fetchTokensHeld(e)}async fetchTokensCreated(e={}){return this.userService.fetchTokensCreated(e)}async getManagedTokens(e={}){return this.userService.getManagedTokens(e)}getAddress(){return this.http.getAddress()}validateTokenName(e){return Ho(e)}async fetchToken(e){return this.poolService.fetchToken(e)}async validateToken(e){return this.poolService.validateToken(e)}async fetchTokenStats(e){return this.poolService.fetchTokenStats(e)}async updateTokenConfig(e,t){return this.poolService.updateTokenConfig(e,t)}async fetchUserBalances(e){return this.userService.fetchUserBalances(e)}async fetchUserReport(e){return this.userService.fetchUserReport(e)}}class cl extends oa{constructor(e,t,n,i=!1,o){super(e,t,n,i,o)}validateContent(e,t){if(!Zn(e))throw Mt("content","Message content");if(0===e.trim().length)throw Mt("content","Message content");Vn(e,t===Yc.CHAT_MESSAGE?En.CHAT_MESSAGES_V1.MAX_LENGTH:En.COMMENTS_V1.MAX_LENGTH,"content")}validateMessageId(e){if(!Zn(e))throw Mt("id","Message ID");if(e.length<10||e.length>64)throw $t("id","valid message ID format","Message ID")}validateMessageType(e){if(e!==Yc.CHAT_MESSAGE&&e!==Yc.COMMENT)throw new gt(`type must be one of: ${Object.values(Yc).join(", ")}`,"type","INVALID_VALUE")}async fetchMessages(e){const t=void 0!==e.type,n=void 0!==e.tokenName&&""!==e.tokenName;t&&this.validateMessageType(e.type),n&&this.validateTokenName(e.tokenName,vn);const i={};void 0!==e.cursor&&(i.cursor=e.cursor),i.pageSize=e.pageSize??Ys.DEFAULT_LIMIT;const o=ta(i,An.MAX_LIMIT),r={};void 0!==o.pageSize&&(r.pageSize=o.pageSize),void 0!==o.cursor&&(r.cursor=o.cursor),t&&(r.type=e.type.toUpperCase()),n&&(r.tokenName=an(e.tokenName)),void 0!==e.userAddress&&""!==e.userAddress&&(r.userAddress=e.userAddress),void 0!==e.search&&""!==e.search&&(r.search=e.search);const s=await this.http.get(Re.GET_MESSAGES,r),a=this.extractData(s);return{messages:a.messages,pageInfo:a.pageInfo}}async createMessage(e){this.validateMessageType(e.type),this.validateTokenName(e.tokenName,vn),this.validateContent(e.content,e.type);const t={type:e.type,tokenName:an(e.tokenName),content:e.content.trim()},n=await this.http.post(Re.CREATE_MESSAGE,t,this.getJwtHeaders());return{message:this.extractData(n)}}async updateMessage(e,t){this.validateMessageId(e),this.validateContent(t.content);const n=this.buildEndpointWithId(Re.UPDATE_MESSAGE,e),i={content:t.content.trim()},o=await this.http.put(n,i,this.getJwtHeaders());return{message:this.extractData(o)}}async deleteMessage(e){this.validateMessageId(e);const t=this.buildEndpointWithId(Re.DELETE_MESSAGE,e);return await this.http.delete(t,void 0,this.getDualAuthHeaders()),{success:!0}}async getPinnedMessage(e){this.validateTokenName(e,vn);const t=await this.http.get(Re.GET_PINNED,{tokenName:an(e)});return{message:this.extractData(t)}}async pinMessage(e){this.validateMessageId(e);const t=Re.PIN_MESSAGE.replace(":id",e);return await this.http.post(t,{},this.getDualAuthHeaders()),{success:!0}}async unpinMessage(e){this.validateMessageId(e);const t=Re.UNPIN_MESSAGE.replace(":id",e);return await this.http.post(t,{},this.getDualAuthHeaders()),{success:!0}}async getMessageStats(){const e=await this.http.get(Re.GET_MESSAGE_STATS,void 0,this.getDualAuthHeaders());return this.extractData(e)}}const ll=ii({MODERATOR:"MODERATOR",TECHNICAL_PRODUCER:"TECHNICAL_PRODUCER",MANAGER:"MANAGER"}),dl={TOKEN:"TOKEN",ALL_OWNER_TOKENS:"ALL_OWNER_TOKENS"},ul=ii(dl),hl={PENDING:"PENDING",CLAIMED:"CLAIMED",REVOKED:"REVOKED",EXPIRED:"EXPIRED"};ii(hl);class gl extends oa{constructor(e,t,n,i=!1,o){super(e,t,n,i,o)}validateRole(e){if(!Zn(e))throw Mt("role","Role");if(!function(e){return ll.includes(e)}(e))throw $t("role",`one of: ${ll.join(", ")}`,"Role")}validateInviteCodeFormat(e){if(!Zn(e))throw Mt("inviteCode","Invite code");if(t=e,!Pn.PATTERN.test(t))throw $t("inviteCode","valid invite code format","Invite code");var t}validateInviteScope(e){if(void 0!==e&&(t=e,!ul.includes(t)))throw new gt(`Invalid invite scope. Must be one of: ${ul.join(", ")}`,"inviteScope","INVALID_VALUE");var t}async createInvite(e){this.validateInviteScope(e.inviteScope);const t=e.inviteScope??dl.TOKEN;if(t===dl.TOKEN){if(void 0===e.tokenName||""===e.tokenName)throw new gt("Token name is required for TOKEN scope invites","tokenName","REQUIRED");this.validateTokenName(e.tokenName,kn)}else if(t===dl.ALL_OWNER_TOKENS&&e.tokenName)throw new gt("Token name should not be provided for ALL_OWNER_TOKENS scope invites","tokenName","INVALID_VALUE");this.validateRole(e.role),this.validateOptionalString(e.description,"description","Description",En.DESCRIPTION.MAX_LENGTH),this.validateOptionalDate(e.expiresAt,"expiresAt","Expiration date");const n=X,i={inviteScope:t,role:e.role};t===dl.TOKEN&&null!=e.tokenName&&""!==e.tokenName&&(i.tokenName=an(e.tokenName)),void 0!==e.description&&(i.description=e.description),void 0!==e.expiresAt&&(i.expiresAt=e.expiresAt);const o=await this.http.post(n,i,this.getMultiAuthHeaders());return{invite:this.extractData(o)}}async listInvites(e){void 0!==e.tokenName&&""!==e.tokenName&&this.validateTokenName(e.tokenName,kn),this.validateStatusFilter(e.status,hl);const t=Y,n={...this.buildPaginationParams(e,An.MAX_LIMIT)};void 0!==e.tokenName&&""!==e.tokenName&&(n.tokenName=an(e.tokenName)),void 0!==e.status&&(n.status=e.status);const i=await this.http.get(t,n,this.getMultiAuthHeaders()),o=this.extractData(i);return{items:o.invites,pageInfo:o.pageInfo}}async revokeInvite(e){this.validatePositiveInteger(e,"inviteId","Invite ID");const t=this.buildEndpoint(Z,{id:String(e)});Zt(await this.http.delete(t,void 0,this.getMultiAuthHeaders()),"Failed to revoke invite")}async updateInviteRole(e){this.validatePositiveInteger(e.inviteId,"inviteId","Invite ID"),this.validateRole(e.role);const t=this.buildEndpoint(ee,{id:String(e.inviteId)}),n={role:e.role},i=await this.http.patch(t,n,this.getMultiAuthHeaders());return{invite:this.extractData(i)}}async updateInvite(e){if(this.validatePositiveInteger(e.inviteId,"inviteId","Invite ID"),void 0===e.role&&(void 0===e.description||""===e.description))throw new gt("At least one of role or description must be provided","options","REQUIRED");void 0!==e.role&&this.validateRole(e.role),void 0!==e.description&&this.validateOptionalString(e.description,"description","Description",En.DESCRIPTION.MAX_LENGTH);const t=this.buildEndpoint(te,{id:String(e.inviteId)}),n={};void 0!==e.role&&(n.role=e.role),void 0!==e.description&&(n.description=e.description);const i=await this.http.patch(t,n,this.getMultiAuthHeaders());return{invite:this.extractData(i)}}async claimInvite(e){this.validateInviteCodeFormat(e.inviteCode);const t=Q,n={inviteCode:e.inviteCode},i=await this.http.post(t,n,this.getMultiAuthHeaders()),o=this.extractData(i);return"tokenName"in o&&void 0!==o.tokenName?{token:o}:{blanketAccess:o}}async getModeratedTokens(e){const t=J,n=this.buildPaginationParams(e??{},An.MAX_LIMIT),i=await this.http.get(t,n,this.getMultiAuthHeaders()),o=this.extractData(i);return{items:o.tokens,pageInfo:o.pageInfo}}async getInviteByCode(e){this.validateInviteCodeFormat(e);const t=this.buildEndpoint(ne,{code:e}),n=await this.http.get(t,{});return this.extractData(n)}}class ml{constructor(){this.eventLatencies=[],this.maxLatencySamples=1e4,this.eventsProcessed=0,this.eventsDropped=0,this.queueDepth=0,this.maxQueueDepth=0,this.startTime=Date.now(),this.perPoolMetrics=new Map,this.memorySnapshots=[],this.maxMemorySnapshots=100,this.recordMemory()}recordEventLatency(e){this.eventLatencies.push(e),this.eventLatencies.length>this.maxLatencySamples&&this.eventLatencies.shift(),this.eventsProcessed++}recordEventDropped(){this.eventsDropped++}updateQueueDepth(e){this.queueDepth=e,this.maxQueueDepth=Math.max(this.maxQueueDepth,e)}recordPoolCacheHit(e,t){const n=this.getPoolMetrics(e);n.cacheHits++,n.eventsProcessed++,n.totalLatency+=t,n.lastEventTime=new Date}recordPoolCacheMiss(e,t){const n=this.getPoolMetrics(e);n.cacheMisses++,n.eventsProcessed++,n.totalLatency+=t,n.lastEventTime=new Date}getLatencyPercentiles(){if(0===this.eventLatencies.length)return{p50:0,p95:0,p99:0};const e=[...this.eventLatencies].sort((e,t)=>e-t),t=Ln(Math.floor(.5*e.length),0),n=Ln(Math.floor(.95*e.length),0),i=Ln(Math.floor(.99*e.length),0);return{p50:e[t]??0,p95:e[n]??0,p99:e[i]??0}}getCacheHitRate(){if(0===this.eventsProcessed)return 0;let e=0;for(const t of this.perPoolMetrics.values())e+=t.cacheHits;return Ln(e/this.eventsProcessed*100,NaN)}getThroughputPerSecond(){const e=Ln(yn(this.startTime)/1e3,0);return 0===e?0:Ln(this.eventsProcessed/e,0)}recordMemory(){if("undefined"!=typeof process&&"function"==typeof process.memoryUsage){const e=Ln(process.memoryUsage().heapUsed/1024/1024,0);this.memorySnapshots.push(e),this.memorySnapshots.length>this.maxMemorySnapshots&&this.memorySnapshots.shift()}}getMemoryUsedMB(){return"undefined"!=typeof process&&"function"==typeof process.memoryUsage?Ln(process.memoryUsage().heapUsed/1024/1024,0):0}getPoolAverageLatency(e){const t=this.perPoolMetrics.get(e);return t&&0!==t.eventsProcessed?Ln(t.totalLatency/t.eventsProcessed,0):0}getPoolCacheHitRate(e){const t=this.perPoolMetrics.get(e);if(!t)return 0;const n=t.cacheHits+t.cacheMisses;return 0===n?0:Ln(t.cacheHits/n*100,0)}getHealthMetrics(e,t,n,i,o){const r=this.getLatencyPercentiles(),s=this.getMemoryUsedMB();return{eventProcessing:{queueDepth:this.queueDepth,eventsProcessed:this.eventsProcessed,eventsDropped:this.eventsDropped,throughputPerSecond:this.getThroughputPerSecond()},metrics:{latencyP50:r.p50,latencyP95:r.p95,latencyP99:r.p99,cacheHitRate:this.getCacheHitRate()},memory:{usedMB:Ln(So(s,1),0),maxMB:o,percentUsed:Math.min(100,Ln(So(s/o*100,1),0))},pools:{totalMonitored:e,hotCacheSize:t,warmCacheSize:n,coldCacheSize:i}}}reset(){this.eventLatencies=[],this.eventsProcessed=0,this.eventsDropped=0,this.queueDepth=0,this.maxQueueDepth=0,this.startTime=Date.now(),this.perPoolMetrics.clear(),this.memorySnapshots=[]}getSummary(){const e=this.eventLatencies.length>0?Ln(this.eventLatencies.reduce((e,t)=>e+t,0)/this.eventLatencies.length,0):0;return{eventsProcessed:this.eventsProcessed,eventsDropped:this.eventsDropped,cacheHitRate:this.getCacheHitRate(),averageLatency:Ln(So(e,0),0),memoryUsedMB:Ln(So(this.getMemoryUsedMB(),1),0),throughputPerSecond:Ln(So(this.getThroughputPerSecond(),2),0)}}getPoolMetrics(e){let t=this.perPoolMetrics.get(e);return t||(t={eventsProcessed:0,totalLatency:0,cacheHits:0,cacheMisses:0},this.perPoolMetrics.set(e,t)),t}}class pl{static createPoolKey(e,t,n){return`${e}/${t}/${n}`}static parsePoolKey(e){if(!Zn(e))return null;const t=e.split("/");if(3!==t.length)return null;const n=t[0]?.trim(),i=t[1]?.trim(),o=t[2]?.trim();if(""===n||""===i||""===o)return null;const r=Mn(o,-1);return r<0?null:{token0:n,token1:i,feeTier:r}}static isValidPoolKey(e){if("string"!=typeof e)return!1;return null!==this.parsePoolKey(e)}static getToken0(e){const t=this.parsePoolKey(e);return t?.token0??null}static getToken1(e){const t=this.parsePoolKey(e);return t?.token1??null}static getFeeTier(e){const t=this.parsePoolKey(e);return t?.feeTier??null}static containsToken(e,t){const n=this.parsePoolKey(e);return!!n&&(n.token0===t||n.token1===t)}static containsTokenPair(e,t,n){const i=this.parsePoolKey(e);if(!i)return!1;const o=i.token0===t||i.token1===t,r=i.token0===n||i.token1===n;return o&&r&&t!==n}static normalizeFee(e){if(ei(e))return null;const t="number"==typeof e?e:Gn(String(e),NaN);return Number.isNaN(t)?null:1===t||1e4===t?1e4:.3===t||3e3===t?3e3:.05===t||500===t?500:Number.isInteger(t)&&t>0?t:null}static formatFeeAsPercentage(e){return`${So(bo(e).dividedBy(1e4),2)}%`}static isValidTokenPair(e,t){return Boolean(e)&&Boolean(t)&&e!==t}}class fl{constructor(e){this.logger=e??new un({debug:!1,context:"SwapEventExtractor"})}walkPayloadForSwaps(e,t){const n=[],i=new WeakSet,o=(e,r=0)=>{if(r>50)this.logger.debug("Payload nesting exceeded maximum depth of 50");else if(null!=e&&"string"!=typeof e&&"object"==typeof e){if(i.has(e))return;i.add(e);const s=this.extractSwapFromObject(e);s&&!t.has(s.transactionId)&&(n.push(s),t.add(s.transactionId));for(const t of Object.values(e))o(t,r+1)}};return o(e,0),n}extractSwapFromObject(e){const t=this.extractTransactionId(e);if(null===t)return null;const n=e.Data,i=null==n||"object"!=typeof n||Array.isArray(n)?e:n,o=this.extractToken(i,"token0","fromToken","source"),r=this.extractToken(i,"token1","toToken","destination");if(null===o||null===r)return null;const s=this.extractAmount(i,"amount0","amountIn","inputAmount"),a=this.extractAmount(i,"amount1","amountOut","outputAmount");if(null===s||null===a)return null;const c=this.extractFeeTier(i);if(null===c)return null;const l=this.extractTimestamp(i),d=this.buildPoolKey(o,r,c),u=this.determineDirection(i,o,r),h={transactionId:t,poolKey:d,token0:o,token1:r,amount0:s,amount1:a,feeTier:c,direction:u,timestamp:l,exactInput:this.determineExactInput(i,u)},g=this.extractUser(i);return void 0!==g&&(h.user=g),h}extractTransactionId(e){const t=["transactionId","txId","tx_id","hash","txHash","id"];for(const n of t){const t=e[n];if(Zn(t))return t}return null}extractToken(e,...t){for(const n of t){const t=e[n];if(Zn(t))return t}return null}extractAmount(e,...t){for(const n of t){const t=e[n];if(!ei(t)){const e=String(t).trim();if(/^-?\d+(\.\d+)?([eE]-?\d+)?$/.test(e))return e}}return null}extractFeeTier(e){const t=["poolFee","feeTier","fee","feeTierBps","liquidityFeeBps","feeAmount"];for(const n of t){const t=e[n],i=this.normalizeFee(t);if(null!==i)return i}return null}normalizeFee(e){if(ei(e))return null;const t="number"==typeof e?e:Gn(String(e),NaN);return Number.isNaN(t)?null:1===t||1e4===t?1e4:.3===t||3e3===t?3e3:.05===t||500===t?500:Number.isInteger(t)?t:null}extractTimestamp(e){const t=["timeStamp","timestamp","time","createdAt","date"];for(const n of t){const t=e[n];if("number"==typeof t)return t;if("string"==typeof t){const e=new Date(t).getTime();if(!Number.isNaN(e))return e}}return Date.now()}extractUser(e){const t=["userAddress","user","from","sender","wallet","address"];for(const n of t){const t=e[n];if(Zn(t))return t}}determineDirection(e,t,n){const i=e.zeroForOne??e.direction;if("boolean"==typeof i)return i?"zeroForOne":"oneForZero";if("string"==typeof i){if($o(i,"zerotoone")||"0to1"===i)return"zeroForOne";if($o(i,"onetozero")||"1to0"===i)return"oneForZero"}if(e.fromToken===t||e.inputToken===t)return"zeroForOne";if(e.fromToken===n||e.inputToken===n)return"oneForZero";const o=this.extractAmount(e,"amount0","amountIn");return null!==o&&Un(o,0),"zeroForOne"}determineExactInput(e,t){if("boolean"==typeof e.exactInput)return e.exactInput;if("boolean"==typeof e.exactOutput)return!e.exactOutput;const n=void 0!==e.amountIn&&null!==e.amountIn,i=void 0!==e.amountOut&&null!==e.amountOut,o=void 0!==e.inputAmount&&null!==e.inputAmount,r=void 0!==e.outputAmount&&null!==e.outputAmount;return!(!n||i)||!(i&&!n)&&(!(!o||r)||!(r&&!o))}buildPoolKey(e,t,n){return`${e}/${t}/${n}`}}const yl=new Map;class kl{static getCached(e){const t=e.toString();return this.CACHE.has(t)||this.CACHE.set(t,bo(e)),this.CACHE.get(t)}static clearCache(){this.CACHE.clear()}static getCacheStats(){return{size:this.CACHE.size,entries:Array.from(this.CACHE.keys())}}static trimCache(e=1e3){if(this.CACHE.size>e){const t=this.CACHE.size-e,n=Array.from(this.CACHE.keys());for(let e=0;e<t;e++)this.CACHE.delete(n[e])}}}kl.CACHE=new Map,kl.ZERO=Kn(0),kl.ONE=Kn(1),kl.FEE_PIPS=Kn(1e6),kl.MIN_SQRT_RATIO=Kn("4295128739"),kl.MAX_SQRT_RATIO=new o("1461446703485210103287273052203988822378723970342");const vl={maxIterations:100,enableBigNumberCache:!0,roundingMode:o.ROUND_DOWN,debugLogging:!1};class wl{static calculateSwapDelta(e,t,n={}){const i=Date.now(),o={...vl,...n};try{const n=this.initializeSwapState(e,t,o);o.debugLogging&&this.logger.debug("Initialized swap state",{sqrtPrice:n.sqrtPrice.toString(),liquidity:n.liquidity.toString(),tick:n.tick,zeroForOne:t.zeroForOne});const r=this.computeSwapLoop(n,e,t,o);o.debugLogging&&this.logger.debug("Swap loop completed",{stepCount:r.stepCount,ticksCrossed:r.ticksCrossed.length,priceHitLimit:r.priceHitLimit});const s=this.createUpdatedPool(e.pool,r.state,t,o),a=this.calculateFinalAmounts(n,r.state,t);let c;if(void 0!==t.actualSqrtPrice&&""!==t.actualSqrtPrice){const e=bo(s.sqrtPrice),n=bo(t.actualSqrtPrice),i=e.minus(n).abs();c=Ln(Fo(i,n).times(100).toNumber(),0)}const l=yn(i);o.debugLogging&&this.logger.debug("Swap delta calculated",{calculationTimeMs:l,amount0:a.amount0.toString(),amount1:a.amount1.toString(),driftPercentage:c}),l>100&&this.logger.warn("Swap calculation exceeded 100ms",{calculationTimeMs:l,stepCount:r.stepCount,ticksCrossed:r.ticksCrossed.length}),r.priceHitLimit&&this.logger.warn("Swap price hit limit - partially fulfilled",{zeroForOne:t.zeroForOne,stepCount:r.stepCount}),r.stepCount>50&&this.logger.warn("Unusually complex swap detected",{stepCount:r.stepCount,ticksCrossed:r.ticksCrossed.length});return{updatedPool:s,updatedTicks:r.updatedTicks,amount0:a.amount0,amount1:a.amount1,feeAmount0:a.feeAmount0,feeAmount1:a.feeAmount1,ticksCrossed:r.ticksCrossed,metadata:{calculationTimeMs:l,swapSteps:r.stepCount,priceHitLimit:r.priceHitLimit,...void 0!==c&&{driftPercentage:c}}}}catch(e){throw this.logger.error("Swap delta calculation failed",e),new Error(`Swap delta calculation failed: ${Ct(e)}`)}}static initializeSwapState(e,t,n){const{pool:i}=e;if(null===i.sqrtPrice||void 0===i.sqrtPrice||null===i.liquidity||void 0===i.liquidity)throw new Error("Invalid pool data: missing sqrtPrice or liquidity");const o=n.enableBigNumberCache?kl.getCached.bind(kl):e=>Kn(e),r="string"==typeof i.sqrtPrice?i.sqrtPrice:So(i.sqrtPrice,0),s="string"==typeof i.liquidity?i.liquidity:So(i.liquidity,0),a=o(r),c=o(s),l=i.tick??0,u=d.sqrtPriceToTick(bo(r)),h=Math.abs(u-l);h>100&&this.logger.warn("Significant tick/price mismatch detected in pool state",{poolTick:l,calculatedTick:u,drift:h,threshold:100});const g=o(t.amountSpecified);Ro(g,"amountSpecified");const m="string"==typeof i.feeGrowthGlobal1?i.feeGrowthGlobal1:So(i.feeGrowthGlobal1,0),p="string"==typeof i.feeGrowthGlobal0?i.feeGrowthGlobal0:So(i.feeGrowthGlobal0,0),f=t.zeroForOne?o(m):o(p);return{sqrtPrice:a,liquidity:c,tick:l,amountSpecifiedRemaining:g,amountCalculated:kl.ZERO,feeGrowthGlobalX:f,protocolFee:kl.ZERO}}static computeSwapLoop(e,t,n,i){const{pool:r,tickDataMap:s}=t,a=[],c={};let l=0;const u=n.zeroForOne?kl.MIN_SQRT_RATIO:kl.MAX_SQRT_RATIO,h=bo("0.000001");for(;e.amountSpecifiedRemaining.gt(h)&&!e.sqrtPrice.eq(u)&&l<i.maxIterations;){l++;const[t,h]=this.findNextInitializedTick(s,e.tick,r.tickSpacing,n.zeroForOne);let g;if(i.debugLogging&&this.logger.debug(`Swap step ${l}`,{currentTick:e.tick,tickNext:t,initialized:h,sqrtPrice:e.sqrtPrice.toString(),liquidity:e.liquidity.toString(),amountRemaining:e.amountSpecifiedRemaining.toString()}),h&&t>=-887272&&t<=887272){const e=d.tickToSqrtPrice(t);g=e instanceof o?e:bo(String(e))}else g=u;const m=n.zeroForOne?Co(g,u):Eo(g,u),p=this.executeSwapStep(e.sqrtPrice,m,e.liquidity,e.amountSpecifiedRemaining,r.fee,n.exactInput);if(e.sqrtPrice=p.sqrtPriceNext,n.exactInput){const t=p.amountIn.plus(p.feeAmount);t.lte(0)?e.amountSpecifiedRemaining=kl.ZERO:(e.amountSpecifiedRemaining=e.amountSpecifiedRemaining.minus(t),e.amountSpecifiedRemaining.lt(0)&&(e.amountSpecifiedRemaining=kl.ZERO)),e.amountCalculated=e.amountCalculated.minus(p.amountOut)}else{p.amountOut.lte(0)?e.amountSpecifiedRemaining=kl.ZERO:e.amountSpecifiedRemaining=e.amountSpecifiedRemaining.plus(p.amountOut),e.amountCalculated=e.amountCalculated.plus(p.amountIn.plus(p.feeAmount))}if(e.liquidity.gt(0)){const t=Fo(p.feeAmount,e.liquidity);e.feeGrowthGlobalX=e.feeGrowthGlobalX.plus(t)}if(e.sqrtPrice.eq(g)&&h){const o=s[t.toString()];if(null==o)throw new Error(`Missing tick data for initialized tick ${t}`);const r=n.zeroForOne?bo(o.liquidityNet).negated():bo(o.liquidityNet);if(e.liquidity=e.liquidity.plus(r),e.liquidity.lt(0))throw new Error(`Negative liquidity after crossing tick ${t}: ${e.liquidity.toString()}`);a.push(t),c[t.toString()]=o,i.debugLogging&&this.logger.debug(`Crossed tick ${t}`,{liquidityNet:r.toString(),newLiquidity:e.liquidity.toString()})}if(e.sqrtPrice.eq(g))e.tick=n.zeroForOne?t-1:t;else{const t=d.sqrtPriceToTick(bo(e.sqrtPrice.toString()));e.tick=t}}if(l>=i.maxIterations)throw new Error(`Swap calculation exceeded maximum iterations (${i.maxIterations}). Possible infinite loop or very complex swap.`);const g=e.sqrtPrice.eq(u);return{state:e,ticksCrossed:a,priceHitLimit:g,stepCount:l,updatedTicks:c}}static createUpdatedPool(e,t,n,i){const o=Object.assign(Object.create(Object.getPrototypeOf(e)),e);if(o.sqrtPrice=bo(t.sqrtPrice).toFixed(0),o.liquidity=bo(t.liquidity).toFixed(0),o.tick=t.tick,n.zeroForOne?o.feeGrowthGlobal1=bo(t.feeGrowthGlobalX).toFixed(0):o.feeGrowthGlobal0=bo(t.feeGrowthGlobalX).toFixed(0),n.zeroForOne){const n=bo(e.protocolFeesToken0);o.protocolFeesToken0=n.plus(t.protocolFee).toFixed(0)}else{const n=bo(e.protocolFeesToken1);o.protocolFeesToken1=n.plus(t.protocolFee).toFixed(0)}return o}static calculateFinalAmounts(e,t,n){let i,o,r,s;if(n.exactInput){const e=bo(n.amountSpecified),a=t.amountCalculated.abs();n.zeroForOne?(i=e.negated(),o=a,r=kl.ZERO,s=kl.ZERO):(i=a,o=e.negated(),r=kl.ZERO,s=kl.ZERO)}else{const e=bo(n.amountSpecified),a=t.amountCalculated.abs();n.zeroForOne?(i=a.negated(),o=e,r=kl.ZERO,s=kl.ZERO):(i=e,o=a.negated(),r=kl.ZERO,s=kl.ZERO)}const a=t.feeGrowthGlobalX.minus(e.feeGrowthGlobalX).times(e.liquidity);return n.zeroForOne?s=a:r=a,{amount0:i,amount1:o,feeAmount0:r,feeAmount1:s}}static findNextInitializedTick(e,t,n,i){const o=Object.keys(e).map(e=>$n(e,0)).sort((e,t)=>e-t);if(0===o.length){return[i?-887272:887272,!1]}if(i){const e=o.reverse().find(e=>e<t);return void 0!==e?[e,!0]:[-887272,!1]}{const e=o.find(e=>e>t);return void 0!==e?[e,!0]:[887272,!1]}}static executeSwapStep(e,t,n,i,r,s){_o(n),Ro(i,"amountRemaining");const a=[500,3e3,1e4];if(!a.includes(r))throw new Error(`Invalid fee tier: ${r}. Must be one of: ${a.join(", ")}`);const c=d.computeSwapStep(e,t,n,i,r,t.lt(e)),l=c[0],u=c[1],h=c[2],g=c[3],m=o.isBigNumber(l)?l:bo(String(l)),p=o.isBigNumber(u)?u:bo(String(u)),f=o.isBigNumber(h)?h:bo(String(h)),y=o.isBigNumber(g)?g:bo(String(g));return{sqrtPriceStart:e,tickNext:d.sqrtPriceToTick(m),sqrtPriceNext:m,initialised:!1,amountIn:p,amountOut:f,feeAmount:y}}}wl.logger=new un({debug:!1,context:"SwapDeltaCalculator"});class bl extends gi{constructor(e,t,n,i){super(!1,i),this.cache=new Map,this.tierSizes={hot:50,warm:200,cold:0},this.tierTTLs={hot:1/0,warm:18e5,cold:3e5},this.refetchThresholds={swapCount:50,driftPercent:.05},this.fetchPoolFn=e,this.config=t,this.metrics=n,this.tierSizes.cold=Math.max(0,this.config.maxPools-this.tierSizes.hot-this.tierSizes.warm),this.logger.debug(`Initialized with cache limits: hot=${this.tierSizes.hot}, warm=${this.tierSizes.warm}, cold=${this.tierSizes.cold}, max=${this.config.maxPools}`)}async getPool(e){const t=this.cache.get(e);if(t){if(!(Date.now()>t.expiresAt))return t.lastAccessTime=Date.now(),this.checkRefetchNeeded(e,t),this.metrics.recordPoolCacheHit(e,0),t.poolData;this.cache.delete(e),this.logger.debug(`Cache expired for pool ${e}`)}this.metrics.recordPoolCacheMiss(e,0);try{const t=await this.fetchPoolFn(e),n=this.determineTier(),i={poolData:t,tier:n,lastAccessTime:Date.now(),expiresAt:Date.now()+this.tierTTLs[n],swapsSinceRefetch:0,cumulativeDrift:0,lastDeltaAppliedTime:Date.now()};return this.cache.set(e,i),this.cache.size>this.config.maxPools&&this.evictLRU(),this.logger.debug(`Fetched pool ${e} (tier: ${n})`),t}catch(t){throw this.logger.error(`Failed to fetch pool ${e}:`,t),t}}updatePoolWithSwapDelta(e,t,n,i,o){const r=this.cache.get(e);if(!r)return this.logger.debug(`Pool ${e} not in cache for delta update`),!1;try{if(o){const s="zeroForOne"===t,a=s?n:i,c={transactionId:o.transactionId,timestamp:o.timestamp,amountSpecified:a,zeroForOne:s,exactInput:o.exactInput},l=wl.calculateSwapDelta(r.poolData,c);r.poolData={...r.poolData,pool:l.updatedPool},r.swapsSinceRefetch++,r.lastDeltaAppliedTime=Date.now(),void 0!==l.metadata.driftPercentage?(r.cumulativeDrift+=l.metadata.driftPercentage,this.logger.debug(`Delta applied for ${e}: drift=${l.metadata.driftPercentage.toFixed(4)}%, cumulative=${r.cumulativeDrift.toFixed(2)}%`)):this.logger.debug(`Delta applied for ${e}: ${l.ticksCrossed.length} ticks crossed`)}else r.swapsSinceRefetch++,r.lastDeltaAppliedTime=Date.now();return this.shouldRefetch(r)&&(this.logger.debug(`Refetch needed for ${e}: swaps=${r.swapsSinceRefetch}, drift=${(100*r.cumulativeDrift).toFixed(2)}%`),r.expiresAt=Date.now()),!0}catch(t){return this.logger.error(`Failed to update pool ${e}:`,t),r.expiresAt=Date.now(),!1}}getStats(){const e={totalCached:this.cache.size,hotCacheSize:0,warmCacheSize:0,coldCacheSize:0,memoryUsedMB:this.metrics.getMemoryUsedMB()};for(const t of this.cache.values())"hot"===t.tier?e.hotCacheSize++:"warm"===t.tier?e.warmCacheSize++:e.coldCacheSize++;return e}getPoolInfo(e){const t=this.cache.get(e);return t?{poolKey:e,tier:t.tier,lastAccessTime:new Date(t.lastAccessTime),expiresAt:new Date(t.expiresAt),swapsSinceRefetch:t.swapsSinceRefetch,cumulativeDrift:t.cumulativeDrift,isExpired:Date.now()>t.expiresAt}:null}async warmCache(e){if(""===e)throw Mt("poolKey","Pool key");if(this.cache.has(e))return!0;try{return await sr(async()=>{await this.getPool(e),this.logger.debug(`Cache warmed for ${e}`)},`Failed to warm cache for ${e}`,this.logger),!0}catch{return!1}}async warmCacheBatch(e,t=5){if(0===e.length)throw Mt("poolKeys","Pool keys array");return sr(async()=>{const n={succeeded:0,failed:0,total:e.length};let i=0;const o=new Set;for(;i<e.length||o.size>0;){for(;i<e.length&&o.size<t;){const t=e[i];i++;const r=this.warmCache(t).then(e=>{e?n.succeeded++:n.failed++});o.add(r),r.finally(()=>o.delete(r))}o.size>0&&await Promise.race(o)}return this.logger.debug(`Cache warming complete: ${n.succeeded}/${n.total} succeeded`),n},"Failed to warm cache batch",this.logger)}clear(){this.cache.clear(),this.logger.debug("Cache cleared")}clearExpired(){const e=Date.now();let t=0;for(const[n,i]of this.cache)e>i.expiresAt&&(this.cache.delete(n),t++);t>0&&this.logger.debug(`Cleared ${t} expired entries`)}determineTier(){const e=Array.from(this.cache.values()).filter(e=>"hot"===e.tier).length,t=Array.from(this.cache.values()).filter(e=>"warm"===e.tier).length;return e<this.tierSizes.hot?"hot":t<this.tierSizes.warm?"warm":"cold"}checkRefetchNeeded(e,t){this.shouldRefetch(t)&&(this.logger.debug(`Scheduling refetch for ${e}: swaps=${t.swapsSinceRefetch}, drift=${(100*t.cumulativeDrift).toFixed(2)}%`),t.expiresAt=Date.now())}shouldRefetch(e){return e.swapsSinceRefetch>=this.refetchThresholds.swapCount||e.cumulativeDrift>=this.refetchThresholds.driftPercent}evictLRU(){const e=Array.from(this.cache.entries()).filter(([e,t])=>"cold"===t.tier).sort((e,t)=>e[1].lastAccessTime-t[1].lastAccessTime);if(0===e.length){this.logger.warn("No cold cache entries to evict, trying warm cache");const e=Array.from(this.cache.entries()).filter(([e,t])=>"warm"===t.tier).sort((e,t)=>e[1].lastAccessTime-t[1].lastAccessTime);if(e.length>0){const[t]=e[0];this.cache.delete(t),this.logger.debug(`Evicted warm cache entry: ${t}`)}return}const[t]=e[0];this.cache.delete(t),this.logger.debug(`Evicted cold cache entry: ${t}`)}async refreshWarmAndHotTiers(){const e=Array.from(this.cache.entries()).filter(([e,t])=>"hot"===t.tier||"warm"===t.tier).sort((e,t)=>t[1].lastAccessTime-e[1].lastAccessTime).slice(0,10);if(0===e.length)return;const t=e.map(([e,t])=>this.fetchPoolFn(e).then(n=>{null!=t&&(t.poolData=n,t.lastAccessTime=Date.now(),t.swapsSinceRefetch=0,t.cumulativeDrift=0),this.logger.debug(`Refreshed ${e} during background warming`)}).catch(t=>{this.logger.debug(`Failed to refresh ${e} during background warming:`,t)})),n=new Promise(e=>setTimeout(()=>e(),5e3));await Promise.race([Promise.all(t),n])}}class Sl extends gi{constructor(e,t,n){super(!1,n),this.queue=[],this.isShuttingDown=!1,this.currentConcurrency=0,this.maxConcurrencyReached=0,this.eventsDropped=0,this.totalBatchesProcessed=0,this.totalBatchSize=0,this.eventsProcessedCount=0,this.processor=null,this.processingScheduled=!1,this.scheduleProcessing=e=>{"undefined"!=typeof setImmediate?setImmediate(e):Promise.resolve().then(e)},this.config=e,this.metrics=t,this.logger.debug(`Initialized with maxQueueSize=${this.config.maxQueueSize}, batchSize=${this.config.batchSize}, maxConcurrent=${this.config.maxConcurrent}`)}setProcessor(e){this.processor=e}enqueue(e){return this.isShuttingDown?(this.logger.debug(`Rejecting event (queue shutting down): ${e.transactionId}`),this.metrics.recordEventDropped(),this.eventsDropped++,!1):this.queue.length>=this.config.maxQueueSize?(this.logger.warn(`Queue full (${this.queue.length}/${this.config.maxQueueSize}), dropping event: ${e.transactionId}`),this.metrics.recordEventDropped(),this.eventsDropped++,!1):(this.queue.push(e),this.metrics.updateQueueDepth(this.queue.length),this.processingScheduled||this.isShuttingDown||(this.processingScheduled=!0,this.scheduleProcessing(()=>{this.processNextBatch()})),!0)}getQueueSize(){return this.queue.length}getStats(){return{queueSize:this.queue.length,eventsProcessed:this.eventsProcessedCount,eventsDropped:this.eventsDropped,currentConcurrent:this.currentConcurrency,maxConcurrentReached:this.maxConcurrencyReached,averageBatchSize:this.totalBatchesProcessed>0?Math.floor(this.totalBatchSize/this.totalBatchesProcessed):0,totalBatchesProcessed:this.totalBatchesProcessed}}async waitForEmpty(e){return new Promise(t=>{const n=()=>{0!==this.queue.length||0!==this.currentConcurrency?setTimeout(n,10):t()};void 0!==e&&e>0&&setTimeout(()=>t(),e),n()})}async shutdown(e=3e4){this.isShuttingDown=!0,this.logger.debug("Shutting down queue...");const t=Date.now();for(;this.queue.length>0||this.currentConcurrency>0;){if(yn(t)>e){this.logger.warn(`Queue shutdown timeout: ${this.queue.length} events remaining, ${this.currentConcurrency} processing`);break}await new Promise(e=>setTimeout(e,50))}this.logger.debug("Queue shutdown complete")}clear(){const e=this.queue.length;this.queue.length=0,this.eventsDropped+=e,this.metrics.updateQueueDepth(0),this.logger.warn(`Cleared ${e} events from queue`)}async processNextBatch(){if(this.processingScheduled=!1,this.isShuttingDown&&0===this.queue.length)return;if(this.currentConcurrency>=this.config.maxConcurrent)return void setTimeout(()=>{this.processingScheduled||(this.processingScheduled=!0,setImmediate(()=>{this.processNextBatch()}))},10);const e=Math.min(this.config.batchSize,this.queue.length,this.config.maxConcurrent-this.currentConcurrency);if(0===e)return;const t=this.queue.splice(0,e);this.metrics.updateQueueDepth(this.queue.length),this.currentConcurrency+=t.length,this.currentConcurrency>this.maxConcurrencyReached&&(this.maxConcurrencyReached=this.currentConcurrency),this.totalBatchSize+=t.length,this.totalBatchesProcessed++;try{const e=await Promise.allSettled(t.map(e=>this.processEvent(e)));for(let n=0;n<e.length;n++){const i=e[n];this.eventsProcessedCount++,"rejected"===i.status&&this.logger.error(`Failed to process event ${t[n].transactionId}:`,i.reason)}}finally{this.currentConcurrency-=t.length}this.queue.length>0&&!this.processingScheduled&&(this.processingScheduled=!0,this.scheduleProcessing(()=>{this.processNextBatch()}))}async processEvent(e){if(!this.processor)return void this.logger.warn("No processor set, discarding event:",e.transactionId);const t=Date.now();try{await this.processor(e);const n=yn(t);this.metrics.recordEventLatency(n)}catch(t){throw this.logger.error(`Event processing failed for ${e.transactionId}:`,t),t}}}class Al extends gi{constructor(e,t,n,i={},o){super(!1,o),this.socket=null,this.maxSeenTransactions=1e4,this.listeners=[],this.onErrorCallbacks=[],this.isActive=!1,this.listenerRegistered=!1,this.handleSwapEvent=null,this.warmingIntervalHandle=null,e instanceof Promise?this.socketReady=e.then(e=>(this.socket=e,this.setupConnectionMonitoring(),e)).catch(e=>{throw this.logger.error("Failed to resolve socket promise:",e),e}):(this.socket=e,this.socketReady=Promise.resolve(e),this.setupConnectionMonitoring()),this.metrics=new ml,this.config=this.applyDefaults(i),this.eventExtractor=new fl(this.logger),this.cacheManager=new bl(t,this.config,this.metrics,this.logger),this.eventQueue=new Sl(this.config,this.metrics,this.logger),this.seenTransactions=new Tl(this.maxSeenTransactions),this.reconnectionManager=new Kc({maxAttempts:3,baseDelayMs:1e3,useExponentialBackoff:!0,maxDelayMs:3e4}),this.eventQueue.setProcessor(e=>this.processSwapEvent(e)),this.logger.debug("Initialized MultiPoolStateManager")}subscribe(e,t){this.listeners.push(t),e.onError&&this.onErrorCallbacks.push(e.onError),this.isActive||(this.setupWebSocketListener(e),this.isActive=!0);const n=this;return()=>{if(n.listeners=n.listeners.filter(e=>e!==t),e.onError&&(n.onErrorCallbacks=n.onErrorCallbacks.filter(t=>t!==e.onError)),0===n.listeners.length&&0===n.onErrorCallbacks.length)try{n.unsubscribe()}catch(e){n.logger.error("Error during unsubscribe cleanup:",e)}}}getHealth(){const e=this.cacheManager.getStats(),t=this.eventQueue.getStats(),n=this.metrics.getHealthMetrics(e.totalCached,e.hotCacheSize,e.warmCacheSize,e.coldCacheSize,this.getMaxMemoryMB()),i=this.determineHealthStatus(t,e),o={connected:this.socket?.connected??!1,reconnectAttempts:this.reconnectionManager.getAttempts()};this.socket?.connected&&(o.lastConnectionTime=new Date);const r=t.queueSize/this.config.maxQueueSize*100,s=e.totalCached/this.config.maxPools*100,a=e.memoryUsedMB/this.getMaxMemoryMB()*100,c=this.generateHealthRecommendations(i,r,s,a,n.metrics.cacheHitRate);return{...n,status:i,websocket:o,recommendations:c,detailedMetrics:{eventQueueUtilization:r,cacheUtilization:s,memoryUtilization:a}}}generateHealthRecommendations(e,t,n,i,o){const r=[];return"failed"===e&&(r.push("🔴 System is in FAILED state - immediate action required"),this.socket?.connected||r.push("Reconnect WebSocket - connection lost"),t>90&&r.push("Reduce incoming event rate or increase maxQueueSize")),"degraded"===e&&(r.push("⚠️ System is DEGRADED - performance may be impacted"),t>75&&r.push(`Queue utilization ${t.toFixed(1)}% - consider increasing maxQueueSize`),i>80&&r.push(`Memory usage ${i.toFixed(1)}% - consider reducing cache size or memory profile`)),"healthy"===e&&(o<50&&r.push(`Cache hit rate ${o.toFixed(1)}% is low - consider warming more pools`),i>50&&r.push("Memory usage is moderate - monitor for growth trends"),t>50&&r.push("Queue utilization is elevated - monitor for bottlenecks")),r}getSummary(){return{...this.metrics.getSummary(),queueStats:this.eventQueue.getStats(),cacheStats:this.cacheManager.getStats()}}startBackgroundWarming(){if(null!==this.warmingIntervalHandle)return;const e=this.config.refreshIntervalMs;this.warmingIntervalHandle=function(e,t){const n=e;return yl.set(n,{createdAt:Date.now(),label:t}),n}(setInterval(()=>{this.performBackgroundWarming().catch(e=>{this.logger.error("Background warming error:",e)})},e),"background-warming"),this.logger.debug(`Background warming started (interval: ${e}ms)`)}stopBackgroundWarming(){null!==this.warmingIntervalHandle&&(!function(e){const t=e;yl.delete(t)}(this.warmingIntervalHandle),clearInterval(this.warmingIntervalHandle),this.warmingIntervalHandle=null,this.logger.debug("Background warming stopped"))}async performBackgroundWarming(){const e=this.cacheManager.getStats();if(0!==e.totalCached)try{await this.cacheManager.refreshWarmAndHotTiers(),this.logger.debug(`Background warming completed: ${e.totalCached} pools in cache (hot: ${e.hotCacheSize}, warm: ${e.warmCacheSize})`)}catch(e){this.logger.debug("Background warming encountered an error:",e)}}async shutdown(){this.stopBackgroundWarming(),await this.socketReady.catch(()=>{}),this.unsubscribe(),await this.eventQueue.shutdown(),this.cacheManager.clear(),this.metrics.reset()}setupConnectionMonitoring(){this.socket&&(this.socket.on("disconnect",()=>{this.logger.warn("WebSocket disconnected"),this.notifyError(new Error("WebSocket disconnected")),this.config.autoRecover&&this.attemptReconnection().catch(e=>{this.logger.error("Reconnection failed:",e)})}),this.socket.on("connect_error",e=>{this.logger.error("WebSocket connection error:",e),this.notifyError(Et(e)?e:new Error(Ct(e)))}))}async attemptReconnection(){const e=this.reconnectionManager.getAttempts(),t=this.reconnectionManager.getMaxAttempts();if(this.logger.debug(`Reconnection attempt ${e+1}/${t}`),this.reconnectionManager.isExhausted())return this.logger.error(`Max reconnection attempts (${t}) exceeded - performing full reset`),void this.performFullReset();if(e<2)if(0===e)this.logger.debug("Tier 1: Quick reconnect");else{const e=this.reconnectionManager.getNextDelay();this.logger.debug(`Tier 2: Exponential backoff (${e}ms)`),await new Promise(t=>setTimeout(t,e))}try{this.socket?.disconnect&&(this.socket.disconnect(),this.logger.debug("Disconnected for reconnection")),this.socket?.connect?.(),this.logger.debug("Reconnection initiated"),this.reconnectionManager.recordAttempt()}catch(e){throw this.logger.error("Failed to initiate reconnection:",e),e}}performFullReset(){this.logger.warn("Performing full system reset due to connection failures"),this.stopBackgroundWarming();const e=this.getHealth();this.logger.debug("System state before reset:",{status:e.status,queueSize:e.eventProcessing.eventsProcessed,cachedPools:e.pools.totalMonitored,memory:`${e.memory.usedMB}MB / ${e.memory.maxMB}MB`,cacheHitRate:`${e.metrics.cacheHitRate.toFixed(2)}%`}),this.cacheManager.clear(),this.metrics.reset(),this.reconnectionManager.reset(),this.notifyError(new Error("System reset: connection lost and recovery failed - please restart monitoring")),this.logger.info("System reset complete - ready for restart")}setupWebSocketListener(e){if(this.listenerRegistered)return void this.logger.debug("WebSocket listener already registered");const t=this;this.handleSwapEvent=(n,...i)=>{try{const n=Date.now(),o=i[0],r=t.eventExtractor.walkPayloadForSwaps(o,t.seenTransactions);if(0===r.length)return;t.logger.debug(`Extracted ${r.length} swaps from payload`);for(const n of r){if(t.filterSwap(n,e)){t.eventQueue.enqueue(n)||t.logger.debug(`Swap dropped due to queue overflow: ${n.transactionId}`)}}const s=yn(n);t.metrics.recordEventLatency(s)}catch(e){t.logger.error("Error processing WebSocket payload:",e),t.notifyError(Et(e)?e:new Error(Ct(e)))}},this.socket?(this.socket.onAny(this.handleSwapEvent),this.listenerRegistered=!0,this.setupConnectionMonitoring()):this.logger.warn("Socket not available for listener registration"),this.startBackgroundWarming(),this.logger.debug("WebSocket listener registered for all events")}unsubscribe(){this.stopBackgroundWarming(),this.handleSwapEvent&&this.listenerRegistered&&this.socket&&(this.socket.offAny(this.handleSwapEvent),this.listenerRegistered=!1),this.isActive=!1,this.listeners=[],this.onErrorCallbacks=[],this.logger.debug("Unsubscribed from swap events")}filterSwap(e,t){if(void 0!==t.tokenFilter&&""!==t.tokenFilter){if(!pl.containsToken(e.poolKey,t.tokenFilter))return!1}if(t.pairTokens){const[n,i]=t.pairTokens;if(!pl.containsTokenPair(e.poolKey,n,i))return!1}if(void 0!==t.feeTierFilter&&""!==t.feeTierFilter){if(pl.normalizeFee(t.feeTierFilter)!==e.feeTier)return!1}return void 0===t.userFilter||""===t.userFilter||e.user===t.userFilter}async processSwapEvent(e){const t=Date.now();try{const n=this.cacheManager.updatePoolWithSwapDelta(e.poolKey,e.direction,e.amount0,e.amount1,e);e.poolStateUpdated=n;const i=yn(t);this.metrics.recordEventLatency(i);for(const t of this.listeners)try{const n=t(e);n instanceof Promise&&await n}catch(t){this.logger.error(`Listener error for swap ${e.transactionId}:`,t)}}catch(t){this.logger.error(`Failed to process swap ${e.transactionId}:`,t),this.notifyError(Et(t)?t:new Error(Ct(t)))}}notifyError(e){for(const t of this.onErrorCallbacks)try{t(e)}catch(e){this.logger.error("Error in error callback:",e)}}determineHealthStatus(e,t){return!this.socket?.connected||e.queueSize>.9*this.config.maxQueueSize?"failed":e.queueSize>.75*this.config.maxQueueSize||t.memoryUsedMB>.9*this.getMaxMemoryMB()?"degraded":"healthy"}getMaxMemoryMB(){switch(this.config.memoryProfile){case"conservative":return 55;case"aggressive":return 530;default:return 250}}applyDefaults(e){return{memoryProfile:e.memoryProfile??"moderate",maxPools:e.maxPools??500,softLimit:e.softLimit??200,preloadTopN:e.preloadTopN??200,warmingTimeoutMs:e.warmingTimeoutMs??3e4,refreshIntervalMs:e.refreshIntervalMs??3e5,maxQueueSize:e.maxQueueSize??1e4,batchSize:e.batchSize??100,maxConcurrent:e.maxConcurrent??10,autoRecover:e.autoRecover??!0,maxParallelRefetch:e.maxParallelRefetch??20,enableDeltaOptimization:e.enableDeltaOptimization??!0,enableOfflineQuotes:e.enableOfflineQuotes??!0,metricsEnabled:e.metricsEnabled??!0,debug:e.debug??!1}}}class Tl{constructor(e){this.map=new Map,this.maxSize=e}has(e){return this.map.has(e)}add(e){if(this.map.has(e))return this.map.delete(e),this.map.set(e,Date.now()),this;if(this.map.size>=this.maxSize){const e=this.map.keys().next().value;this.map.delete(e)}return this.map.set(e,Date.now()),this}delete(e){return this.map.delete(e)}clear(){this.map.clear()}get size(){return this.map.size}}const El="10000",Cl="1000";function Il(e){return`${e}-${Date.now()}-${Math.random().toString(36).substring(2,11)}`}function Nl(){return Date.now()+6e4}function Dl(e){return""!==e&&"string"==typeof e&&/^[a-zA-Z0-9]{3,50}$/.test(e)}function Pl(e){try{return Math.floor(parseFloat(String(e))??0).toString()}catch{return"0"}}function xl(e){return""!==e&&"string"==typeof e&&/^eth\|[0-9a-fA-F]{40}$/.test(e)}class _l extends hi{constructor(e){super(e)}getCollectionClaimFee(){return El}getTokenClassCreateFee(){return Cl}async estimateMintFee(e){try{if(this.logger.debug("Estimating mint fee",e),0===e.collection.length||0===e.type.length||0===e.category.length||0===e.quantity.length)throw new Error("Missing required parameters for mint fee estimation");if(!xl(e.ownerAddress))throw new Error(`Invalid owner address format: ${e.ownerAddress}`);const t="0";return this.logger.debug("Estimated mint fee:",t),t}catch(e){throw this.logger.error("Failed to estimate mint fee",e),e}}estimateNftOperationFees(e){let t="0";const n={};if(e.claimCollection){const e=El;n.collectionClaim=e,t=String(BigInt(t)+BigInt(e))}if((e.createTokenClasses??0)>0){const i=Cl,o=String(BigInt(i)*BigInt(e.createTokenClasses));n.tokenClassCreate=i,n.tokenClassCount=e.createTokenClasses,t=String(BigInt(t)+BigInt(o))}return{totalFee:t,breakdown:n}}async claimCollection(e){try{if(this.logger.debug("Claiming NFT collection",e.collectionName),!Dl(e.collectionName))throw new Error(`Invalid collection name format. Must be alphanumeric, 3-50 characters: ${e.collectionName}`);if(!await this.isCollectionAvailable(e.collectionName))throw new Error(`Collection name already claimed: ${e.collectionName}`);const t={collectionName:e.collectionName,expiresAt:Nl(),uniqueKey:Il("auth")};this.logger.debug("Built claim DTO",t);return{transactionId:`claim-${Date.now()}`,collection:e.collectionName,authorizedUser:"",status:"pending"}}catch(e){throw this.logger.error("Failed to claim collection",e),e}}async fetchUserCollections(e){try{if(this.logger.debug("Fetching user collections for",e),!xl(e))throw new Error(`Invalid wallet address format: ${e}`);const t=[];return this.logger.debug(`Found ${t.length} collections for user`),t}catch(e){throw this.logger.error("Failed to fetch user collections",e),e}}async isCollectionAvailable(e){try{if(this.logger.debug("Checking collection availability",e),!Dl(e))throw new Error(`Invalid collection name format: ${e}`);const t=!0;return this.logger.debug(`Collection ${e} available:`,t),t}catch(e){throw this.logger.error("Failed to check collection availability",e),e}}async createTokenClass(e){try{if(this.logger.debug("Creating NFT token class",e),null==e.collection||0===e.collection.length||null==e.type||0===e.type.length||null==e.category||0===e.category.length)throw new Error("Missing required parameters: collection, type, category");if(!Dl(e.collection))throw new Error(`Invalid collection name: ${e.collection}`);if(void 0!==e.symbol&&(""===(t=e.symbol)||"string"!=typeof t||!/^[a-zA-Z]{1,8}$/.test(t)))throw new Error(`Invalid token symbol: ${e.symbol}`);const n={collection:e.collection,type:e.type,category:e.category,name:e.name,description:e.description,image:e.image,symbol:e.symbol,rarity:e.rarity,maxSupply:void 0!==e.maxSupply?Pl(e.maxSupply):void 0,maxCapacity:void 0!==e.maxCapacity?Pl(e.maxCapacity):void 0,additionalKey:e.additionalKey,expiresAt:Nl(),uniqueKey:Il("create")};this.logger.debug("Built token class DTO",n);return{transactionId:`create-${Date.now()}`,tokenClass:{collection:e.collection,type:e.type,category:e.category,additionalKey:e.additionalKey??""},status:"pending"}}catch(e){throw this.logger.error("Failed to create token class",e),e}var t}async fetchTokenClasses(e){try{if(this.logger.debug("Fetching token classes",e),!Dl(e.collection))throw new Error(`Invalid collection name: ${e.collection}`);const t=[];return this.logger.debug(`Found ${t.length} token classes`),t}catch(e){throw this.logger.error("Failed to fetch token classes",e),e}}async mintNft(e){try{if(this.logger.debug("Minting NFT",e),0===e.collection.length||0===e.type.length||0===e.category.length||0===e.quantity.length)throw new Error("Missing required parameters for minting");const t=parseInt(e.quantity,10);if(t<=0)throw new Error("Quantity must be greater than 0");if(!xl(e.ownerAddress))throw new Error(`Invalid owner address: ${e.ownerAddress}`);const n=this.estimateMintFee({collection:e.collection,type:e.type,category:e.category,quantity:e.quantity,ownerAddress:e.ownerAddress});this.logger.debug("Estimated mint fee:",n);const i={collection:e.collection,type:e.type,category:e.category,quantity:e.quantity,owner:e.ownerAddress,additionalKey:e.additionalKey??"none",expiresAt:Nl(),uniqueKey:Il("mint")};this.logger.debug("Built mint DTO",i);const o=`mint-${Date.now()}`,r=Array.from({length:t},(e,t)=>t+1);return{transactionId:o,mintedQuantity:e.quantity,owner:e.ownerAddress,tokenInstances:r,tokenClass:{collection:e.collection,type:e.type,category:e.category}}}catch(e){throw this.logger.error("Failed to mint NFT",e),e}}async fetchNftBalances(e,t){try{if(this.logger.debug("Fetching NFT balances for",{ownerAddress:e,collectionFilter:t}),!xl(e))throw new Error(`Invalid owner address: ${e}`);const n=[];return this.logger.debug(`Found ${n.length} NFT balances`),n}catch(e){throw this.logger.error("Failed to fetch NFT balances",e),e}}}class Rl extends hi{constructor(e,t=!1,n){super(e,t,n)}extractData(e){if(e.error||void 0===e.data){const t=e.message??"Notification operation failed";throw new Error(t)}return e.data}async registerPushToken(e){this.logger.debug("Registering push token",{platform:e.platform});const t=this.getJwtHeaders(),n=await this.http.post(Je,{token:e.token,platform:e.platform,...void 0!==e.deviceId?{deviceId:e.deviceId}:{}},t),i=this.extractData(n);return this.logger.debug("Push token registered",{registered:i.registered}),i}async unregisterPushToken(e){this.logger.debug("Unregistering push token");const t=this.getJwtHeaders(),n=await this.http.request({method:"DELETE",url:Ye,data:{token:e},headers:t}),i=this.extractData(n);return this.logger.debug("Push token unregistered",{unregistered:i.unregistered}),i}async getPreferences(){this.logger.debug("Fetching notification preferences");const e=this.getJwtHeaders(),t=await this.http.get(Ze,void 0,e),n=this.extractData(t);return this.logger.debug("Fetched notification preferences",{tradesEnabled:n.tradesEnabled,streamsEnabled:n.streamsEnabled}),{preferences:n}}async updatePreferences(e){this.logger.debug("Updating notification preferences",e);const t=this.getJwtHeaders(),n=await this.http.put(et,e,t),i=this.extractData(n);return this.logger.debug("Updated notification preferences",{tradesEnabled:i.tradesEnabled,streamsEnabled:i.streamsEnabled}),{preferences:i}}}class Fl extends hi{constructor(e,t=!1){super(e,t)}async getHomeOEmbedJson(e={}){this.logger.debug("Fetching home oEmbed (JSON)");const t=await this.http.get(g.OEMBED,{format:"json"});return this.logger.debug("Fetched home oEmbed (JSON)",{title:t.title}),{oembed:t}}async getHomeOEmbedHtml(e={}){this.logger.debug("Fetching home oEmbed (HTML)");const t=await this.http.get(g.OEMBED,{},{responseType:"text"});return this.logger.debug("Fetched home oEmbed (HTML)"),{html:t}}async getPoolOEmbedJson(e){const{tokenName:t}=e;if(null==t||"string"!=typeof t||""===t.trim())throw new gt("tokenName is required","tokenName","REQUIRED_FIELD");this.logger.debug("Fetching pool oEmbed (JSON)",{tokenName:t});const n=g.OEMBED_BUY_SELL.replace(":tokenName",t.toLowerCase().trim()),i=await this.http.get(n,{format:"json"});return this.logger.debug("Fetched pool oEmbed (JSON)",{tokenName:t,title:i.title}),{oembed:i}}async getPoolOEmbedHtml(e){const{tokenName:t}=e;if(null==t||"string"!=typeof t||""===t.trim())throw new gt("tokenName is required","tokenName","REQUIRED_FIELD");this.logger.debug("Fetching pool oEmbed (HTML)",{tokenName:t});const n=g.OEMBED_BUY_SELL.replace(":tokenName",t.toLowerCase().trim()),i=await this.http.get(n,{},{responseType:"text"});return this.logger.debug("Fetched pool oEmbed (HTML)",{tokenName:t}),{html:i}}async getProfileOEmbedJson(e){const{address:t}=e;if(null==t||"string"!=typeof t||""===t.trim())throw new gt("address is required","address","REQUIRED_FIELD");this.logger.debug("Fetching profile oEmbed (JSON)",{address:t});const n=g.OEMBED_PROFILE.replace(":address",encodeURIComponent(t.toLowerCase().trim())),i=await this.http.get(n,{format:"json"});return this.logger.debug("Fetched profile oEmbed (JSON)",{address:t,title:i.title}),{oembed:i}}async getProfileOEmbedHtml(e){const{address:t}=e;if(null==t||"string"!=typeof t||""===t.trim())throw new gt("address is required","address","REQUIRED_FIELD");this.logger.debug("Fetching profile oEmbed (HTML)",{address:t});const n=g.OEMBED_PROFILE.replace(":address",encodeURIComponent(t.toLowerCase().trim())),i=await this.http.get(n,{},{responseType:"text"});return this.logger.debug("Fetched profile oEmbed (HTML)",{address:t}),{html:i}}}function Bl(e){if(!Zn(e))throw Mt("address","Address")}const Ol={PENDING:"PENDING",CLAIMED:"CLAIMED",REVOKED:"REVOKED",EXPIRED:"EXPIRED"},Ul={ACTIVE:"ACTIVE",REVOKED:"REVOKED"},Ll=ni(Ol),Ml=ni(Ul);function $l(e){if(!Zn(e))throw new Error("Address must be a non-empty string");try{Ei(e,"address")}catch{throw new Error("Invalid wallet address format. Must be eth|..., 0x..., or client|... format")}}function Kl(e){try{Xn(e,"id")}catch(e){if(e instanceof gt)throw new Error("Invite ID must be a positive integer");throw e}}class ql extends oa{constructor(e,t,n,i=!1,o){super(e,t,n,i,o)}validateInviteCodeFormat(e){if(!Zn(e))throw Mt("inviteCode","Invite code");!function(e){if(!Zn(e))throw new Error("Invite code must be a non-empty string");Vn(e,100,"code")}(e)}validateWalletAddressFormat(e){if(!Zn(e))throw Mt("address","Address");$l(e)}async createInvite(e={}){!function(e){try{ci(e.description,"description",255)}catch(e){if(e instanceof gt)throw e.message.includes("255")?new Error("description must be at most 255 characters"):new Error("description must be a string");throw e}if(void 0!==e.expiresAt){if(!Zn(e.expiresAt))throw new Error("expiresAt must be a non-empty string");try{li(e.expiresAt,"expiresAt")}catch(e){if(e instanceof gt)throw new Error("expiresAt must be a valid ISO 8601 date string");throw e}if(fn(e.expiresAt)&&pn(e.expiresAt)<=new Date)throw new Error("expiresAt must be in the future")}}(e),this.validateOptionalString(e.description,"description","Description",En.DESCRIPTION.MAX_LENGTH),this.validateOptionalDate(e.expiresAt,"expiresAt","Expiration date");const t=oe,n={};void 0!==e.description&&(n.description=e.description),void 0!==e.expiresAt&&(n.expiresAt=e.expiresAt);const i=await this.http.post(t,n,this.getDualAuthHeaders());return{invite:this.extractData(i)}}async listInvites(e={}){!function(e){if(void 0!==e.status&&!Ll(e.status))throw Jt("status",e.status,Object.values(Ol),"status");ti(0,void 0,50,e.pageSize,e.cursor)}(e),this.validateStatusFilter(e.status,Ol);const t=re,n={...this.buildPaginationParams(e,An.MAX_LIMIT)};void 0!==e.status&&(n.status=e.status);const i=await this.http.get(t,n,this.getDualAuthHeaders()),o=this.extractData(i);return{items:o.invites,pageInfo:o.pageInfo}}async getInviteByCode(e){this.validateInviteCodeFormat(e);const t=this.buildEndpoint(se,{code:e}),n=await this.http.get(t,{});return this.extractData(n)}async revokeInvite(e){Kl(e);const t=this.buildEndpoint(ce,{id:String(e)});Zt(await this.http.delete(t,this.getDualAuthHeaders()),"Failed to revoke invite")}async claimInvite(e){this.validateInviteCodeFormat(e);const t=ae,n={inviteCode:e},i=await this.http.post(t,n,this.getJwtHeaders());return{invite:this.extractData(i)}}async listOverseers(e={}){!function(e){if(void 0!==e.status&&!Ml(e.status))throw Jt("status",e.status,Object.values(Ul),"status");ti(0,void 0,50,e.pageSize,e.cursor)}(e),this.validateStatusFilter(e.status,Ul);const t=le,n={...this.buildPaginationParams(e,An.MAX_LIMIT)};void 0!==e.status&&(n.status=e.status);const i=await this.http.get(t,n,this.getDualAuthHeaders()),o=this.extractData(i);return{items:o.overseers,pageInfo:o.pageInfo}}async createOverseerDirect(e){!function(e){if(null==e||"object"!=typeof e)throw new gt("Options are required");if(!Zn(e.userAddress))throw new gt("userAddress is required and must be a non-empty string");try{Ei(e.userAddress,"userAddress")}catch{throw new gt("Invalid wallet address format. Must be eth|..., 0x..., or client|... format")}if(void 0!==e.description){if("string"!=typeof e.description)throw new gt("description must be a string");if(e.description.length>255)throw new gt("description must be at most 255 characters")}}(e),this.validateWalletAddressFormat(e.userAddress),this.validateOptionalString(e.description,"description","Description",En.DESCRIPTION.MAX_LENGTH);const t=de,n={userAddress:e.userAddress};void 0!==e.description&&(n.description=e.description);const i=await this.http.post(t,n,this.getDualAuthHeaders());return{overseer:this.extractData(i)}}async revokeOverseer(e){this.validateWalletAddressFormat(e);const t=this.buildEndpoint(ue,{address:e});Zt(await this.http.delete(t,this.getDualAuthHeaders()),"Failed to revoke overseer")}async getMyStatus(){const e=he,t=await this.http.get(e,{},this.getJwtHeaders());return this.extractData(t)}async getSummary(){const e=ge,t=await this.http.get(e,{},this.getDualAuthHeaders());return this.extractData(t)}async getBanStats(){const e=me,t=await this.http.get(e,{},this.getDualAuthHeaders());return this.extractData(t)}async getTokenBanStats(){const e=pe,t=await this.http.get(e,{},this.getDualAuthHeaders());return this.extractData(t)}async getInviteStats(){const e=fe,t=await this.http.get(e,{},this.getDualAuthHeaders());return this.extractData(t)}async getFlagStats(){const e=ye,t=await this.http.get(e,{},this.getDualAuthHeaders());return this.extractData(t)}async getUserStats(){const e=ke,t=await this.http.get(e,{},this.getDualAuthHeaders());return this.extractData(t)}async listOverseerUsers(e){const t=e??{};Object.keys(t).length>0&&function(e){if(null==e||"object"!=typeof e)throw new gt("Options are required");if(void 0!==e.search){if("string"!=typeof e.search)throw new gt("Search must be a string");if(0===e.search.length)throw new gt("Search query cannot be empty string")}if(void 0!==e.sortBy){if("string"!=typeof e.sortBy)throw new gt("Sort field must be a string");if(0===e.sortBy.length)throw new gt("Sort field cannot be empty string")}if(void 0!==e.sortOrder&&"asc"!==e.sortOrder&&"desc"!==e.sortOrder)throw new gt('Sort order must be "asc" or "desc"')}(t);const n=ve,i=this.buildPaginationParams(t,An.MAX_LIMIT);void 0!==t.search&&""!==t.search&&(i.search=t.search),void 0!==t.sortBy&&""!==t.sortBy&&(i.sortBy=t.sortBy),void 0!==t.sortOrder&&(i.sortOrder=t.sortOrder);const o=await this.http.get(n,i,this.getDualAuthHeaders()),r=this.extractData(o);return{items:r.users,pageInfo:r.pageInfo}}async getOverseerUserSummary(e){if(!Zn(e))throw Mt("address","User address");$l(e);const t=this.buildEndpoint(we,{address:e}),n=await this.http.get(t,{},this.getDualAuthHeaders());return this.extractData(n)}async flushCacheByAddress(e){Bl(e);const t=this.buildEndpoint(be,{address:e}),n=await this.http.delete(t,void 0,this.getDualAuthHeaders());return this.extractData(n)}async flushCacheByToken(e){!function(e){if(!Zn(e))throw Mt("tokenName","Token name")}(e);const t=this.buildEndpoint(Se,{tokenName:e}),n=await this.http.delete(t,void 0,this.getDualAuthHeaders());return this.extractData(n)}async flushAllCache(e){!function(e){if(!0!==e)throw new gt("Safety confirmation required: must pass confirm=true to flush all cache","confirm","CONFIRMATION_REQUIRED")}(e);const t=Ae,n=await this.http.delete(t,{confirm:"true"},this.getDualAuthHeaders());return this.extractData(n)}async flushWalletAliasCache(e){if(void 0!==e){Bl(e);const t=this.buildEndpoint(Te,{address:e}),n=await this.http.delete(t,void 0,this.getDualAuthHeaders());return this.extractData(n)}const t=Ee,n=await this.http.delete(t,{confirm:"true"},this.getDualAuthHeaders());return this.extractData(n)}}class Gl extends hi{constructor(e,t,n=!1){super(e,n,t)}extractData(e){const t={status:200,error:"error"in e?e.error:"success"in e?!e.success:!("data"in e),data:e.data};return void 0!==e.message&&(t.message=e.message),Zt(t,"Platform config operation failed",!0),e.data}async getPlatformConfig(){const e=await this.http.get(N);return this.extractData(e)}async updatePlatformConfig(e){const t=function(e){const t=[];return 0===Object.keys(e).length&&t.push("At least one field (streamingEnabled, chatEnabled, commentsEnabled, webhooksEnabled, aiModerationEnabled) must be provided"),void 0!==e.streamingEnabled&&"boolean"!=typeof e.streamingEnabled&&t.push("streamingEnabled must be a boolean"),void 0!==e.chatEnabled&&"boolean"!=typeof e.chatEnabled&&t.push("chatEnabled must be a boolean"),void 0!==e.commentsEnabled&&"boolean"!=typeof e.commentsEnabled&&t.push("commentsEnabled must be a boolean"),void 0!==e.webhooksEnabled&&"boolean"!=typeof e.webhooksEnabled&&t.push("webhooksEnabled must be a boolean"),void 0!==e.aiModerationEnabled&&"boolean"!=typeof e.aiModerationEnabled&&t.push("aiModerationEnabled must be a boolean"),t}(e);if(t.length>0)throw new gt(t.join("; "),"options","VALIDATION_FAILED");const n=await this.http.put(D,e,this.getJwtHeaders());return this.extractData(n)}async getAvailableRoles(){const e=await this.http.get(_);return this.extractData(e)}}class Wl extends hi{constructor(e,t=!1){super(e,t)}extractData(e){if(e.error||void 0===e.data){const t=e.message??"Platform stats operation failed";throw new Error(t)}return e.data}async getStats(){this.logger.debug("Fetching platform stats");const e=await this.http.get(He),t=this.extractData(e);return this.logger.debug("Fetched platform stats",{totalTokens:t.totalTokens,timestamp:t.timestamp}),{stats:t}}}class Hl extends hi{constructor(e,t=!1,n){super(e,t),this.tokenResolverService=n}async fetchTokenClassKeyByTokenName(e){if(""===e)throw Mt("tokenName","Token name");if(!this.tokenResolverService)throw qt("TokenResolverService is required for token name resolution. Ensure it is passed to PriceHistoryService constructor.","tokenResolverService");try{ri(e)}catch(e){throw qt(Ct(e),"tokenName")}this.logger.debug(`Resolving token name '${e}' to token class key`);try{const t=await this.tokenResolverService.resolveTokenToVault(e);if(null==t)throw qt(`Token '${e}' not found or could not be resolved to vault address`,"tokenName");this.logger.debug(`Resolved '${e}' to vault address: ${t}`);const n=mr(fa(t));return this.logger.debug(`Extracted token class key: ${n}`),n}catch(t){if(Et(t)&&Ct(t).includes("ConfigurationError"))throw t;throw Kt(`Failed to resolve token name '${e}': ${Ct(t)}`,500)}}async fetchPriceHistory(e){if(null==e)throw Mt("options","Fetch options");return this.logger.debug("Fetching price history from DEX Backend API with options:",e),this.validateOptions(e),await sr(async()=>{let t=e.tokenId;if(null!=e.tokenName){this.logger.debug(`Resolving token name '${e.tokenName}' to token ID`);const n=await this.fetchTokenClassKeyByTokenName(e.tokenName);t=n,this.logger.debug(`Resolved to token ID: ${n}`)}if(null==t)throw qt("Token ID is required but was not provided or resolved","tokenId");const{normalizeToTokenInstanceKey:n}=await Promise.resolve().then(function(){return wa}),i=Ba(mr(n(t))),{from:o,to:r,sortOrder:s="DESC"}=e,a=Ln(e.offset,0),c=Ln(e.limit,10),l={token:i,skip:String(a),take:String(c)};o&&(l.from=o.toISOString()),r&&(l.to=r.toISOString());const d=function(e){if(null!=e)return e.toLowerCase()}(s);null!=d&&(l.order=d),this.logger.debug(`Querying price snapshots for token ${i}, offset ${a}, limit ${c}`);const u=await this.http.get("/price-oracle/fetch-price",l);if(null==u)throw Kt("No response from price history service",500);const h=this.transformApiResponseToPriceHistory(u);return this.logger.debug(`Found ${h.snapshots.length} price snapshots, total ${h.total}`),h},"Failed to fetch price history",this.logger)}transformApiResponseToPriceHistory(e){if(!Yt(e))throw Kt("Invalid API response: missing data wrapper",500);const t=en(e);if(!t||"object"!=typeof t)throw Kt("Invalid API response: data is not an object",500);const n=t,i=n.data;if(!Array.isArray(i))throw Kt("Invalid API response: missing or invalid data.data array",500);const o=n.meta;if(null==o||"object"!=typeof o)throw Kt("Invalid API response: missing data.meta pagination info",500);const r=o,s=i.map(e=>{if("object"!=typeof e||null===e)throw Kt("Invalid API response: invalid snapshot item",500);const t=e;return{price:t.price,timestamp:pn(t.createdAt),tokenId:mr({collection:t.collection,category:t.category,type:t.type,additionalKey:t.additionalKey})}}),a=Mn(r.currentPage,1),c=Mn(r.totalPages,1);return{snapshots:s,page:a,limit:Mn(r.pageSize,50),total:Mn(r.totalItems,0),totalPages:c,hasNext:a<c,hasPrevious:a>1}}async fetchAllPriceHistory(e){if(null==e)throw Mt("options","Fetch options");return this.logger.debug("Fetching all price history with options:",e),sr(async()=>{const t=await ma((t,n)=>this.fetchPriceHistory({...e,offset:t,limit:n}).then(e=>({items:e.snapshots,page:e.page,limit:e.limit,total:e.total,totalPages:e.totalPages,hasNext:e.hasNext,hasPrevious:e.hasPrevious})),{maxPages:1e4,logger:this.logger,pageSize:50,startPage:0});return function(e,t=e.length,n="items"){const i=e.length;return{offset:0,limit:i,total:t,totalPages:0!==i?ea(t,i):void 0,hasNext:!1,hasPrevious:!1,[n]:e}}(t.items,t.total,"snapshots")},"Failed to fetch all price history",this.logger)}validateOptions(e){const{from:t,to:n,sortOrder:i}=e;if(oi(e,"tokenName","tokenId",{description:"token identifier"}),t&&!fn(t))throw qt("from must be a valid Date","from");if(n&&!fn(n))throw qt("to must be a valid Date","to");null!=i&&function(e,t){if("ASC"!==e&&"DESC"!==e)throw new gt(`${t} must be either 'ASC' or 'DESC'`,t,"INVALID_ENUM_VALUE")}(i,"sortOrder"),ti(0,void 0,50,e.pageSize)}}class zl extends oa{constructor(e,t,n,i){super(e,t,n,!1,i)}async getRestrictedNames(){try{return{success:!0,data:(await this.http.get(Fe)).data}}catch(e){return{success:!1,error:e instanceof Error?e.message:String(e)}}}async updateRestrictedNames(e){try{if(!Zn(e.content))throw new gt("Content is required");return{success:!0,data:(await this.http.put(Be,e)).data}}catch(e){return{success:!1,error:e instanceof Error?e.message:String(e)}}}}kn.MIN_LENGTH,kn.MAX_LENGTH,kn.PATTERN;ni({ENABLED:"ENABLED",DISABLED:"DISABLED",ADMIN_DISABLED:"ADMIN_DISABLED"});ni({RATE_LIMITED:"RATE_LIMITED",INVALID_EMOJI:"INVALID_EMOJI",NOT_AUTHENTICATED:"NOT_AUTHENTICATED",STREAM_NOT_LIVE:"STREAM_NOT_LIVE"});class jl extends oa{constructor(e,t,n,i=!1,o){super(e,t,n,i,o)}async getChatStatus(e){if(null==e||""===e)throw Mt("tokenName","Token name");return this.validateTokenName(e,kn),sr(async()=>{const t=this.buildEndpoint(Oe,{tokenName:e}),n=await this.http.get(t),i=this.extractData(n),o={enabled:i.enabled,tokenName:i.tokenName??an(e)};return void 0!==i.status&&null!==i.status&&(o.status=i.status),o},`Failed to get chat status for token: ${e}`,this.logger)}async disableChat(e){if(null==e||""===e)throw Mt("tokenName","Token name");return this.validateTokenName(e,kn),sr(async()=>{const t=this.buildEndpoint(Le,{tokenName:e}),n=await this.http.post(t,{enabled:!1},this.getDualAuthHeaders()),i=this.extractData(n),o={enabled:i.enabled,tokenName:i.tokenName??an(e)};return void 0!==i.status&&null!==i.status&&(o.status=i.status),o},`Failed to disable chat for token: ${e}`,this.logger)}async enableChat(e){if(null==e||""===e)throw Mt("tokenName","Token name");return this.validateTokenName(e,kn),sr(async()=>{const t=this.buildEndpoint(Ue,{tokenName:e}),n=await this.http.post(t,{enabled:!0},this.getDualAuthHeaders()),i=this.extractData(n),o={enabled:i.enabled,tokenName:i.tokenName??an(e)};return void 0!==i.status&&null!==i.status&&(o.status=i.status),o},`Failed to enable chat for token: ${e}`,this.logger)}async setSlowMode(e,t){if(null==e||""===e)throw Mt("tokenName","Token name");if(this.validateTokenName(e,kn),"number"!=typeof t||t<0||t>600)throw new Error("slowModeSeconds must be a number between 0 and 600");return sr(async()=>{const n=this.buildEndpoint(qe,{tokenName:e}),i=await this.http.patch(n,{slowModeSeconds:t},this.getDualAuthHeaders());return this.extractData(i)},`Failed to set slow mode for token: ${e}`,this.logger)}async getGlobalChatStatus(){const e=await this.http.get(Me);return this.extractData(e)}async disableGlobalChat(){const e=await this.http.post(Ke,{enabled:!1},this.getAdminHeaders());return this.extractData(e)}async enableGlobalChat(){const e=await this.http.post($e,{enabled:!0},this.getAdminHeaders());return this.extractData(e)}async setGlobalChatEnabled(e){return e?this.enableGlobalChat():this.disableGlobalChat()}async getEngagementStats(e){if(null==e)throw Mt("options","Engagement stats options");return function(e){if(!Zn(e.tokenName))throw Mt("tokenName","Token name");const t=e.tokenName.trim();if(0===t.length)throw Mt("tokenName","Token name");if(!kn.PATTERN.test(t))throw $t("tokenName",`match pattern ${String(kn.PATTERN)}`,"Token name")}(e),sr(async()=>{const t=this.buildEndpoint(Ge,{tokenName:e.tokenName}),n=await this.http.get(t,void 0,this.getDualAuthHeaders()),i=this.extractData(n);return{tokenName:an(e.tokenName),chat:i.chat,comments:i.comments}},"Failed to get engagement stats",this.logger)}}class Vl extends gi{constructor(e=!1){super(e),this.eventRegistry=this.createEmptyRegistry()}setSocket(e){this.logger.debug("📡 [Events] Socket attached to StreamingEventService")}clearSocket(){this.logger.debug("📡 [Events] Socket cleared from StreamingEventService")}createEmptyRegistry(){return{stream_status:new Set,user_banned:new Set,user_unbanned:new Set,ban_enforcement:new Set,content_flagged:new Set,flag_resolved:new Set,stream_chat_message:new Set,stream_chat_updated:new Set,stream_chat_deleted:new Set,stream_chat_pinned:new Set,stream_chat_unpinned:new Set,chat_status_changed:new Set,viewer_count:new Set,recording_status:new Set,simulcast_status:new Set,download_ready:new Set,recordings_count_updated:new Set,user_typing:new Set,stream_reaction:new Set,content_reaction_added:new Set,content_reaction_removed:new Set,stream_countdown_updated:new Set,stream_language_updated:new Set,stream_control_status_changed:new Set,connection:new Set,authenticated:new Set,token_subscribed:new Set,token_unsubscribed:new Set,room_subscribed:new Set,room_left:new Set}}registerCallback(e,t){const n=this.eventRegistry[e];return n.add(t),()=>{n.delete(t)}}async emitEvent(e,t){const n=this.eventRegistry[e];if(0!==n.size)for(const i of n)try{const e=i(t);e instanceof Promise&&await e}catch(t){this.logger.error(`Error in ${e} callback:`,t instanceof Error?t.message:String(t))}}onStreamStatusChanged(e){return this.registerCallback("stream_status",e)}onUserBanned(e){return this.registerCallback("user_banned",e)}onUserUnbanned(e){return this.registerCallback("user_unbanned",e)}onBanEnforcement(e){return this.registerCallback("ban_enforcement",e)}onContentFlagged(e){return this.registerCallback("content_flagged",e)}onFlagResolved(e){return this.registerCallback("flag_resolved",e)}onStreamChatMessage(e){return this.registerCallback("stream_chat_message",e)}onStreamChatUpdated(e){return this.registerCallback("stream_chat_updated",e)}onStreamChatDeleted(e){return this.registerCallback("stream_chat_deleted",e)}onStreamChatPinned(e){return this.registerCallback("stream_chat_pinned",e)}onStreamChatUnpinned(e){return this.registerCallback("stream_chat_unpinned",e)}onChatStatusChanged(e){return this.registerCallback("chat_status_changed",e)}onViewerCountChanged(e){return this.registerCallback("viewer_count",e)}onRecordingStatusChanged(e){return this.registerCallback("recording_status",e)}onSimulcastStatusChanged(e){return this.registerCallback("simulcast_status",e)}onDownloadReady(e){return this.registerCallback("download_ready",e)}onRecordingsCountUpdated(e){return this.registerCallback("recordings_count_updated",e)}onUserTyping(e){return this.registerCallback("user_typing",e)}onStreamReaction(e){return this.registerCallback("stream_reaction",e)}onContentReactionAdded(e){return this.registerCallback("content_reaction_added",e)}onContentReactionRemoved(e){return this.registerCallback("content_reaction_removed",e)}onStreamCountdownUpdated(e){return this.registerCallback("stream_countdown_updated",e)}onStreamLanguageUpdated(e){return this.registerCallback("stream_language_updated",e)}onStreamControlStatusChanged(e){return this.registerCallback("stream_control_status_changed",e)}onConnection(e){return this.registerCallback("connection",e)}onAuthenticated(e){return this.registerCallback("authenticated",e)}onTokenSubscribed(e){return this.registerCallback("token_subscribed",e)}onTokenUnsubscribed(e){return this.registerCallback("token_unsubscribed",e)}onRoomSubscribed(e){return this.registerCallback("room_subscribed",e)}onRoomLeft(e){return this.registerCallback("room_left",e)}async emitStreamStatusChanged(e){await this.emitEvent("stream_status",e)}async emitUserBanned(e){await this.emitEvent("user_banned",e)}async emitUserUnbanned(e){await this.emitEvent("user_unbanned",e)}async emitBanEnforcement(e){await this.emitEvent("ban_enforcement",e)}async emitContentFlagged(e){await this.emitEvent("content_flagged",e)}async emitFlagResolved(e){await this.emitEvent("flag_resolved",e)}async emitStreamChatMessage(e){await this.emitEvent("stream_chat_message",e)}async emitStreamChatUpdated(e){await this.emitEvent("stream_chat_updated",e)}async emitStreamChatDeleted(e){await this.emitEvent("stream_chat_deleted",e)}async emitStreamChatPinned(e){await this.emitEvent("stream_chat_pinned",e)}async emitStreamChatUnpinned(e){await this.emitEvent("stream_chat_unpinned",e)}async emitChatStatusChanged(e){await this.emitEvent("chat_status_changed",e)}async emitViewerCountChanged(e){await this.emitEvent("viewer_count",e)}async emitRecordingStatusChanged(e){await this.emitEvent("recording_status",e)}async emitSimulcastStatusChanged(e){await this.emitEvent("simulcast_status",e)}async emitDownloadReady(e){await this.emitEvent("download_ready",e)}async emitRecordingsCountUpdated(e){await this.emitEvent("recordings_count_updated",e)}async emitUserTyping(e){await this.emitEvent("user_typing",e)}async emitStreamReaction(e){await this.emitEvent("stream_reaction",e)}async emitContentReactionAdded(e){await this.emitEvent("content_reaction_added",e)}async emitContentReactionRemoved(e){await this.emitEvent("content_reaction_removed",e)}async emitStreamCountdownUpdated(e){await this.emitEvent("stream_countdown_updated",e)}async emitStreamLanguageUpdated(e){await this.emitEvent("stream_language_updated",e)}async emitStreamControlStatusChanged(e){await this.emitEvent("stream_control_status_changed",e)}async emitConnection(e){await this.emitEvent("connection",e)}async emitAuthenticated(e){await this.emitEvent("authenticated",e)}async emitTokenSubscribed(e){await this.emitEvent("token_subscribed",e)}async emitTokenUnsubscribed(e){await this.emitEvent("token_unsubscribed",e)}async emitRoomSubscribed(e){await this.emitEvent("room_subscribed",e)}async emitRoomLeft(e){await this.emitEvent("room_left",e)}}ni({IDLE:"IDLE",ACTIVE:"ACTIVE",DISABLED:"DISABLED"}),ni({READY:"READY",PROCESSING:"PROCESSING",ERRORED:"ERRORED",DELETED:"DELETED"});const Xl=ni({YOUTUBE:"YOUTUBE",TWITCH:"TWITCH",FACEBOOK:"FACEBOOK",CUSTOM:"CUSTOM"});const Ql={OWNER:"OWNER",MANAGER:"MANAGER",TECHNICAL_PRODUCER:"TECHNICAL_PRODUCER",MODERATOR:"MODERATOR"};ni(Ql),ni({OWNER:"OWNER",MODERATOR:"MODERATOR"});function Jl(e,t="tokenName"){ri(e,t,kn)}function Yl(e){if(Jl(e.tokenName),!Zn(e.language))throw Mt("language");if(t=e.language,!Zn(t)||!/^[a-z]{2}(-[A-Z]{2})?$/.test(t))throw new gt('language must be a valid ISO 639-1 code (e.g., "en", "es", "zh-CN")',"language",dt);var t}ni({...Ql,OVERSEER:"OVERSEER"}),ni({OWNERSHIP:"ownership",MODERATOR_INVITE:"moderator_invite",OVERSEER:"overseer"});class Zl extends oa{constructor(e,t,n,i=!1,o){super(e,t,n,i,o)}async startStream(e){this.validateTokenName(e,kn);const t=this.buildEndpoint(y,{tokenName:e}),n=await this.http.post(t,{},this.getJwtHeaders());return this.extractData(n)}async stopStream(e){this.validateTokenName(e,kn);const t=this.buildEndpoint(k,{tokenName:e});await this.http.post(t,{},this.getJwtHeaders())}async disableStream(e){return this.toggleFeature(e,v,kn)}async enableStream(e){return this.toggleFeature(e,w,kn)}async resetStreamKey(e){this.validateTokenName(e,kn);const t=this.buildEndpoint(b,{tokenName:e}),n=await this.http.post(t,{},this.getJwtHeaders());return this.extractData(n)}async getStreamCredentials(e){this.validateTokenName(e,kn);const t=this.buildEndpoint(F,{tokenName:e}),n=await this.http.get(t,{},this.getJwtHeaders());return this.extractData(n)}async getRecordings(e){!function(e){Jl(e.tokenName),ti(0,void 0,_n,e.pageSize)}(e);const t=this.buildEndpoint(S,{tokenName:e.tokenName}),n=this.buildPaginationParams(e,_n),i=e.offset;"number"==typeof i&&(n.offset=String(i));const o=await this.http.get(t,n),r=this.extractData(o),s=e,a=r.pageSize??r.limit??e.pageSize??("number"==typeof s.limit?s.limit:20),c="number"==typeof s.offset?s.offset:0,l=Math.floor(c/a)+1;return{recordings:r.recordings,tokenName:an(e.tokenName),page:r.page??l,limit:a,total:r.total,hasNext:r.recordings.length===a}}async getRecordingDownload(e,t){this.validateTokenName(e,kn),this.validateRequiredString(t,"assetId","Asset ID");const n=this.buildEndpoint(A,{tokenName:e,assetId:t}),i=await this.http.get(n,{},this.getJwtHeaders());return this.extractData(i)}async deleteRecording(e,t){this.validateTokenName(e,kn),this.validateRequiredString(t,"assetId","Asset ID");const n=this.buildEndpoint(T,{tokenName:e,assetId:t});await this.http.delete(n,void 0,this.getJwtHeaders())}async getSimulcastTargets(e){this.validateTokenName(e,kn);const t=this.buildEndpoint(E,{tokenName:e}),n=await this.http.get(t);return this.extractData(n)}async addSimulcastTarget(e){!function(e){if(Jl(e.tokenName),!Zn(e.platform))throw Mt("platform");if(!Xl(e.platform))throw new gt("platform must be one of: 'YOUTUBE', 'TWITCH', 'FACEBOOK', 'CUSTOM'","platform",lt);if(!Zn(e.rtmpUrl))throw Mt("rtmpUrl");if(!xn.STREAM_URL_PATTERN.test(e.rtmpUrl))throw new gt("rtmpUrl must be a valid RTMP, RTMPS, or SRT URL","rtmpUrl",dt);if(!Zn(e.streamKey))throw Mt("streamKey");if(void 0!==e.name&&"string"!=typeof e.name)throw new gt("name must be a string","name",ct)}(e);const t=this.buildEndpoint(C,{tokenName:e.tokenName}),n=await this.http.post(t,{platform:e.platform,rtmpUrl:e.rtmpUrl,streamKey:e.streamKey,name:e.name},this.getJwtHeaders());return this.extractData(n)}async removeSimulcastTarget(e,t){this.validateTokenName(e,kn),this.validateRequiredString(t,"targetId","Target ID");const n=this.buildEndpoint(I,{tokenName:e,targetId:t});await this.http.delete(n,void 0,this.getJwtHeaders())}async getGlobalStreamingStatus(){const e=await this.http.get(N);return this.extractData(e)}async disableGlobalStreaming(){const e=await this.http.post(D,{},this.getAdminHeaders());return this.extractData(e)}async enableGlobalStreaming(){const e=await this.http.post(P,{},this.getAdminHeaders());return this.extractData(e)}async setNextLiveStream(e){let t;!function(e){if(Jl(e.tokenName),null!==e.nextLiveStreamAt){if(!(e.nextLiveStreamAt instanceof Date||Zn(e.nextLiveStreamAt)))throw new gt("nextLiveStreamAt must be a Date, ISO 8601 string, or null","nextLiveStreamAt",ct);if("string"==typeof e.nextLiveStreamAt){const t=Date.parse(e.nextLiveStreamAt);if(isNaN(t))throw new gt("nextLiveStreamAt must be a valid ISO 8601 date string","nextLiveStreamAt",dt)}}}(e),t=null===e.nextLiveStreamAt?null:e.nextLiveStreamAt instanceof Date?e.nextLiveStreamAt.toISOString():e.nextLiveStreamAt;const n=`/v1/tokens/${e.tokenName.toLowerCase().trim()}`;await this.http.patch(n,{nextLiveStreamAt:t},this.getJwtHeaders())}async clearNextLiveStream(e){this.validateTokenName(e,kn);const t=`/v1/tokens/${e.toLowerCase().trim()}`;await this.http.patch(t,{nextLiveStreamAt:null},this.getJwtHeaders())}async setStreamLanguage(e){Yl(e);const t=`/v1/tokens/${e.tokenName.toLowerCase().trim()}`;await this.http.patch(t,{streamLanguage:e.language},this.getJwtHeaders())}async getStreamRole(e){!function(e){Jl(e.tokenName)}(e);const t=this.buildEndpoint(x,{tokenName:e.tokenName}),n=this.jwtAuth?this.getJwtHeaders():{},i=await this.http.get(t,{},n);return this.extractData(i)}async getAvailableRoles(){const e=await this.http.get(_);return this.extractData(e)}async getTokenAccess(e){!function(e){Jl(e.tokenName)}(e);const t=this.buildEndpoint(R,{tokenName:e.tokenName}),n=this.jwtAuth?this.getJwtHeaders():{};this.jwtAuth||this.logger.debug("getTokenAccess called without JWT authentication - will return hasAccess: false",{tokenName:e.tokenName});const i=await this.http.get(t,{},n);return this.extractData(i)}async setNextLiveStreamCountdown(e,t){return this.setNextLiveStream({tokenName:e,nextLiveStreamAt:t})}}const ed="subscribe_token",td="unsubscribe_token",nd="authenticate",id="send_stream_chat",od="send_stream_reaction",rd="typing_start",sd="typing_stop",ad="STREAM_STATUS",cd="STREAM_COUNTDOWN_UPDATED",ld="STREAM_LANGUAGE_UPDATED",dd="VIEWER_COUNT",ud="token_subscribed",hd="token_unsubscribed",gd="STREAM_GLOBAL_STATUS",md="ENGAGEMENT_STATS_UPDATED",pd="STREAM_CHAT_MESSAGE",fd="STREAM_CHAT_SENT",yd="stream_chat_error",kd="CHAT_STATUS_CHANGED",vd="STREAM_CHAT_GLOBAL_STATUS",wd="authenticated",bd="stream_chat_auth_error",Sd="STREAM_REACTION",Ad="stream_reaction_error",Td="USER_TYPING",Ed="STREAM_CHAT_PINNED",Cd="STREAM_CHAT_UNPINNED",Id="COMMENT_CREATED",Nd="TOKEN_BANNED",Dd="TOKEN_UNBANNED",Pd="MODERATOR_INVITE_CREATED",xd="MODERATOR_ADDED",_d="MODERATOR_REMOVED",Rd="MODERATOR_ROLE_UPDATED",Fd="OVERSEER_ADDED",Bd="OVERSEER_REMOVED",Od="TRADE_EXECUTED",Ud="BALANCE_UPDATED",Ld="STATS_UPDATED",Md="POOL_METADATA_UPDATED",$d="POOL_SOCIAL_LINKS_UPDATED",Kd="POOL_BADGE_ASSIGNED",qd="HOLDER_COUNT_UPDATED",Gd="USER_PROFILE_UPDATED",Wd="API_KEY_CREATED",Hd="API_KEY_UPDATED",zd="API_KEY_REVOKED",jd="TOKEN_CONFIG_UPDATED",Vd="SITE_CONFIG_CHANGED",Xd="COMMENTS_GLOBAL_STATUS",Qd="WEBHOOKS_GLOBAL_STATUS",Jd="subscribe_global_feed",Yd="unsubscribe_global_feed",Zd="global_feed_subscribed",eu="global_feed_unsubscribed";class tu extends gi{constructor(e,t=!1){if(super(t),this.socket=null,this.isAuthenticated=!1,this.subscribedRooms=new Map,this.roomCallbacks=new Map,this.pendingSubscriptions=new Map,this.eventBuffer=new Map,this.eventBufferTimeouts=new Map,this.MAX_BUFFER_SIZE=100,this.BUFFER_CLEANUP_MS=3e4,this.globalCallbacks={},this.isGlobalFeedSubscribed=!1,this.globalFeedCallbacks={},this.pendingGlobalFeedSubscription=null,""===e.url)throw new ft("Stream WebSocket URL is required. Set streamWebSocketUrl in SDK config.");this.config={url:e.url,authToken:e.authToken??"",reconnectAttempts:e.reconnectAttempts??5,reconnectDelay:e.reconnectDelay??2e3,subscriptionTimeout:e.subscriptionTimeout??1e4},this.reconnectionManager=new Kc({maxAttempts:this.config.reconnectAttempts,baseDelayMs:this.config.reconnectDelay}),this.isSocketIOAvailable=this.checkSocketIOAvailability()}checkSocketIOAvailability(){try{return"function"==typeof h.io||(this.logger.warn('⚠️ Socket.IO client not available. Install "socket.io-client" package.'),!1)}catch(e){return this.logger.warn("⚠️ Socket.IO availability check failed:",Ct(e)),!1}}getRoomName(e){return`token:${an(e)}`}bufferEvent(e,t,n){const i=`${e}:${t}`;let o=this.eventBuffer.get(i);o||(o=[],this.eventBuffer.set(i,o)),o.length>=this.MAX_BUFFER_SIZE&&(o.shift(),this.logger.warn(`⚠️ [Stream Buffer] Event buffer overflow for ${i} - dropping oldest event. Consider processing events faster or increasing buffer size.`)),o.push(n);const r=this.eventBufferTimeouts.get(i);r&&clearTimeout(r);const s=setTimeout(()=>{this.eventBuffer.delete(i),this.eventBufferTimeouts.delete(i),this.logger.debug(`📡 [Stream Buffer] Cleaned up buffer for ${i}`)},this.BUFFER_CLEANUP_MS);this.eventBufferTimeouts.set(i,s)}processBufferedEvents(e,t){const n=an(e),i=[{key:`${ad}:${n}`,callback:t.onStreamStatus},{key:`${dd}:${n}`,callback:t.onViewerCount},{key:`${pd}:${n}`,callback:t.onChatMessage},{key:`${kd}:${n}`,callback:t.onChatStatus},{key:`${Ed}:${n}`,callback:t.onChatPinned},{key:`${Cd}:${n}`,callback:t.onChatUnpinned},{key:`${cd}:${n}`,callback:t.onCountdownUpdated},{key:`${ld}:${n}`,callback:t.onLanguageUpdated},{key:`${Nd}:${n}`,callback:t.onTokenBanned},{key:`${Dd}:${n}`,callback:t.onTokenUnbanned},{key:`${Pd}:${n}`,callback:t.onModeratorInviteCreated},{key:`${xd}:${n}`,callback:t.onModeratorAdded},{key:`${_d}:${n}`,callback:t.onModeratorRemoved},{key:`${Rd}:${n}`,callback:t.onModeratorRoleUpdated},{key:`${Od}:${n}`,callback:t.onTradeExecuted},{key:`${Ud}:${n}`,callback:t.onBalanceUpdated},{key:`${Md}:${n}`,callback:t.onPoolMetadataUpdated},{key:`${$d}:${n}`,callback:t.onPoolSocialLinksUpdated},{key:`${Kd}:${n}`,callback:t.onPoolBadgeAssigned},{key:`${qd}:${n}`,callback:t.onHolderCountUpdated},{key:`${Id}:${n}`,callback:t.onCommentCreated}];for(const{key:e,callback:t}of i){const n=this.eventBuffer.get(e);if(n&&t){this.logger.debug(`📡 [Stream Buffer] Delivering ${n.length} buffered events for ${e}`);for(const i of n)try{t?.(i)}catch(t){this.logger.error(`Error delivering buffered event for ${e}:`,t)}this.eventBuffer.delete(e);const i=this.eventBufferTimeouts.get(e);i&&(clearTimeout(i),this.eventBufferTimeouts.delete(e))}}}setupGlobalListeners(){this.socket&&(this.socket.on(ad,e=>{this.logger.debug(`📡 [Stream Status] ${e.tokenName}: ${e.status}`),this.bufferEvent(ad,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onStreamStatus&&t.onStreamStatus(e),this.globalCallbacks.onStreamStatus&&this.globalCallbacks.onStreamStatus(e),this.isGlobalFeedSubscribed&&!t&&this.globalFeedCallbacks.onStreamStatus&&this.globalFeedCallbacks.onStreamStatus(e)}),this.socket.on(ud,e=>{this.logger.debug(`📡 [Subscribed] ${e.tokenName}`);const t=an(e.tokenName),n=this.pendingSubscriptions.get(t);n&&(clearTimeout(n.timeoutId),this.pendingSubscriptions.delete(t),n.resolve(e));const i=this.roomCallbacks.get(t);i?.onStreamSubscribed&&i.onStreamSubscribed(e)}),this.socket.on(hd,e=>{const t=e.room.replace("token:","");this.logger.debug(`📡 [Unsubscribed] ${t}`);const n=this.roomCallbacks.get(an(t));n?.onStreamUnsubscribed&&n.onStreamUnsubscribed(e)}),this.socket.on(dd,e=>{this.logger.debug(`📡 [Viewer Count] ${e.tokenName}: ${e.viewerCount}`),this.bufferEvent(dd,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onViewerCount&&t.onViewerCount(e),this.globalCallbacks.onViewerCount&&this.globalCallbacks.onViewerCount(e),this.isGlobalFeedSubscribed&&!t&&this.globalFeedCallbacks.onViewerCount&&this.globalFeedCallbacks.onViewerCount(e)}),this.socket.on(gd,e=>{this.logger.debug(`📡 [Global Stream Status] enabled: ${e.enabled}`),this.globalCallbacks.onStreamGlobalStatus&&this.globalCallbacks.onStreamGlobalStatus(e)}),this.socket.on(pd,e=>{this.logger.debug(`📡 [Chat Message] ${e.tokenName}: ${e.content.slice(0,50)}...`),this.bufferEvent(pd,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onChatMessage&&t.onChatMessage(e),this.globalCallbacks.onChatMessage&&this.globalCallbacks.onChatMessage(e)}),this.socket.on(fd,e=>{this.logger.debug(`📡 [Chat Sent] ${e.tokenName}: ${e.messageId}`);const t=this.roomCallbacks.get(an(e.tokenName));t?.onChatSent&&t.onChatSent(e)}),this.socket.on(yd,e=>{this.logger.error(`📡 [Chat Error] ${e.tokenName}: ${e.message}`);const t=this.roomCallbacks.get(an(e.tokenName));t?.onChatError&&t.onChatError(e),this.globalCallbacks.onChatError&&this.globalCallbacks.onChatError(e)}),this.socket.on(kd,e=>{this.logger.debug(`📡 [Chat Status] ${e.tokenName}: ${e.enabled}`),this.bufferEvent(kd,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onChatStatus&&t.onChatStatus(e),this.globalCallbacks.onChatStatus&&this.globalCallbacks.onChatStatus(e)}),this.socket.on(vd,e=>{this.logger.debug(`📡 [Global Chat Status] enabled: ${e.enabled}`),this.globalCallbacks.onChatGlobalStatus&&this.globalCallbacks.onChatGlobalStatus(e)}),this.socket.on(wd,e=>{this.logger.debug(`📡 [Authenticated] ${e.address}`),this.isAuthenticated=!0,this.globalCallbacks.onChatAuthenticated&&this.globalCallbacks.onChatAuthenticated(e)}),this.socket.on(bd,e=>{this.logger.error(`📡 [Auth Error] ${e.message}`),this.isAuthenticated=!1,this.globalCallbacks.onChatAuthError&&this.globalCallbacks.onChatAuthError(e)}),this.socket.on(Sd,e=>{this.logger.debug(`📡 [Reaction] ${e.tokenName}: ${e.emoji}`);const t=this.roomCallbacks.get(an(e.tokenName));t?.onReaction&&t.onReaction(e),this.globalCallbacks.onReaction&&this.globalCallbacks.onReaction(e)}),this.socket.on(Ad,e=>{this.logger.error(`📡 [Reaction Error] ${e.tokenName}: ${e.message}`);const t=this.roomCallbacks.get(an(e.tokenName));t?.onReactionError&&t.onReactionError(e),this.globalCallbacks.onReactionError&&this.globalCallbacks.onReactionError(e)}),this.socket.on(Td,e=>{const t=e.typingUsers.length;this.logger.debug(`📡 [Typing] ${e.tokenName}: ${t} user(s) typing`);const n=this.roomCallbacks.get(an(e.tokenName));n?.onTypingIndicator&&n.onTypingIndicator(e),this.globalCallbacks.onTypingIndicator&&this.globalCallbacks.onTypingIndicator(e)}),this.socket.on(Ed,e=>{this.logger.debug(`📡 [Chat Pinned] ${e.tokenName}: ${e.pinnedMessage.messageId}`),this.bufferEvent(Ed,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onChatPinned&&t.onChatPinned(e),this.globalCallbacks.onChatPinned&&this.globalCallbacks.onChatPinned(e)}),this.socket.on(Cd,e=>{this.logger.debug(`📡 [Chat Unpinned] ${e.tokenName}: ${e.unpinnedMessageId}`),this.bufferEvent(Cd,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onChatUnpinned&&t.onChatUnpinned(e),this.globalCallbacks.onChatUnpinned&&this.globalCallbacks.onChatUnpinned(e)}),this.socket.on(cd,e=>{const t=e.nextLiveStreamAt??"cleared";this.logger.debug(`📡 [Countdown Updated] ${e.tokenName}: ${t}`),this.bufferEvent(cd,e.tokenName,e);const n=this.roomCallbacks.get(an(e.tokenName));n?.onCountdownUpdated&&n.onCountdownUpdated(e),this.globalCallbacks.onCountdownUpdated&&this.globalCallbacks.onCountdownUpdated(e)}),this.socket.on(ld,e=>{this.logger.debug(`📡 [Language Updated] ${e.tokenName}: ${e.language}`),this.bufferEvent(ld,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onLanguageUpdated&&t.onLanguageUpdated(e),this.globalCallbacks.onLanguageUpdated&&this.globalCallbacks.onLanguageUpdated(e)}),this.socket.on(Nd,e=>{this.logger.debug(`📡 [Token Banned] ${e.tokenName}`),this.bufferEvent(Nd,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onTokenBanned&&t.onTokenBanned(e),this.globalCallbacks.onTokenBanned&&this.globalCallbacks.onTokenBanned(e)}),this.socket.on(Dd,e=>{this.logger.debug(`📡 [Token Unbanned] ${e.tokenName}`),this.bufferEvent(Dd,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onTokenUnbanned&&t.onTokenUnbanned(e),this.globalCallbacks.onTokenUnbanned&&this.globalCallbacks.onTokenUnbanned(e)}),this.socket.on(Pd,e=>{this.logger.debug(`📡 [Moderator Invite Created] ${e.tokenName}: by ${e.invitedBy}`),this.bufferEvent(Pd,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onModeratorInviteCreated&&t.onModeratorInviteCreated(e)}),this.socket.on(xd,e=>{this.logger.debug(`📡 [Moderator Added] ${e.tokenName}: ${e.userAddress}`),this.bufferEvent(xd,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onModeratorAdded&&t.onModeratorAdded(e)}),this.socket.on(_d,e=>{this.logger.debug(`📡 [Moderator Removed] ${e.tokenName}: ${e.userAddress}`),this.bufferEvent(_d,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onModeratorRemoved&&t.onModeratorRemoved(e)}),this.socket.on(Rd,e=>{this.logger.debug(`📡 [Moderator Role Updated] ${e.tokenName}: ${e.userAddress}`),this.bufferEvent(Rd,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onModeratorRoleUpdated&&t.onModeratorRoleUpdated(e)}),this.socket.on(Fd,e=>{this.logger.debug(`📡 [Overseer Added] ${e.userAddress}`),this.globalCallbacks.onOverseerAdded&&this.globalCallbacks.onOverseerAdded(e)}),this.socket.on(Bd,e=>{this.logger.debug(`📡 [Overseer Removed] ${e.userAddress}`),this.globalCallbacks.onOverseerRemoved&&this.globalCallbacks.onOverseerRemoved(e)}),this.socket.on(Od,e=>{this.logger.debug(`📡 [Trade Executed] ${e.tokenName}: ${e.tradeType}`),this.bufferEvent(Od,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onTradeExecuted&&t.onTradeExecuted(e),this.isGlobalFeedSubscribed&&!t&&this.globalFeedCallbacks.onTradeExecuted&&this.globalFeedCallbacks.onTradeExecuted(e)}),this.socket.on(Ud,e=>{this.logger.debug(`📡 [Balance Updated] ${e.tokenName}: ${e.tradeType}`),this.bufferEvent(Ud,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onBalanceUpdated&&t.onBalanceUpdated(e)}),this.socket.on(Md,e=>{this.logger.debug(`📡 [Pool Metadata Updated] ${e.tokenName}`),this.bufferEvent(Md,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onPoolMetadataUpdated&&t.onPoolMetadataUpdated(e)}),this.socket.on($d,e=>{this.logger.debug(`📡 [Pool Social Links Updated] ${e.tokenName}`),this.bufferEvent($d,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onPoolSocialLinksUpdated&&t.onPoolSocialLinksUpdated(e)}),this.socket.on(Kd,e=>{this.logger.debug(`📡 [Pool Badge Assigned] ${e.tokenName}: ${e.badge}`),this.bufferEvent(Kd,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onPoolBadgeAssigned&&t.onPoolBadgeAssigned(e),this.isGlobalFeedSubscribed&&!t&&this.globalFeedCallbacks.onPoolBadgeAssigned&&this.globalFeedCallbacks.onPoolBadgeAssigned(e)}),this.socket.on(qd,e=>{this.logger.debug(`📡 [Holder Count Updated] ${e.tokenName}: ${e.holderCount}`),this.bufferEvent(qd,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onHolderCountUpdated&&t.onHolderCountUpdated(e),this.isGlobalFeedSubscribed&&!t&&this.globalFeedCallbacks.onHolderCountUpdated&&this.globalFeedCallbacks.onHolderCountUpdated(e)}),this.socket.on(Id,e=>{this.logger.debug(`📡 [Comment Created] ${e.tokenName}: ID ${e.id}`),this.bufferEvent(Id,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onCommentCreated&&t.onCommentCreated(e)}),this.socket.on(Gd,e=>{this.logger.debug(`📡 [User Profile Updated] ${e.userAddress}`),this.globalCallbacks.onUserProfileUpdated&&this.globalCallbacks.onUserProfileUpdated(e)}),this.socket.on(Wd,e=>{this.logger.debug(`📡 [API Key Created] ${e.keyId}`),this.globalCallbacks.onApiKeyCreated&&this.globalCallbacks.onApiKeyCreated(e)}),this.socket.on(Hd,e=>{this.logger.debug(`📡 [API Key Updated] ${e.keyId}`),this.globalCallbacks.onApiKeyUpdated&&this.globalCallbacks.onApiKeyUpdated(e)}),this.socket.on(zd,e=>{this.logger.debug(`📡 [API Key Revoked] ${e.keyId}`),this.globalCallbacks.onApiKeyRevoked&&this.globalCallbacks.onApiKeyRevoked(e)}),this.socket.on(jd,e=>{this.logger.debug(`📡 [Token Config Updated] ${e.tokenName}`),this.bufferEvent(jd,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onTokenConfigUpdated&&t.onTokenConfigUpdated(e),this.isGlobalFeedSubscribed&&!t&&this.globalFeedCallbacks.onTokenConfigUpdated&&this.globalFeedCallbacks.onTokenConfigUpdated(e)}),this.socket.on(Ld,e=>{this.logger.debug(`📡 [Stats Updated] ${e.tokenName} price=${e.galaPrice}`),this.bufferEvent(Ld,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onStatsUpdated&&t.onStatsUpdated(e),this.globalCallbacks.onStatsUpdated&&this.globalCallbacks.onStatsUpdated(e),this.isGlobalFeedSubscribed&&!t&&this.globalFeedCallbacks.onStatsUpdated&&this.globalFeedCallbacks.onStatsUpdated(e)}),this.socket.on(md,e=>{this.logger.debug(`📡 [Engagement Stats Updated] ${e.tokenName} chatters=${e.chat.uniqueChatters}`),this.bufferEvent(md,e.tokenName,e);const t=this.roomCallbacks.get(an(e.tokenName));t?.onEngagementStatsUpdated&&t.onEngagementStatsUpdated(e),this.globalCallbacks.onEngagementStatsUpdated&&this.globalCallbacks.onEngagementStatsUpdated(e)}),this.socket.on(Zd,e=>{if(this.logger.debug("📡 [Global Feed Subscribed]"),this.isGlobalFeedSubscribed=!0,this.pendingGlobalFeedSubscription){const{resolve:t,timeoutId:n}=this.pendingGlobalFeedSubscription;clearTimeout(n),this.pendingGlobalFeedSubscription=null,t(e)}this.globalFeedCallbacks.onGlobalFeedSubscribed&&this.globalFeedCallbacks.onGlobalFeedSubscribed(e)}),this.socket.on(eu,e=>{this.logger.debug("📡 [Global Feed Unsubscribed]"),this.isGlobalFeedSubscribed=!1,this.globalFeedCallbacks.onGlobalFeedUnsubscribed&&this.globalFeedCallbacks.onGlobalFeedUnsubscribed(e)}),this.socket.on(Vd,e=>{this.logger.debug(`📡 [Site Config Changed] ${e.key}`),this.globalFeedCallbacks.onSiteConfigChanged&&this.globalFeedCallbacks.onSiteConfigChanged(e)}),this.socket.on(gd,e=>{this.logger.debug(`📡 [Stream Global Status] enabled=${e.enabled}`),this.globalFeedCallbacks.onStreamGlobalStatus&&this.globalFeedCallbacks.onStreamGlobalStatus(e)}),this.socket.on(vd,e=>{this.logger.debug(`📡 [Chat Global Status] enabled=${e.enabled}`),this.globalFeedCallbacks.onStreamChatGlobalStatus&&this.globalFeedCallbacks.onStreamChatGlobalStatus(e)}),this.socket.on(Xd,e=>{this.logger.debug(`📡 [Comments Global Status] enabled=${e.enabled}`),this.globalFeedCallbacks.onCommentsGlobalStatus&&this.globalFeedCallbacks.onCommentsGlobalStatus(e)}),this.socket.on(Qd,e=>{this.logger.debug(`📡 [Webhooks Global Status] enabled=${e.enabled}`),this.globalFeedCallbacks.onWebhooksGlobalStatus&&this.globalFeedCallbacks.onWebhooksGlobalStatus(e)}))}resubscribeAll(){const e=Array.from(this.subscribedRooms.keys());this.logger.debug(`📡 Re-subscribing to ${e.length} rooms after reconnect`);for(const t of e)try{this.roomCallbacks.get(t)&&this.socket?.emit(ed,{tokenName:t})}catch(e){this.logger.error(`Failed to re-subscribe to ${t}:`,e)}if(this.isGlobalFeedSubscribed)try{this.logger.debug("📡 Re-subscribing to global feed after reconnect"),this.socket?.emit(Jd)}catch(e){this.logger.error("Failed to re-subscribe to global feed:",e)}}async connect(){return new Promise((e,t)=>{sr(async()=>{if(!this.isSocketIOAvailable)throw new ft('Socket.IO not available. Install "socket.io-client" package.');this.logger.debug(`🔌 Connecting to Stream WebSocket: ${this.config.url}`);const n={};return""!==this.config.authToken&&(n.token=this.config.authToken),this.socket=h.io(this.config.url,{transports:["websocket"],reconnection:!0,reconnectionAttempts:this.config.reconnectAttempts,reconnectionDelay:this.config.reconnectDelay,auth:n}),this.socket.on("connect",()=>{this.logger.debug(`✅ Stream WebSocket connected: ${String(this.socket?.id)}`),this.reconnectionManager.reset(),this.setupGlobalListeners(),this.subscribedRooms.size>0&&this.resubscribeAll(),e()}),this.socket.on("connect_error",e=>{this.logger.error("❌ Stream WebSocket connection error:",e),t(e)}),this.socket.on("disconnect",e=>{this.logger.debug(`🔌 Stream WebSocket disconnected: ${e}`),this.isAuthenticated=!1}),this.socket.on("error",e=>{this.logger.error("❌ Stream WebSocket error:",e)}),this.socket.io.on("reconnect",e=>{this.logger.debug(`🔄 Stream WebSocket reconnected after ${e} attempts`),this.reconnectionManager.reset(),""!==this.config.authToken&&this.authenticate(this.config.authToken)}),this.socket.io.on("reconnect_attempt",()=>{this.reconnectionManager.recordAttempt(),this.logger.debug(`🔄 Stream WebSocket reconnect attempt ${this.reconnectionManager.getStatusString()}`)}),this.socket.io.on("reconnect_failed",()=>{this.logger.error("❌ Stream WebSocket max reconnection attempts reached")}),Promise.resolve(void 0)},"Stream WebSocket connection setup",this.logger,e=>{throw t(e),e})})}authenticate(e){if(!this.socket?.connected)throw new gt("WebSocket not connected. Call connect() first.","socket","NOT_CONNECTED");if(""===e)throw Mt("token","Authentication token");this.logger.debug("📡 Authenticating with stream server"),this.socket.emit(nd,{token:e}),this.config.authToken=e}async subscribeToStream(e,t={}){if(""===e)throw Mt("tokenName","Token name");if(!this.socket?.connected)throw new gt("WebSocket not connected. Call connect() first.","socket","NOT_CONNECTED");const n=an(e);return this.subscribedRooms.has(n)?(this.logger.debug(`📡 Already subscribed to ${n}, updating callbacks`),this.roomCallbacks.set(n,t),this.processBufferedEvents(n,t),{tokenName:n,room:this.getRoomName(e)}):new Promise((i,o)=>{const r=setTimeout(()=>{this.pendingSubscriptions.delete(n),o(new Error(`Subscription to ${e} timed out after ${this.config.subscriptionTimeout}ms`))},this.config.subscriptionTimeout);this.pendingSubscriptions.set(n,{resolve:i,reject:o,timeoutId:r}),this.roomCallbacks.set(n,t),this.subscribedRooms.set(n,{tokenName:n,subscribedAt:Date.now()}),this.logger.debug(`📡 Subscribing to stream: ${n}`),this.socket.emit(ed,{tokenName:n})})}unsubscribeFromStream(e){const t=an(e);if(!this.subscribedRooms.has(t))return void this.logger.debug(`📡 Not subscribed to ${t}, skipping unsubscribe`);this.logger.debug(`📡 Unsubscribing from stream: ${t}`),this.socket?.connected&&this.socket.emit(td,{tokenName:t}),this.subscribedRooms.delete(t),this.roomCallbacks.delete(t);const n=this.pendingSubscriptions.get(t);n&&(clearTimeout(n.timeoutId),this.pendingSubscriptions.delete(t));for(const e of this.eventBuffer.keys())if(e.endsWith(`:${t}`)){this.eventBuffer.delete(e);const t=this.eventBufferTimeouts.get(e);t&&(clearTimeout(t),this.eventBufferTimeouts.delete(e))}}sendChatMessage(e,t){if(""===e)throw Mt("tokenName","Token name");if(""===t)throw Mt("content","Message content");if(!this.socket?.connected)throw new gt("WebSocket not connected. Call connect() first.","socket","NOT_CONNECTED");if(!this.isAuthenticated)throw new gt("Not authenticated. Call authenticate() first.","auth","NOT_AUTHENTICATED");const n=an(e);this.logger.debug(`📡 Sending chat message to ${n}: ${t.slice(0,30)}...`),this.socket.emit(id,{tokenName:n,content:t})}sendReaction(e,t,n=0){if(""===e)throw Mt("tokenName","Token name");if(""===t)throw Mt("emoji");if(!this.socket?.connected)throw new gt("WebSocket not connected. Call connect() first.","socket","NOT_CONNECTED");if(!this.isAuthenticated)throw new gt("Not authenticated. Call authenticate() first.","auth","NOT_AUTHENTICATED");const i=an(e);this.logger.debug(`📡 Sending reaction to ${i}: ${t}`),this.socket.emit(od,{tokenName:i,emoji:t,streamTime:n})}sendTypingStart(e){if(""===e)throw Mt("tokenName","Token name");if(!this.socket?.connected)throw new gt("WebSocket not connected. Call connect() first.","socket","NOT_CONNECTED");if(!this.isAuthenticated)throw new gt("Not authenticated. Call authenticate() first.","auth","NOT_AUTHENTICATED");const t=an(e);this.logger.debug(`📡 Sending typing_start to ${t}`),this.socket.emit(rd,{tokenName:t})}sendTypingStop(e){if(""===e)throw Mt("tokenName","Token name");if(!this.socket?.connected)throw new gt("WebSocket not connected. Call connect() first.","socket","NOT_CONNECTED");if(!this.isAuthenticated)throw new gt("Not authenticated. Call authenticate() first.","auth","NOT_AUTHENTICATED");const t=an(e);this.logger.debug(`📡 Sending typing_stop to ${t}`),this.socket.emit(sd,{tokenName:t})}subscribeTokenBanned(e,t){const n=an(e),i={onTokenBanned:t};return this.roomCallbacks.set(n,{...this.roomCallbacks.get(n),...i}),()=>{const e=this.roomCallbacks.get(n);if(e){const{onTokenBanned:t,...i}=e;this.roomCallbacks.set(n,i)}}}subscribeTokenUnbanned(e,t){const n=an(e),i={onTokenUnbanned:t};return this.roomCallbacks.set(n,{...this.roomCallbacks.get(n),...i}),()=>{const e=this.roomCallbacks.get(n);if(e){const{onTokenUnbanned:t,...i}=e;this.roomCallbacks.set(n,i)}}}subscribeModeratorInviteCreated(e,t){const n=an(e),i={onModeratorInviteCreated:t};return this.roomCallbacks.set(n,{...this.roomCallbacks.get(n),...i}),()=>{const e=this.roomCallbacks.get(n);if(e){const{onModeratorInviteCreated:t,...i}=e;this.roomCallbacks.set(n,i)}}}subscribeModeratorAdded(e,t){const n=an(e),i={onModeratorAdded:t};return this.roomCallbacks.set(n,{...this.roomCallbacks.get(n),...i}),()=>{const e=this.roomCallbacks.get(n);if(e){const{onModeratorAdded:t,...i}=e;this.roomCallbacks.set(n,i)}}}subscribeModeratorRemoved(e,t){const n=an(e),i={onModeratorRemoved:t};return this.roomCallbacks.set(n,{...this.roomCallbacks.get(n),...i}),()=>{const e=this.roomCallbacks.get(n);if(e){const{onModeratorRemoved:t,...i}=e;this.roomCallbacks.set(n,i)}}}subscribeModeratorRoleUpdated(e,t){const n=an(e),i={onModeratorRoleUpdated:t};return this.roomCallbacks.set(n,{...this.roomCallbacks.get(n),...i}),()=>{const e=this.roomCallbacks.get(n);if(e){const{onModeratorRoleUpdated:t,...i}=e;this.roomCallbacks.set(n,i)}}}subscribeOverseerAdded(e){return this.globalCallbacks.onOverseerAdded=e,()=>{delete this.globalCallbacks.onOverseerAdded}}subscribeOverseerRemoved(e){return this.globalCallbacks.onOverseerRemoved=e,()=>{delete this.globalCallbacks.onOverseerRemoved}}subscribeTradeExecuted(e,t){const n=an(e),i={onTradeExecuted:t};return this.roomCallbacks.set(n,{...this.roomCallbacks.get(n),...i}),()=>{const e=this.roomCallbacks.get(n);if(e){const{onTradeExecuted:t,...i}=e;this.roomCallbacks.set(n,i)}}}subscribePoolMetadataUpdated(e,t){const n=an(e),i={onPoolMetadataUpdated:t};return this.roomCallbacks.set(n,{...this.roomCallbacks.get(n),...i}),()=>{const e=this.roomCallbacks.get(n);if(e){const{onPoolMetadataUpdated:t,...i}=e;this.roomCallbacks.set(n,i)}}}subscribePoolSocialLinksUpdated(e,t){const n=an(e),i={onPoolSocialLinksUpdated:t};return this.roomCallbacks.set(n,{...this.roomCallbacks.get(n),...i}),()=>{const e=this.roomCallbacks.get(n);if(e){const{onPoolSocialLinksUpdated:t,...i}=e;this.roomCallbacks.set(n,i)}}}subscribePoolBadgeAssigned(e,t){const n=an(e),i={onPoolBadgeAssigned:t};return this.roomCallbacks.set(n,{...this.roomCallbacks.get(n),...i}),()=>{const e=this.roomCallbacks.get(n);if(e){const{onPoolBadgeAssigned:t,...i}=e;this.roomCallbacks.set(n,i)}}}subscribeHolderCountUpdated(e,t){const n=an(e),i={onHolderCountUpdated:t};return this.roomCallbacks.set(n,{...this.roomCallbacks.get(n),...i}),()=>{const e=this.roomCallbacks.get(n);if(e){const{onHolderCountUpdated:t,...i}=e;this.roomCallbacks.set(n,i)}}}subscribeCommentCreated(e,t){const n=an(e),i={onCommentCreated:t};return this.roomCallbacks.set(n,{...this.roomCallbacks.get(n),...i}),()=>{const e=this.roomCallbacks.get(n);if(e){const{onCommentCreated:t,...i}=e;this.roomCallbacks.set(n,i)}}}subscribeUserProfileUpdated(e){return this.globalCallbacks.onUserProfileUpdated=e,()=>{delete this.globalCallbacks.onUserProfileUpdated}}subscribeApiKeyCreated(e){return this.globalCallbacks.onApiKeyCreated=e,()=>{delete this.globalCallbacks.onApiKeyCreated}}subscribeApiKeyUpdated(e){return this.globalCallbacks.onApiKeyUpdated=e,()=>{delete this.globalCallbacks.onApiKeyUpdated}}subscribeApiKeyRevoked(e){return this.globalCallbacks.onApiKeyRevoked=e,()=>{delete this.globalCallbacks.onApiKeyRevoked}}subscribeStatsUpdated(e){return this.globalCallbacks.onStatsUpdated=e,()=>{delete this.globalCallbacks.onStatsUpdated}}subscribeEngagementStatsUpdated(e){return this.globalCallbacks.onEngagementStatsUpdated=e,()=>{delete this.globalCallbacks.onEngagementStatsUpdated}}setGlobalCallbacks(e){this.globalCallbacks=e}getSubscribedTokens(){return Array.from(this.subscribedRooms.keys())}isConnected(){return this.socket?.connected??!1}isAuthenticatedForChat(){return this.isAuthenticated}async subscribeToGlobalFeed(e){if(!this.socket?.connected)throw new gt("WebSocket not connected. Call connect() first.","socket","NOT_CONNECTED");return this.isGlobalFeedSubscribed?(this.logger.debug("📡 Already subscribed to global feed, updating callbacks"),e&&(this.globalFeedCallbacks=e),{room:"global:feed"}):new Promise((t,n)=>{const i=setTimeout(()=>{this.pendingGlobalFeedSubscription=null,n(new Error(`Global feed subscription timed out after ${this.config.subscriptionTimeout}ms`))},this.config.subscriptionTimeout);this.pendingGlobalFeedSubscription={resolve:t,reject:n,timeoutId:i},e&&(this.globalFeedCallbacks=e),this.logger.debug("📡 Subscribing to global feed"),this.socket.emit(Jd)})}unsubscribeFromGlobalFeed(){this.isGlobalFeedSubscribed?(this.logger.debug("📡 Unsubscribing from global feed"),this.socket?.connected&&this.socket.emit(Yd),this.isGlobalFeedSubscribed=!1,this.globalFeedCallbacks={},this.pendingGlobalFeedSubscription&&(clearTimeout(this.pendingGlobalFeedSubscription.timeoutId),this.pendingGlobalFeedSubscription=null)):this.logger.debug("📡 Not subscribed to global feed, skipping unsubscribe")}isSubscribedToGlobalFeed(){return this.isGlobalFeedSubscribed}setGlobalFeedCallbacks(e){this.globalFeedCallbacks=e,this.logger.debug("📡 Updated global feed callbacks")}getSocket(){return this.socket}disconnect(){if(this.socket){this.logger.debug("🔌 Disconnecting from Stream WebSocket");try{for(const[e,t]of this.pendingSubscriptions){try{clearTimeout(t.timeoutId),t.reject(new Error("WebSocket disconnected"))}catch(t){this.logger.error(`Error cleaning up pending subscription for ${e}:`,t)}this.pendingSubscriptions.delete(e)}}catch(e){this.logger.error("Error clearing pending subscriptions:",e)}try{this.subscribedRooms.clear(),this.roomCallbacks.clear()}catch(e){this.logger.error("Error clearing room tracking:",e)}try{for(const e of this.eventBufferTimeouts.values())clearTimeout(e);this.eventBuffer.clear(),this.eventBufferTimeouts.clear()}catch(e){this.logger.error("Error clearing event buffers:",e)}this.globalCallbacks={};try{this.globalFeedCallbacks={},this.isGlobalFeedSubscribed=!1,this.pendingGlobalFeedSubscription&&(clearTimeout(this.pendingGlobalFeedSubscription.timeoutId),this.pendingGlobalFeedSubscription.reject(new Error("WebSocket disconnected")),this.pendingGlobalFeedSubscription=null)}catch(e){this.logger.error("Error clearing global feed state:",e)}try{this.socket.disconnect()}catch(e){this.logger.error("Error disconnecting socket:",e)}this.socket=null,this.isAuthenticated=!1,this.logger.debug("✅ Stream WebSocket disconnected and cleaned up")}}}function nu(e){if(ri(e.tokenName,"tokenName",kn),!(null==(t=e.reason)||""===t||"string"==typeof t&&!ai(t)&&t.length<=En.BAN_REASON.MAX_LENGTH))throw new gt(`reason must be at most ${En.BAN_REASON.MAX_LENGTH} characters`,"reason","TOO_LONG");var t}class iu extends oa{constructor(e,t,n,i=!1,o){super(e,t,n,i,o)}async banToken(e){nu(e);const t=Ce,n={tokenName:an(e.tokenName)};if(void 0!==e.reason)try{Jn(e.reason,"reason",!0),e.reason.trim().length>0&&(n.reason=e.reason)}catch{}const i=await this.http.post(t,n,this.getDualAuthHeaders());return{ban:this.extractData(i),tokenName:an(e.tokenName)}}async unbanToken(e){!function(e){ri(e.tokenName,"tokenName",kn)}(e);const t=this.buildEndpoint(De,{tokenName:e.tokenName});return Zt(await this.http.delete(t,void 0,this.getDualAuthHeaders()),"Failed to unban token",!1),{tokenName:an(e.tokenName)}}async listTokenBans(e={}){!function(e){ti(0,void 0,bn,e.pageSize)}(e);const t=Ie,n=this.buildPaginationParams(e,bn);this.addOptionalFilterParams(n,e,["search"]);const i=await this.http.get(t,n,this.getDualAuthHeaders()),o=this.extractData(i);return{items:o.bans,pageInfo:o.pageInfo}}async getTokenBan(e){!function(e){ri(e.tokenName,"tokenName",kn)}(e);const t=this.buildEndpoint(Ne,{tokenName:e.tokenName}),n=await this.http.get(t,{},this.getDualAuthHeaders()),i=this.extractDataOrNull(n);return{banned:null!==i,...null!==i&&{ban:i},tokenName:an(e.tokenName)}}async isTokenBanned(e){return this.getTokenBan(e)}}class ou extends gi{constructor(e,t=!1){super(t),this.poolService=e,this.cache=new Map,this.accessOrder=new Set,this.cacheHits=0,this.cacheMisses=0}async resolveTokenToVault(e){if(!Zn(e))throw Mt("tokenName","Token name");const t=an(e),n=this.getCacheEntry(t);if(null!==n)return this.cacheHits++,this.updateAccessOrder(t),n.vaultAddress;this.cacheMisses++;try{const n=await this.poolService.resolveTokenNameToVault(e);if(null!==n&&""!==n){const e=this.parseVaultAddressToTokenClassKey(n);this.setCacheEntry(t,{vaultAddress:n,tokenClassKey:e,cachedAt:Date.now()})}return n}catch{return null}}async resolveTokenClassKey(e){if(!Zn(e))throw Mt("tokenName","Token name");const t=an(e),n=this.getCacheEntry(t);if(null!==n)return this.cacheHits++,this.updateAccessOrder(t),n.tokenClassKey;this.cacheMisses++;const i=await this.poolService.resolveTokenNameToVault(e);if(null===i||""===i)throw Lt(e);const o=this.parseVaultAddressToTokenClassKey(i);return this.setCacheEntry(t,{vaultAddress:i,tokenClassKey:o,cachedAt:Date.now()}),o}get(e){const t=this.getCacheEntry(an(e));return t?.vaultAddress??null}getCacheEntry(e){return this.cache.get(e)??null}setCacheEntry(e,t){this.cache.size>=ou.MAX_CACHE_SIZE&&!this.cache.has(e)&&this.evictOldestEntry(),this.cache.set(e,t),this.updateAccessOrder(e)}updateAccessOrder(e){this.accessOrder.delete(e),this.accessOrder.add(e)}evictOldestEntry(){const e=this.accessOrder.values().next().value;void 0!==e&&""!==e&&(this.cache.delete(e),this.accessOrder.delete(e))}set(e,t){const n=an(e),i=this.parseVaultAddressToTokenClassKey(t);this.setCacheEntry(n,{vaultAddress:t,tokenClassKey:i,cachedAt:Date.now()})}clear(){this.cache.clear(),this.accessOrder=new Set,this.cacheHits=0,this.cacheMisses=0}getStats(){const e=Array.from(this.cache.values()).map(e=>e.cachedAt),t=this.cacheHits+this.cacheMisses;return{size:this.cache.size,keys:Array.from(this.cache.keys()),maxSize:ou.MAX_CACHE_SIZE,hits:this.cacheHits,misses:this.cacheMisses,hitRate:t>0?this.cacheHits/t:0,oldestEntry:e.length>0?Math.min(...e):null,newestEntry:e.length>0?Math.max(...e):null}}getCachedTokenClassKey(e){const t=this.getCacheEntry(an(e));return t?.tokenClassKey??null}preWarm(e){for(const{tokenName:t,vaultAddress:n}of e)this.set(t,n)}preWarmWithTokenClassKey(e){for(const{tokenName:t,vaultAddress:n,tokenClassKey:i}of e){const e=an(t);this.setCacheEntry(e,{vaultAddress:n,tokenClassKey:i,cachedAt:Date.now()})}}parseVaultAddressToTokenClassKey(e){try{return fa(e)}catch(e){if(e instanceof gt)throw $t("vaultAddress","format: service|Token$Unit$SYMBOL$eth:address$launchpad","Vault address");throw e}}}ou.MAX_CACHE_SIZE=1e4;class ru extends hi{constructor(e,t=!1){super(e,t)}async fetchLaunchpadFee(){return nn(()=>this.http.get(ze),{errorContext:"Failed to fetch launchpad fee"})}async fetchSaleDetails(e){return nn(()=>this.http.get(je,{tokenName:e}),{errorContext:`Failed to fetch sale details for ${e}`})}async getTradeQuote(e){return nn(()=>this.http.get(Ve,{tokenName:e.tokenName,amount:e.amount,type:e.type,method:e.method}),{errorContext:`Failed to get trade quote for ${e.tokenName}`})}async getPremintQuote(e){return nn(()=>this.http.get(Xe,{amount:e}),{errorContext:"Failed to get premint quote"})}}class su extends oa{constructor(e,t,n,i=!1,o){super(e,t,n,i,o)}async emitTradeExecuted(e,t){this.validateTokenName(e,vn);const n={action:"trade_executed",tokenName:e,payload:t};await this.emitEvent(n)}async emitBalanceUpdated(e,t,n){this.validateRequiredString(e,"userAddress","User Address"),this.validateTokenName(t,vn);const i={action:"balance_updated",userAddress:e,tokenName:t,payload:n};await this.emitEvent(i)}async emitStreamStatus(e,t,n=!0){this.validateTokenName(e,vn);const i={action:"stream_status",tokenName:e,payload:t,broadcast:n};await this.emitEvent(i)}async emitViewerCount(e,t,n=!1){this.validateTokenName(e,vn);const i={action:"viewer_count",tokenName:e,payload:t,broadcast:n};await this.emitEvent(i)}async emitStreamCountdown(e,t,n=!0){this.validateTokenName(e,vn);const i={action:"stream_countdown",tokenName:e,payload:t,broadcast:n};await this.emitEvent(i)}async emitChatMessage(e,t,n=!1){this.validateTokenName(e,vn);const i={action:"chat_message",tokenName:e,payload:t,broadcast:n};await this.emitEvent(i)}async emitChatStatus(e,t,n=!1){this.validateTokenName(e,vn);const i={action:"chat_status",tokenName:e,payload:t,broadcast:n};await this.emitEvent(i)}async emitTypingIndicator(e,t,n=!1){this.validateTokenName(e,vn);const i={action:"typing_indicator",tokenName:e,payload:t,broadcast:n};await this.emitEvent(i)}async emitTokenBanned(e,t){this.validateTokenName(e,vn);const n={action:"token_banned",tokenName:e,payload:t,broadcast:!0};await this.emitEvent(n)}async emitTokenUnbanned(e,t){this.validateTokenName(e,vn);const n={action:"token_unbanned",tokenName:e,payload:t,broadcast:!0};await this.emitEvent(n)}async emitModeratorAdded(e,t,n=!1){this.validateTokenName(e,vn);const i={action:"moderator_added",tokenName:e,payload:t,broadcast:n};await this.emitEvent(i)}async emitModeratorRemoved(e,t,n=!1){this.validateTokenName(e,vn);const i={action:"moderator_removed",tokenName:e,payload:t,broadcast:n};await this.emitEvent(i)}async emitUserProfileUpdated(e,t){this.validateRequiredString(e,"userAddress","User Address");const n={action:"user_profile_updated",userAddress:e,payload:t};await this.emitEvent(n)}async emitSiteConfigChanged(e){const t={action:"site_config_changed",payload:e,broadcast:!0};await this.emitEvent(t)}async emitFeatureStatus(e){const t={action:"feature_status",payload:e,broadcast:!0};await this.emitEvent(t)}async emitEvent(e){this.validateRequiredString(e.action,"action","Event Action");const t=this.buildEndpoint("/v1/websocket",{});await this.http.post(t,e,this.getDualAuthHeaders())}async getConnectedClients(e){const t=this.buildEndpoint("/v1/connected-clients",{}),n={};void 0!==e?.room&&""!==e.room&&(n.room=e.room),void 0!==e?.tokenName&&(n.tokenName=e.tokenName),void 0!==e?.userAddress&&(n.userAddress=e.userAddress),void 0!==e?.userAddresses&&(n.userAddresses=e.userAddresses),void 0!==e?.authenticated&&(n.authenticated=e.authenticated),void 0!==e?.isOverseer&&(n.isOverseer=e.isOverseer),void 0!==e?.minConnectionSeconds&&(n.minConnectionSeconds=e.minConnectionSeconds),void 0!==e?.offset&&(n.offset=e.offset),void 0!==e?.limit&&(n.limit=e.limit);const i=await this.http.get(t,Object.keys(n).length>0?n:void 0,this.getDualAuthHeaders());return this.extractData(i)}async isUserOnline(e){this.validateRequiredString(e,"userAddress","User Address");const t=await this.getConnectedClients({userAddress:e,limit:1});if(0===t.clients.length)return{online:!1};const n=t.clients[0];return{online:!0,socketId:n.socketId,rooms:n.rooms,connectedAt:n.connectedAt}}async getOnlineUsers(e){if(!Array.isArray(e)||0===e.length)throw new ft("userAddresses must be a non-empty array");const t=await this.getConnectedClients({userAddresses:e.join(","),limit:e.length}),n=t.clients.filter(e=>"string"==typeof e.address&&""!==e.address).map(e=>e.address);return{online:n,offline:e.filter(e=>!n.includes(e)),clients:t.clients.map(e=>{const t={socketId:e.socketId,rooms:e.rooms};return"string"==typeof e.address&&(t.address=e.address),t})}}async getTokenViewers(e,t){this.validateTokenName(e,vn);const n={tokenName:e};void 0!==t?.authenticated&&(n.authenticated=t.authenticated),void 0!==t?.limit&&(n.limit=t.limit);const i=await this.getConnectedClients(n);return{clients:i.clients,count:i.summary.totalConnected,authenticatedCount:i.summary.authenticatedCount}}async getOnlineOverseers(){const e=await this.getConnectedClients({isOverseer:!0});return{clients:e.clients,count:e.summary.totalConnected}}async emitRecordingStatus(e,t){this.validateTokenName(e,vn);const n={action:"recording_status",tokenName:e,payload:t};await this.emitEvent(n)}async emitRecordingsCountUpdated(e,t){this.validateTokenName(e,vn);const n={action:"recordings_count_updated",tokenName:e,payload:t};await this.emitEvent(n)}async emitDownloadReady(e,t){this.validateTokenName(e,vn);const n={action:"download_ready",tokenName:e,payload:t};await this.emitEvent(n)}}var au,cu;!function(e){e.PROCESSED="PROCESSED",e.COMPLETED="COMPLETED",e.SUCCESS="SUCCESS",e.FAILED="FAILED",e.ERROR="ERROR",e.PROCESSING="PROCESSING",e.PENDING="PENDING"}(au||(au={})),function(e){e.PENDING="pending",e.PROCESSING="processing",e.COMPLETED="completed",e.FAILED="failed",e.TIMEOUT="timeout"}(cu||(cu={}));const lu={[au.PROCESSED]:cu.COMPLETED,[au.COMPLETED]:cu.COMPLETED,[au.SUCCESS]:cu.COMPLETED,[au.FAILED]:cu.FAILED,[au.ERROR]:cu.FAILED,[au.PROCESSING]:cu.PROCESSING,[au.PENDING]:cu.PENDING};class du{constructor(e=0){this.defaultTtlMs=e,this.cache=new Map}get(e){const t=this.cache.get(e);if(t){if(!(void 0!==t.expiresAt&&Date.now()>t.expiresAt))return t.value;this.cache.delete(e)}}set(e,t,n){const i=n??this.defaultTtlMs,o={value:t};i>0&&(o.expiresAt=Date.now()+i),this.cache.set(e,o)}has(e){return void 0!==this.get(e)}delete(e){this.cache.delete(e)}clear(){this.cache.clear()}get size(){return this.cache.size}}async function uu(e,t,n,i={}){const{logger:o,cacheNullish:r=!1,keyGenerator:s}=i,a=s?s(e):String(e),c=n.get(a);if(void 0!==c)return o&&o.debug(`Cache hit for key: ${a}`),c;o&&o.debug(`Cache miss for key: ${a}, fetching...`);const l=await t();return null!=l?(n.set(a,l),o&&o.debug(`Cached result for key: ${a}`)):r&&(n.set(a,l),o&&o.debug(`Cached nullish result for key: ${a}`)),l}class hu extends gi{constructor(e,t=!1){super(t),this.socket=null,this.listeners=new Map,this.timeouts=new Map,this.hasOnAnyListener=!1,this.MAX_BUFFER_SIZE=1e3,this.config={reconnectAttempts:5,reconnectDelay:2e3,timeout:3e5,...e},this.debug=t,this.reconnectionManager=new Kc({maxAttempts:this.config.reconnectAttempts??5,baseDelayMs:this.config.reconnectDelay??2e3}),this.eventBuffer=new du(3e4),this.isSocketIOAvailable=this.checkSocketIOAvailability(),hu.instances.add(this)}checkSocketIOAvailability(){try{return"function"==typeof h.io||(this.logger.warn('⚠️ Socket.IO client not available. Install "socket.io-client" package.'),!1)}catch(e){return this.logger.warn("⚠️ Socket.IO availability check failed:",e),!1}}async connect(){return new Promise((e,t)=>{sr(async()=>{if(!this.isSocketIOAvailable){const e=new Error('Socket.IO not available in current environment. Install "socket.io-client" package.');throw this.logger.error("❌ Socket.IO connection failed:",Ct(e)),e}this.logger.debug("🔌 Connecting to Socket.IO server:",this.config.url),this.socket=h.io(this.config.url,{transports:["websocket"],reconnection:!0,reconnectionAttempts:this.config.reconnectAttempts??5,reconnectionDelay:this.config.reconnectDelay??2e3}),this.socket.on("connect",()=>{this.logger.debug("✅ Socket.IO connected successfully:",this.socket?.id),this.logger.debug("📡 Connected to bundle backend WebSocket:",this.config.url),this.logger.debug("🔗 Ready to monitor transaction updates"),this.reconnectionManager.reset(),e()}),this.socket.on("connect_error",e=>{this.logger.error("❌ Socket.IO connection error:",e),t(e)}),this.socket.on("disconnect",e=>{this.logger.debug(`🔌 Socket.IO disconnected: ${e}`),this.handleReconnect()}),this.socket.on("error",e=>{this.logger.error("❌ Socket.IO error:",e)}),this.socket.onAny((e,...t)=>{if(""!==e&&t.length>0&&"object"==typeof t[0]&&null!==t[0]){const n=t[0],i=n.status??n.Status;"string"==typeof i&&(this.logger.debug(`📡 [Event Buffer] Buffering event for ${e}: ${i}`),this.eventBuffer.size>=this.MAX_BUFFER_SIZE&&this.logger.warn(`📡 [Event Buffer] Buffer approaching limit (${this.eventBuffer.size}/${this.MAX_BUFFER_SIZE})`),this.eventBuffer.set(e,n))}this.debug&&this.logger.debug(`📡 [WebSocket Event] "${e}":`,JSON.stringify(t,null,2))}),this.hasOnAnyListener=!0},"Socket.IO connection failed",this.logger,e=>{throw this.logger.error("Socket.IO connection failed:",e),t(e),e}).catch(t)})}async monitorTransaction(e,t){this.listeners.set(e,t),this.logger.debug(`📡 Starting to monitor transaction: ${e}`),this.logger.debug(`📡 WebSocket connected: ${!!this.socket&&this.socket.connected}`);const n=this.eventBuffer.get(e);null!=n&&(this.logger.debug(`📡 [Event Buffer] Found buffered event for ${e}, delivering immediately`),setImmediate(()=>{this.processTransactionEvent(e,n,t)}),this.eventBuffer.delete(e));const i=this.config.timeout??3e5,o=setTimeout(()=>{if(this.listeners.has(e)){const n=Math.round(i/1e3),o={transactionId:e,status:cu.TIMEOUT,message:`Transaction monitoring timeout - no response after ${n} seconds`,timestamp:Date.now()};this.logger.debug(`📡 Transaction timeout for ${e} (${n}s)`),t(o),this.listeners.delete(e),this.timeouts.delete(e),this.socket?.off(e)}},i);if(this.timeouts.set(e,o),this.socket?.connected)this.socket.off(e),this.logger.debug(`📡 Listening for transaction updates: ${e}`),this.logger.debug(`📡 WebSocket connection ID: ${String(this.socket.id)}`),this.logger.debug(`📡 WebSocket URL: ${this.config.url}`),this.socket.on(e,n=>{this.processTransactionEvent(e,n,t)});else{const n={transactionId:e,status:cu.FAILED,message:"WebSocket not connected - cannot monitor transaction",timestamp:Date.now()};t(n),this.listeners.delete(e),this.timeouts.delete(e)}}processTransactionEvent(e,t,n){this.logger.debug(`📡 Socket.IO transaction update for ${e}:`,JSON.stringify(t,null,2));const i=t,o=i?.data,r=i?.status??i?.Status??o?.status??o?.Status;let s=i?.message??i?.Message??o?.message??o?.Message??i?.error??o?.error;Zn(s)||(s=r===au.FAILED||r===au.ERROR?"Transaction failed - check transaction details":r===au.COMPLETED||r===au.PROCESSED||r===au.SUCCESS?"Transaction completed successfully":null!=r?`Transaction status: ${String(r)}`:"Unknown transaction status");const a=i?.blockHash??o?.blockHash,c=i?.gasUsed??o?.gasUsed,l=i?.Data??o?.Data,d={transactionId:e,status:this.mapSocketStatus(r),message:"string"==typeof s?s:"Transaction update received",timestamp:Date.now(),...null!=a?{blockHash:a}:{},...null!=c?{gasUsed:c}:{},...null!=l?{data:l}:{}};if(this.logger.debug(`📡 Mapped status for ${e}: ${String(r)} -> ${d.status}`),this.logger.debug(`📡 Final message: "${String(s)}"`),n(d),d.status===cu.COMPLETED||d.status===cu.FAILED){this.listeners.delete(e);const t=this.timeouts.get(e);t&&(clearTimeout(t),this.timeouts.delete(e)),this.socket?.off(e),this.logger.debug(`📡 Cleaned up listener for ${e} (${d.status})`)}}async waitForTransaction(e){return new Promise((t,n)=>{this.monitorTransaction(e,e=>{e.status===cu.COMPLETED?t(e):e.status!==cu.FAILED&&e.status!==cu.TIMEOUT||n(new Error(`Transaction ${String(e.status)}: ${e.message}`))})})}mapSocketStatus(e){const t=e?.toUpperCase();return lu[t]??cu.PENDING}async handleReconnect(){this.reconnectionManager.shouldRetry()?(this.reconnectionManager.recordAttempt(),this.logger.debug(`🔄 Attempting Socket.IO reconnect ${this.reconnectionManager.getStatusString()}`),setTimeout(()=>{this.socket&&!this.socket.connected&&this.socket.connect()},this.reconnectionManager.getNextDelay())):this.logger.error("❌ Socket.IO max reconnection attempts reached")}disconnect(){this.socket&&(this.listeners.forEach((e,t)=>{this.socket?.off(t)}),this.listeners.clear(),this.timeouts.forEach(e=>{clearTimeout(e)}),this.timeouts.clear(),this.eventBuffer.clear(),this.logger.debug("🧹 Cleared event buffer"),this.hasOnAnyListener&&(this.socket.offAny(),this.hasOnAnyListener=!1,this.logger.debug("🧹 Removed onAny debug listener")),this.socket.disconnect(),this.socket=null,this.logger.debug("🔌 Socket.IO disconnected")),hu.instances.delete(this)}static cleanupAll(e=!1){for(const e of hu.instances)e.disconnect();hu.instances.clear()}isConnected(){return this.socket?.connected??!1}getSocket(){return this.socket}}hu.instances=new Set;class gu extends hi{constructor(e,t=!1){super(e,t)}extractData(e){if(e.error||void 0===e.data){const t=e.message??"Weekly challenge operation failed";throw new Error(t)}return e.data}async getLeaderboard(e={}){const{limit:t=10}=e;if(t<1||t>50)throw new gt("limit must be between 1 and 50","limit","INVALID_LIMIT");this.logger.debug("Fetching weekly challenge leaderboard",{limit:t});const n={limit:String(t)},i=await this.http.get(Qe.GET_LEADERBOARD,n),o=this.extractData(i);return this.logger.debug("Fetched weekly challenge leaderboard",{count:o.count}),{leaderboard:o}}async getTokenHistory(e){const{vaultAddress:t}=e;if("string"!=typeof t||""===t.trim())throw new gt("vaultAddress is required","vaultAddress","REQUIRED_FIELD");this.logger.debug("Fetching token weekly history",{vaultAddress:t});const n=Qe.GET_TOKEN_HISTORY.replace(":vaultAddress",encodeURIComponent(t)),i=await this.http.get(n),o=this.extractData(i);return this.logger.debug("Fetched token weekly history",{count:o.length}),{snapshots:o}}}class mu extends mi{constructor(e=!1){super(e),this.lastFetchedAt=null}normalizeKey(e){return cn(e)}hasItems(){return this.cache.size>0}getAllItems(){return Array.from(this.cache.values())}setAll(e){this.cache.clear();for(const t of e){const e=this.extractKey(t),n=this.normalizeKey(e);this.cache.set(n,t)}this.lastFetchedAt=Date.now(),this.logger.debug(`Cached ${e.length} items`)}merge(e){for(const t of e){const e=this.extractKey(t),n=this.normalizeKey(e);this.cache.set(n,t)}this.lastFetchedAt=Date.now(),this.logger.debug(`Merged ${e.length} items (total: ${this.cache.size})`)}getFetchTimestamp(){return this.lastFetchedAt}clear(){super.clear(),this.lastFetchedAt=null}getByKey(e){const t=this.normalizeKey(e);return this.cache.get(t)}hasKey(e){const t=this.normalizeKey(e);return this.cache.has(t)}buildBaseStats(){return{totalItems:this.cache.size,isPopulated:this.cache.size>0,lastFetchedAt:this.lastFetchedAt}}}class pu extends mu{constructor(e=!1){super(e)}extractKey(e){return e.stringifiedTokenClassKey}has(){return this.hasItems()}getAll(){return this.getAllItems()}getByTokenId(e){return this.getByKey(e)}getStats(){const e=this.buildBaseStats();return{...e,tokenCount:e.totalItems}}size(){return this.cache.size}isTokenWrappable(e){return void 0!==this.getByTokenId(e)}getWrapCounterpart(e){const t=this.getByTokenId(e);if(t)return this.getByTokenId(t.wrapCounterpart)}}class fu extends ba{constructor(e,t=!1){super(e,t,"WrappableTokenService"),this.cache=new pu(t)}buildApiParams(e){return{wrappable:!0}}transformApiResponse(e){return e.map(e=>{const t={symbol:e.symbol,name:e.name,decimals:e.decimals,galaChainDescriptor:{collection:e.collection,category:e.category,type:e.type,additionalKey:e.additionalKey},stringifiedTokenClassKey:e.stringifiedTokenClassKey,wrapCounterpart:e.wrap,swappable:e.swappable,verified:e.verified};return void 0!==e.channel&&""!==e.channel&&(t.channel=e.channel),void 0!==e.trending&&(t.trending=e.trending),void 0!==e.image&&""!==e.image&&(t.image=e.image),void 0!==e.description&&""!==e.description&&(t.description=e.description),void 0!==e.currentPrices&&(t.currentPrices=e.currentPrices),t})}async fetchWrappableTokens(e={}){const{offset:t=0,limit:n=this.getDefaultLimit()}=e;return this.logger.debug(`Fetching wrappable tokens (offset=${t}, limit=${Math.min(n,this.getMaxLimit())})`),sr(async()=>{const e=(await this.executePaginatedRequest(t,n)).items;try{0===t?this.cache.setAll(e):this.cache.merge(e)}catch(e){this.logger.error("Cache operation failed (non-fatal):",e)}return{tokens:e,fetchedAt:Date.now(),tokenCount:e.length}},"Failed to fetch wrappable tokens",this.logger)}async fetchAllWrappableTokens(){return sr(async()=>{const e=await async function(e){const{cache:t,fetchFn:n,logger:i,itemTypeName:o="items"}=e;if(t.has()){const e=t.getAll();return i&&i.debug(`Returning ${e.length} cached ${o}`),{items:e,fetchedAt:t.getFetchTimestamp()??Date.now(),itemCount:e.length}}i&&i.debug(`Fetching all ${o} (no cache)`);const r=await n();try{t.setAll(r)}catch(e){i&&i.error("Cache operation failed (non-fatal):",e)}return{items:r,fetchedAt:Date.now(),itemCount:r.length}}({cache:this.cache,fetchFn:()=>this.autoPaginateFetch(),logger:this.logger,itemTypeName:"wrappable tokens"});return{tokens:e.items,fetchedAt:e.fetchedAt,tokenCount:e.itemCount}},"Failed to fetch wrappable tokens",this.logger)}async getWrappableToken(e){const t=va(e),n=this.cache.getByTokenId(t);return n||(await uu("wrappable:all",()=>this.fetchAllWrappableTokens(),{get:()=>this.cache.has()?{}:void 0,set:()=>{}},{logger:this.logger}),this.cache.getByTokenId(t))}async getWrapCounterpart(e){const t=await this.getWrappableToken(e);if(t)return this.getWrappableToken(t.wrapCounterpart)}async isTokenWrappable(e){const t=va(e);await uu("wrappable:check",()=>this.fetchAllWrappableTokens(),{get:()=>this.cache.has()?{}:void 0,set:()=>{}},{logger:this.logger});const n=this.cache.getByTokenId(t),i=void 0!==n,o={isWrappable:i,tokenId:t};return i&&(o.wrapCounterpart=n.wrapCounterpart),o}getCacheStats(){return this.cache.getStats()}clearCache(){this.cache.clear()}}class yu extends gi{constructor(e){super(!1,e.logger),this.galaConnectClient=e.galaConnectClient,this.wrappableTokenService=e.wrappableTokenService,this.wallet=e.wallet,this.walletAddress=e.walletAddress}async wrapToken(e){this.requireWallet();const t=await this.wrappableTokenService.getWrappableToken(e.tokenId);if(!t)throw new gt(`Token not found or not wrappable: ${this.formatTokenId(e.tokenId)}`,"tokenId","TOKEN_NOT_WRAPPABLE");if("asset"===t.channel)throw new gt(`Cannot wrap ${t.symbol} - it's already on asset channel. Use unwrapToken() instead.`,"tokenId","ALREADY_ON_ASSET_CHANNEL");const n=await this.wrappableTokenService.getWrapCounterpart(e.tokenId);if(!n)throw new gt(`Counterpart token not found for ${t.symbol}`,"tokenId","COUNTERPART_NOT_FOUND");return this.executeChannelBridge({sourceToken:t,destinationToken:n,amount:e.amount,...void 0!==e.recipient&&""!==e.recipient&&{recipient:e.recipient},...void 0!==e.memo&&""!==e.memo&&{memo:e.memo},isWrap:!0})}async unwrapToken(e){this.requireWallet();const t=await this.wrappableTokenService.getWrappableToken(e.tokenId);if(!t)throw new gt(`Token not found or not wrappable: ${this.formatTokenId(e.tokenId)}`,"tokenId","TOKEN_NOT_WRAPPABLE");if("asset"!==t.channel)throw new gt(`Cannot unwrap ${t.symbol} - it's not on asset channel. Use wrapToken() instead.`,"tokenId","NOT_ON_ASSET_CHANNEL");const n=await this.wrappableTokenService.getWrapCounterpart(e.tokenId);if(!n)throw new gt(`Counterpart token not found for ${t.symbol}`,"tokenId","COUNTERPART_NOT_FOUND");return this.executeChannelBridge({sourceToken:t,destinationToken:n,amount:e.amount,...void 0!==e.recipient&&""!==e.recipient&&{recipient:e.recipient},...void 0!==e.memo&&""!==e.memo&&{memo:e.memo},isWrap:!1})}async estimateWrapFee(e,t){if("string"==typeof e&&0===e.length)throw Mt("tokenId","Token identifier");if(0===t.length)throw Mt("amount");const n=await this.wrappableTokenService.getWrappableToken(e);if(!n)throw new gt(`Token not found or not wrappable: ${this.formatTokenId(e)}`,"tokenId","TOKEN_NOT_WRAPPABLE");if("asset"===n.channel)throw new gt(`Cannot wrap ${n.symbol} - it's already on asset channel`,"tokenId","ALREADY_ON_ASSET_CHANNEL");const i=this.determineChannelRouting(n,!0);return{fee:"0",feeToken:"GALA",authorizationType:i.authType,feeChannel:i.sourceChannel}}async estimateUnwrapFee(e,t){if("string"==typeof e&&0===e.length)throw Mt("tokenId","Token identifier");if(0===t.length)throw Mt("amount");const n=await this.wrappableTokenService.getWrappableToken(e);if(!n)throw new gt(`Token not found or not wrappable: ${this.formatTokenId(e)}`,"tokenId","TOKEN_NOT_WRAPPABLE");if("asset"!==n.channel)throw new gt(`Cannot unwrap ${n.symbol} - it's not on asset channel`,"tokenId","NOT_ON_ASSET_CHANNEL");const i=this.determineChannelRouting(n,!1);return{fee:"0",feeToken:"GALA",authorizationType:i.authType,feeChannel:i.sourceChannel}}getWrapStatus(e){if(0===e.length)throw Mt("transactionId");return{success:!0,status:"completed",transactionId:e,fromToken:"",toToken:"",amount:"",fromChannel:"",toChannel:""}}async executeChannelBridge(e){const{sourceToken:t,destinationToken:n,amount:i,recipient:o,isWrap:r}=e;if(!this.wallet||void 0===this.walletAddress||0===this.walletAddress.length)throw new gt("Wallet required for wrap/unwrap operations. Initialize SDK with a private key.","wallet","WALLET_REQUIRED");const s=this.walletAddress,a=this.determineChannelRouting(t,r),c=`galaswap-operation-${es()}`,l=cs,d={quantity:i,tokenInstance:{collection:t.galaChainDescriptor.collection,category:t.galaChainDescriptor.category,type:t.galaChainDescriptor.type,additionalKey:t.galaChainDescriptor.additionalKey,instance:"0"},destinationChainId:a.destinationChannelId,recipient:o??s,wrap:!0,uniqueKey:c};return this.logger.debug(`[WrapService] ${r?"Wrap":"Unwrap"} message (pre-signing)`,{amount:i,uniqueKey:c,sourceChannel:a.sourceChannel}),this.executeWrapBridgeRequest({sourceToken:t,destinationToken:n,amount:i,message:d,routing:a,isWrap:r,senderAddress:s,typedDataTypes:l})}async executeWrapBridgeRequest(e){const{sourceToken:t,destinationToken:n,amount:i,message:o,routing:r,isWrap:a,typedDataTypes:c}=e;try{const e=await this.wallet.signTypedData(ts,c,o),l=`Ethereum Signed Message:\n${s({domain:ts,message:o,primaryType:"GalaTransaction",types:c}).length}`,d={...o,signature:e,prefix:l,types:c,domain:ts};this.logger.debug(`[WrapService] ${a?"Wrap":"Unwrap"} request (signed)`,{sourceToken:t.symbol,destinationToken:n.symbol,amount:i,channel:r.sourceChannel});const u=await this.galaConnectClient.requestBridgeOut(d);if(this.logger.debug("[WrapService] RequestBridgeOut response",{status:u.Status,hasData:"Data"in u}),function(e){return"object"==typeof e&&null!==e&&"Status"in e&&"number"==typeof e.Status&&1!==e.Status}(u)){const e=`Status=${u.Status}`,o="string"==typeof u.Message&&u.Message.length>0?`: ${u.Message}`:"";return{success:!1,fromToken:t.symbol,toToken:n.symbol,amount:i,fromChannel:r.sourceChannel,toChannel:a?"asset":n.channel??"music",error:`GalaChain request failed (${e}${o})`}}if(function(e){return"object"==typeof e&&null!==e&&"Data"in e&&"string"==typeof e.Data}(u)){const e=u.Data;this.logger.debug("[WrapService] Step 1 complete, bridgeRequestId:",e);const o={bridgeFromChannel:r.sourceChannel,bridgeRequestId:e};this.logger.debug("[WrapService] Step 2 - BridgeTokenOut",{bridgeFromChannel:o.bridgeFromChannel});const s=await this.galaConnectClient.bridgeTokenOut(o);return this.logger.debug("[WrapService] BridgeTokenOut response",{status:s.Status,hash:s.Hash}),1!==s.Status?{success:!1,fromToken:t.symbol,toToken:n.symbol,amount:i,fromChannel:r.sourceChannel,toChannel:a?"asset":n.channel??"music",error:`BridgeTokenOut failed: status=${String(s.Status)}`}:{success:!0,transactionId:s.Hash??e,fromToken:t.symbol,toToken:n.symbol,amount:i,fromChannel:r.sourceChannel,toChannel:a?"asset":n.channel??"music",completedAt:Date.now()}}return{success:!1,fromToken:t.symbol,toToken:n.symbol,amount:i,fromChannel:r.sourceChannel,toChannel:a?"asset":n.channel??"music",error:`Unexpected response format from GalaChain (type=${typeof u})`}}catch(e){const o=Ct(e);return this.logger.error(`[WrapService] ${a?"Wrap":"Unwrap"} operation failed:`,o),{success:!1,fromToken:t.symbol,toToken:n.symbol,amount:i,fromChannel:r.sourceChannel,toChannel:a?"asset":n.channel??"music",error:o}}}determineChannelRouting(e,t){if(t){return{sourceChannel:e.channel??"music",destinationChannelId:wr,authType:"cross_channel_authorization"}}return{sourceChannel:"asset",destinationChannelId:br,authType:"automatic"}}requireWallet(){if(void 0===this.walletAddress||0===this.walletAddress.length)throw new gt("Wallet required for wrap/unwrap operations. Initialize SDK with a private key.","wallet","WALLET_REQUIRED")}formatTokenId(e){return"string"==typeof e?e:mr(e)}}const ku=new Set(["accesstoken","refreshtoken","token","password","privatekey","secret","apikey","api_key","rawkey","authorization","x-api-key","bearer","streamadminapikey","userapikey","signature","signedpayload"]);function vu(e,t=0){if(t>5)return"[...]";if(null==e)return e;if(Array.isArray(e))return e.map(e=>vu(e,t+1));if(e instanceof Map){const n={};for(const[i,o]of e.entries()){const e=String(i);n[e]=ku.has(e.toLowerCase())?"[REDACTED]":vu(o,t+1)}return n}if("object"==typeof e){const n={};for(const[i,o]of Object.entries(e))n[i]=ku.has(i.toLowerCase())?"[REDACTED]":vu(o,t+1);return n}return e}class wu{constructor(e,t={}){this.auth=e,this.debug=t.debug??!1,this.logger=new un({debug:this.debug,context:"HttpClient"});const n=t.baseUrl??"https://lpad-backend-dev1.defi.gala.com",i=t.timeout??6e4;this.axios=Wc(n,i),t.headers&&(this.axios.defaults.headers.common={...this.axios.defaults.headers.common,...t.headers}),this.setupInterceptors()}async request(e){return sr(async()=>{const t={method:e.method,url:e.url,data:e.data,...void 0!==e.params&&{params:wo(e.params)},...void 0!==e.headers&&{headers:e.headers},...void 0!==e.timeout&&{timeout:e.timeout},...void 0!==e.signal&&{signal:e.signal}};e.data instanceof FormData&&(void 0!==t.headers&&"Content-Type"in t.headers&&delete t.headers["Content-Type"],this.logger.debug("FormData detected - removing Content-Type header for multipart upload")),e.headers&&this.logger.debug("Custom headers provided:",Object.keys(t.headers??{}));const n=e.data instanceof FormData?"[FormData object - multipart/form-data]":vu(e.data);this.logger.debug("Request:",{method:e.method,url:e.url?.split("?")[0],baseURL:this.axios.defaults.baseURL,params:vu(t.params),data:n,isFormData:e.data instanceof FormData,contentType:t.headers?.["Content-Type"]??"not set"});const i=await this.axios.request(t);return this.logger.debug("Response:",{status:i.status,data:vu(i.data)}),i.data},`HTTP ${e.method} ${e.url}`,this.logger)}async get(e,t,n){return this.request({method:"GET",url:e,...t&&{params:t},...n&&{headers:n}})}async post(e,t,n){return this.request({method:"POST",url:e,data:t,...n&&{headers:n}})}async put(e,t,n){return this.request({method:"PUT",url:e,data:t,...n&&{headers:n}})}async delete(e,t,n){return this.request({method:"DELETE",url:e,...t&&{params:t},...n&&{headers:n}})}async patch(e,t,n){return this.request({method:"PATCH",url:e,data:t,...n&&{headers:n}})}getAddress(){return this.auth.getAddress()}getEthereumAddress(){return this.auth.getEthereumAddress()}async signMessage(e){return(await this.auth.signMessage(e)).signature}async signTypedData(e,t,n){return await this.auth.signTypedData(e,t,n)}async signCustomMessage(e){return sr(async()=>{const t=await this.auth.generateCustomSignature(e);return this.logger.debug("Generated custom signature:",{message:e,address:t.address,ethereumAddress:this.auth.getEthereumAddress()}),{signature:t.signature,address:t.address,ethereumAddress:this.auth.getEthereumAddress()}},"Failed to generate custom signature for message",this.logger)}async signWithGalaChain(e,t,i=n.SigningType.SIGN_TYPED_DATA){const o=this.auth.getPrivateKey(),r={};Object.entries(t).forEach(([e,t])=>{void 0!==t&&(r[e]=t)});const s=new n.SigningClient(o);return await s.sign(e,r,i)}setupInterceptors(){this.requestInterceptorId=this.axios.interceptors.request.use(async e=>{if(e.headers??(e.headers={}),this.auth?.hasWallet()){const t=await this.auth.generateSignature();e.headers.Sign=t.signature,this.logger.debug("Added signature header:",{address:t.address,message:t.message,timestamp:t.timestamp})}else this.logger.debug("No wallet configured - skipping signature header");return e.data instanceof FormData||(e.headers["Content-Type"]="application/json"),this.logger.debug("Final request header keys being sent:",Object.keys(e.headers)),e},e=>Promise.reject(e)),this.responseInterceptorId=this.axios.interceptors.response.use(e=>e,e=>{const t=e;if(void 0!==t.response){const n=t.response.data,i={message:n?.message??Ct(e),...n&&Boolean(n.error)&&{error:n.error},statusCode:t.response.status,...n&&Boolean(n.details)&&{details:n.details},...n&&Boolean(n.timestamp)&&{timestamp:n.timestamp},...n&&Boolean(n.path)&&{path:n.path}};t.launchpadError=i,this.logger.error("Backend error:",i)}else void 0!==t.request?this.logger.error("Network error:",t.message??"Unknown error"):this.logger.error("Request setup error:",t.message??"Unknown error");return Promise.reject(e)})}cleanup(){void 0!==this.requestInterceptorId&&(this.axios.interceptors.request.eject(this.requestInterceptorId),this.requestInterceptorId=void 0),void 0!==this.responseInterceptorId&&(this.axios.interceptors.response.eject(this.responseInterceptorId),this.responseInterceptorId=void 0),this.logger.debug("Interceptors cleaned up")}}class bu extends Error{constructor(e,t){super(e),this.cause=t,this.name="WebSocketError"}}class Su extends Error{constructor(e,t,n){super(`Transaction ${e} failed with status: ${t}${void 0!==n?` - ${n}`:""}`),this.transactionId=e,this.status=t,this.name="TransactionFailedError"}}function Au(e,t){if(ei(e))throw new bu(`Invalid WebSocket response received for transaction ${t}: response is null or undefined`);if("object"!=typeof e)throw new bu(`Invalid WebSocket response received for transaction ${t}: expected object, got ${typeof e}`);if(!Object.prototype.hasOwnProperty.call(e,"status")&&!Object.prototype.hasOwnProperty.call(e,"Status"))throw new bu(`Invalid WebSocket response received for transaction ${t}: missing status field`)}function Tu(e,t,n,i){Au(e,t);const o=e,r=o.data??{};if(!function(e){if(ei(e)||"object"!=typeof e)return!1;const t=e;return!(void 0!==t.inputQuantity&&"string"!=typeof t.inputQuantity||void 0!==t.outputQuantity&&"string"!=typeof t.outputQuantity||void 0!==t.totalFees&&"string"!=typeof t.totalFees||void 0!==t.vaultAddress&&"string"!=typeof t.vaultAddress)}(r))throw new bu(`Invalid trade data received for transaction ${t}`);const s={transactionId:t,type:n,method:"native"===i.type?"native":"exact",inputAmount:r.inputQuantity??i.amount,outputAmount:r.outputQuantity??i.expectedAmount??"0",totalFees:r.totalFees??"0",tokenName:i.tokenName,vaultAddress:r.vaultAddress??"",timestamp:Date.now()};return void 0!==o.blockHash&&(s.blockHash=o.blockHash),void 0!==o.gasUsed&&(s.gasUsed=o.gasUsed),void 0!==i.slippageToleranceFactor&&(s.slippageTolerance=i.slippageToleranceFactor),s}function Eu(e){if(e&&function(e){return"privateKey"===e.providerType}(e))return e.getWallet()}class Cu{constructor(e){this.logger=e??new un({debug:!1,context:"LiquidityEventExtractor"})}walkPayloadForLiquidityEvents(e,t){const n=[],i=new WeakSet,o=(e,r=0)=>{if(r>50)this.logger.debug("Payload nesting exceeded maximum depth of 50");else if(null!=e&&!Zn(e)&&"object"==typeof e){if(i.has(e))return;i.add(e);const s=this.extractLiquidityFromObject(e);s&&!t.has(s.transactionId)&&(n.push(s),t.add(s.transactionId));for(const t of Object.values(e))o(t,r+1)}};return o(e,0),n}extractLiquidityFromObject(e){const t=this.extractTransactionId(e);if(null===t||""===t)return null;const n=e.Data,i=null==n||"object"!=typeof n||Array.isArray(n)?e:n,o=this.extractPositionId(i),r=this.extractPoolHash(i),s=this.extractAmounts(i),a=this.extractUserAddress(i),c=this.extractPoolFee(i);if(null===o||""===o||null===r||""===r||null===s||null===a||""===a||null===c)return null;const l=this.extractPoolAlias(i),d=this.extractUserBalanceDelta(i),u=this.extractTimestamp(i),h=d?.token0Balance?.collection,g=d?.token1Balance?.collection,m={transactionId:t,positionId:o,poolHash:r,poolFee:c,amounts:s,userAddress:a};return void 0!==h&&(m.token0=h),void 0!==g&&(m.token1=g),void 0!==u&&(m.timestamp=u),void 0!==l&&(m.poolAlias=l),void 0!==d&&(m.userBalanceDelta=d),m}extractTransactionId(e){const t=["transactionId","txId","tx_id","hash","txHash","id"];for(const n of t){const t=e[n];if(Zn(t))return t}return null}extractPositionId(e){const t=["positionId","position_id","tokenId","nftId"];for(const n of t){const t=e[n];if(Zn(t))return t}return null}extractPoolHash(e){const t=["poolHash","pool_hash","pool"];for(const n of t){const t=e[n];if(Zn(t))return t}return null}extractPoolAlias(e){const t=["poolAlias","pool_alias"];for(const n of t){const t=e[n];if(Zn(t))return t}}extractAmounts(e){const t=e.amounts;if(Array.isArray(t)&&t.length>=2){const e=String(t[0]).trim(),n=String(t[1]).trim();if(""!==e&&""!==n)return[e,n]}const n=e.amount0??e.amount0Desired,i=e.amount1??e.amount1Desired;return void 0!==n&&void 0!==i?[String(n),String(i)]:null}extractUserAddress(e){const t=["userAddress","user","owner","from","sender","wallet","address"];for(const n of t){const t=e[n];if(Zn(t))return t}return null}extractPoolFee(e){const t=["poolFee","fee","feeTier","feeTierBps"];for(const n of t){const t=e[n];if("number"==typeof t)return this.normalizeFee(t);if(Zn(t)){const e=Un(t,NaN);if(isFinite(e))return this.normalizeFee(e)}}return null}normalizeFee(e){return 1===e||1e4===e?1e4:.3===e||3e3===e?3e3:.05===e||500===e?500:Number.isInteger(e)?e:e<1?Math.round(1e4*e):e}extractTimestamp(e){const t=["timeStamp","timestamp","time","createdAt","date"];for(const n of t){const t=e[n];if("number"==typeof t)return t;if(Zn(t)){const e=new Date(t).getTime();if(isFinite(e))return e}}}extractUserBalanceDelta(e){const t=e.userBalanceDelta;if(null==t||"object"!=typeof t)return;const n=t,i=this.extractBalanceObject(n.token0Balance),o=this.extractBalanceObject(n.token1Balance);if(!i&&!o)return;const r={};return void 0!==i&&(r.token0Balance=i),void 0!==o&&(r.token1Balance=o),r}extractBalanceObject(e){if(null==e||"object"!=typeof e)return;const t=e,n=t.collection,i=t.category,o=t.type,r=t.additionalKey,s=t.quantity,a=t.owner;return Zn(n)&&Zn(i)&&Zn(o)&&Zn(r)&&Zn(s)&&Zn(a)?{collection:n,category:i,type:o,additionalKey:r,quantity:s,owner:a}:void 0}}class Iu{constructor(e){let t,n;e.walletProvider?(t=e.walletProvider,n=Eu(e.walletProvider)):e.wallet&&(n=e.wallet,t=dr.fromWallet(e.wallet)),this.wallet=n;let i=null,o="PROD";if(void 0!==e.env?(o=e.env,i=gr(e.env)):e.baseUrl?.includes("dev")||e.baseUrl?.includes("qa")||e.baseUrl?.includes("test")||e.baseUrl?.includes("stage")?(o="STAGE",i=gr("STAGE")):(o="PROD",i=gr("PROD")),this.environment=o,this.config={baseUrl:i.launchpadBaseUrl,galaChainBaseUrl:i.galaChainBaseUrl,bundleBaseUrl:i.bundleBaseUrl,webSocketUrl:i.webSocketUrl,gdexWebSocketUrl:i.gdexWebSocketUrl,dexApiBaseUrl:i.dexApiBaseUrl,dexBackendBaseUrl:i.dexBackendBaseUrl,launchpadFrontendUrl:i.launchpadFrontendUrl,timeout:3e4,debug:!1,...e},this.logger=new un({debug:this.config.debug??!1,context:"LaunchpadSDK"}),this.validateConfiguration(),this.slippageToleranceFactor=void 0===e.slippageToleranceFactor?Iu.DEFAULT_SLIPPAGE_TOLERANCE_FACTOR:this.parseSlippageToleranceFactor(e.slippageToleranceFactor),this.maxAcceptableReverseBondingCurveFeeSlippageFactor=void 0===e.maxAcceptableReverseBondingCurveFeeSlippageFactor?Iu.DEFAULT_MAX_ACCEPTABLE_REVERSE_BONDING_CURVE_FEE_SLIPPAGE_FACTOR:this.parseFeeSlippageFactor(e.maxAcceptableReverseBondingCurveFeeSlippageFactor),this.calculateAmountMode=e.calculateAmountMode??Iu.DEFAULT_CALCULATE_AMOUNT_MODE,this.pricingConcurrency=e.pricingConcurrency??5,this.galaChainAddressOverride=e.galaChainAddress,this.auth=new ur({wallet:n,walletProvider:t,messagePrefix:"Create a GalaChain Wallet"}),this.jwtAuth=new rr,void 0!==e.accessToken&&""!==e.accessToken){const t=e.accessTokenExpiresIn??86400;this.jwtAuth.setToken(e.accessToken,t)}this.http=new wu(this.auth,this.config),this.sessionAuth=new cr(this.http,this.auth,this.jwtAuth,e.debug??!1),this.galaChainHttp=new wu(this.auth,{...this.config,baseUrl:this.config.galaChainBaseUrl}),this.bundleHttp=new wu(this.auth,{...this.config,baseUrl:this.config.bundleBaseUrl}),this.dexApiHttp=new wu(this.auth,{...this.config,baseUrl:this.config.dexApiBaseUrl}),this.dexBackendHttp=new wu(this.auth,{...this.config,baseUrl:this.config.dexBackendBaseUrl}),this.galaChainPublicAxios=Wc(this.config.galaChainBaseUrl,this.config.timeout??3e4),this.cache=new pi(e.debug??!1),this.launchpadService=new al(this.http,this.jwtAuth),this.tokenResolverService=new ou(this.launchpadService.poolService),this.launchpadAPI=new Qo(this.http,this.tokenResolverService,this.logger,this.bundleHttp,this.galaChainHttp,this.dexApiHttp,this.calculateAmountMode),this.galaChainService=new $c(this.galaChainHttp,n,this.tokenResolverService,e.debug??!1,this.galaChainPublicAxios),this.dexService=new nc(this.dexBackendHttp,this.cache,this.galaChainService,e.debug??!1),this.bundleService=new La(this.bundleHttp,this.tokenResolverService,this.config.debug??!1,n,n?this.getAddress():void 0,this.slippageToleranceFactor,this.maxAcceptableReverseBondingCurveFeeSlippageFactor),this.websocketService=new hu({url:this.config.webSocketUrl},this.config.debug),this.priceHistoryService=new Hl(this.dexBackendHttp,this.config.debug??!1,this.tokenResolverService),this.dexQuoteService=new tc(this.dexBackendHttp,this.config.dexBackendBaseUrl,e.debug??!1,e.dexQuoteNetworkTimeout??3e4),this.gswapService=new Xc({privateKey:n?.privateKey,getWalletAddress:()=>this.wallet?this.getAddress():void 0,bundlerBaseUrl:this.config.bundleBaseUrl,dexBackendBaseUrl:this.config.dexBackendBaseUrl,dexBackendHttp:this.dexBackendHttp},this.websocketService,this.dexQuoteService),this.dexPoolService=new Za(this.dexBackendHttp,this.config.dexBackendBaseUrl,this.gswapService,this.pricingConcurrency,e.debug??!1),this.nftCollectionService=new _l(this.galaChainHttp),this.tradingQuotesService=new ru(this.http,e.debug??!1)}createOverrideSdk(e){if(!Zn(e))throw qt("Invalid privateKey: must be a non-empty string","privateKey");if(!e.match(/^0x[a-fA-F0-9]{64}$/))throw qt('Invalid privateKey format: must be "0x" followed by 64 hexadecimal characters',"privateKey");const n=new t.Wallet(e),i={...this.config,wallet:n};return new Iu(i)}getAddress(){return void 0!==this.galaChainAddressOverride&&""!==this.galaChainAddressOverride?this.galaChainAddressOverride:(this.validateWallet(),this.auth.getAddress())}getEthereumAddress(){return this.validateWallet(),this.wallet.address}validateWallet(){if(!this.wallet)throw Mt("wallet","Wallet");return this.wallet}setWallet(e){if(null==e||"object"!=typeof e||!("address"in e))throw new gt("Invalid wallet: must be an ethers Wallet instance, received "+typeof e,"wallet","INVALID_WALLET");this.wallet=e,this.auth.setWallet(e)}setWalletProvider(e){this.auth.setWalletProvider(e),this.wallet=e?Eu(e):void 0}getWallet(){return this.wallet}get events(){return this.getEventsBatcherService()}getWalletProvider(){return this.auth.getWalletProvider()}hasWallet(){return this.auth.hasWallet()}getConfig(){const{wallet:e,walletProvider:t,streamAdminApiKey:n,userApiKey:i,accessToken:o,headers:r,...s}=this.config;return{...s,...void 0!==n&&{streamAdminApiKey:"[REDACTED]"},...void 0!==i&&{userApiKey:"[REDACTED]"},...void 0!==o&&{accessToken:"[REDACTED]"},...void 0!==r&&{headers:Object.fromEntries(Object.keys(r).map(e=>[e,"[REDACTED]"]))},environment:this.environment,slippageToleranceFactor:this.slippageToleranceFactor,maxAcceptableReverseBondingCurveFeeSlippageFactor:this.maxAcceptableReverseBondingCurveFeeSlippageFactor,calculateAmountMode:this.calculateAmountMode,gasFee:sn.GAS_FEE}}getVersion(){return Js}getUrlByTokenName(e){const t=this.config.launchpadFrontendUrl;if(void 0===t||""===t)throw qt("launchpadFrontendUrl not configured in SDK","launchpadFrontendUrl");return`${t.replace(/\/$/,"")}/buy-sell/${e}`}async fetchPools(e){const t=await this.launchpadService.fetchPools(e??{});return await this.warmCacheFromPools(t.items),t}async fetchAllPools(e){const t=await this.launchpadService.fetchAllPools(e);return await this.warmCacheFromPools(t.items),t}async fetchDexPools(e={}){return this.dexPoolService.fetchDexPools(e)}async fetchAllDexPools(e={}){return this.dexPoolService.fetchAllDexPools(e)}async fetchCompositePoolData(e){return this.dexQuoteService.fetchCompositePoolData(e)}async calculateDexPoolQuoteExactAmountLocal(e){return this.dexQuoteService.calculateDexPoolQuoteExactAmountLocal(e)}async calculateDexPoolQuoteExactAmountExternal(e){return this.dexQuoteService.calculateDexPoolQuoteExactAmountExternal(e)}async calculateDexPoolQuoteExactAmount(e,t="local"){return this.dexQuoteService.calculateDexPoolQuoteExactAmount(e,t)}async fetchTokenDistribution(e){return this.launchpadService.fetchTokenDistribution(e)}async getTopHolders(e,t=10){const n=await this.fetchTokenDistribution(e),i=Math.min(t,100);return n.holders.slice(0,i).map((e,t)=>({...e,rank:t+1}))}async getHolderCount(e){const t=await this.fetchTokenDistribution(e);return{count:t.totalHolders,totalBalance:t.totalSupply}}async getHolderRank(e,t){const n=await this.fetchTokenDistribution(e),i=n.holders.findIndex(e=>e.address.toLowerCase()===t.toLowerCase());return-1===i?null:{rank:i+1,balance:n.holders[i].balance,holderCount:n.totalHolders}}async getHoldersByBalance(e,t){const n=await this.fetchTokenDistribution(e),i=t?.minBalance??0,o=t?.maxBalance??1/0,r=Math.min(t?.limit??100,1e3),s=new Map;return n.holders.forEach((e,t)=>{s.set(e.address,t+1)}),n.holders.filter(e=>{const t=parseFloat(e.balance);return t>=i&&t<=o}).map(e=>({...e,rank:s.get(e.address)??0})).slice(0,r)}async getHolderHistory(e,t,n=20){return this.getTrades({tokenName:e,userAddress:t,pageSize:Math.min(n,100)})}async fetchUserHolderContext(e,t){return this.launchpadService.fetchUserHolderContext(e,t)}async fetchTokenBadges(e){return this.launchpadService.fetchTokenBadges(e)}async fetchTokenPrice(e){const{tokenName:t,tokenId:n}=e,{hasA:i}=oi(e,"tokenName","tokenId",{description:"token identifier"});if(i&&void 0!==t&&""!==t)return this.dexService.fetchLaunchpadTokenSpotPrice(t,e=>this.launchpadAPI.calculateBuyAmount(e),e=>this.fetchPoolDetails(e));const o=n;try{return await this.dexService.fetchTokenPrice({tokenId:o})}catch(e){const t=function(e){if(xt(e)&&e.response)return e.response.status}(e);if(400===t||404===t){this.logger.debug(`DEX spot price not available (HTTP ${t}) for tokenId, attempting launchpad fallback`);try{const t=an((await this.fetchTokenDetails(o)).name);if(!/^[a-z0-9]{3,20}$/.test(t))throw this.logger.error(`Token name extracted from GalaChain doesn't match launchpad format: "${t}"`),e;return this.logger.debug(`Falling back to launchpad pricing using extracted token name: "${t}"`),this.dexService.fetchLaunchpadTokenSpotPrice(t,e=>this.launchpadAPI.calculateBuyAmount(e),e=>this.fetchPoolDetails(e))}catch(t){throw this.logger.error(`Launchpad fallback failed: ${Ct(t)}`),e}}throw e}}async fetchGalaPrice(){return this.fetchTokenPrice({tokenId:{collection:"GALA",category:"Unit",type:"none",additionalKey:"none"}})}async fetchTokenDetails(e){return this.dexService.fetchTokenDetails(e)}async fetchAllDexSeasons(){return this.dexService.fetchAllDexSeasons()}async fetchCurrentDexSeason(){return this.dexService.fetchCurrentDexSeason()}async fetchDexLeaderboardBySeasonId(e){return this.dexService.fetchDexLeaderboardBySeasonId(e)}async fetchCurrentDexLeaderboard(){return this.dexService.fetchCurrentDexLeaderboard()}async fetchDexAggregatedVolumeSummary(){return this.dexService.fetchDexAggregatedVolumeSummary()}async fetchLaunchTokenFee(){return this.galaChainService.fetchLaunchTokenFee()}async fetchTokenClassesWithSupply(e){return this.galaChainService.fetchTokenClassesWithSupply(e)}async fetchPoolDetails(e){const t=await this.resolveVaultAddress(e);if(null==t)throw new Error(Ot(e));const n=(await this.galaChainService.fetchPoolDetails({vaultAddress:t})).Data,i=await this.launchpadAPI.fetchPoolDetailsForCalculation(e);return n.currentSupply=i.currentSupply,n.reverseBondingCurveMaxFeeFactor=i.reverseBondingCurveMaxFeeFactor,n.reverseBondingCurveMinFeeFactor=i.reverseBondingCurveMinFeeFactor,n.reverseBondingCurveNetFeeFactor=i.reverseBondingCurveNetFeeFactor,n.tokenName=e,n}async fetchPoolDetailsForCalculation(e){return this.launchpadAPI.fetchPoolDetailsForCalculation(e)}async isTokenGraduated(e){return(await this.fetchPoolDetails(e)).isGraduated}async fetchVolumeData(e){return this.launchpadService.fetchVolumeData(e)}async fetchTrades(e){return this.launchpadService.fetchTrades(e)}async fetchGalaBalance(e){const{normalizeAddressInput:t}=await Promise.resolve().then(function(){return Ii}),n=t(e)??this.getAddress();return this.galaChainService.fetchGalaBalance({owner:n,collection:"GALA",category:"Unit",additionalKey:"none",type:"none",instance:"0"})}getBridgeService(e){if(!this._bridgeService){const t=this.getWallet();if(!t)throw new Error("Bridge operations require a wallet. Configure SDK with a wallet first.");const n=e?.solanaPrivateKey??process.env.SOLANA_PRIVATE_KEY;this._bridgeService=new Qs({galaConnectBaseUrl:this.config.dexApiBaseUrl,galaChainWalletAddress:this.getAddress(),ethereumPrivateKey:e?.ethereumPrivateKey??t.privateKey,...void 0!==n&&""!==n?{solanaPrivateKey:n}:{},bridgeableTokenService:this.getBridgeableTokenService(),environment:this.environment,...void 0!==this.config.ethereumRpcUrl&&""!==this.config.ethereumRpcUrl?{ethereumRpcUrl:this.config.ethereumRpcUrl}:{},...void 0!==this.config.solanaRpcUrl&&""!==this.config.solanaRpcUrl?{solanaRpcUrl:this.config.solanaRpcUrl}:{}})}return this._bridgeService}getBridgeableTokenService(){return this._bridgeableTokenService??(this._bridgeableTokenService=new Ea(this.dexApiHttp,this.config.debug??!1)),this._bridgeableTokenService}getWrappableTokenService(){return this._wrappableTokenService??(this._wrappableTokenService=new fu(this.dexApiHttp,this.config.debug??!1)),this._wrappableTokenService}getGalaConnectClient(){if(null===this._galaConnectClient||void 0===this._galaConnectClient){const e=this.getAddress();if(void 0===this.config.dexApiBaseUrl||""===this.config.dexApiBaseUrl)throw new Error("DEX API base URL is required for GalaConnectClient. Check SDK configuration.");this._galaConnectClient=new qs({baseUrl:this.config.dexApiBaseUrl,...void 0!==this.config.galaChainBaseUrl&&""!==this.config.galaChainBaseUrl?{galachainBaseUrl:this.config.galaChainBaseUrl}:{},walletAddress:e})}return this._galaConnectClient}getWrapService(){if(!this._wrapService){const e=this.getWallet();this._wrapService=new yu({galaConnectClient:this.getGalaConnectClient(),wrappableTokenService:this.getWrappableTokenService(),...e&&{walletAddress:this.getAddress(),wallet:e}})}return this._wrapService}getStreamingService(){return this._streamingService??(this._streamingService=new Zl(this.http,this.config.streamAdminApiKey,this.jwtAuth,this.config.debug??!1,this.config.userApiKey)),this._streamingService}getStreamChatService(){return this._streamChatService??(this._streamChatService=new jl(this.http,this.config.streamAdminApiKey,this.jwtAuth,this.config.debug??!1,this.config.userApiKey)),this._streamChatService}getBanService(){return this._banService??(this._banService=new ga(this.http,this.config.streamAdminApiKey,this.jwtAuth,this.config.debug??!1,this.config.userApiKey)),this._banService}getTokenBanService(){return this._tokenBanService??(this._tokenBanService=new iu(this.http,this.config.streamAdminApiKey,this.jwtAuth,this.config.debug??!1,this.config.userApiKey)),this._tokenBanService}getAIModerationService(){return this._aiModerationService??(this._aiModerationService=new ra(this.http,this.config.streamAdminApiKey,this.jwtAuth,this.config.debug??!1,this.config.userApiKey)),this._aiModerationService}getWeeklyChallengeService(){return this._weeklyChallengeService??(this._weeklyChallengeService=new gu(this.http,this.config.debug??!1)),this._weeklyChallengeService}getOEmbedService(){return this._oembedService??(this._oembedService=new Fl(this.http,this.config.debug??!1)),this._oembedService}getPlatformStatsService(){return this._platformStatsService??(this._platformStatsService=new Wl(this.http,this.config.debug??!1)),this._platformStatsService}getNotificationService(){return this._notificationService??(this._notificationService=new Rl(this.http,this.config.debug??!1,this.jwtAuth)),this._notificationService}getClientConfigService(){return this._clientConfigService??(this._clientConfigService=new Ma(this.http,this.config.debug??!1)),this._clientConfigService}getApiKeyService(){return this._apiKeyService??(this._apiKeyService=new ca(this.http,this.jwtAuth,this.config.debug??!1)),this._apiKeyService}getModeratorService(){return this._moderatorService??(this._moderatorService=new gl(this.http,this.config.streamAdminApiKey,this.jwtAuth,this.config.debug??!1,this.config.userApiKey)),this._moderatorService}getFlagService(){return this._flagService??(this._flagService=new Qa(this.http,this.config.streamAdminApiKey,this.jwtAuth,this.config.debug??!1,this.config.userApiKey)),this._flagService}getOverseerService(){return this._overseerService??(this._overseerService=new ql(this.http,this.config.streamAdminApiKey,this.jwtAuth,this.config.debug??!1,this.config.userApiKey)),this._overseerService}getWebSocketAdminService(){return this._websocketAdminService??(this._websocketAdminService=new su(this.http,this.config.streamAdminApiKey,this.jwtAuth,this.config.debug??!1,this.config.userApiKey)),this._websocketAdminService}getContentReactionService(){return this._contentReactionService??(this._contentReactionService=new Ya(this.http,this.config.streamAdminApiKey,this.jwtAuth,this.config.debug??!1,this.config.userApiKey)),this._contentReactionService}getMessagesService(){return this._messagesService??(this._messagesService=new cl(this.http,this.config.streamAdminApiKey,this.jwtAuth,this.config.debug??!1,this.config.userApiKey)),this._messagesService}getRestrictedNamesService(){return this._restrictedNamesService??(this._restrictedNamesService=new zl(this.http,this.config.streamAdminApiKey,this.jwtAuth,this.config.userApiKey)),this._restrictedNamesService}getPlatformConfigService(){return this._platformConfigService??(this._platformConfigService=new Gl(this.http,this.jwtAuth,this.config.debug??!1)),this._platformConfigService}getEventsBatcherService(){return this._eventsBatcherService??(this._eventsBatcherService=new lc(this.http,this.config.events)),this._eventsBatcherService}getStreamWebSocketService(){if(null===this._streamWebSocketService||void 0===this._streamWebSocketService){if(void 0===this.config.streamWebSocketUrl||""===this.config.streamWebSocketUrl)throw new Error('Stream WebSocket URL is required for real-time streaming features.\n\nConfigure SDK:\n const sdk = createLaunchpadSDK({\n wallet: yourWallet,\n streamWebSocketUrl: "wss://stream.gala.com"\n });\n\nFor MCP Server, set STREAM_WEBSOCKET_URL environment variable.\nSee SDK documentation for streaming configuration details.');this._streamWebSocketService=new tu({url:this.config.streamWebSocketUrl},this.config.debug??!1)}return this._streamWebSocketService}getGdexStreamService(){return this._gdexStreamService??(this._gdexStreamService=new Gc({url:this.config.gdexWebSocketUrl})),this._gdexStreamService}getStreamingEventService(){return this._streamingEventService??(this._streamingEventService=new Vl(this.config.debug??!1)),this._streamingEventService}async fetchEthereumWalletTokenBalance(e,t){return this.getBridgeService().fetchEthereumWalletTokenBalance(e,t)}async fetchEthereumWalletNativeBalance(e){return this.getBridgeService().fetchEthereumWalletNativeBalance(e)}async fetchSolanaWalletTokenBalance(e,t){return this.getBridgeService().fetchSolanaWalletTokenBalance(e,t)}async fetchSolanaWalletNativeBalance(e){return this.getBridgeService().fetchSolanaWalletNativeBalance(e)}async requestSolanaDevnetAirdrop(e,t){return this.getBridgeService().requestSolanaDevnetAirdrop(e,t)}async getSolanaTransactionStatus(e){return this.getBridgeService().getSolanaTransactionStatus(e)}async getEthereumTransactionStatus(e){return this.getBridgeService().getEthereumTransactionStatus(e)}async fetchEthereumWalletAllBalances(e){return this.getBridgeService().fetchEthereumWalletAllBalances(e)}async fetchSolanaWalletAllBalances(e){return this.getBridgeService().fetchSolanaWalletAllBalances(e)}async fetchBridgeableTokensByNetwork(e){return this.getBridgeableTokenService().fetchBridgeableTokensByNetwork(e)}async fetchAllBridgeableTokensByNetwork(e){return this.getBridgeableTokenService().fetchAllBridgeableTokensByNetwork(e)}async fetchAllTokensBridgeableToEthereum(){return this.getBridgeableTokenService().fetchAllTokensBridgeableToEthereum()}async fetchAllTokensBridgeableToSolana(){return this.getBridgeableTokenService().fetchAllTokensBridgeableToSolana()}async isTokenBridgeableToNetwork(e){return this.getBridgeableTokenService().isTokenBridgeableToNetwork(e)}async isTokenBridgeableToEthereum(e){return this.getBridgeableTokenService().isTokenBridgeableToEthereum(e)}async isTokenBridgeableToSolana(e){return this.getBridgeableTokenService().isTokenBridgeableToSolana(e)}async fetchWrappableTokens(e={}){return this.getWrappableTokenService().fetchWrappableTokens(e)}async fetchAllWrappableTokens(){return this.getWrappableTokenService().fetchAllWrappableTokens()}async getWrappableToken(e){return this.getWrappableTokenService().getWrappableToken(e)}async getWrapCounterpart(e){return this.getWrappableTokenService().getWrapCounterpart(e)}async isTokenWrappable(e){return this.getWrappableTokenService().isTokenWrappable(e)}async wrapToken(e){return this.getWrapService().wrapToken(e)}async unwrapToken(e){return this.getWrapService().unwrapToken(e)}async estimateWrapFee(e,t){return this.getWrapService().estimateWrapFee(e,t)}async estimateUnwrapFee(e,t){return this.getWrapService().estimateUnwrapFee(e,t)}getWrapStatus(e){return this.getWrapService().getWrapStatus(e)}async login(){return this.sessionAuth.login()}async refreshToken(){return this.sessionAuth.refresh()}async logout(e){return this.sessionAuth.logout(e)}isAuthenticated(){return this.sessionAuth.isAuthenticated()}shouldRefreshToken(e){return this.sessionAuth.shouldRefresh(e)}async getSession(){return this.sessionAuth.getSession()}getAccessToken(){return this.sessionAuth.getAccessToken()}async ensureValidToken(e){return this.sessionAuth.ensureValidToken(e)}async startStream(e){return this.getStreamingService().startStream(e)}async stopStream(e){return this.getStreamingService().stopStream(e)}async disableStream(e){return this.getStreamingService().disableStream(e)}async enableStream(e){return this.getStreamingService().enableStream(e)}async resetStreamKey(e){return this.getStreamingService().resetStreamKey(e)}async getStreamCredentials(e){return this.getStreamingService().getStreamCredentials(e)}async getStreamRecordings(e){return this.getStreamingService().getRecordings(e)}async getRecordingDownload(e,t){return this.getStreamingService().getRecordingDownload(e,t)}async deleteRecording(e,t){return this.getStreamingService().deleteRecording(e,t)}async getSimulcastTargets(e){return this.getStreamingService().getSimulcastTargets(e)}async addSimulcastTarget(e){return this.getStreamingService().addSimulcastTarget(e)}async removeSimulcastTarget(e,t){return this.getStreamingService().removeSimulcastTarget(e,t)}async getGlobalStreamingStatus(){return this.getStreamingService().getGlobalStreamingStatus()}async setNextLiveStreamCountdown(e,t){return this.getStreamingService().setNextLiveStreamCountdown(e,t)}async setGlobalStreamingEnabled(e){const t=this.getStreamingService();return e?t.enableGlobalStreaming():t.disableGlobalStreaming()}async getStreamRole(e){return this.getStreamingService().getStreamRole(e)}async getAvailableRoles(){return this.getStreamingService().getAvailableRoles()}async getTokenAccess(e){return this.getStreamingService().getTokenAccess(e)}async getEngagementStats(e){if(null===Mo(e.tokenName))throw Mt("tokenName","tokenName is required and cannot be empty");return this.getStreamChatService().getEngagementStats(e)}async disableChat(e){return this.getStreamChatService().disableChat(e)}async enableChat(e){return this.getStreamChatService().enableChat(e)}async getGlobalChatStatus(){return this.getStreamChatService().getGlobalChatStatus()}async setGlobalChatEnabled(e){const t=this.getStreamChatService();return e?t.enableGlobalChat():t.disableGlobalChat()}async getPinnedChatMessage(e){const t=this.getMessagesService(),n=await t.getPinnedMessage(e);return{tokenName:e,pinnedMessage:n.message?{messageId:n.message.id,content:n.message.content,userAddress:n.message.userAddress,pinnedBy:""!==n.message.pinnedBy?n.message.pinnedBy:n.message.userAddress,pinnedAt:""!==n.message.pinnedAt?n.message.pinnedAt:n.message.createdAt}:null}}async pinChatMessage(e,t){const n=this.getMessagesService();await n.pinMessage(t);const i=await n.getPinnedMessage(e);return{tokenName:e,pinnedMessage:i.message?{messageId:i.message.id,content:i.message.content,userAddress:i.message.userAddress,pinnedBy:""!==i.message.pinnedBy?i.message.pinnedBy:i.message.userAddress,pinnedAt:""!==i.message.pinnedAt?i.message.pinnedAt:i.message.createdAt}:null}}async unpinChatMessage(e){const t=this.getMessagesService(),n=await t.getPinnedMessage(e);return n.message?(await t.unpinMessage(n.message.id),{tokenName:e,unpinned:!0,unpinnedMessageId:n.message.id}):{tokenName:e,unpinned:!1}}async setSlowMode(e,t){return this.getStreamChatService().setSlowMode(e,t)}async createBan(e){return this.getBanService().createBan(e)}async removeBan(e){return this.getBanService().removeBan(e)}async listBans(e){return this.getBanService().listBans(e)}async getBanStatus(e){return this.getBanService().getBanStatus(e)}async getActiveUsers(e){return this.getBanService().getActiveUsers(e)}async createGlobalBan(e){return this.getBanService().createGlobalBan(e)}async removeGlobalBan(e){return this.getBanService().removeGlobalBan(e)}async listGlobalBans(e){return this.getBanService().listGlobalBans(e)}async getGlobalBan(e){return this.getBanService().getGlobalBan(e)}async createApiKey(e){return this.getApiKeyService().create(e)}async listApiKeys(e={}){return this.getApiKeyService().findAll(e)}async getApiKey(e){return this.getApiKeyService().findOne(e)}async updateApiKey(e,t){return this.getApiKeyService().update(e,t)}async revokeApiKey(e){return this.getApiKeyService().revoke(e)}getApiKeyRoles(){return this.getApiKeyService().getRoles()}async createModeratorInvite(e){return this.getModeratorService().createInvite(e)}async claimModeratorInvite(e){return this.getModeratorService().claimInvite(e)}async getModeratedTokens(e){return this.getModeratorService().getModeratedTokens(e)}async listModeratorInvites(e){return this.getModeratorService().listInvites(e)}async revokeModeratorInvite(e){return this.getModeratorService().revokeInvite(e)}async updateModeratorInviteRole(e){return this.getModeratorService().updateInviteRole(e)}async updateModeratorInvite(e){return this.getModeratorService().updateInvite(e)}async getModeratorInviteByCode(e){return this.getModeratorService().getInviteByCode(e)}async createFlag(e){return this.getFlagService().createFlag(e)}async listFlags(e){return this.getFlagService().listFlags(e)}async listGlobalFlags(e={}){return this.getFlagService().listGlobalFlags(e)}async dismissFlag(e){return this.getFlagService().dismissFlag(e)}async actionFlag(e){return this.getFlagService().actionFlag(e)}async createOverseerInvite(e={}){return this.getOverseerService().createInvite(e)}async listOverseerInvites(e={}){return this.getOverseerService().listInvites(e)}async getOverseerInviteByCode(e){return this.getOverseerService().getInviteByCode(e)}async claimOverseerInvite(e){return this.getOverseerService().claimInvite(e)}async revokeOverseerInvite(e){return this.getOverseerService().revokeInvite(e)}async listOverseers(e={}){return this.getOverseerService().listOverseers(e)}async createOverseerDirect(e){return this.getOverseerService().createOverseerDirect(e)}async revokeOverseer(e){return this.getOverseerService().revokeOverseer(e)}async getMyOverseerStatus(){return this.getOverseerService().getMyStatus()}async getOverseerSummary(){return this.getOverseerService().getSummary()}async getBanStats(){return this.getOverseerService().getBanStats()}async getTokenBanStats(){return this.getOverseerService().getTokenBanStats()}async getInviteStats(){return this.getOverseerService().getInviteStats()}async getFlagStats(){return this.getOverseerService().getFlagStats()}async getUserStats(){return this.getOverseerService().getUserStats()}async listOverseerUsers(e){return this.getOverseerService().listOverseerUsers(e)}async getOverseerUserSummary(e){return this.getOverseerService().getOverseerUserSummary(e)}async flushCacheByAddress(e){return this.getOverseerService().flushCacheByAddress(e)}async flushCacheByToken(e){return this.getOverseerService().flushCacheByToken(e)}async flushAllCache(e){return this.getOverseerService().flushAllCache(e)}async flushWalletAliasCache(e){return this.getOverseerService().flushWalletAliasCache(e)}async emitTradeExecuted(e,t){return this.getWebSocketAdminService().emitTradeExecuted(e,t)}async emitBalanceUpdated(e,t,n){return this.getWebSocketAdminService().emitBalanceUpdated(e,t,n)}async emitStreamStatus(e,t){return this.getWebSocketAdminService().emitStreamStatus(e,t)}async emitViewerCount(e,t){return this.getWebSocketAdminService().emitViewerCount(e,t)}async emitStreamCountdown(e,t){return this.getWebSocketAdminService().emitStreamCountdown(e,t)}async emitChatMessage(e,t){return this.getWebSocketAdminService().emitChatMessage(e,t)}async emitChatStatus(e,t){return this.getWebSocketAdminService().emitChatStatus(e,t)}async emitTypingIndicator(e,t){return this.getWebSocketAdminService().emitTypingIndicator(e,t)}async emitTokenBanned(e,t){return this.getWebSocketAdminService().emitTokenBanned(e,t)}async emitTokenUnbanned(e,t){return this.getWebSocketAdminService().emitTokenUnbanned(e,t)}async emitModeratorAdded(e,t){return this.getWebSocketAdminService().emitModeratorAdded(e,t)}async emitModeratorRemoved(e,t){return this.getWebSocketAdminService().emitModeratorRemoved(e,t)}async emitUserProfileUpdated(e,t){return this.getWebSocketAdminService().emitUserProfileUpdated(e,t)}async emitSiteConfigChanged(e){return this.getWebSocketAdminService().emitSiteConfigChanged(e)}async emitFeatureStatus(e){return this.getWebSocketAdminService().emitFeatureStatus(e)}async emitRecordingStatus(e,t){return this.getWebSocketAdminService().emitRecordingStatus(e,t)}async emitRecordingsCountUpdated(e,t){return this.getWebSocketAdminService().emitRecordingsCountUpdated(e,t)}async emitDownloadReady(e,t){return this.getWebSocketAdminService().emitDownloadReady(e,t)}async getConnectedClients(e){return this.getWebSocketAdminService().getConnectedClients(e)}async isUserOnline(e){return this.getWebSocketAdminService().isUserOnline(e)}async getOnlineUsers(e){return this.getWebSocketAdminService().getOnlineUsers(e)}async getTokenViewers(e,t){return this.getWebSocketAdminService().getTokenViewers(e,t)}async getOnlineOverseers(){return this.getWebSocketAdminService().getOnlineOverseers()}async banToken(e){return this.getTokenBanService().banToken(e)}async unbanToken(e){return this.getTokenBanService().unbanToken(e)}async listTokenBans(e={}){return this.getTokenBanService().listTokenBans(e)}async getTokenBan(e){return this.getTokenBanService().getTokenBan(e)}async isTokenBanned(e){return this.getTokenBanService().isTokenBanned(e)}async getAIModerationSettings(){return this.getAIModerationService().getSettings()}async updateAIModerationSettings(e){return this.getAIModerationService().updateSettings(e)}async getAIModeration(e){return this.getAIModerationService().getModeration(e)}async triggerAIModeration(e){return this.getAIModerationService().triggerModeration(e)}async getAIModerationStatus(){return this.getAIModerationService().getStatus()}async getWeeklyChallengeLeaderboard(e={}){return this.getWeeklyChallengeService().getLeaderboard(e)}async getTokenWeeklyHistory(e){return this.getWeeklyChallengeService().getTokenHistory(e)}async getHomeOEmbed(e={}){return this.getOEmbedService().getHomeOEmbedJson(e)}async getPoolOEmbed(e){return this.getOEmbedService().getPoolOEmbedJson(e)}async getProfileOEmbed(e){return this.getOEmbedService().getProfileOEmbedJson(e)}async getPlatformStats(){return this.getPlatformStatsService().getStats()}async registerPushToken(e){return this.getNotificationService().registerPushToken(e)}async unregisterPushToken(e){return this.getNotificationService().unregisterPushToken(e)}async fetchNotificationPreferences(){return this.getNotificationService().getPreferences()}async updateNotificationPreferences(e){return this.getNotificationService().updatePreferences(e)}async fetchClientFlags(){return this.getClientConfigService().getClientFlags()}async addContentReaction(e){return this.getContentReactionService().addContentReaction(e)}async removeContentReaction(e){return this.getContentReactionService().removeContentReaction(e)}async addReactionToChatMessage(e){return this.getContentReactionService().addReactionToChatMessage(e)}async removeReactionFromChatMessage(e){return this.getContentReactionService().removeReactionFromChatMessage(e)}async addReactionToComment(e){return this.getContentReactionService().addReactionToComment(e)}async removeReactionFromComment(e){return this.getContentReactionService().removeReactionFromComment(e)}async getComments(e){const t={type:"COMMENT"};void 0!==e.tokenName&&(t.tokenName=e.tokenName),void 0!==e.userAddress&&(t.userAddress=e.userAddress),void 0!==e.cursor&&(t.cursor=e.cursor),void 0!==e.pageSize&&(t.pageSize=e.pageSize);const n=await this.fetchMessages(t);return{messages:n.messages,pageInfo:n.pageInfo}}async createComment(e){return{comment:(await this.createMessage({type:"COMMENT",tokenName:e.tokenName,content:e.content})).message}}async updateComment(e,t){return{comment:(await this.updateMessage(e,{content:t.content})).message}}async deleteComment(e){return{success:(await this.deleteMessage(e)).success}}async getChatMessages(e){const t={type:"CHAT_MESSAGE"};void 0!==e.tokenName&&(t.tokenName=e.tokenName),void 0!==e.userAddress&&(t.userAddress=e.userAddress),void 0!==e.cursor&&(t.cursor=e.cursor),void 0!==e.pageSize&&(t.pageSize=e.pageSize);const n=await this.fetchMessages(t);return{messages:n.messages,pageInfo:n.pageInfo}}async sendChatMessage(e){return{message:(await this.createMessage({type:"CHAT_MESSAGE",tokenName:e.tokenName,content:e.content})).message}}async updateChatMessage(e,t){return{message:(await this.updateMessage(e,{content:t.content})).message}}async deleteChatMessage(e){await this.deleteMessage(e)}async fetchMessages(e){return this.getMessagesService().fetchMessages(e)}async createMessage(e){return this.getMessagesService().createMessage(e)}async updateMessage(e,t){return this.getMessagesService().updateMessage(e,t)}async deleteMessage(e){return this.getMessagesService().deleteMessage(e)}async getPinnedMessage(e){return this.getMessagesService().getPinnedMessage(e)}async pinMessage(e){return this.getMessagesService().pinMessage(e)}async unpinMessage(e){return this.getMessagesService().unpinMessage(e)}async getMessageStats(){return this.getMessagesService().getMessageStats()}async getPlatformConfig(){return this.getPlatformConfigService().getPlatformConfig()}async updatePlatformConfig(e){return this.getPlatformConfigService().updatePlatformConfig(e)}async getRestrictedNames(){return this.getRestrictedNamesService().getRestrictedNames()}async updateRestrictedNames(e){return this.getRestrictedNamesService().updateRestrictedNames(e)}async updateTokenConfig(e,t){return this.launchpadService.poolService.updateTokenConfig(e,t)}async getTrades(e){return this.launchpadService.getTrades(e)}async getRecentTrades(e,t=50){return this.getTrades({...void 0!==e&&{tokenName:e},pageSize:Math.min(t,500)})}async fetchLaunchpadFee(){return this.tradingQuotesService.fetchLaunchpadFee()}async fetchSaleDetails(e){return this.tradingQuotesService.fetchSaleDetails(e)}async getTradeQuote(e){return this.tradingQuotesService.getTradeQuote(e)}async getPremintQuote(e){return this.tradingQuotesService.getPremintQuote(e)}async connectStreamWebSocket(e){const t=this.getStreamWebSocketService();await t.connect(),e&&t.setGlobalCallbacks(e)}async authenticateStreamWebSocket(){const e=this.getStreamWebSocketService(),t=await this.ensureValidToken();e.authenticate(t)}async subscribeToStream(e,t){return this.getStreamWebSocketService().subscribeToStream(e,t)}unsubscribeFromStream(e){this.getStreamWebSocketService().unsubscribeFromStream(e)}sendStreamChatViaWebSocket(e,t){this.getStreamWebSocketService().sendChatMessage(e,t)}sendStreamReaction(e,t,n=0){this.getStreamWebSocketService().sendReaction(e,t,n)}sendTypingStart(e){return this.getStreamWebSocketService().sendTypingStart(e)}sendTypingStop(e){return this.getStreamWebSocketService().sendTypingStop(e)}disconnectStreamWebSocket(){this._streamWebSocketService&&this._streamWebSocketService.disconnect()}isStreamWebSocketConnected(){return!!this._streamWebSocketService&&this._streamWebSocketService.isConnected()}onStreamStatusChanged(e){return this.getStreamingEventService().onStreamStatusChanged(e)}onUserBanned(e){return this.getStreamingEventService().onUserBanned(e)}onUserUnbanned(e){return this.getStreamingEventService().onUserUnbanned(e)}onBanEnforcement(e){return this.getStreamingEventService().onBanEnforcement(e)}onContentFlagged(e){return this.getStreamingEventService().onContentFlagged(e)}onFlagResolved(e){return this.getStreamingEventService().onFlagResolved(e)}onStreamChatMessage(e){return this.getStreamingEventService().onStreamChatMessage(e)}onStreamChatUpdated(e){return this.getStreamingEventService().onStreamChatUpdated(e)}onStreamChatDeleted(e){return this.getStreamingEventService().onStreamChatDeleted(e)}onStreamChatPinned(e){return this.getStreamingEventService().onStreamChatPinned(e)}onStreamChatUnpinned(e){return this.getStreamingEventService().onStreamChatUnpinned(e)}onChatStatusChanged(e){return this.getStreamingEventService().onChatStatusChanged(e)}onViewerCountChanged(e){return this.getStreamingEventService().onViewerCountChanged(e)}onRecordingStatusChanged(e){return this.getStreamingEventService().onRecordingStatusChanged(e)}onSimulcastStatusChanged(e){return this.getStreamingEventService().onSimulcastStatusChanged(e)}onDownloadReady(e){return this.getStreamingEventService().onDownloadReady(e)}onRecordingsCountUpdated(e){return this.getStreamingEventService().onRecordingsCountUpdated(e)}onUserTyping(e){return this.getStreamingEventService().onUserTyping(e)}onStreamReaction(e){return this.getStreamingEventService().onStreamReaction(e)}onContentReactionAdded(e){return this.getStreamingEventService().onContentReactionAdded(e)}onContentReactionRemoved(e){return this.getStreamingEventService().onContentReactionRemoved(e)}onStreamCountdownUpdated(e){return this.getStreamingEventService().onStreamCountdownUpdated(e)}onStreamLanguageUpdated(e){return this.getStreamingEventService().onStreamLanguageUpdated(e)}onStreamControlStatusChanged(e){return this.getStreamingEventService().onStreamControlStatusChanged(e)}onConnection(e){return this.getStreamingEventService().onConnection(e)}onAuthenticated(e){return this.getStreamingEventService().onAuthenticated(e)}onTokenSubscribed(e){return this.getStreamingEventService().onTokenSubscribed(e)}onTokenUnsubscribed(e){return this.getStreamingEventService().onTokenUnsubscribed(e)}onRoomSubscribed(e){return this.getStreamingEventService().onRoomSubscribed(e)}onRoomLeft(e){return this.getStreamingEventService().onRoomLeft(e)}onEngagementStatsUpdated(e){return this.getStreamWebSocketService().subscribeEngagementStatsUpdated(e)}async estimateBridgeFee(e){return this.getBridgeService().estimateBridgeFee(e)}async bridgeOut(e){return this.getBridgeService().bridgeOut(e)}async bridgeIn(e){return this.getBridgeService().bridgeIn(e)}async getBridgeStatus(e,t){return this.getBridgeService().getBridgeStatus(e,t)}getSupportedBridgeTokens(){const e=this.getBridgeService(),t=e.getSupportedBridgeTokens();return Promise.resolve({tokens:t,totalCount:t.length,supportedChains:e.getSupportedBridgeChains()})}async fetchTokenBalance(e){const{normalizeAddressInput:t}=await Promise.resolve().then(function(){return Ii}),n=t(e.address);if(void 0!==e.tokenId&&""!==e.tokenId){const{normalizeToTokenInstanceKey:t}=await Promise.resolve().then(function(){return wa}),i=t(e.tokenId),{collection:o,category:r,type:s,additionalKey:a}=i;return this.galaChainService.fetchTokenBalance({owner:n,collection:o,category:r,additionalKey:a,type:s,instance:"0"},e.withExpired??!1)}if(void 0!==e.tokenName&&""!==e.tokenName){const t=ln(e.tokenName);if("MUSIC"===t||"GMUSIC"===t){const i=`$${t}`;return this.galaChainService.fetchTokenBalance({owner:n,collection:i,category:"Unit",additionalKey:"none",type:"none",instance:"0"},e.withExpired??!1)}}if(void 0!==e.tokenName&&""!==e.tokenName){const t=(await this.fetchTokensHeld({tokenName:e.tokenName,pageSize:1,...void 0!==n?{address:n}:{}})).tokens[0];if(void 0===t)return null;const i=t.collection??"Token",o={collection:i,category:"Unit",type:t.symbol,additionalKey:"none"};return{quantity:t.balance,collection:i,category:"Unit",tokenId:mr(o)}}throw Mt("tokenId or tokenName","Either tokenId or tokenName")}async fetchLockedBalance(e){const t=await this.fetchTokenBalance(e);if(!t)return null;const n="lockedHolds"in t||"lockedQuantity"in t;return{tokenId:t.tokenId,lockedQuantity:n?t.lockedQuantity??"0":"0",lockedHolds:n?t.lockedHolds??[]:[]}}async fetchAvailableBalance(e){const t=await this.fetchTokenBalance(e);if(!t)return null;const n="availableQuantity"in t;return{tokenId:t.tokenId,availableQuantity:n?t.availableQuantity??String(t.quantity):String(t.quantity),totalQuantity:String(t.quantity)}}async calculateBuyAmount(e){return this.launchpadAPI.calculateBuyAmount(e)}async calculateSellAmount(e){return this.launchpadAPI.calculateSellAmount(e)}async calculateBuyAmountLocal(e){return this.launchpadAPI.calculateBuyAmountLocal(e)}async calculateSellAmountLocal(e){return this.launchpadAPI.calculateSellAmountLocal(e)}async calculateBuyAmountExternal(e){return this.launchpadAPI.calculateBuyAmountExternal(e)}async calculateSellAmountExternal(e){return this.launchpadAPI.calculateSellAmountExternal(e)}async calculateBuyAmountForGraduation(e){return this.launchpadAPI.calculateBuyAmountForGraduation(e)}async graduateToken(e){const{tokenName:t,slippageToleranceFactor:n,maxAcceptableReverseBondingCurveFeeSlippageFactor:i,privateKey:o,calculateAmountMode:r,currentSupply:s}=e;let a=t;void 0===r&&void 0===s||(a={tokenName:t,...void 0!==r&&{calculateAmountMode:r},...void 0!==s&&{currentSupply:s}});const c=await this.calculateBuyAmountForGraduation(a),l={tokenName:t,amount:c.amount,type:"exact",expectedAmount:c.amount,maxAcceptableReverseBondingCurveFee:c.reverseBondingCurveFee,slippageToleranceFactor:this.slippageToleranceFactor};return void 0!==n&&(l.slippageToleranceFactor=n),void 0!==i&&(l.maxAcceptableReverseBondingCurveFeeSlippageFactor=i),void 0!==o&&(l.privateKey=o),await this.buy(l)}async calculateInitialBuyAmount(e){const t={nativeTokenQuantity:e};return this.launchpadAPI.calculateInitialBuyAmount(t)}async buy(e){if(void 0!==e.privateKey&&""!==e.privateKey){const t=this.createOverrideSdk(e.privateKey),{privateKey:n,...i}=e;return t.buy(i)}this.validateWallet(),await this.ensureWebSocketConnection();const t=(await this.bundleService.buyToken(e)).data,n=t?.transactionId;if(void 0===n||""===n)throw Gt("No transaction ID returned from buy operation");return this.waitForConfirmation(n,t=>Tu(t,n,"buy",e))}async sell(e){if(void 0!==e.privateKey&&""!==e.privateKey){const t=this.createOverrideSdk(e.privateKey),{privateKey:n,...i}=e;return t.sell(i)}this.validateWallet(),await this.ensureWebSocketConnection();const t=(await this.bundleService.sellToken(e)).data,n=t?.transactionId;if(void 0===n||""===n)throw Gt("No transaction ID returned from sell operation");return this.waitForConfirmation(n,t=>Tu(t,n,"sell",e))}async getBundlerTransactionResult(e){return this.bundleService.getBundlerTransactionResult(e)}async launchToken(e){if(void 0!==e.privateKey&&""!==e.privateKey){const t=this.createOverrideSdk(e.privateKey),{privateKey:n,...i}=e;return t.launchToken(i)}this.validateWallet(),await this.ensureWebSocketConnection();const t=await this.launchpadAPI.launchToken(e);return this.waitForConfirmation(t,n=>{Au(n,t);const i=n.data??{};if(!function(e){if(ei(e)||"object"!=typeof e)return!1;const t=e;return!(void 0!==t.vaultAddress&&"string"!=typeof t.vaultAddress||void 0!==t.tokenStringKey&&"string"!=typeof t.tokenStringKey||void 0!==t.creatorAddress&&"string"!=typeof t.creatorAddress)}(i))throw new bu(`Invalid launch data received for transaction ${t}`);const o={transactionId:t,vaultAddress:i.vaultAddress??"",tokenStringKey:i.tokenStringKey??"",tokenName:e.tokenName,tokenSymbol:e.tokenSymbol,creatorAddress:i.creatorAddress??this.getAddress(),timestamp:Date.now(),...void 0!==n.blockHash&&""!==n.blockHash?{blockHash:n.blockHash}:{},...void 0!==n.gasUsed?{gasUsed:n.gasUsed}:{}};return"string"==typeof e.tokenImage&&(o.tokenImage=e.tokenImage),void 0!==e.preBuyQuantity&&(o.preBuyQuantity=e.preBuyQuantity),""!==o.vaultAddress&&this.tokenResolverService.set(e.tokenName,o.vaultAddress),o})}async uploadTokenImage(e){if(void 0!==e.privateKey&&""!==e.privateKey){const t=this.createOverrideSdk(e.privateKey),{privateKey:n,...i}=e;return t.uploadTokenImage(i)}return this.validateWallet(),this.launchpadService.uploadImageByTokenName(e)}async checkPoolExists(e,t){return this.launchpadService.checkPoolExists(e,t)}async isTokenNameAvailable(e){return this.launchpadService.isTokenNameAvailable(e)}async isTokenSymbolAvailable(e){return this.launchpadService.isTokenSymbolAvailable(e)}async fetchToken(e){return this.launchpadService.fetchToken(e)}async validateToken(e){return this.launchpadService.validateToken(e)}async fetchTokenStats(e){return this.launchpadService.fetchTokenStats(e)}async fetchUserBalances(e){return this.launchpadService.fetchUserBalances(e)}async fetchUserReport(e){return this.launchpadService.fetchUserReport(e)}async fetchProfile(e){const{normalizeAddressInput:t}=await Promise.resolve().then(function(){return Ii}),n=t(e)??this.getAddress();return this.launchpadService.fetchProfile(n)}async fetchReferralUrl(){this.validateWallet();const e=this.getAddress();return await this.dexApiHttp.get(m,void 0,{"x-wallet-address":e})}async fetchReferrals(e){let t;if(void 0!==e?.address&&""!==e.address)if(e.address.startsWith("client|"))t=e.address;else{const{normalizeAddressInput:n}=await Promise.resolve().then(function(){return Ii}),i=n(e.address);if(void 0===i)throw new gt(`Invalid address format: "${e.address}". Expected formats: eth|0x..., 0x..., or client|...`);t=i}else t=this.getAddress();const n=e?.page??1,i=e?.limit??10,o={pageNumber:n,limit:i,sortBy:e?.sortBy??"joined",sortDir:e?.sortDir??"desc"},r=await this.dexApiHttp.get(p,o,{"x-wallet-address":t});if(!Array.isArray(r))throw new pt("Unexpected API response: expected array, got "+typeof r);return{referrals:r,page:n,limit:i,hasMore:r.length===i}}async fetchAllReferrals(e){const t=await ma((t,n)=>this.fetchReferrals({...e,page:t,limit:n}).then(e=>({items:e.referrals,page:e.page,limit:e.limit,total:0,totalPages:0,hasNext:e.hasMore,hasPrevious:e.page>1})),{maxPages:100,pageSize:100,logger:this.logger});return{referrals:t.items,total:t.items.length}}async fetchReferralsSummary(e){let t;if(void 0!==e?.address&&""!==e.address)if(e.address.startsWith("client|"))t=e.address;else{const{normalizeAddressInput:n}=await Promise.resolve().then(function(){return Ii}),i=n(e.address);if(void 0===i)throw new gt(`Invalid address format: "${e.address}". Expected formats: eth|0x..., 0x..., or client|...`);t=i}else t=this.getAddress();const n=await this.dexApiHttp.get(f,void 0,{"x-wallet-address":t});if(void 0===n||"number"!=typeof n.referralCount||void 0===n.rewardTotals)throw new pt(`Unexpected API response: expected { referralCount, rewardTotals }, got ${JSON.stringify(n)}`);return n}async updateProfile(e){const{normalizeAddressInput:t}=await Promise.resolve().then(function(){return Ii}),n={...e,address:t(e.address)};if(void 0!==n.privateKey&&""!==n.privateKey){const e=this.createOverrideSdk(n.privateKey),{privateKey:t,...i}=n;return e.updateProfile(i)}return this.validateWallet(),this.launchpadService.updateProfile(n)}async uploadProfileImage(e){const{normalizeAddressInput:t}=await Promise.resolve().then(function(){return Ii}),n={...e,address:t(e.address)??this.getAddress()};if(void 0!==n.privateKey&&""!==n.privateKey){const e=this.createOverrideSdk(n.privateKey),{privateKey:t,...i}=n;return e.uploadProfileImage(i)}return this.validateWallet(),this.launchpadService.uploadProfileImage(n)}async fetchTokensHeld(e){const{normalizeAddressInput:t}=await Promise.resolve().then(function(){return Ii}),n=t(e?.address)??this.getAddress(),i={pageSize:e?.pageSize??10,address:n,...void 0!==e?.cursor?{cursor:e.cursor}:{}};return void 0!==e?.tokenName&&""!==e.tokenName&&(i.tokenName=e.tokenName),void 0!==e?.search&&""!==e.search&&(i.search=e.search),this.launchpadService.fetchTokensHeld(i)}async fetchTokensCreated(e){const{normalizeAddressInput:t}=await Promise.resolve().then(function(){return Ii}),n=t(e?.address)??this.getAddress(),i={type:void 0!==e?.status?"created":"DEFI",address:n,pageSize:e?.pageSize??10};return void 0!==e?.cursor&&(i.cursor=e.cursor),void 0!==e?.tokenName&&""!==e.tokenName&&(i.tokenName=e.tokenName),void 0!==e?.search&&""!==e.search&&(i.search=e.search),void 0!==e?.status&&(i.status=e.status),this.launchpadService.fetchTokenList(i)}async getManagedTokens(e){return this.launchpadService.getManagedTokens(e??{})}async fetchPriceHistory(e){return this.priceHistoryService.fetchPriceHistory(e)}async fetchAllPriceHistory(e){return this.priceHistoryService.fetchAllPriceHistory(e)}async transferGala(e){const{normalizeAddressInput:t}=await Promise.resolve().then(function(){return Ii}),n={...e,recipientAddress:t(e.recipientAddress)};if(void 0!==n.privateKey&&""!==n.privateKey){const e=this.createOverrideSdk(n.privateKey),{privateKey:t,...i}=n;return e.transferGala(i)}return this.validateWallet(),this.galaChainService.transferGala(n)}async transferToken(e){const{normalizeAddressInput:t}=await Promise.resolve().then(function(){return Ii}),n={...e,to:t(e.to)};if(void 0!==n.privateKey&&""!==n.privateKey){const e=this.createOverrideSdk(n.privateKey),{privateKey:t,...i}=n;return e.transferToken(i)}return this.validateWallet(),this.galaChainService.transferToken(n)}async resolveTokenClassKey(e){return this.galaChainService.resolveTokenClassKey(e)}async convertTokenNameToTokenClassKey(e){return this.resolveTokenClassKey(e)}async lockTokens(e){const t=await Promise.all(e.tokens.map(async e=>{if(void 0!==e.lockAuthority&&""!==e.lockAuthority){const{normalizeAddressInput:t}=await Promise.resolve().then(function(){return Ii});return{...e,lockAuthority:t(e.lockAuthority)}}return e})),n={...e,tokens:t};if(void 0!==n.privateKey&&""!==n.privateKey){const e=this.createOverrideSdk(n.privateKey),{privateKey:t,...i}=n;return e.lockTokens(i)}return this.validateWallet(),this.galaChainService.lockTokens(n)}async unlockTokens(e){if(void 0!==e.privateKey&&""!==e.privateKey){const t=this.createOverrideSdk(e.privateKey),{privateKey:n,...i}=e;return t.unlockTokens(i)}return this.validateWallet(),this.galaChainService.unlockTokens(e)}async burnTokens(e){if(void 0!==e.privateKey&&""!==e.privateKey){const t=this.createOverrideSdk(e.privateKey),{privateKey:n,...i}=e;return t.burnTokens(i)}return this.validateWallet(),this.galaChainService.burnTokens(e)}async resolveVaultAddress(e){return this.tokenResolverService.resolveTokenToVault(e)}getCacheInfo(){const e={...this.launchpadAPI.getCacheStats()};if(this._bridgeableTokenService){const t=this._bridgeableTokenService.getCacheStats();e.bridgeableTokens={ETHEREUM:t.tokensByNetwork.ETHEREUM,SOLANA:t.tokensByNetwork.SOLANA,total:t.totalTokens}}return this._wrappableTokenService&&(e.wrappableTokens=this._wrappableTokenService.getCacheStats()),e}clearCache(e){this.launchpadAPI.clearCache(e),void 0!==e&&""!==e||(void 0!==this._bridgeableTokenService&&this._bridgeableTokenService.clearCache(),void 0!==this._wrappableTokenService&&this._wrappableTokenService.clearCache())}validateConfiguration(){try{jn(this.config.timeout,1,3e5,"timeout")}catch{this.logger.warn(`Invalid timeout value: ${this.config.timeout??"undefined"}. Using default 30000ms.`),this.config.timeout=3e4}if(void 0===this.config.baseUrl||""===this.config.baseUrl)throw qt("baseUrl is required in configuration","baseUrl");if(void 0===this.config.webSocketUrl||""===this.config.webSocketUrl)throw qt("webSocketUrl is required in configuration","webSocketUrl");try{new URL(this.config.baseUrl)}catch{throw qt(`Invalid baseUrl format: ${this.config.baseUrl}`,"baseUrl")}try{new URL(this.config.webSocketUrl)}catch{throw qt(`Invalid webSocketUrl format: ${this.config.webSocketUrl}`,"webSocketUrl")}if(void 0!==this.config.galaChainBaseUrl&&""!==this.config.galaChainBaseUrl)try{new URL(this.config.galaChainBaseUrl)}catch{throw qt(`Invalid galaChainBaseUrl format: ${this.config.galaChainBaseUrl}`,"galaChainBaseUrl")}if(void 0!==this.config.bundleBaseUrl&&""!==this.config.bundleBaseUrl)try{new URL(this.config.bundleBaseUrl)}catch{throw qt(`Invalid bundleBaseUrl format: ${this.config.bundleBaseUrl}`,"bundleBaseUrl")}if(void 0!==this.config.launchpadFrontendUrl&&""!==this.config.launchpadFrontendUrl)try{new URL(this.config.launchpadFrontendUrl)}catch{throw qt(`Invalid launchpadFrontendUrl format: ${this.config.launchpadFrontendUrl}`,"launchpadFrontendUrl")}}parseSlippageToleranceFactor(e){const t=Un("string"==typeof e||"number"==typeof e?e:String(e),Iu.DEFAULT_SLIPPAGE_TOLERANCE_FACTOR);return t<0||t>1?(this.logger.warn(`Invalid slippage tolerance factor: ${String(e)}, using default: ${Iu.DEFAULT_SLIPPAGE_TOLERANCE_FACTOR}`),Iu.DEFAULT_SLIPPAGE_TOLERANCE_FACTOR):t}parseFeeSlippageFactor(e){const t=Un("string"==typeof e||"number"==typeof e?e:String(e),Iu.DEFAULT_MAX_ACCEPTABLE_REVERSE_BONDING_CURVE_FEE_SLIPPAGE_FACTOR);return t<0||t>1?(this.logger.warn(`Invalid fee slippage factor: ${String(e)}, using default: ${Iu.DEFAULT_MAX_ACCEPTABLE_REVERSE_BONDING_CURVE_FEE_SLIPPAGE_FACTOR}`),Iu.DEFAULT_MAX_ACCEPTABLE_REVERSE_BONDING_CURVE_FEE_SLIPPAGE_FACTOR):t}async ensureWebSocketConnection(){this.websocketService.isConnected()||(await this.websocketService.connect(),this.logger.debug("WebSocket connection established"))}async waitForConfirmation(e,t){this.logger.debug(`Waiting for confirmation of transaction: ${e}`);try{const n=await this.websocketService.waitForTransaction(e);if("completed"!==n.status)throw new Su(e,n.status,n.message);let i;try{i=t(n)}catch(t){if(t instanceof bu)throw t;throw new bu(`Failed to transform WebSocket response for transaction ${e}`,Et(t)?t:new Error(Ct(t)))}return this.logger.debug(`Transaction confirmed: ${e}`,i),i}catch(t){if(this.logger.error(`Transaction confirmation failed: ${e}`,t),t instanceof Su||t instanceof bu)throw t;throw new bu(`WebSocket confirmation failed for transaction ${e}`,Et(t)?t:new Error(Ct(t)))}}async warmCacheFromPools(e){if(void 0===e||!Array.isArray(e))return;const{extractMetadataFromPoolData:t,isValidPoolForCaching:n}=await Promise.resolve().then(function(){return Pu});e.forEach(e=>{if(!n(e))return;const i=t(e,this.logger);i&&this.launchpadAPI.warmCacheFromPoolData(e.tokenName,i)})}async getSwapQuoteExactInput(e,t,n){return this.gswapService.getSwapQuoteExactInput({fromToken:e,toToken:t,amount:n})}async getSwapQuoteExactOutput(e,t,n){return this.gswapService.getSwapQuoteExactOutput({fromToken:e,toToken:t,amount:n})}async executeSwap(e,t,n,i,o,r=.01){return this.validateWallet(),this.gswapService.executeSwap({fromToken:e,toToken:t,inputAmount:n,estimatedOutput:i,feeTier:o,slippageTolerance:r})}async getSwapUserAssets(e){return this.gswapService.getUserAssets(e)}async getAllSwapUserAssets(e){return this.gswapService.getAllUserAssets(e)}async fetchAvailableDexTokens(e={}){return this.gswapService.fetchAvailableDexTokens(e)}async fetchAllAvailableDexTokens(e={}){return this.gswapService.fetchAllAvailableDexTokens(e)}async getSwapPoolInfo(e,t){return this.gswapService.getPoolInfo(e,t)}async getSwapPoolPrice(e,t,n){return this.gswapService.getPositionCurrentPrice({token0:e,token1:t,feeTier:n})}async getSwapUserLiquidityPositions(e,t,n,i){let o,r;"string"==typeof n?(o=n,r=i):"object"==typeof n?r=n:i&&(r=i);return await this.gswapService.getUserLiquidityPositions(e,t,o,r)}async getAllSwapUserLiquidityPositions(e,t){const n=await this.gswapService.getAllSwapUserLiquidityPositions(e,t);if(!t?.withPrices){if(Array.isArray(n))return n;if(void 0!==n&&"items"in n)return n.items}return n}async getSwapLiquidityPosition(e,t){return this.gswapService.getLiquidityPosition(e,t)}async getSwapLiquidityPositionById(e,t,n,i,o,r,s){return this.gswapService.getLiquidityPositionById(e,t,n,i,o,r,s)}async fetchSwapPositionDirect(e){return this.gswapService.fetchSwapPositionDirect(e)}async getSwapEstimateRemoveLiquidity(e){return this.gswapService.estimateRemoveLiquidity(e)}async addSwapLiquidityByPrice(e){return this.gswapService.addLiquidityByPrice(e)}async addSwapLiquidityByTicks(e){this.validateWallet();const t={token0:e.token0,token1:e.token1,fee:e.feeTier,tickLower:e.tickLower,tickUpper:e.tickUpper,amount0Desired:e.amount0Desired,amount1Desired:e.amount1Desired};return void 0!==e.amount0Min&&(t.amount0Min=e.amount0Min),void 0!==e.amount1Min&&(t.amount1Min=e.amount1Min),this.gswapService.addSwapLiquidityByTicks(t)}async removeSwapLiquidity(e){return this.validateWallet(),this.gswapService.removeLiquidity(e)}async collectSwapPositionFees(e){return this.validateWallet(),this.gswapService.collectPositionFees(e)}connectWebSocket(){this.websocketService.connect()}disconnectWebSocket(){this.websocketService.disconnect()}isWebSocketConnected(){return this.websocketService.isConnected()}subscribeToEvent(e,t){const n=this.websocketService.getSocket();return n?(n.on(e,t),()=>{n.off(e,t),this.logger.debug(`Unsubscribed from event: "${e}"`)}):(this.logger.warn(`⚠️ WebSocket not connected - subscribing to "${e}" without connection`),()=>{})}onDexPoolCreation(e,t){const n=1e3,i=Math.max(t?.intervalMs??3e4,n);void 0!==t?.intervalMs&&t.intervalMs<n&&this.logger.warn(`Poll interval ${t.intervalMs}ms is below minimum 1000ms. Using minimum interval instead.`);const o=t?.minTVL,r=t?.tokens,s=new Map;let a=!0,c=null;let l=0;const d=async()=>{if(a){try{const t=await this.fetchDexPools({limit:20});l>0&&(this.logger.debug("Successfully recovered from polling errors"),l=0),t.items.forEach(t=>{const n=(e=>`${e.token0}-${e.token1}-${e.fee}`)(t);if(!s.has(n)){if((e=>{if(s.set(e,!0),s.size>1e3){const e=s.keys().next().value;void 0!==e&&s.delete(e)}})(n),void 0!==o){if((t.token0Tvl+t.token1Tvl)/2<o)return}if(r&&r.length>0){if(!(r.includes(t.token0)||r.includes(t.token1)))return}e(t)}})}catch(e){l++;const t=Ct(e);l>=5?this.logger.error(`Polling for new DEX pools failed ${l} consecutive times. Last error: ${t}. Continuing to retry...`):l>1?this.logger.warn(`Error polling for new DEX pools (attempt ${l}/5): ${t}`):this.logger.debug(`Error polling for new DEX pools: ${t}`)}if(a){const e=Math.min(Math.max(l-1,0),2),t=i*Math.pow(2,e);c=setTimeout(()=>{d()},t)}}};return d(),()=>{a=!1,c&&clearTimeout(c),this.logger.debug("Stopped watching for DEX pool creation")}}onLaunchpadTokenCreation(e,t){const n=1e3,i=Math.max(t?.intervalMs??3e4,n);null!=t?.intervalMs&&t.intervalMs<n&&this.logger.warn(`Poll interval ${t.intervalMs}ms is below minimum 1000ms. Using minimum interval instead.`);const o=t?.creatorAddress,r=new Map;let s=!0,a=null;let c=0;const l=async()=>{if(s){try{const t=await this.fetchPools({type:"recent",pageSize:20});c>0&&(this.logger.debug("Successfully recovered from polling errors"),c=0),t.items.forEach(t=>{r.has(t.tokenName)||((e=>{if(r.set(e,!0),r.size>1e3){const e=r.keys().next().value;void 0!==e&&r.delete(e)}})(t.tokenName),void 0!==o&&""!==o&&t.creatorAddress!==o||e(t))})}catch(e){c++;const t=Ct(e);c>=5?this.logger.error(`Polling for new launchpad tokens failed ${c} consecutive times. Last error: ${t}. Continuing to retry...`):c>1?this.logger.warn(`Error polling for new launchpad tokens (attempt ${c}/5): ${t}`):this.logger.debug(`Error polling for new launchpad tokens: ${t}`)}if(s){const e=Math.min(Math.max(c-1,0),2),t=i*Math.pow(2,e);a=setTimeout(()=>{l()},t)}}};return l(),()=>{s=!1,a&&clearTimeout(a),this.logger.debug("Stopped watching for launchpad token creation")}}normalizeFee(e){if(null==e)return null;let t;if("string"==typeof e||"number"==typeof e)t=e;else{if("boolean"!=typeof e)return null;t=e?"1":"0"}const n=Gn(t,Number.NaN);return Number.isNaN(n)?null:1===n||1e4===n?1e4:.3===n||3e3===n?3e3:.05===n||500===n?500:!Number.isInteger(n)||500!==n&&3e3!==n&&1e4!==n?null:n}extractField(e,...t){if("object"!=typeof e||null===e)return"";const n=e;for(const e of t)if(null!==n[e]&&void 0!==n[e]){const t=n[e];return"string"==typeof t?t:"number"==typeof t||"boolean"==typeof t?String(t):"object"==typeof t&&null!==t&&"toString"in t?t.toString():""}return""}looksLikePoolPair(e){if("string"!=typeof e)return null;const t=e.trim();return pl.isValidPoolKey(t)?t:null}buildPoolPairFromObject(e){if("object"!=typeof e||null===e)return null;const t=e,n=this.extractField(t,"token0ClassKey","token0Class","token0","token0Symbol"),i=this.extractField(t,"token1ClassKey","token1Class","token1","token1Symbol"),o=this.normalizeFee(t.feeTier??t.fee??t.feeTierBps??t.liquidityFeeBps??t.feeBps);return""===n||""===i||null===o?null:`${n}/${i}/${o}`}parsePoolPairString(e){const t=pl.parsePoolKey(e);if(!t)return null;const n=Ns(t.token0)?Is(t.token0).collection:t.token0,i=Ns(t.token1)?Is(t.token1).collection:t.token1,o=t.feeTier.toString();return""===n||""===i||""===o?null:{token0:n,token1:i,fee:o,poolPair:e}}serializeBalanceToken(e){if(null==e||"object"!=typeof e)return"";const t=e,n=t.collection??t.token??"",i=t.category??"",o=t.type??"",r=t.additionalKey??"none";return[""!==n?n:"",""!==i?i:"none",""!==o?o:"none",""!==r?r:"none"].join("|")}buildPoolPairFromBalances(e){if("object"!=typeof e||null===e)return null;const t=e,n=t.userBalanceDelta??t.balanceDelta??t.delta;if(null==n||"object"!=typeof n)return null;const i=n,o=i.token0Balance??i.token0??i.baseBalance??i.primaryBalance,r=i.token1Balance??i.token1??i.quoteBalance??i.secondaryBalance,s=this.serializeBalanceToken(o),a=this.serializeBalanceToken(r),c=this.normalizeFee(t.poolFee??t.feeTier??t.fee??t.feeTierBps??t.liquidityFeeBps);return""===s||""===a||null===c?null:`${s}/${a}/${c}`}extractPoolDataFromPayload(e){if("string"==typeof e){const t=this.looksLikePoolPair(e);return null!=t?this.parsePoolPairString(t):null}if("object"!=typeof e||null===e)return null;const t=e,n=this.looksLikePoolPair(t.poolPair);if(null!=n)return this.parsePoolPairString(n);const i=this.buildPoolPairFromBalances(t);if(null!==i)return this.parsePoolPairString(i);const o=this.buildPoolPairFromObject(t);if(null!==o)return this.parsePoolPairString(o);if(void 0!==t.pool&&null!==t.pool&&"object"==typeof t.pool){const e=this.extractPoolDataFromPayload(t.pool);if(null!==e)return e}return null}matchesPoolFilter(e,t){if(void 0!==t?.tokenFilter&&""!==t.tokenFilter){if(!(e.token0===t.tokenFilter||e.token1===t.tokenFilter))return!1}if(t?.pairTokens){const[n,i]=t.pairTokens,o=e.token0===n||e.token1===n,r=e.token0===i||e.token1===i;if(!o||!r||n===i)return!1}if(void 0!==t?.feeTierFilter){if(this.normalizeFee(t.feeTierFilter)!==this.normalizeFee(e.fee))return!1}return!0}matchesCreatorFilter(e,t){return void 0===t||""===t||e.creatorAddress===t}subscribeToTokenCreations(e,t){if(this.logger.debug("Subscribing to token creation broadcasts"+(void 0!==t?.creatorFilter&&""!==t.creatorFilter?` (filter: ${t.creatorFilter})`:"")),null===this.websocketService||void 0===this.websocketService)throw qt("WebSocket service not initialized. Ensure websocketUrl is configured and the service is connected.","websocketService");let n=!1,i=null;const o=(n,...i)=>{try{if(i.length>0&&"object"==typeof i[0]&&null!==i[0]){const n=i[0].data;if(void 0!==n?.Data&&null!==n.Data&&"object"==typeof n.Data){const i=n.Data;if("CreateSale"===i.functionName){const n={tokenName:""!==i.tokenName?i.tokenName:"",symbol:""!==i.symbol?i.symbol:"",creatorAddress:""!==i.creatorAddress?i.creatorAddress:"",description:""!==i.description?i.description:"",image:""!==i.image?i.image:"",vaultAddress:""!==i.vaultAddress?i.vaultAddress:"",tokenStringKey:""!==i.tokenStringKey?i.tokenStringKey:"",preBuyQuantity:""!==i.initialBuyQuantity?i.initialBuyQuantity:"0",websiteUrl:""!==i.websiteUrl?i.websiteUrl:"",telegramUrl:""!==i.telegramUrl?i.telegramUrl:"",twitterUrl:""!==i.twitterUrl?i.twitterUrl:"",instagramUrl:""!==i.instagramUrl?i.instagramUrl:"",facebookUrl:""!==i.facebookUrl?i.facebookUrl:"",redditUrl:""!==i.redditUrl?i.redditUrl:"",tiktokUrl:""!==i.tiktokUrl?i.tiktokUrl:"",isFinalized:!1!==i.isFinalized&&null!==i.isFinalized&&void 0!==i.isFinalized&&i.isFinalized};this.matchesCreatorFilter(n,t?.creatorFilter)&&e(n)}}}}catch(e){this.logger.warn(`Error processing token creation broadcast: ${Ct(e)}`)}};let r=this.websocketService.getSocket();if(r)r.onAny(o),n=!0,this.logger.debug("Token creation broadcast listener registered");else{this.logger.debug("WebSocket not yet connected, initiating connection..."),this.websocketService.connect().catch(e=>{const n=new Error(`WebSocket connection failed: ${Ct(e)}`);this.logger.warn("Failed to establish WebSocket connection:",e),t?.onError&&t.onError(n)});let e=0;const s=()=>{if(r=this.websocketService.getSocket(),!r&&e<Iu.TOKEN_CREATION_SOCKET_WAIT_ATTEMPTS)return e++,void(i=setTimeout(()=>s(),Iu.TOKEN_CREATION_SOCKET_POLL_INTERVAL_MS));if(!r&&e>=Iu.TOKEN_CREATION_SOCKET_WAIT_ATTEMPTS){const e=new Error(`WebSocket not available after ${Iu.TOKEN_CREATION_SOCKET_WAIT_ATTEMPTS*Iu.TOKEN_CREATION_SOCKET_POLL_INTERVAL_MS}ms`);return this.logger.warn("Token creation broadcast subscription timeout:",e.message),void(t?.onError&&t.onError(e))}r&&(r.onAny(o),n=!0,this.logger.debug("Token creation broadcast listener registered"))};s()}return()=>{try{if(null!==i&&(clearTimeout(i),i=null,this.logger.debug("Cleared token creation broadcast polling timeout")),!n)return void this.logger.debug("Cleanup called before listener registration - no action needed");const e=this.websocketService.getSocket();e&&(e.offAny(o),n=!1,this.logger.debug("Stopped listening to token creation broadcasts"))}catch(e){this.logger.warn("Error removing token creation listener:",e)}}}walkPayloadForPools(e,t,n=new WeakSet){const i=[];if("string"==typeof e){const n=this.looksLikePoolPair(e);if(null!=n){const e=this.parsePoolPairString(n);null===e||t.has(e.poolPair)||(t.add(e.poolPair),i.push(e))}return i}if("object"!=typeof e||null===e)return i;if(n.has(e))return i;n.add(e);const o=this.extractPoolDataFromPayload(e);o&&!t.has(o.poolPair)&&(t.add(o.poolPair),i.push(o));for(const o of Object.values(e)){const e=this.walkPayloadForPools(o,t,n);i.push(...e)}return i}subscribeToDexPoolAdded(e,t){if(this.logger.debug("Subscribing to DEX pool creation broadcasts"+(void 0!==t?.tokenFilter&&""!==t.tokenFilter?` (filter: ${t.tokenFilter})`:void 0!==t?.pairTokens?` (pair: ${t.pairTokens.join("/")})`:"")),null===this.websocketService||void 0===this.websocketService)throw qt("WebSocket service not initialized. Ensure websocketUrl is configured and the service is connected.","websocketService");let n=!1,i=null;const o=new Set,r=(n,...i)=>{try{for(const n of i){const i=this.walkPayloadForPools(n,o);for(const n of i)this.matchesPoolFilter(n,t)&&e(n)}}catch(e){this.logger.warn(`Error processing DEX pool broadcast: ${Ct(e)}`)}};let s=this.websocketService.getSocket();if(s)s.onAny(r),n=!0,this.logger.debug("DEX pool broadcast listener registered");else{this.logger.debug("WebSocket not yet connected, initiating connection..."),this.websocketService.connect().catch(e=>{const n=new Error(`WebSocket connection failed: ${Ct(e)}`);this.logger.warn("Failed to establish WebSocket connection:",e),t?.onError&&t.onError(n)});let e=0;const o=()=>{if(s=this.websocketService.getSocket(),!s&&e<Iu.DEX_POOL_SOCKET_WAIT_ATTEMPTS)return e++,void(i=setTimeout(()=>o(),Iu.DEX_POOL_SOCKET_POLL_INTERVAL_MS));if(!s&&e>=Iu.DEX_POOL_SOCKET_WAIT_ATTEMPTS){const e=new Error(`WebSocket not available after ${Iu.DEX_POOL_SOCKET_WAIT_ATTEMPTS*Iu.DEX_POOL_SOCKET_POLL_INTERVAL_MS}ms`);return this.logger.warn("DEX pool subscription timeout:",e.message),void(t?.onError&&t.onError(e))}s&&(s.onAny(r),n=!0,this.logger.debug("DEX pool broadcast listener registered"))};o()}return()=>{try{if(null!==i&&(clearTimeout(i),i=null,this.logger.debug("Cleared DEX pool polling timeout")),!n)return void this.logger.debug("Cleanup called before listener registration - no action needed");const e=this.websocketService.getSocket();e&&(e.offAny(r),n=!1,this.logger.debug("Stopped listening to DEX pool broadcasts"))}catch(e){this.logger.warn("Error removing DEX pool listener:",e)}}}subscribeToDexSwapExecuted(e,t){if(this.logger.debug("Subscribing to DEX swap execution broadcasts"+(void 0!==t?.tokenFilter&&""!==t.tokenFilter?` (filter: ${t.tokenFilter})`:void 0!==t?.pairTokens?` (pair: ${t.pairTokens.join("/")})`:"")),null===this.websocketService||void 0===this.websocketService)throw qt("WebSocket service not initialized. Ensure websocketUrl is configured and the service is connected.","websocketService");let n=null,i=null,o=null,r=!1;const s=async e=>{const t=pl.parsePoolKey(e);if(!t)throw new Error(`Invalid pool key format: ${e}`);return await this.dexQuoteService.fetchCompositePoolData({token0:t.token0,token1:t.token1,fee:t.feeTier})},a=()=>{const c=this.websocketService.getSocket();if(!c)return this.logger.debug("WebSocket not yet ready for swap monitoring, polling..."),void(n=setTimeout(()=>a(),100));r=!0,i=new Al(c,s,this.dexQuoteService,t??{},this.logger),o=i.subscribe(t??{},e),this.logger.debug("DEX swap monitoring subscription established")};return this.websocketService.getSocket()||(this.logger.debug("WebSocket not yet connected, initiating connection for swap monitoring..."),this.websocketService.connect().catch(e=>{const n=new Error(`WebSocket connection failed for swap monitoring: ${Ct(e)}`);this.logger.warn("Failed to establish WebSocket connection:",e),t?.onError&&t.onError(n)})),a(),()=>{try{n&&clearTimeout(n),o&&r&&o(),i&&i.shutdown().catch(e=>{this.logger.warn("Error shutting down swap monitor:",e)})}catch(e){this.logger.warn("Error cleaning up swap monitor:",e)}}}subscribeToDexLiquidityAdded(e,t){return this.subscribeToDexLiquidityEvents(e,t)}subscribeToDexLiquidityRemoved(e,t){return this.subscribeToDexLiquidityEvents(e,t)}subscribeToDexLiquidityChanged(e,t){return this.subscribeToDexLiquidityEvents(e,t)}subscribeToDexLiquidityEvents(e,t){if(this.logger.debug("Subscribing to DEX liquidity broadcasts"+(void 0!==t?.tokenFilter&&""!==t.tokenFilter?` (filter: ${t.tokenFilter})`:void 0!==t?.pairTokens?` (pair: ${t.pairTokens.join("/")})`:"")),null===this.websocketService||void 0===this.websocketService)throw qt("WebSocket service not initialized. Ensure websocketUrl is configured and the service is connected.","websocketService");let n=!1,i=null;const o=new Set,r=new Cu(this.logger),s=(n,...i)=>{try{for(const n of i){const i=r.walkPayloadForLiquidityEvents(n,o);for(const n of i)if(this.matchesLiquidityFilter(n,t))try{const t=e(n);t instanceof Promise&&t.catch(e=>{this.logger.warn(`Error in liquidity event callback: ${Ct(e)}`)})}catch(e){this.logger.warn(`Error in liquidity event callback: ${Ct(e)}`)}}}catch(e){this.logger.warn(`Error processing DEX liquidity broadcast: ${Ct(e)}`)}};let a=this.websocketService.getSocket();if(a)a.onAny(s),n=!0,this.logger.debug("DEX liquidity broadcast listener registered");else{this.logger.debug("WebSocket not yet connected, initiating connection for liquidity monitoring..."),this.websocketService.connect().catch(e=>{const n=new Error(`WebSocket connection failed: ${Ct(e)}`);this.logger.warn("Failed to establish WebSocket connection:",e),t?.onError&&t.onError(n)});let e=0;const o=()=>{if(a=this.websocketService.getSocket(),!a&&e<Iu.DEX_POOL_SOCKET_WAIT_ATTEMPTS)return e++,void(i=setTimeout(()=>o(),Iu.DEX_POOL_SOCKET_POLL_INTERVAL_MS));if(!a&&e>=Iu.DEX_POOL_SOCKET_WAIT_ATTEMPTS){const e=new Error(`WebSocket not available after ${Iu.DEX_POOL_SOCKET_WAIT_ATTEMPTS*Iu.DEX_POOL_SOCKET_POLL_INTERVAL_MS}ms`);return this.logger.warn("DEX liquidity subscription timeout:",e.message),void(t?.onError&&t.onError(e))}a&&(a.onAny(s),n=!0,this.logger.debug("DEX liquidity broadcast listener registered"))};o()}return async()=>{try{if(null!==i&&(clearTimeout(i),i=null,this.logger.debug("Cleared DEX liquidity polling timeout")),!n)return void this.logger.debug("Cleanup called before listener registration - no action needed");const e=this.websocketService.getSocket();e&&(e.offAny(s),n=!1,this.logger.debug("Stopped listening to DEX liquidity broadcasts"))}catch(e){this.logger.warn("Error removing DEX liquidity listener:",e)}}}matchesLiquidityFilter(e,t){if(!t)return!0;if(void 0!==t.positionId&&""!==t.positionId&&e.positionId!==t.positionId)return!1;if(void 0!==t.poolHash&&""!==t.poolHash&&e.poolHash!==t.poolHash)return!1;if(void 0!==t.feeTierFilter){const n=this.normalizeFeeTier(t.feeTierFilter);if(e.poolFee!==n)return!1}if(void 0!==t.userFilter&&""!==t.userFilter&&e.userAddress!==t.userFilter)return!1;if(void 0!==t.tokenFilter&&""!==t.tokenFilter){const n=void 0!==e.token0&&""!==e.token0&&Ko(e.token0,t.tokenFilter),i=void 0!==e.token1&&""!==e.token1&&Ko(e.token1,t.tokenFilter);if(!n&&!i)return!1}if(void 0!==t.pairTokens){const[n,i]=t.pairTokens,o=e.token0??"",r=e.token1??"",s=Ko(o,n)&&Ko(r,i),a=Ko(o,i)&&Ko(r,n);if(!s&&!a)return!1}if(void 0!==t.minAmount&&""!==t.minAmount){const n=Un(t.minAmount),i=Un(e.amounts[0]),o=Un(e.amounts[1]);if(Math.abs(i)<n&&Math.abs(o)<n)return!1}return!0}normalizeFeeTier(e){if("number"==typeof e)return e>=100?e:Math.round(1e4*e);return function(e,t=3e3){if(gn(e))return t;if("number"==typeof e)return isNaN(e)?t:Math.floor(e);const n=String(e).trim();if(n.endsWith("%")){const e=Un(n.replace("%",""));return Math.floor(1e4*e)}const i=parseFloat(n);return isNaN(i)?t:i<100?Math.floor(1e4*i):Math.floor(i)}(e)}getNftCollectionClaimFee(){return this.nftCollectionService.getCollectionClaimFee()}getNftTokenClassCreateFee(){return this.nftCollectionService.getTokenClassCreateFee()}estimateNftMintFee(e){return this.nftCollectionService.estimateMintFee(e)}estimateNftOperationFees(e){return this.nftCollectionService.estimateNftOperationFees(e)}claimNftCollection(e){return this.nftCollectionService.claimCollection(e)}fetchNftCollections(e){return this.nftCollectionService.fetchUserCollections(e)}isNftCollectionAvailable(e){return this.nftCollectionService.isCollectionAvailable(e)}createNftTokenClass(e){return this.nftCollectionService.createTokenClass(e)}fetchNftTokenClasses(e){return this.nftCollectionService.fetchTokenClasses(e)}mintNft(e){return this.nftCollectionService.mintNft(e)}fetchNftBalances(e,t){return this.nftCollectionService.fetchNftBalances(e,t)}async cleanup(){try{if(this.logger.debug("Starting cleanup..."),void 0!==this._eventsBatcherService)try{await this._eventsBatcherService.shutdown(5e3),this._eventsBatcherService=void 0}catch(e){this.logger.warn("Error during events shutdown:",e)}this.http.cleanup(),null!==this.websocketService&&void 0!==this.websocketService&&this.websocketService.disconnect(),void 0!==this._streamWebSocketService&&(this._streamWebSocketService.disconnect(),this._streamWebSocketService=void 0),this.logger.debug("Cleanup completed")}catch(e){this.logger.error("Error during cleanup:",e)}}static cleanupAll(e=!1){const t=new un({debug:e,context:"LaunchpadSDK"});t.debug("Starting global cleanup..."),hu.cleanupAll(e),t.debug("Global cleanup completed")}}Iu.DEFAULT_SLIPPAGE_TOLERANCE_FACTOR=.15,Iu.DEFAULT_MAX_ACCEPTABLE_REVERSE_BONDING_CURVE_FEE_SLIPPAGE_FACTOR=.01,Iu.DEFAULT_LAUNCHPAD_TOKEN_MAX_SUPPLY=sn.DEFAULT_LAUNCHPAD_TOKEN_MAX_SUPPLY,Iu.DEFAULT_CALCULATE_AMOUNT_MODE="local",Iu.TOKEN_CREATION_SOCKET_WAIT_ATTEMPTS=30,Iu.TOKEN_CREATION_SOCKET_POLL_INTERVAL_MS=100,Iu.DEX_POOL_SOCKET_WAIT_ATTEMPTS=30,Iu.DEX_POOL_SOCKET_POLL_INTERVAL_MS=100;class Nu{static generateWallet(){try{const e=t.Wallet.createRandom();if(null==e.mnemonic?.phrase||""===e.mnemonic.phrase)throw Mt("mnemonic","Mnemonic phrase");const n=this.toGalaAddress(e.address);return{privateKey:e.privateKey,address:e.address,galaAddress:n,mnemonic:e.mnemonic.phrase,wallet:new t.Wallet(e.privateKey)}}catch(e){if("undefined"!=typeof process&&"test"===process.env.NODE_ENV){const e=`test-wallet-${Date.now()}-${++this.testCounter}`,n="0x"+Buffer.from(e).toString("hex").padStart(64,"1").slice(0,64),i=new t.Wallet(n),o=this.toGalaAddress(i.address);return{privateKey:i.privateKey,address:i.address,galaAddress:o,mnemonic:"test test test test test test test test test test test junk",wallet:i}}throw e}}static fromPrivateKey(e){const n=new t.Wallet(e),i=this.toGalaAddress(n.address);return{privateKey:n.privateKey,address:n.address,galaAddress:i,mnemonic:"",wallet:n}}static fromMnemonic(e,n=0){try{const i=t.Mnemonic.fromPhrase(e),o=t.HDNodeWallet.fromMnemonic(i,`m/44'/60'/0'/0/${n}`),r=new t.Wallet(o.privateKey),s=this.toGalaAddress(r.address);return{privateKey:r.privateKey,address:r.address,galaAddress:s,mnemonic:e,wallet:r}}catch(i){if("undefined"!=typeof process&&"test"===process.env.NODE_ENV){const i=`test-mnemonic-index-${n}-${e}`,o="0x"+Buffer.from(i).toString("hex").padStart(64,"1").slice(0,64),r=new t.Wallet(o),s=this.toGalaAddress(r.address);return{privateKey:r.privateKey,address:r.address,galaAddress:s,mnemonic:e,wallet:r}}throw i}}static toGalaAddress(e){const n=bi(e);if(!/^[a-fA-F0-9]{40}$/.test(n))throw $t("address","a valid Ethereum address (40 hex characters)");return`eth|${t.getAddress(`0x${n}`).slice(2)}`}static toEthereumAddress(e){try{return Ai(e)}catch(t){const n=Ct(t);if(n.includes("required")||!e?.startsWith("eth|"))throw Mt("galaAddress","Gala address starting with eth|");if(n.includes("Invalid backend"))throw $t("galaAddress","Gala format (eth|{40-hex-chars})");throw t}}static isValidEthereumAddress(e){try{const t=bi(e);return/^[a-fA-F0-9]{40}$/.test(t)}catch{return!1}}static isValidGalaAddress(e){return""!==e&&"backend"===Ci(e)}static generateMultipleWallets(e=1){jn(e,1,100,"count");const t=[];if("undefined"!=typeof process&&"test"===process.env.NODE_ENV)for(let n=0;n<e;n++){const e=`test-multi-${n}-${Date.now()}-${++this.testCounter}`,i="0x"+Buffer.from(e).toString("hex").padStart(64,"1").slice(0,64);t.push(this.fromPrivateKey(i))}else for(let n=0;n<e;n++)t.push(this.generateWallet());return t}static getWalletSummary(e,t=!1){const n=["🔐 Wallet Information","═".repeat(50),`📍 Address: ${e.address}`,`🎮 Gala Address: ${e.galaAddress}`,`🌱 Mnemonic: ${null!=e.mnemonic&&""!==e.mnemonic?e.mnemonic:"Not available"}`];return t?n.splice(3,0,`🔑 Private Key: ${e.privateKey}`):n.splice(3,0,"🔑 Private Key: [HIDDEN - use includeSensitive=true to show]"),n.push("═".repeat(50)),n.push("💾 IMPORTANT: Save your mnemonic phrase securely!"),n.push("This is your backup to recover the wallet."),n.join("\n")}}function Du(e){if(void 0===e)return Nu.generateWallet();const t=e.trim();if(!Zn(t))throw $t("input","a non-empty string");if(function(e){const t=bi(e);return/^[a-fA-F0-9]{64}$/.test(t)}(t))return Nu.fromPrivateKey(t);if(function(e){const t=e.split(/\s+/).filter(e=>e.length>0);if(12!==t.length&&24!==t.length)return!1;return t.every(e=>/^[a-zA-Z]+$/.test(e))}(t))return Nu.fromMnemonic(t);throw $t("input","a private key (64 hex characters) or mnemonic (12/24 words)","Wallet input")}Nu.testCounter=0;var Pu=Object.freeze({__proto__:null,extractMetadataFromPoolData:function(e,t){const n={};if(void 0!==e.vaultAddress&&(n.vaultAddress=e.vaultAddress),void 0!==e.reverseBondingCurveMinFeePortion){const i=Un(e.reverseBondingCurveMinFeePortion,NaN);isNaN(i)?t&&t.debug(`Skipping invalid reverseBondingCurveMinFeePortion for ${e.tokenName}: "${e.reverseBondingCurveMinFeePortion}"`):n.reverseBondingCurveMinFeeFactor=i}if(void 0!==e.reverseBondingCurveMaxFeePortion){const i=Un(e.reverseBondingCurveMaxFeePortion,NaN);isNaN(i)?t&&t.debug(`Skipping invalid reverseBondingCurveMaxFeePortion for ${e.tokenName}: "${e.reverseBondingCurveMaxFeePortion}"`):n.reverseBondingCurveMaxFeeFactor=i}return void 0!==n.reverseBondingCurveMaxFeeFactor&&void 0!==n.reverseBondingCurveMinFeeFactor&&(n.reverseBondingCurveNetFeeFactor=n.reverseBondingCurveMaxFeeFactor-n.reverseBondingCurveMinFeeFactor),Object.keys(n).length>0?n:null},isValidPoolForCaching:function(e){if(null===e||"object"!=typeof e)return!1;const t=e;return"tokenName"in t&&"string"==typeof t.tokenName&&t.tokenName.length>0}});exports.EVENT_TYPES={LOGIN:"login",LOGOUT:"logout",TOKEN_BUY:"token_buy",TOKEN_SELL:"token_sell",TOKEN_SWAP:"token_swap",TOKEN_CREATED:"token_created",TOKEN_GRADUATED:"token_graduated",PAGE_VIEW:"page_view",PAGE_LEAVE:"page_leave",STREAM_START:"stream_start",STREAM_END:"stream_end",STREAM_VIEWERS_CHANGED:"stream_viewers_changed",CHAT_MESSAGE_SENT:"chat_message_sent",CHAT_MESSAGE_RECEIVED:"chat_message_received",LIQUIDITY_ADDED:"liquidity_added",LIQUIDITY_REMOVED:"liquidity_removed",BRIDGE_DEPOSIT:"bridge_deposit",BRIDGE_WITHDRAW:"bridge_withdraw",PROFILE_UPDATED:"profile_updated",BALANCE_CHANGED:"balance_changed",ERROR_OCCURRED:"error_occurred"},exports.LaunchpadSDK=Iu,exports.SDK_VERSION=Js,exports.TransactionFailedError=Su,exports.WebSocketError=bu,exports.WebSocketTimeoutError=class extends bu{constructor(e,t){super(`WebSocket confirmation timeout for transaction ${e} after ${t}ms`),this.name="WebSocketTimeoutError"}},exports.createLaunchpadSDK=function(e){ei(e)&&(e={});const{wallet:n,env:i,config:o={},...r}=e,s={...r,...o},{wallet:a,env:c,config:l,...d}=s;let u;if(ei(n)){u=Du().wallet}else if("string"==typeof n){u=Du(n).wallet}else{if(!(n instanceof t.Wallet))throw qt("Invalid wallet input. Expected string (private key or mnemonic) or Wallet instance.","wallet");u=n}const h={wallet:u,...void 0!==i?{env:i}:{},debug:!1,timeout:3e4,...d};return new Iu(h)},exports.createWallet=Du,exports.getEthereumAddressFromPrivateKey=function(e){if(!e.match(/^0x[a-fA-F0-9]{64}$/))throw $t("privateKey","0x-prefixed 64 hexadecimal characters","Private key");return t.getAddress(t.computeAddress(e))},exports.getPublicKeyFromPrivateKey=function(e){if(!e.match(/^0x[a-fA-F0-9]{64}$/))throw $t("privateKey","0x-prefixed 64 hexadecimal characters","Private key");const n=new t.SigningKey(e);return{publicKey:n.publicKey,compressedPublicKey:n.compressedPublicKey}};