@ultrade/shared 1.0.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 (189) hide show
  1. package/dist/baseModel/base.model.d.ts +26 -0
  2. package/dist/baseModel/index.d.ts +2 -0
  3. package/dist/common/auth.helper.d.ts +4 -0
  4. package/dist/common/auth.helper.js +367 -0
  5. package/dist/common/awsKms.d.ts +2 -0
  6. package/dist/common/awsKms.js +265 -0
  7. package/dist/common/big-number.helper.d.ts +38 -0
  8. package/dist/common/big-number.helper.js +263 -0
  9. package/dist/common/index.d.ts +11 -0
  10. package/dist/common/index.js +2541 -0
  11. package/dist/common/indexer.helper.d.ts +2 -0
  12. package/dist/common/indexer.helper.js +387 -0
  13. package/dist/common/logger.d.ts +32 -0
  14. package/dist/common/logger.js +188 -0
  15. package/dist/common/mappers/codexAsset.mapper.d.ts +2 -0
  16. package/dist/common/mappers/codexAsset.mapper.js +40 -0
  17. package/dist/common/mappers/codexBalance.mapper.d.ts +2 -0
  18. package/dist/common/mappers/codexBalance.mapper.js +38 -0
  19. package/dist/common/mappers/index.d.ts +3 -0
  20. package/dist/common/mappers/index.js +1421 -0
  21. package/dist/common/mappers/trade.mapper.d.ts +6 -0
  22. package/dist/common/mappers/trade.mapper.js +1343 -0
  23. package/dist/common/migration.helpers.d.ts +4 -0
  24. package/dist/common/migration.helpers.js +44 -0
  25. package/dist/common/redis.helper.d.ts +27 -0
  26. package/dist/common/redis.helper.js +269 -0
  27. package/dist/common/secret.helper.d.ts +28 -0
  28. package/dist/common/secret.helper.js +144 -0
  29. package/dist/common/timestamp.helper.d.ts +1 -0
  30. package/dist/common/timestamp.helper.js +41 -0
  31. package/dist/common/utils/assert.d.ts +1 -0
  32. package/dist/common/utils/assert.js +32 -0
  33. package/dist/common/utils/decode.d.ts +5 -0
  34. package/dist/common/utils/decode.js +206 -0
  35. package/dist/common/utils/index.d.ts +9 -0
  36. package/dist/common/utils/index.js +122 -0
  37. package/dist/common/utils/social.d.ts +1 -0
  38. package/dist/common/utils/social.js +30 -0
  39. package/dist/common/utils/stat.d.ts +1 -0
  40. package/dist/common/utils/stat.js +274 -0
  41. package/dist/constants/allowedUrls.d.ts +1 -0
  42. package/dist/constants/auth.d.ts +2 -0
  43. package/dist/constants/cctp.d.ts +3 -0
  44. package/dist/constants/codex.d.ts +11 -0
  45. package/dist/constants/env.d.ts +6 -0
  46. package/dist/constants/index.d.ts +7 -0
  47. package/dist/constants/index.js +455 -0
  48. package/dist/constants/queue.d.ts +39 -0
  49. package/dist/constants/response.d.ts +82 -0
  50. package/dist/constants/settings.d.ts +2 -0
  51. package/dist/constants/social.d.ts +3 -0
  52. package/dist/constants/withdrawalWalletsMessage.d.ts +1 -0
  53. package/dist/enums/chains.enum.d.ts +50 -0
  54. package/dist/enums/db/account/index.d.ts +19 -0
  55. package/dist/enums/db/affiliate.enum.d.ts +7 -0
  56. package/dist/enums/db/available-pair-settings.enum.d.ts +12 -0
  57. package/dist/enums/db/chains.d.ts +30 -0
  58. package/dist/enums/db/common.enum.d.ts +4 -0
  59. package/dist/enums/db/component/index.d.ts +22 -0
  60. package/dist/enums/db/index.d.ts +21 -0
  61. package/dist/enums/db/market-maker.enum.d.ts +15 -0
  62. package/dist/enums/db/notification-center/userNotification.enum.d.ts +36 -0
  63. package/dist/enums/db/order-side.enum.d.ts +5 -0
  64. package/dist/enums/db/order-status.enum.d.ts +8 -0
  65. package/dist/enums/db/order-type.enum.d.ts +7 -0
  66. package/dist/enums/db/pending-actions.enum.d.ts +6 -0
  67. package/dist/enums/db/relayer.enum.d.ts +23 -0
  68. package/dist/enums/db/setting-type.enum.d.ts +8 -0
  69. package/dist/enums/db/social-action.enum.d.ts +24 -0
  70. package/dist/enums/db/social-prompt.enum.d.ts +8 -0
  71. package/dist/enums/db/social.enum.d.ts +10 -0
  72. package/dist/enums/db/state-type.enum.d.ts +9 -0
  73. package/dist/enums/db/trade.enums.d.ts +10 -0
  74. package/dist/enums/db/tradingKeyType.enum.d.ts +4 -0
  75. package/dist/enums/db/upgrade.enum.d.ts +5 -0
  76. package/dist/enums/db/withdrawal-wallet.enum.d.ts +5 -0
  77. package/dist/enums/index.d.ts +5 -0
  78. package/dist/enums/index.js +893 -0
  79. package/dist/enums/maintenanceMode.enum.d.ts +10 -0
  80. package/dist/enums/notification.enum.d.ts +7 -0
  81. package/dist/enums/social.enum.d.ts +10 -0
  82. package/dist/helpers/Encoding.d.ts +33 -0
  83. package/dist/helpers/Encoding.js +318 -0
  84. package/dist/helpers/algo.helper.d.ts +14 -0
  85. package/dist/helpers/algo.helper.js +1211 -0
  86. package/dist/helpers/api.helper.d.ts +16 -0
  87. package/dist/helpers/api.helper.js +1652 -0
  88. package/dist/helpers/assert.helper.d.ts +10 -0
  89. package/dist/helpers/assert.helper.js +1677 -0
  90. package/dist/helpers/atomic.helper.d.ts +21 -0
  91. package/dist/helpers/atomic.helper.js +712 -0
  92. package/dist/helpers/balance.helper.d.ts +13 -0
  93. package/dist/helpers/balance.helper.js +4330 -0
  94. package/dist/helpers/codex/common.helper.d.ts +24 -0
  95. package/dist/helpers/codex/common.helper.js +4246 -0
  96. package/dist/helpers/codex/index.d.ts +6 -0
  97. package/dist/helpers/codex/index.js +4246 -0
  98. package/dist/helpers/codex/mbr.helper.d.ts +6 -0
  99. package/dist/helpers/codex/mbr.helper.js +4246 -0
  100. package/dist/helpers/codex/mna.helper.d.ts +2 -0
  101. package/dist/helpers/codex/mna.helper.js +4246 -0
  102. package/dist/helpers/codex/order.helper.d.ts +6 -0
  103. package/dist/helpers/codex/order.helper.js +4246 -0
  104. package/dist/helpers/codex/setGlobal.helper.d.ts +27 -0
  105. package/dist/helpers/codex/setGlobal.helper.js +4312 -0
  106. package/dist/helpers/codex/transfer.helper.d.ts +21 -0
  107. package/dist/helpers/codex/transfer.helper.js +4246 -0
  108. package/dist/helpers/codex/txn.helper.d.ts +13 -0
  109. package/dist/helpers/codex/txn.helper.js +4246 -0
  110. package/dist/helpers/codex.helper.d.ts +106 -0
  111. package/dist/helpers/codex.helper.js +4246 -0
  112. package/dist/helpers/email.helper.d.ts +5 -0
  113. package/dist/helpers/email.helper.js +112 -0
  114. package/dist/helpers/eth.helper.d.ts +12 -0
  115. package/dist/helpers/eth.helper.js +4246 -0
  116. package/dist/helpers/hummingbots.helper.d.ts +2 -0
  117. package/dist/helpers/hummingbots.helper.js +163 -0
  118. package/dist/helpers/index.d.ts +5 -0
  119. package/dist/helpers/index.js +837 -0
  120. package/dist/helpers/interval.helpers.d.ts +9 -0
  121. package/dist/helpers/interval.helpers.js +110 -0
  122. package/dist/helpers/liquidity.helper.d.ts +6 -0
  123. package/dist/helpers/liquidity.helper.js +81 -0
  124. package/dist/helpers/order.helper.d.ts +7 -0
  125. package/dist/helpers/order.helper.js +946 -0
  126. package/dist/helpers/pair.helper.d.ts +9 -0
  127. package/dist/helpers/pair.helper.js +938 -0
  128. package/dist/helpers/pointSystem.helper.d.ts +14 -0
  129. package/dist/helpers/pointSystem.helper.js +392 -0
  130. package/dist/helpers/ticker.helpers.d.ts +8 -0
  131. package/dist/helpers/ticker.helpers.js +358 -0
  132. package/dist/helpers/vaa.helper.d.ts +2 -0
  133. package/dist/helpers/vaa.helper.js +4350 -0
  134. package/dist/helpers/withdraw.helper.d.ts +14 -0
  135. package/dist/helpers/withdraw.helper.js +4784 -0
  136. package/dist/interfaces/accountInfo.interface.d.ts +15 -0
  137. package/dist/interfaces/algostreamer/index.d.ts +49 -0
  138. package/dist/interfaces/api/affiliate.interface.d.ts +71 -0
  139. package/dist/interfaces/cache.interface.d.ts +25 -0
  140. package/dist/interfaces/confirmed-txn.interface.d.ts +46 -0
  141. package/dist/interfaces/controller.interface.d.ts +6 -0
  142. package/dist/interfaces/db/baseModel.interface.d.ts +5 -0
  143. package/dist/interfaces/db/hummingbot/index.d.ts +18 -0
  144. package/dist/interfaces/db/index.d.ts +10 -0
  145. package/dist/interfaces/db/market/index.d.ts +313 -0
  146. package/dist/interfaces/db/marketing/index.d.ts +48 -0
  147. package/dist/interfaces/db/notification_center/index.d.ts +33 -0
  148. package/dist/interfaces/db/relayer/index.d.ts +56 -0
  149. package/dist/interfaces/db/social/index.d.ts +188 -0
  150. package/dist/interfaces/db/softDeleteModel.interface.d.ts +4 -0
  151. package/dist/interfaces/db/white_label/index.d.ts +161 -0
  152. package/dist/interfaces/db/withdrawal_wallets/index.d.ts +12 -0
  153. package/dist/interfaces/dto/index.d.ts +62 -0
  154. package/dist/interfaces/emailService.interface.d.ts +4 -0
  155. package/dist/interfaces/index.d.ts +17 -0
  156. package/dist/interfaces/index.js +1319 -0
  157. package/dist/interfaces/kmsService.interface.d.ts +4 -0
  158. package/dist/interfaces/last-look-trade.interface.d.ts +10 -0
  159. package/dist/interfaces/market.interface.d.ts +17 -0
  160. package/dist/interfaces/order.interface.d.ts +162 -0
  161. package/dist/interfaces/pair.interface.d.ts +10 -0
  162. package/dist/interfaces/query.interface.d.ts +6 -0
  163. package/dist/interfaces/services/accountCache.interface.d.ts +15 -0
  164. package/dist/interfaces/services/algod.interface.d.ts +5 -0
  165. package/dist/interfaces/services/balances.interface.d.ts +11 -0
  166. package/dist/interfaces/services/coin-market-cap.interface.d.ts +124 -0
  167. package/dist/interfaces/services/index.d.ts +8 -0
  168. package/dist/interfaces/services/price-model.interface.d.ts +4 -0
  169. package/dist/interfaces/services/price-service.interface.d.ts +8 -0
  170. package/dist/interfaces/services/socialActivity.interface.d.ts +48 -0
  171. package/dist/interfaces/services/tmc.interface.d.ts +9 -0
  172. package/dist/interfaces/streaming.interface.d.ts +95 -0
  173. package/dist/interfaces/timestream.interface.d.ts +29 -0
  174. package/dist/interfaces/trading.interface.d.ts +235 -0
  175. package/dist/interfaces/tradingKey.interface.d.ts +26 -0
  176. package/dist/interfaces/transfer.interface.d.ts +12 -0
  177. package/dist/interfaces/wallet.interface.d.ts +89 -0
  178. package/dist/interfaces/withdrawalWallets.interface.d.ts +14 -0
  179. package/dist/types/algo-order.type.d.ts +10 -0
  180. package/dist/types/amm/amm.d.ts +163 -0
  181. package/dist/types/api/request.types.d.ts +99 -0
  182. package/dist/types/codex.types.d.ts +28 -0
  183. package/dist/types/hummingbots.types.d.ts +23 -0
  184. package/dist/types/index.d.ts +8 -0
  185. package/dist/types/index.js +362 -0
  186. package/dist/types/notification.type.d.ts +10 -0
  187. package/dist/types/settings.type.d.ts +162 -0
  188. package/dist/types/state.type.d.ts +4 -0
  189. package/package.json +78 -0
@@ -0,0 +1,1319 @@
1
+ (function webpackUniversalModuleDefinition(root, factory) {
2
+ if(typeof exports === 'object' && typeof module === 'object')
3
+ module.exports = factory();
4
+ else if(typeof define === 'function' && define.amd)
5
+ define([], factory);
6
+ else {
7
+ var a = factory();
8
+ for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
9
+ }
10
+ })(global, () => {
11
+ return /******/ (() => { // webpackBootstrap
12
+ /******/ "use strict";
13
+ /******/ var __webpack_modules__ = ({
14
+
15
+ /***/ 231:
16
+ /***/ ((__unused_webpack_module, exports) => {
17
+
18
+
19
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
20
+
21
+
22
+ /***/ }),
23
+
24
+ /***/ 528:
25
+ /***/ ((__unused_webpack_module, exports) => {
26
+
27
+
28
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
29
+
30
+
31
+ /***/ }),
32
+
33
+ /***/ 835:
34
+ /***/ ((__unused_webpack_module, exports) => {
35
+
36
+
37
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
38
+ var OrderSide;
39
+ (function (OrderSide) {
40
+ OrderSide[OrderSide["Buy"] = 0] = "Buy";
41
+ OrderSide[OrderSide["Sell"] = 1] = "Sell";
42
+ })(OrderSide || (OrderSide = {}));
43
+ exports["default"] = OrderSide;
44
+
45
+
46
+ /***/ }),
47
+
48
+ /***/ 892:
49
+ /***/ ((__unused_webpack_module, exports) => {
50
+
51
+
52
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
53
+ exports.PairComponentStatusType = exports.ComponentType = exports.ComponentStatusType = void 0;
54
+ var ComponentStatusType;
55
+ (function (ComponentStatusType) {
56
+ ComponentStatusType["ACTIVE"] = "ACTIVE";
57
+ ComponentStatusType["FAILED"] = "FAILED";
58
+ ComponentStatusType["STARTING"] = "STARTING";
59
+ ComponentStatusType["DRAINING"] = "DRAINING";
60
+ ComponentStatusType["TERMINATING"] = "TERMINATING";
61
+ ComponentStatusType["TERMINATED"] = "TERMINATED";
62
+ })(ComponentStatusType || (exports.ComponentStatusType = ComponentStatusType = {}));
63
+ var ComponentType;
64
+ (function (ComponentType) {
65
+ ComponentType["MATCHING_ENGINE"] = "me";
66
+ ComponentType["ORDER_SERVICE"] = "ors";
67
+ ComponentType["API"] = "api";
68
+ ComponentType["SOCKET_SERVICE"] = "ws";
69
+ ComponentType["TRANSACTION_SERVICE"] = "tns";
70
+ })(ComponentType || (exports.ComponentType = ComponentType = {}));
71
+ var PairComponentStatusType;
72
+ (function (PairComponentStatusType) {
73
+ PairComponentStatusType["ACTIVE"] = "ACTIVE";
74
+ PairComponentStatusType["FAILED"] = "FAILED";
75
+ PairComponentStatusType["UNASSIGNED"] = "UNASSIGNED";
76
+ PairComponentStatusType["ASSIGNED"] = "ASSIGNED";
77
+ PairComponentStatusType["STARTING"] = "STARTING";
78
+ })(PairComponentStatusType || (exports.PairComponentStatusType = PairComponentStatusType = {}));
79
+
80
+
81
+ /***/ }),
82
+
83
+ /***/ 893:
84
+ /***/ ((__unused_webpack_module, exports) => {
85
+
86
+
87
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
88
+ exports.NON_REPEATABLE_ACTIONS = exports.ActionEnum = exports.ActionSource = void 0;
89
+ var ActionSource;
90
+ (function (ActionSource) {
91
+ ActionSource["COMPANY"] = "COMPANY";
92
+ ActionSource["TWITTER"] = "TWITTER";
93
+ ActionSource["DISCORD"] = "DISCORD";
94
+ ActionSource["TELEGRAM"] = "TELEGRAM";
95
+ })(ActionSource || (exports.ActionSource = ActionSource = {}));
96
+ var ActionEnum;
97
+ (function (ActionEnum) {
98
+ ActionEnum[ActionEnum["TWITTER_FOLLOW"] = 1] = "TWITTER_FOLLOW";
99
+ ActionEnum[ActionEnum["TWITTER_REPLY"] = 2] = "TWITTER_REPLY";
100
+ ActionEnum[ActionEnum["TWITTER_RETWEET"] = 3] = "TWITTER_RETWEET";
101
+ ActionEnum[ActionEnum["TWITTER_LIKE"] = 4] = "TWITTER_LIKE";
102
+ ActionEnum[ActionEnum["COMPANY_FIRST_LOGIN"] = 5] = "COMPANY_FIRST_LOGIN";
103
+ ActionEnum[ActionEnum["COMPANY_CONFIRM_EMAIL"] = 6] = "COMPANY_CONFIRM_EMAIL";
104
+ ActionEnum[ActionEnum["COMPANY_DEPOSIT"] = 7] = "COMPANY_DEPOSIT";
105
+ ActionEnum[ActionEnum["COMPANY_TRADE"] = 8] = "COMPANY_TRADE";
106
+ ActionEnum[ActionEnum["TELEGRAM_JOIN_GROUP"] = 9] = "TELEGRAM_JOIN_GROUP";
107
+ ActionEnum[ActionEnum["DISCORD_JOIN_SERVER"] = 10] = "DISCORD_JOIN_SERVER";
108
+ ActionEnum[ActionEnum["AFFILIATE_POINTS_REWARD"] = 11] = "AFFILIATE_POINTS_REWARD";
109
+ })(ActionEnum || (exports.ActionEnum = ActionEnum = {}));
110
+ exports.NON_REPEATABLE_ACTIONS = [
111
+ ActionEnum.TWITTER_FOLLOW,
112
+ ActionEnum.TELEGRAM_JOIN_GROUP,
113
+ ActionEnum.DISCORD_JOIN_SERVER,
114
+ ActionEnum.COMPANY_CONFIRM_EMAIL,
115
+ ActionEnum.COMPANY_FIRST_LOGIN,
116
+ ];
117
+
118
+
119
+ /***/ }),
120
+
121
+ /***/ 1048:
122
+ /***/ ((__unused_webpack_module, exports) => {
123
+
124
+
125
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
126
+ exports.WithdrawalWalletType = void 0;
127
+ var WithdrawalWalletType;
128
+ (function (WithdrawalWalletType) {
129
+ WithdrawalWalletType["SOLANA"] = "SOLANA";
130
+ WithdrawalWalletType["ALGORAND"] = "ALGORAND";
131
+ WithdrawalWalletType["EVM"] = "EVM";
132
+ })(WithdrawalWalletType || (exports.WithdrawalWalletType = WithdrawalWalletType = {}));
133
+
134
+
135
+ /***/ }),
136
+
137
+ /***/ 1134:
138
+ /***/ ((__unused_webpack_module, exports) => {
139
+
140
+
141
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
142
+ var OrderType;
143
+ (function (OrderType) {
144
+ OrderType[OrderType["Limit"] = 0] = "Limit";
145
+ OrderType[OrderType["IOC"] = 1] = "IOC";
146
+ OrderType[OrderType["POST"] = 2] = "POST";
147
+ OrderType[OrderType["Market"] = 3] = "Market";
148
+ })(OrderType || (OrderType = {}));
149
+ exports["default"] = OrderType;
150
+
151
+
152
+ /***/ }),
153
+
154
+ /***/ 1283:
155
+ /***/ ((__unused_webpack_module, exports) => {
156
+
157
+
158
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
159
+ exports.StateType = void 0;
160
+ var StateType;
161
+ (function (StateType) {
162
+ StateType["VERSION"] = "version";
163
+ StateType["LAST_ALGO_BLOCK"] = "last_algo_block";
164
+ StateType["PRICES_PROVIDER_API_KEY"] = "prices_provider_api_key";
165
+ StateType["DEFAULT_API_DOMAIN"] = "default_api_domain";
166
+ StateType["NONCE_ACCOUNTS_SOLANA"] = "nonce_accounts_solana";
167
+ StateType["ARCHIVE_DATA_BATCH_SIZE"] = "archive_data_batch_size";
168
+ StateType["ARCHIVE_TASK_LOCK"] = "archive_task_lock";
169
+ })(StateType || (exports.StateType = StateType = {}));
170
+
171
+
172
+ /***/ }),
173
+
174
+ /***/ 1492:
175
+ /***/ ((__unused_webpack_module, exports) => {
176
+
177
+
178
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
179
+ var OrderStatus;
180
+ (function (OrderStatus) {
181
+ OrderStatus[OrderStatus["Open"] = 1] = "Open";
182
+ OrderStatus[OrderStatus["Canceled"] = 2] = "Canceled";
183
+ OrderStatus[OrderStatus["Matched"] = 3] = "Matched";
184
+ OrderStatus[OrderStatus["SelfMatched"] = 4] = "SelfMatched";
185
+ OrderStatus[OrderStatus["Expired"] = 5] = "Expired";
186
+ })(OrderStatus || (OrderStatus = {}));
187
+ exports["default"] = OrderStatus;
188
+
189
+
190
+ /***/ }),
191
+
192
+ /***/ 1682:
193
+ /***/ ((__unused_webpack_module, exports) => {
194
+
195
+
196
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
197
+ exports.SettingTypeColumn = void 0;
198
+ var SettingTypeColumn;
199
+ (function (SettingTypeColumn) {
200
+ SettingTypeColumn["STRING"] = "string";
201
+ SettingTypeColumn["BOOLEAN"] = "boolean";
202
+ SettingTypeColumn["INT"] = "int";
203
+ SettingTypeColumn["FLOAT"] = "float";
204
+ SettingTypeColumn["SINGLE_CHOICE"] = "single-choice";
205
+ SettingTypeColumn["MULTI_CHOICE"] = "multi-choice";
206
+ })(SettingTypeColumn || (exports.SettingTypeColumn = SettingTypeColumn = {}));
207
+
208
+
209
+ /***/ }),
210
+
211
+ /***/ 1710:
212
+ /***/ ((__unused_webpack_module, exports) => {
213
+
214
+
215
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
216
+
217
+
218
+ /***/ }),
219
+
220
+ /***/ 1817:
221
+ /***/ ((__unused_webpack_module, exports) => {
222
+
223
+
224
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
225
+
226
+
227
+ /***/ }),
228
+
229
+ /***/ 2056:
230
+ /***/ ((__unused_webpack_module, exports) => {
231
+
232
+
233
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
234
+
235
+
236
+ /***/ }),
237
+
238
+ /***/ 2101:
239
+ /***/ ((__unused_webpack_module, exports) => {
240
+
241
+
242
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
243
+ exports.PROVIDERS = void 0;
244
+ var PROVIDERS;
245
+ (function (PROVIDERS) {
246
+ PROVIDERS["PERA"] = "PERA";
247
+ PROVIDERS["METAMASK"] = "METAMASK";
248
+ PROVIDERS["TRUST_WALLET"] = "TRUST_WALLET";
249
+ PROVIDERS["PHANTOM"] = "PHANTOM";
250
+ PROVIDERS["WALLET_CONNECT"] = "WALLET_CONNECT";
251
+ PROVIDERS["SOLANA_MOBILE"] = "SOLANA_MOBILE";
252
+ PROVIDERS["SOLFLARE"] = "SOLFLARE";
253
+ PROVIDERS["COINBASE"] = "COINBASE";
254
+ PROVIDERS["BACKPACK"] = "BACKPACK";
255
+ PROVIDERS["MOBILE"] = "MOBILE";
256
+ })(PROVIDERS || (exports.PROVIDERS = PROVIDERS = {}));
257
+
258
+
259
+ /***/ }),
260
+
261
+ /***/ 2224:
262
+ /***/ ((__unused_webpack_module, exports) => {
263
+
264
+
265
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
266
+ exports.AffiliateSortByEnum = void 0;
267
+ var AffiliateSortByEnum;
268
+ (function (AffiliateSortByEnum) {
269
+ AffiliateSortByEnum["INVITED_ACCOUNTS_COUNT"] = "invitedAccountsCount";
270
+ AffiliateSortByEnum["CREATED_AT"] = "createdAt";
271
+ AffiliateSortByEnum["FEE_SHARE"] = "feeShare";
272
+ AffiliateSortByEnum["ADDRESS"] = "address";
273
+ AffiliateSortByEnum["REFERRAL_TRADING_VOLUME"] = "referralTradingVolume";
274
+ })(AffiliateSortByEnum || (exports.AffiliateSortByEnum = AffiliateSortByEnum = {}));
275
+
276
+
277
+ /***/ }),
278
+
279
+ /***/ 2228:
280
+ /***/ ((__unused_webpack_module, exports) => {
281
+
282
+
283
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
284
+ exports.HTTPSRPC_MAINNET = exports.HTTPSRPC_TESTNET = exports.ChainNames = exports.Chains = void 0;
285
+ var Chains;
286
+ (function (Chains) {
287
+ Chains[Chains["Solana"] = 1] = "Solana";
288
+ Chains[Chains["Algorand"] = 8] = "Algorand";
289
+ Chains[Chains["Polygon"] = 5] = "Polygon";
290
+ Chains[Chains["Bsc"] = 4] = "Bsc";
291
+ Chains[Chains["Avalanche"] = 6] = "Avalanche";
292
+ Chains[Chains["Arbitrum"] = 23] = "Arbitrum";
293
+ Chains[Chains["Optimism"] = 24] = "Optimism";
294
+ Chains[Chains["Base"] = 30] = "Base";
295
+ Chains[Chains["Ethereum"] = 2] = "Ethereum";
296
+ Chains[Chains["Sepolia"] = 10002] = "Sepolia";
297
+ Chains[Chains["ArbitrumSepolia"] = 10003] = "ArbitrumSepolia";
298
+ Chains[Chains["BaseSepolia"] = 10004] = "BaseSepolia";
299
+ Chains[Chains["OptimismSepolia"] = 10005] = "OptimismSepolia";
300
+ Chains[Chains["PolygonAmoy"] = 10007] = "PolygonAmoy";
301
+ })(Chains || (exports.Chains = Chains = {}));
302
+ exports.ChainNames = {
303
+ [Chains.Solana]: "Solana",
304
+ [Chains.Ethereum]: "Ethereum",
305
+ [Chains.Polygon]: "Polygon",
306
+ [Chains.Bsc]: "BNB Chain",
307
+ [Chains.Avalanche]: "Avalanche",
308
+ [Chains.Algorand]: "Algorand",
309
+ [Chains.Arbitrum]: "Arbitrum",
310
+ [Chains.Optimism]: "Optimism",
311
+ [Chains.Base]: "Base",
312
+ [Chains.Sepolia]: "Ethereum Sepolia",
313
+ [Chains.ArbitrumSepolia]: "Arbitrum Sepolia",
314
+ [Chains.BaseSepolia]: "Base Sepolia",
315
+ [Chains.OptimismSepolia]: "Optimism Sepolia",
316
+ [Chains.PolygonAmoy]: "Polygon Amoy",
317
+ };
318
+ exports.HTTPSRPC_TESTNET = {
319
+ [Chains.Bsc]: [
320
+ '',
321
+ 'https://bsc-testnet.public.blastapi.io',
322
+ 'https://bsc-testnet.blockpi.network/v1/rpc/private',
323
+ 'https://bsc-testnet-rpc.publicnode.com',
324
+ 'https://api.zan.top/bsc-testnet',
325
+ 'https://data-seed-prebsc-2-s1.bnbchain.org:8545',
326
+ 'https://data-seed-prebsc-2-s2.bnbchain.org:8545',
327
+ 'https://data-seed-prebsc-2-s3.bnbchain.org:8545',
328
+ 'https://data-seed-prebsc-1-s1.bnbchain.org:8545',
329
+ 'https://data-seed-prebsc-1-s2.bnbchain.org:8545',
330
+ 'https://data-seed-prebsc-1-s3.bnbchain.org:8545',
331
+ 'https://endpoints.omniatech.io/v1/bsc/testnet/public',
332
+ ],
333
+ [Chains.Avalanche]: [
334
+ '',
335
+ 'https://rpc.ankr.com/avalanche_fuji',
336
+ 'https://rpc.ankr.com/avalanche_fuji-c',
337
+ 'https://api.avax-test.network/ext/bc/C/rpc',
338
+ 'https://ava-testnet.public.blastapi.io/ext/bc/C/rpc',
339
+ 'https://endpoints.omniatech.io/v1/avax/fuji/public',
340
+ 'https://avalanche-fuji.blockpi.network/v1/rpc/private',
341
+ 'https://avalanche-fuji-c-chain-rpc.publicnode.com',
342
+ 'https://avalanche-fuji.blockpi.network/v1/rpc/private',
343
+ ],
344
+ [Chains.Sepolia]: [
345
+ 'https://ethereum-sepolia-rpc.publicnode.com',
346
+ 'https://sepolia.gateway.tenderly.co',
347
+ 'https://eth-sepolia.public.blastapi.io',
348
+ 'https://ethereum-sepolia.blockpi.network/v1/rpc/private',
349
+ 'https://sepolia.drpc.org',
350
+ 'https://endpoints.omniatech.io/v1/eth/sepolia/public',
351
+ 'https://1rpc.io/sepolia',
352
+ 'https://gateway.tenderly.co/public/sepolia',
353
+ 'https://sepolia.gateway.tenderly.co',
354
+ 'https://api.zan.top/eth-sepolia',
355
+ 'https://ethereum-sepolia.rpc.subquery.network/public',
356
+ ],
357
+ [Chains.ArbitrumSepolia]: [
358
+ '',
359
+ 'https://arbitrum-sepolia.blockpi.network/v1/rpc/private ',
360
+ 'https://arbitrum-sepolia.gateway.tenderly.co',
361
+ 'https://endpoints.omniatech.io/v1/arbitrum/sepolia/public',
362
+ 'https://api.zan.top/arb-sepolia',
363
+ 'https://sepolia-rollup.arbitrum.io/rpc',
364
+ ],
365
+ [Chains.BaseSepolia]: [
366
+ '',
367
+ 'https://sepolia.base.org',
368
+ 'https://base-sepolia-rpc.publicnode.com',
369
+ 'https://base-sepolia.gateway.tenderly.co',
370
+ 'https://base-sepolia.blockpi.network/v1/rpc/private',
371
+ 'https://node.histori.xyz/base-sepolia/8ry9f6t9dct1se2hlagxnd9n2a',
372
+ ],
373
+ [Chains.OptimismSepolia]: [
374
+ '',
375
+ 'https://optimism-sepolia.blockpi.network/v1/rpc/private',
376
+ 'https://sepolia.optimism.io',
377
+ 'https://api.zan.top/opt-sepolia',
378
+ 'https://optimism-sepolia.gateway.tenderly.co',
379
+ 'https://optimism-sepolia.drpc.org',
380
+ 'https://endpoints.omniatech.io/v1/op/sepolia/public',
381
+ ],
382
+ [Chains.PolygonAmoy]: [
383
+ 'https://rpc-amoy.polygon.technology',
384
+ 'https://polygon-amoy-bor-rpc.publicnode.com',
385
+ 'https://rpc.ankr.com/polygon_amoy',
386
+ 'https://polygon-amoy.drpc.org',
387
+ 'https://api.zan.top/polygon-amoy',
388
+ 'https://polygon-amoy.gateway.tenderly.co',
389
+ ],
390
+ };
391
+ exports.HTTPSRPC_MAINNET = {
392
+ [Chains.Ethereum]: [
393
+ '',
394
+ 'https://eth.llamarpc.com',
395
+ 'https://ethereum.blockpi.network/v1/rpc/public',
396
+ 'https://eth-mainnet.nodereal.io/v1/1659dfb40aa24bbb8153a677b98064d7',
397
+ 'https://uk.rpc.blxrbdn.com',
398
+ 'https://singapore.rpc.blxrbdn.com',
399
+ 'https://virginia.rpc.blxrbdn.com',
400
+ 'https://eth-mainnet.public.blastapi.io',
401
+ 'https://api.securerpc.com/v1',
402
+ 'https://mainnet.gateway.tenderly.co',
403
+ 'https://eth-pokt.nodies.app',
404
+ 'https://eth.blockrazor.xyz',
405
+ 'https://eth.merkle.io',
406
+ 'https://gateway.tenderly.co/public/mainnet',
407
+ 'https://eth.rpc.blxrbdn.com',
408
+ ],
409
+ [Chains.Bsc]: [
410
+ '',
411
+ 'https://bsc.blockrazor.xyz',
412
+ 'https://bscrpc.com',
413
+ 'https://bsc-mainnet.public.blastapi.io',
414
+ 'https://binance.llamarpc.com',
415
+ 'https://go.getblock.io/cc778cdbdf5c4b028ec9456e0e6c0cf3',
416
+ 'https://bsc-pokt.nodies.app',
417
+ 'https://56.rpc.thirdweb.com',
418
+ 'https://bsc.blockpi.network/v1/rpc/private',
419
+ 'https://bsc.rpc.blxrbdn.com',
420
+ 'https://bsc-dataseed.bnbchain.org',
421
+ 'https://endpoints.omniatech.io/v1/bsc/mainnet/public',
422
+ 'https://bsc-dataseed1.ninicoin.io',
423
+ 'https://bsc-dataseed2.defibit.io',
424
+ 'https://bsc-dataseed2.ninicoin.io',
425
+ 'https://0.48.club',
426
+ 'https://bsc-dataseed3.defibit.io',
427
+ ],
428
+ [Chains.Polygon]: [
429
+ '',
430
+ 'https://polygon.llamarpc.com',
431
+ 'https://polygon-rpc.com',
432
+ 'https://rpc-mainnet.matic.quiknode.pro',
433
+ 'https://endpoints.omniatech.io/v1/matic/mainnet/public',
434
+ 'https://polygon-pokt.nodies.app',
435
+ 'https://polygon-bor-rpc.publicnode.com',
436
+ 'https://polygon.rpc.subquery.network/public',
437
+ 'https://polygon-bor-rpc.publicnode.com',
438
+ 'https://polygon.blockpi.network/v1/rpc/private',
439
+ 'https://polygon.api.onfinality.io/public',
440
+ 'https://polygon.lava.build',
441
+ 'https://api.zan.top/polygon-mainnet',
442
+ 'https://polygon.meowrpc.com',
443
+ ],
444
+ [Chains.Avalanche]: [
445
+ '',
446
+ 'https://avalanche-c-chain-rpc.publicnode.com',
447
+ 'https://ava-mainnet.public.blastapi.io/ext/bc/C/rpc',
448
+ 'https://endpoints.omniatech.io/v1/avax/mainnet/public',
449
+ 'https://avalanche-c-chain-rpc.publicnode.com',
450
+ 'https://avalanche.blockpi.network/v1/rpc/private',
451
+ 'https://avalanche.public-rpc.com',
452
+ 'https://avalanche.drpc.org',
453
+ 'https://avax.meowrpc.com',
454
+ 'https://endpoints.omniatech.io/v1/avax/mainnet/public',
455
+ 'https://api.avax.network/ext/bc/C/rpc',
456
+ 'https://1rpc.io/avax/c',
457
+ 'https://avax-pokt.nodies.app/ext/bc/C/rpc',
458
+ 'https://endpoints.omniatech.io/v1/avax/mainnet/public',
459
+ 'https://api.zan.top/avax-mainnet/ext/bc/C/rpc',
460
+ ],
461
+ [Chains.Arbitrum]: [
462
+ '',
463
+ 'https://arbitrum.llamarpc.com',
464
+ 'https://arbitrum.rpc.subquery.network/public',
465
+ 'https://endpoints.omniatech.io/v1/arbitrum/one/public',
466
+ 'https://arbitrum.meowrpc.com',
467
+ 'https://arbitrum.gateway.tenderly.co',
468
+ 'https://arbitrum-one.public.blastapi.io',
469
+ 'https://arb1.lava.build',
470
+ 'https://arbitrum-one.publicnode.com',
471
+ 'https://arbitrum.blockpi.network/v1/rpc/public',
472
+ 'https://arb-pokt.nodies.app',
473
+ 'https://api.zan.top/arb-one',
474
+ 'https://arb1.arbitrum.io/rpc',
475
+ 'https://arbitrum.drpc.org',
476
+ 'https://1rpc.io/arb',
477
+ ],
478
+ [Chains.Optimism]: [
479
+ '',
480
+ 'https://optimism.llamarpc.com',
481
+ 'https://op-pokt.nodies.app',
482
+ 'https://optimism-mainnet.public.blastapi.io',
483
+ 'https://optimism.blockpi.network/v1/rpc/public',
484
+ 'https://endpoints.omniatech.io/v1/op/mainnet/public',
485
+ 'https://optimism-rpc.publicnode.com',
486
+ 'https://optimism.drpc.org',
487
+ 'https://1rpc.io/op',
488
+ 'https://optimism.gateway.tenderly.co',
489
+ 'https://optimism.lava.build',
490
+ 'https://optimism.rpc.subquery.network/public',
491
+ 'https://mainnet.optimism.io',
492
+ 'https://optimism-rpc.publicnode.com',
493
+ 'https://gateway.tenderly.co/public/optimism',
494
+ ],
495
+ [Chains.Base]: [
496
+ '',
497
+ 'https://base.llamarpc.com',
498
+ 'https://base-mainnet.public.blastapi.io',
499
+ 'https://base-rpc.publicnode.com',
500
+ 'https://base.blockpi.network/v1/rpc/public',
501
+ 'https://base.drpc.org',
502
+ 'https://mainnet.base.org',
503
+ 'https://base.api.onfinality.io/public',
504
+ 'https://base-pokt.nodies.app',
505
+ 'https://1rpc.io/base',
506
+ 'https://developer-access-mainnet.base.org',
507
+ 'https://endpoints.omniatech.io/v1/base/mainnet/public',
508
+ 'https://base.rpc.subquery.network/public',
509
+ 'https://base.api.onfinality.io/public',
510
+ 'https://base.meowrpc.com',
511
+ 'https://base.gateway.tenderly.co',
512
+ ],
513
+ };
514
+
515
+
516
+ /***/ }),
517
+
518
+ /***/ 2311:
519
+ /***/ ((__unused_webpack_module, exports) => {
520
+
521
+
522
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
523
+
524
+
525
+ /***/ }),
526
+
527
+ /***/ 2420:
528
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
529
+
530
+
531
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
532
+ if (k2 === undefined) k2 = k;
533
+ var desc = Object.getOwnPropertyDescriptor(m, k);
534
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
535
+ desc = { enumerable: true, get: function() { return m[k]; } };
536
+ }
537
+ Object.defineProperty(o, k2, desc);
538
+ }) : (function(o, m, k, k2) {
539
+ if (k2 === undefined) k2 = k;
540
+ o[k2] = m[k];
541
+ }));
542
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
543
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
544
+ };
545
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
546
+ __exportStar(__webpack_require__(3667), exports);
547
+ __exportStar(__webpack_require__(4237), exports);
548
+ __exportStar(__webpack_require__(4881), exports);
549
+ __exportStar(__webpack_require__(8491), exports);
550
+ __exportStar(__webpack_require__(9971), exports);
551
+ __exportStar(__webpack_require__(5146), exports);
552
+ __exportStar(__webpack_require__(5547), exports);
553
+ __exportStar(__webpack_require__(5441), exports);
554
+ __exportStar(__webpack_require__(1710), exports);
555
+ __exportStar(__webpack_require__(2577), exports);
556
+
557
+
558
+ /***/ }),
559
+
560
+ /***/ 2562:
561
+ /***/ ((__unused_webpack_module, exports) => {
562
+
563
+
564
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
565
+
566
+
567
+ /***/ }),
568
+
569
+ /***/ 2577:
570
+ /***/ ((__unused_webpack_module, exports) => {
571
+
572
+
573
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
574
+
575
+
576
+ /***/ }),
577
+
578
+ /***/ 2623:
579
+ /***/ ((__unused_webpack_module, exports) => {
580
+
581
+
582
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
583
+ exports.TransactionType = exports.CCTPStatus = exports.ActionTypeEnum = exports.OperationStatusEnum = void 0;
584
+ var OperationStatusEnum;
585
+ (function (OperationStatusEnum) {
586
+ OperationStatusEnum["Pending"] = "pending";
587
+ OperationStatusEnum["Completed"] = "completed";
588
+ OperationStatusEnum["Failed"] = "failed";
589
+ OperationStatusEnum["Received"] = "received";
590
+ })(OperationStatusEnum || (exports.OperationStatusEnum = OperationStatusEnum = {}));
591
+ var ActionTypeEnum;
592
+ (function (ActionTypeEnum) {
593
+ ActionTypeEnum["Deposit"] = "deposit";
594
+ ActionTypeEnum["Withdraw"] = "withdraw";
595
+ ActionTypeEnum["Rebalance"] = "rebalance";
596
+ })(ActionTypeEnum || (exports.ActionTypeEnum = ActionTypeEnum = {}));
597
+ var CCTPStatus;
598
+ (function (CCTPStatus) {
599
+ CCTPStatus["PENDING"] = "pending";
600
+ CCTPStatus["COMPLETED"] = "completed";
601
+ CCTPStatus["FAILED"] = "failed";
602
+ })(CCTPStatus || (exports.CCTPStatus = CCTPStatus = {}));
603
+ var TransactionType;
604
+ (function (TransactionType) {
605
+ TransactionType["USER_TO_TMC"] = "user_to_tmc";
606
+ TransactionType["TMC_TO_USER"] = "tmc_to_user";
607
+ TransactionType["RELAYER_TO_TMC"] = "relayer_to_tmc";
608
+ TransactionType["RELAYER_TO_CODEX"] = "relayer_to_codex";
609
+ TransactionType["RELAYER_TO_CIRCLE"] = "relayer_to_circle";
610
+ })(TransactionType || (exports.TransactionType = TransactionType = {}));
611
+
612
+
613
+ /***/ }),
614
+
615
+ /***/ 2739:
616
+ /***/ ((__unused_webpack_module, exports) => {
617
+
618
+
619
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
620
+ exports.Notification = void 0;
621
+ var Notification;
622
+ (function (Notification) {
623
+ Notification[Notification["SELF_TRADE"] = 1] = "SELF_TRADE";
624
+ Notification[Notification["FULL_FILLED"] = 2] = "FULL_FILLED";
625
+ Notification[Notification["FULL_CANCELLED"] = 3] = "FULL_CANCELLED";
626
+ Notification[Notification["PARTIALLY_CANCELLED"] = 4] = "PARTIALLY_CANCELLED";
627
+ Notification[Notification["CREATED"] = 5] = "CREATED";
628
+ })(Notification || (exports.Notification = Notification = {}));
629
+
630
+
631
+ /***/ }),
632
+
633
+ /***/ 2797:
634
+ /***/ ((__unused_webpack_module, exports) => {
635
+
636
+
637
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
638
+ var AvailablePairSettings;
639
+ (function (AvailablePairSettings) {
640
+ AvailablePairSettings["MFT_AUDIO_LINK"] = "mft.audioLink";
641
+ AvailablePairSettings["MFT_TITLE"] = "mft.title";
642
+ AvailablePairSettings["MODE_PRE_SALE"] = "mode.preSale";
643
+ AvailablePairSettings["MAKER_FEE"] = "makerFee";
644
+ AvailablePairSettings["TAKER_FEE"] = "takerFee";
645
+ AvailablePairSettings["VIEW_BASE_COIN_ICON_LINK"] = "view.baseCoinIconLink";
646
+ AvailablePairSettings["VIEW_BASE_COIN_MARKET_LINK"] = "view.baseCoinMarketLink";
647
+ AvailablePairSettings["VIEW_PRICE_COIN_ICON_LINK"] = "view.priceCoinIconLink";
648
+ AvailablePairSettings["VIEW_PRICE_COIN_MARKET_LINK"] = "view.priceCoinMarketLink";
649
+ })(AvailablePairSettings || (AvailablePairSettings = {}));
650
+ exports["default"] = AvailablePairSettings;
651
+
652
+
653
+ /***/ }),
654
+
655
+ /***/ 3004:
656
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
657
+
658
+
659
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
660
+ if (k2 === undefined) k2 = k;
661
+ var desc = Object.getOwnPropertyDescriptor(m, k);
662
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
663
+ desc = { enumerable: true, get: function() { return m[k]; } };
664
+ }
665
+ Object.defineProperty(o, k2, desc);
666
+ }) : (function(o, m, k, k2) {
667
+ if (k2 === undefined) k2 = k;
668
+ o[k2] = m[k];
669
+ }));
670
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
671
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
672
+ };
673
+ var __importDefault = (this && this.__importDefault) || function (mod) {
674
+ return (mod && mod.__esModule) ? mod : { "default": mod };
675
+ };
676
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
677
+ exports.TradingKeyType = exports.OrderType = exports.OrderStatus = exports.OrderSide = exports.AvailablePairSettings = void 0;
678
+ const available_pair_settings_enum_1 = __importDefault(__webpack_require__(2797));
679
+ exports.AvailablePairSettings = available_pair_settings_enum_1.default;
680
+ const order_side_enum_1 = __importDefault(__webpack_require__(835));
681
+ exports.OrderSide = order_side_enum_1.default;
682
+ const order_status_enum_1 = __importDefault(__webpack_require__(1492));
683
+ exports.OrderStatus = order_status_enum_1.default;
684
+ const order_type_enum_1 = __importDefault(__webpack_require__(1134));
685
+ exports.OrderType = order_type_enum_1.default;
686
+ const tradingKeyType_enum_1 = __webpack_require__(3487);
687
+ Object.defineProperty(exports, "TradingKeyType", ({ enumerable: true, get: function () { return tradingKeyType_enum_1.TradingKeyType; } }));
688
+ __exportStar(__webpack_require__(893), exports);
689
+ __exportStar(__webpack_require__(3338), exports);
690
+ __exportStar(__webpack_require__(3245), exports);
691
+ __exportStar(__webpack_require__(6828), exports);
692
+ __exportStar(__webpack_require__(2224), exports);
693
+ __exportStar(__webpack_require__(892), exports);
694
+ __exportStar(__webpack_require__(2623), exports);
695
+ __exportStar(__webpack_require__(3854), exports);
696
+ __exportStar(__webpack_require__(4132), exports);
697
+ __exportStar(__webpack_require__(3516), exports);
698
+ __exportStar(__webpack_require__(4199), exports);
699
+ __exportStar(__webpack_require__(1682), exports);
700
+ __exportStar(__webpack_require__(1283), exports);
701
+ __exportStar(__webpack_require__(5237), exports);
702
+ __exportStar(__webpack_require__(1048), exports);
703
+
704
+
705
+ /***/ }),
706
+
707
+ /***/ 3192:
708
+ /***/ ((__unused_webpack_module, exports) => {
709
+
710
+
711
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
712
+
713
+
714
+ /***/ }),
715
+
716
+ /***/ 3232:
717
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
718
+
719
+
720
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
721
+ exports.TradingKeyType = void 0;
722
+ const _enums_1 = __webpack_require__(9965);
723
+ Object.defineProperty(exports, "TradingKeyType", ({ enumerable: true, get: function () { return _enums_1.TradingKeyType; } }));
724
+
725
+
726
+ /***/ }),
727
+
728
+ /***/ 3245:
729
+ /***/ ((__unused_webpack_module, exports) => {
730
+
731
+
732
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
733
+ exports.PromptTypeEnum = void 0;
734
+ var PromptTypeEnum;
735
+ (function (PromptTypeEnum) {
736
+ PromptTypeEnum["INSTRUCTIONS"] = "INSTRUCTIONS";
737
+ PromptTypeEnum["TEXT_STYLE"] = "TEXT_STYLE";
738
+ PromptTypeEnum["TEXT_TONE"] = "TEXT_TONE";
739
+ PromptTypeEnum["REACTION_TYPE"] = "REACTION_TYPE";
740
+ PromptTypeEnum["COMMENT_LENGTH"] = "COMMENT_LENGTH";
741
+ PromptTypeEnum["CONTEXT"] = "CONTEXT";
742
+ })(PromptTypeEnum || (exports.PromptTypeEnum = PromptTypeEnum = {}));
743
+
744
+
745
+ /***/ }),
746
+
747
+ /***/ 3286:
748
+ /***/ ((__unused_webpack_module, exports) => {
749
+
750
+
751
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
752
+
753
+
754
+ /***/ }),
755
+
756
+ /***/ 3338:
757
+ /***/ ((__unused_webpack_module, exports) => {
758
+
759
+
760
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
761
+ exports.TweetType = exports.SeasonStatusEnum = void 0;
762
+ var SeasonStatusEnum;
763
+ (function (SeasonStatusEnum) {
764
+ SeasonStatusEnum["CREATED"] = "created";
765
+ SeasonStatusEnum["STARTED"] = "started";
766
+ SeasonStatusEnum["PAUSED"] = "paused";
767
+ SeasonStatusEnum["CLOSED"] = "closed";
768
+ })(SeasonStatusEnum || (exports.SeasonStatusEnum = SeasonStatusEnum = {}));
769
+ var TweetType;
770
+ (function (TweetType) {
771
+ TweetType["Post"] = "POST";
772
+ TweetType["Comment"] = "COMMENT";
773
+ })(TweetType || (exports.TweetType = TweetType = {}));
774
+
775
+
776
+ /***/ }),
777
+
778
+ /***/ 3487:
779
+ /***/ ((__unused_webpack_module, exports) => {
780
+
781
+
782
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
783
+ exports.TradingKeyType = void 0;
784
+ var TradingKeyType;
785
+ (function (TradingKeyType) {
786
+ TradingKeyType["User"] = "User";
787
+ TradingKeyType["Api"] = "API";
788
+ })(TradingKeyType || (exports.TradingKeyType = TradingKeyType = {}));
789
+
790
+
791
+ /***/ }),
792
+
793
+ /***/ 3516:
794
+ /***/ ((__unused_webpack_module, exports) => {
795
+
796
+
797
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
798
+ exports.SortDirectionEnum = void 0;
799
+ var SortDirectionEnum;
800
+ (function (SortDirectionEnum) {
801
+ SortDirectionEnum["ASCENDING"] = "ASC";
802
+ SortDirectionEnum["DESCENDING"] = "DESC";
803
+ })(SortDirectionEnum || (exports.SortDirectionEnum = SortDirectionEnum = {}));
804
+
805
+
806
+ /***/ }),
807
+
808
+ /***/ 3667:
809
+ /***/ ((__unused_webpack_module, exports) => {
810
+
811
+
812
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
813
+
814
+
815
+ /***/ }),
816
+
817
+ /***/ 3713:
818
+ /***/ ((__unused_webpack_module, exports) => {
819
+
820
+
821
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
822
+
823
+
824
+ /***/ }),
825
+
826
+ /***/ 3764:
827
+ /***/ ((__unused_webpack_module, exports) => {
828
+
829
+
830
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
831
+
832
+
833
+ /***/ }),
834
+
835
+ /***/ 3854:
836
+ /***/ ((__unused_webpack_module, exports) => {
837
+
838
+
839
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
840
+ exports.TradeSubStatus = exports.TradeStatus = void 0;
841
+ var TradeStatus;
842
+ (function (TradeStatus) {
843
+ TradeStatus["Unconfirmed"] = "UNCONFIRMED";
844
+ TradeStatus["Confirmed"] = "CONFIRMED";
845
+ TradeStatus["Rejected"] = "REJECTED";
846
+ })(TradeStatus || (exports.TradeStatus = TradeStatus = {}));
847
+ var TradeSubStatus;
848
+ (function (TradeSubStatus) {
849
+ TradeSubStatus["RESUBMITTED"] = "RESUBMITTED";
850
+ TradeSubStatus["PROCESSED"] = "PROCESSED";
851
+ TradeSubStatus["REMATCHED"] = "REMATCHED";
852
+ })(TradeSubStatus || (exports.TradeSubStatus = TradeSubStatus = {}));
853
+
854
+
855
+ /***/ }),
856
+
857
+ /***/ 4132:
858
+ /***/ ((__unused_webpack_module, exports) => {
859
+
860
+
861
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
862
+ exports.MarketMakerSortByEnum = exports.MarketMakerRebateTier = void 0;
863
+ var MarketMakerRebateTier;
864
+ (function (MarketMakerRebateTier) {
865
+ MarketMakerRebateTier[MarketMakerRebateTier["FIRST"] = 1] = "FIRST";
866
+ MarketMakerRebateTier[MarketMakerRebateTier["SECOND"] = 2] = "SECOND";
867
+ MarketMakerRebateTier[MarketMakerRebateTier["THIRD"] = 3] = "THIRD";
868
+ MarketMakerRebateTier[MarketMakerRebateTier["FOURTH"] = 4] = "FOURTH";
869
+ })(MarketMakerRebateTier || (exports.MarketMakerRebateTier = MarketMakerRebateTier = {}));
870
+ var MarketMakerSortByEnum;
871
+ (function (MarketMakerSortByEnum) {
872
+ MarketMakerSortByEnum["REBATE_TIER"] = "rebateTier";
873
+ MarketMakerSortByEnum["CREATED_AT"] = "createdAt";
874
+ MarketMakerSortByEnum["NAME"] = "name";
875
+ MarketMakerSortByEnum["TAKER_FEE"] = "takerFee";
876
+ MarketMakerSortByEnum["ENABLED"] = "enabled";
877
+ MarketMakerSortByEnum["ADDRESS"] = "address";
878
+ MarketMakerSortByEnum["CHAIN"] = "chainId";
879
+ })(MarketMakerSortByEnum || (exports.MarketMakerSortByEnum = MarketMakerSortByEnum = {}));
880
+
881
+
882
+ /***/ }),
883
+
884
+ /***/ 4199:
885
+ /***/ ((__unused_webpack_module, exports) => {
886
+
887
+
888
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
889
+ exports.ScheduledNotificationStatusEnum = exports.NotificationStatusEnum = exports.NotificationPriorityEnum = exports.CombinedNotificationEnum = exports.AccountNotificationEnum = exports.GlobalNotificationEnum = void 0;
890
+ var GlobalNotificationEnum;
891
+ (function (GlobalNotificationEnum) {
892
+ GlobalNotificationEnum["GLOBAL_PAIR_DELISTING"] = "GLOBAL_PAIR_DELISTING";
893
+ GlobalNotificationEnum["GLOBAL_NEW_PAIR_LISTING"] = "GLOBAL_NEW_PAIR_LISTING";
894
+ GlobalNotificationEnum["GLOBAL_SYSTEM_MAINTENANCE"] = "GLOBAL_SYSTEM_MAINTENANCE";
895
+ GlobalNotificationEnum["GLOBAL_SMART_CONTRACT_UPDATE"] = "GLOBAL_SMART_CONTRACT_UPDATE";
896
+ })(GlobalNotificationEnum || (exports.GlobalNotificationEnum = GlobalNotificationEnum = {}));
897
+ var AccountNotificationEnum;
898
+ (function (AccountNotificationEnum) {
899
+ AccountNotificationEnum["ACCOUNT_POINTS_UNLOCK_ACHIEVEMENT"] = "ACCOUNT_POINTS_UNLOCK_ACHIEVEMENT";
900
+ AccountNotificationEnum["ACCOUNT_KYC_STATUS_CHANGED"] = "ACCOUNT_KYC_STATUS_CHANGED";
901
+ AccountNotificationEnum["ACCOUNT_AFFILIATE_DASHBOARD_UNLOCKED"] = "ACCOUNT_AFFILIATE_DASHBOARD_UNLOCKED";
902
+ })(AccountNotificationEnum || (exports.AccountNotificationEnum = AccountNotificationEnum = {}));
903
+ exports.CombinedNotificationEnum = {
904
+ ...GlobalNotificationEnum,
905
+ ...AccountNotificationEnum,
906
+ };
907
+ var NotificationPriorityEnum;
908
+ (function (NotificationPriorityEnum) {
909
+ NotificationPriorityEnum["CRITICAL"] = "CRITICAL";
910
+ NotificationPriorityEnum["IMPORTANT"] = "IMPORTANT";
911
+ NotificationPriorityEnum["INFO"] = "INFO";
912
+ })(NotificationPriorityEnum || (exports.NotificationPriorityEnum = NotificationPriorityEnum = {}));
913
+ var NotificationStatusEnum;
914
+ (function (NotificationStatusEnum) {
915
+ NotificationStatusEnum["UNREAD"] = "UNREAD";
916
+ NotificationStatusEnum["READ"] = "READ";
917
+ })(NotificationStatusEnum || (exports.NotificationStatusEnum = NotificationStatusEnum = {}));
918
+ var ScheduledNotificationStatusEnum;
919
+ (function (ScheduledNotificationStatusEnum) {
920
+ ScheduledNotificationStatusEnum["PENDING"] = "PENDING";
921
+ ScheduledNotificationStatusEnum["PROCESSED"] = "PROCESSED";
922
+ ScheduledNotificationStatusEnum["FAILED"] = "FAILED";
923
+ })(ScheduledNotificationStatusEnum || (exports.ScheduledNotificationStatusEnum = ScheduledNotificationStatusEnum = {}));
924
+
925
+
926
+ /***/ }),
927
+
928
+ /***/ 4237:
929
+ /***/ ((__unused_webpack_module, exports) => {
930
+
931
+
932
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
933
+ ;
934
+
935
+
936
+ /***/ }),
937
+
938
+ /***/ 4881:
939
+ /***/ ((__unused_webpack_module, exports) => {
940
+
941
+
942
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
943
+
944
+
945
+ /***/ }),
946
+
947
+ /***/ 4927:
948
+ /***/ ((__unused_webpack_module, exports) => {
949
+
950
+
951
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
952
+
953
+
954
+ /***/ }),
955
+
956
+ /***/ 4951:
957
+ /***/ ((__unused_webpack_module, exports) => {
958
+
959
+
960
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
961
+
962
+
963
+ /***/ }),
964
+
965
+ /***/ 5146:
966
+ /***/ ((__unused_webpack_module, exports) => {
967
+
968
+
969
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
970
+
971
+
972
+ /***/ }),
973
+
974
+ /***/ 5237:
975
+ /***/ ((__unused_webpack_module, exports) => {
976
+
977
+
978
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
979
+ exports.UpgradeStatus = void 0;
980
+ var UpgradeStatus;
981
+ (function (UpgradeStatus) {
982
+ UpgradeStatus["SUCCESS"] = "success";
983
+ UpgradeStatus["FAILED"] = "failed";
984
+ UpgradeStatus["PENDING"] = "pending";
985
+ })(UpgradeStatus || (exports.UpgradeStatus = UpgradeStatus = {}));
986
+
987
+
988
+ /***/ }),
989
+
990
+ /***/ 5441:
991
+ /***/ ((__unused_webpack_module, exports) => {
992
+
993
+
994
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
995
+
996
+
997
+ /***/ }),
998
+
999
+ /***/ 5443:
1000
+ /***/ ((__unused_webpack_module, exports) => {
1001
+
1002
+
1003
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1004
+
1005
+
1006
+ /***/ }),
1007
+
1008
+ /***/ 5547:
1009
+ /***/ ((__unused_webpack_module, exports) => {
1010
+
1011
+
1012
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1013
+
1014
+
1015
+ /***/ }),
1016
+
1017
+ /***/ 5874:
1018
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1019
+
1020
+
1021
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
1022
+ if (k2 === undefined) k2 = k;
1023
+ var desc = Object.getOwnPropertyDescriptor(m, k);
1024
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
1025
+ desc = { enumerable: true, get: function() { return m[k]; } };
1026
+ }
1027
+ Object.defineProperty(o, k2, desc);
1028
+ }) : (function(o, m, k, k2) {
1029
+ if (k2 === undefined) k2 = k;
1030
+ o[k2] = m[k];
1031
+ }));
1032
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
1033
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
1034
+ };
1035
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1036
+ __exportStar(__webpack_require__(2562), exports);
1037
+ __exportStar(__webpack_require__(9610), exports);
1038
+ __exportStar(__webpack_require__(528), exports);
1039
+ __exportStar(__webpack_require__(9890), exports);
1040
+ __exportStar(__webpack_require__(3286), exports);
1041
+ __exportStar(__webpack_require__(8252), exports);
1042
+ __exportStar(__webpack_require__(7979), exports);
1043
+ __exportStar(__webpack_require__(231), exports);
1044
+
1045
+
1046
+ /***/ }),
1047
+
1048
+ /***/ 6119:
1049
+ /***/ ((__unused_webpack_module, exports) => {
1050
+
1051
+
1052
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1053
+ exports.TwitterAccessScopeEnum = void 0;
1054
+ var TwitterAccessScopeEnum;
1055
+ (function (TwitterAccessScopeEnum) {
1056
+ TwitterAccessScopeEnum["USERS_READ"] = "users.read";
1057
+ TwitterAccessScopeEnum["FOLLOWS_READ"] = "follows.read";
1058
+ TwitterAccessScopeEnum["FOLLOWS_WRITE"] = "follows.write";
1059
+ TwitterAccessScopeEnum["TWEET_READ"] = "tweet.read";
1060
+ TwitterAccessScopeEnum["TWEET_WRITE"] = "tweet.write";
1061
+ TwitterAccessScopeEnum["OFFLINE_ACCESS"] = "offline.access";
1062
+ TwitterAccessScopeEnum["LIKE_READ"] = "like.read";
1063
+ TwitterAccessScopeEnum["LIKE_WRITE"] = "like.write";
1064
+ })(TwitterAccessScopeEnum || (exports.TwitterAccessScopeEnum = TwitterAccessScopeEnum = {}));
1065
+
1066
+
1067
+ /***/ }),
1068
+
1069
+ /***/ 6828:
1070
+ /***/ ((__unused_webpack_module, exports) => {
1071
+
1072
+
1073
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1074
+ exports.KYCAuthenticationStatus = exports.LastLookAction = exports.FeeTier = void 0;
1075
+ var FeeTier;
1076
+ (function (FeeTier) {
1077
+ FeeTier[FeeTier["FEE_TIER_1"] = 1] = "FEE_TIER_1";
1078
+ FeeTier[FeeTier["FEE_TIER_2"] = 2] = "FEE_TIER_2";
1079
+ FeeTier[FeeTier["FEE_TIER_3"] = 3] = "FEE_TIER_3";
1080
+ FeeTier[FeeTier["FEE_TIER_4"] = 4] = "FEE_TIER_4";
1081
+ FeeTier[FeeTier["FEE_TIER_5"] = 5] = "FEE_TIER_5";
1082
+ FeeTier[FeeTier["FEE_TIER_6"] = 6] = "FEE_TIER_6";
1083
+ })(FeeTier || (exports.FeeTier = FeeTier = {}));
1084
+ var LastLookAction;
1085
+ (function (LastLookAction) {
1086
+ LastLookAction[LastLookAction["Approve"] = 1] = "Approve";
1087
+ LastLookAction[LastLookAction["Reject"] = 0] = "Reject";
1088
+ })(LastLookAction || (exports.LastLookAction = LastLookAction = {}));
1089
+ var KYCAuthenticationStatus;
1090
+ (function (KYCAuthenticationStatus) {
1091
+ KYCAuthenticationStatus["INITIATED"] = "INITIATED";
1092
+ KYCAuthenticationStatus["CREATED"] = "CREATED";
1093
+ KYCAuthenticationStatus["PROCESSING"] = "PROCESSING";
1094
+ KYCAuthenticationStatus["APPROVED"] = "APPROVED";
1095
+ KYCAuthenticationStatus["REJECTED"] = "REJECTED";
1096
+ })(KYCAuthenticationStatus || (exports.KYCAuthenticationStatus = KYCAuthenticationStatus = {}));
1097
+
1098
+
1099
+ /***/ }),
1100
+
1101
+ /***/ 6978:
1102
+ /***/ ((__unused_webpack_module, exports) => {
1103
+
1104
+
1105
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1106
+ exports.MaintenanceMode = void 0;
1107
+ var MaintenanceMode;
1108
+ (function (MaintenanceMode) {
1109
+ MaintenanceMode[MaintenanceMode["Off"] = 0] = "Off";
1110
+ MaintenanceMode[MaintenanceMode["Full"] = 1] = "Full";
1111
+ MaintenanceMode[MaintenanceMode["Partial"] = 2] = "Partial";
1112
+ MaintenanceMode[MaintenanceMode["Scheduled"] = 3] = "Scheduled";
1113
+ })(MaintenanceMode || (exports.MaintenanceMode = MaintenanceMode = {}));
1114
+
1115
+
1116
+ /***/ }),
1117
+
1118
+ /***/ 7054:
1119
+ /***/ ((__unused_webpack_module, exports) => {
1120
+
1121
+
1122
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1123
+
1124
+
1125
+ /***/ }),
1126
+
1127
+ /***/ 7525:
1128
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1129
+
1130
+
1131
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
1132
+ if (k2 === undefined) k2 = k;
1133
+ var desc = Object.getOwnPropertyDescriptor(m, k);
1134
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
1135
+ desc = { enumerable: true, get: function() { return m[k]; } };
1136
+ }
1137
+ Object.defineProperty(o, k2, desc);
1138
+ }) : (function(o, m, k, k2) {
1139
+ if (k2 === undefined) k2 = k;
1140
+ o[k2] = m[k];
1141
+ }));
1142
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
1143
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
1144
+ };
1145
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1146
+ __exportStar(__webpack_require__(4927), exports);
1147
+ __exportStar(__webpack_require__(2056), exports);
1148
+ __exportStar(__webpack_require__(3764), exports);
1149
+ __exportStar(__webpack_require__(7704), exports);
1150
+ __exportStar(__webpack_require__(3713), exports);
1151
+ __exportStar(__webpack_require__(3232), exports);
1152
+ __exportStar(__webpack_require__(4951), exports);
1153
+ __exportStar(__webpack_require__(2101), exports);
1154
+ __exportStar(__webpack_require__(3192), exports);
1155
+ __exportStar(__webpack_require__(5443), exports);
1156
+ __exportStar(__webpack_require__(7054), exports);
1157
+ __exportStar(__webpack_require__(2311), exports);
1158
+ __exportStar(__webpack_require__(9035), exports);
1159
+ __exportStar(__webpack_require__(8212), exports);
1160
+ __exportStar(__webpack_require__(1817), exports);
1161
+ __exportStar(__webpack_require__(2420), exports);
1162
+ __exportStar(__webpack_require__(5874), exports);
1163
+
1164
+
1165
+ /***/ }),
1166
+
1167
+ /***/ 7704:
1168
+ /***/ ((__unused_webpack_module, exports) => {
1169
+
1170
+
1171
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1172
+
1173
+
1174
+ /***/ }),
1175
+
1176
+ /***/ 7979:
1177
+ /***/ ((__unused_webpack_module, exports) => {
1178
+
1179
+
1180
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1181
+
1182
+
1183
+ /***/ }),
1184
+
1185
+ /***/ 8212:
1186
+ /***/ ((__unused_webpack_module, exports) => {
1187
+
1188
+
1189
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1190
+
1191
+
1192
+ /***/ }),
1193
+
1194
+ /***/ 8252:
1195
+ /***/ ((__unused_webpack_module, exports) => {
1196
+
1197
+
1198
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1199
+
1200
+
1201
+ /***/ }),
1202
+
1203
+ /***/ 8491:
1204
+ /***/ ((__unused_webpack_module, exports) => {
1205
+
1206
+
1207
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1208
+ exports.ISetting = void 0;
1209
+ class ISetting {
1210
+ }
1211
+ exports.ISetting = ISetting;
1212
+
1213
+
1214
+ /***/ }),
1215
+
1216
+ /***/ 9035:
1217
+ /***/ ((__unused_webpack_module, exports) => {
1218
+
1219
+
1220
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1221
+
1222
+
1223
+ /***/ }),
1224
+
1225
+ /***/ 9610:
1226
+ /***/ ((__unused_webpack_module, exports) => {
1227
+
1228
+
1229
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1230
+
1231
+
1232
+ /***/ }),
1233
+
1234
+ /***/ 9890:
1235
+ /***/ ((__unused_webpack_module, exports) => {
1236
+
1237
+
1238
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1239
+
1240
+
1241
+ /***/ }),
1242
+
1243
+ /***/ 9965:
1244
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1245
+
1246
+
1247
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
1248
+ if (k2 === undefined) k2 = k;
1249
+ var desc = Object.getOwnPropertyDescriptor(m, k);
1250
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
1251
+ desc = { enumerable: true, get: function() { return m[k]; } };
1252
+ }
1253
+ Object.defineProperty(o, k2, desc);
1254
+ }) : (function(o, m, k, k2) {
1255
+ if (k2 === undefined) k2 = k;
1256
+ o[k2] = m[k];
1257
+ }));
1258
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
1259
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
1260
+ };
1261
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1262
+ __exportStar(__webpack_require__(2228), exports);
1263
+ __exportStar(__webpack_require__(6978), exports);
1264
+ __exportStar(__webpack_require__(2739), exports);
1265
+ __exportStar(__webpack_require__(6119), exports);
1266
+ __exportStar(__webpack_require__(3004), exports);
1267
+
1268
+
1269
+ /***/ }),
1270
+
1271
+ /***/ 9971:
1272
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1273
+
1274
+
1275
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1276
+ exports.WithdrawalWalletType = void 0;
1277
+ const _enums_1 = __webpack_require__(9965);
1278
+ Object.defineProperty(exports, "WithdrawalWalletType", ({ enumerable: true, get: function () { return _enums_1.WithdrawalWalletType; } }));
1279
+
1280
+
1281
+ /***/ })
1282
+
1283
+ /******/ });
1284
+ /************************************************************************/
1285
+ /******/ // The module cache
1286
+ /******/ var __webpack_module_cache__ = {};
1287
+ /******/
1288
+ /******/ // The require function
1289
+ /******/ function __webpack_require__(moduleId) {
1290
+ /******/ // Check if module is in cache
1291
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
1292
+ /******/ if (cachedModule !== undefined) {
1293
+ /******/ return cachedModule.exports;
1294
+ /******/ }
1295
+ /******/ // Create a new module (and put it into the cache)
1296
+ /******/ var module = __webpack_module_cache__[moduleId] = {
1297
+ /******/ // no module.id needed
1298
+ /******/ // no module.loaded needed
1299
+ /******/ exports: {}
1300
+ /******/ };
1301
+ /******/
1302
+ /******/ // Execute the module function
1303
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
1304
+ /******/
1305
+ /******/ // Return the exports of the module
1306
+ /******/ return module.exports;
1307
+ /******/ }
1308
+ /******/
1309
+ /************************************************************************/
1310
+ /******/
1311
+ /******/ // startup
1312
+ /******/ // Load entry module and return exports
1313
+ /******/ // This entry module is referenced by other modules so it can't be inlined
1314
+ /******/ var __webpack_exports__ = __webpack_require__(7525);
1315
+ /******/
1316
+ /******/ return __webpack_exports__;
1317
+ /******/ })()
1318
+ ;
1319
+ });