@ultrade/shared 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/common/index.d.ts +0 -5
  2. package/dist/common/index.js +0 -643
  3. package/dist/constants/index.d.ts +0 -1
  4. package/dist/constants/index.js +0 -78
  5. package/dist/helpers/assert.helper.js +0 -78
  6. package/dist/helpers/atomic.helper.js +0 -78
  7. package/dist/helpers/balance.helper.js +0 -78
  8. package/dist/helpers/codex/common.helper.js +0 -78
  9. package/dist/helpers/codex/index.js +0 -78
  10. package/dist/helpers/codex/mbr.helper.js +0 -78
  11. package/dist/helpers/codex/mna.helper.js +0 -78
  12. package/dist/helpers/codex/order.helper.js +0 -78
  13. package/dist/helpers/codex/setGlobal.helper.js +0 -78
  14. package/dist/helpers/codex/transfer.helper.js +0 -78
  15. package/dist/helpers/codex/txn.helper.js +0 -78
  16. package/dist/helpers/codex.helper.js +0 -78
  17. package/dist/helpers/eth.helper.js +0 -78
  18. package/dist/helpers/vaa.helper.js +0 -78
  19. package/dist/helpers/withdraw.helper.js +0 -78
  20. package/package.json +3 -9
  21. package/dist/common/awsKms.d.ts +0 -2
  22. package/dist/common/awsKms.js +0 -255
  23. package/dist/common/indexer.helper.d.ts +0 -2
  24. package/dist/common/indexer.helper.js +0 -377
  25. package/dist/common/logger.d.ts +0 -32
  26. package/dist/common/logger.js +0 -178
  27. package/dist/common/migration.helpers.d.ts +0 -4
  28. package/dist/common/migration.helpers.js +0 -33
  29. package/dist/common/redis.helper.d.ts +0 -27
  30. package/dist/common/redis.helper.js +0 -249
  31. package/dist/constants/queue.d.ts +0 -39
  32. package/dist/helpers/hummingbots.helper.d.ts +0 -2
  33. package/dist/helpers/hummingbots.helper.js +0 -152
  34. package/dist/interfaces/controller.interface.d.ts +0 -6
@@ -2882,7 +2882,6 @@ __exportStar(__webpack_require__(2806), exports);
2882
2882
  __exportStar(__webpack_require__(661), exports);
2883
2883
  __exportStar(__webpack_require__(9862), exports);
2884
2884
  __exportStar(__webpack_require__(935), exports);
2885
- __exportStar(__webpack_require__(7801), exports);
2886
2885
  __exportStar(__webpack_require__(2169), exports);
2887
2886
  __exportStar(__webpack_require__(4574), exports);
2888
2887
 
@@ -3278,83 +3277,6 @@ function mapOrderTypeShortToLong(value) {
3278
3277
  }
3279
3278
 
3280
3279
 
3281
- /***/ }),
3282
-
3283
- /***/ 7801:
3284
- /***/ ((__unused_webpack_module, exports) => {
3285
-
3286
-
3287
- Object.defineProperty(exports, "__esModule", ({ value: true }));
3288
- exports.QueueOptions = exports.QueueNames = void 0;
3289
- var QueueNames;
3290
- (function (QueueNames) {
3291
- QueueNames["CANCELLATION_TRADE"] = "cancellation_trade";
3292
- QueueNames["CANCEL_ORDER"] = "cancelOrder";
3293
- QueueNames["MAINTENANCE"] = "maintenance";
3294
- QueueNames["SYSTEM"] = "system";
3295
- QueueNames["NEW_ORDER"] = "newOrder";
3296
- QueueNames["PROCESS_WALLET_TRANSACTION"] = "wallet_transaction";
3297
- QueueNames["LAST_LOOK_TRADE"] = "last_look_trade";
3298
- QueueNames["SEND_TRADE_TO_SETTLE"] = "send_trade_to_settle";
3299
- QueueNames["TRADE_FIRE"] = "trade_fire";
3300
- QueueNames["TRADE_CONFIRMED"] = "trade_confirmed";
3301
- QueueNames["ORDER_OPERATION"] = "order_operation";
3302
- QueueNames["ORDER_RESULT"] = "order_result";
3303
- QueueNames["TRADES_QUEUE"] = "trades_q";
3304
- QueueNames["OPEN_ORDER_BOOK"] = "open_order_book";
3305
- QueueNames["SOCKET_WALLET_TRANSACTION"] = "socket_wallet_transaction";
3306
- QueueNames["STREAM_UPDATE_QUOTE"] = "stream_update_quote";
3307
- QueueNames["STREAM_UPDATE_LAST_PRICE"] = "stream_update_last_price";
3308
- QueueNames["STREAM_UPDATE_DEPTH"] = "stream_update_depth";
3309
- QueueNames["STREAM_UPDATE_LAST_CANDLESTICK"] = "stream_update_last_candlestick";
3310
- QueueNames["STREAM_UPDATE_ORDERS"] = "stream_update_orders";
3311
- QueueNames["STREAM_UPDATE_TRADES"] = "stream_update_trades";
3312
- QueueNames["STREAM_UPDATE_ORDER_BOOK"] = "stream_update_order_book";
3313
- QueueNames["CODEX_DEPOSIT"] = "codex_deposit";
3314
- QueueNames["CODEX_TRANSFER"] = "codex_transfer";
3315
- QueueNames["CODEX_WITHDRAWAL"] = "codex_withdrawal";
3316
- QueueNames["CODEX_BALANCES"] = "codex_balances";
3317
- QueueNames["CODEX_TRADE"] = "codex_trade";
3318
- QueueNames["VAA_LOG"] = "vaa_log";
3319
- QueueNames["SETTINGS_UPDATE"] = "settings_update";
3320
- QueueNames["POINT_SYSTEM_SETTINGS_UPDATE"] = "point_system_settings_update";
3321
- QueueNames["NEW_NOTIFICATION"] = "new_notification";
3322
- })(QueueNames || (exports.QueueNames = QueueNames = {}));
3323
- exports.QueueOptions = {
3324
- [QueueNames.CANCELLATION_TRADE]: { options: { durable: true } },
3325
- [QueueNames.CANCEL_ORDER]: { options: { durable: true } },
3326
- [QueueNames.CODEX_BALANCES]: { options: { durable: true } },
3327
- [QueueNames.CODEX_DEPOSIT]: { options: { durable: true } },
3328
- [QueueNames.CODEX_TRANSFER]: { options: { durable: true } },
3329
- [QueueNames.CODEX_TRADE]: { options: { durable: true } },
3330
- [QueueNames.CODEX_WITHDRAWAL]: { options: { durable: true } },
3331
- [QueueNames.LAST_LOOK_TRADE]: { options: { durable: true } },
3332
- [QueueNames.MAINTENANCE]: { options: { durable: true } },
3333
- [QueueNames.SYSTEM]: { options: { durable: true } },
3334
- [QueueNames.NEW_ORDER]: { options: { durable: true } },
3335
- [QueueNames.OPEN_ORDER_BOOK]: { options: { durable: true } },
3336
- [QueueNames.ORDER_OPERATION]: { options: { durable: true, maxPriority: 5 } },
3337
- [QueueNames.ORDER_RESULT]: { options: { durable: true } },
3338
- [QueueNames.PROCESS_WALLET_TRANSACTION]: { options: { durable: true } },
3339
- [QueueNames.SEND_TRADE_TO_SETTLE]: { options: { durable: true } },
3340
- [QueueNames.SOCKET_WALLET_TRANSACTION]: { options: { durable: true } },
3341
- [QueueNames.STREAM_UPDATE_DEPTH]: { options: { durable: true } },
3342
- [QueueNames.STREAM_UPDATE_LAST_CANDLESTICK]: { options: { durable: true } },
3343
- [QueueNames.STREAM_UPDATE_LAST_PRICE]: { options: { durable: true } },
3344
- [QueueNames.STREAM_UPDATE_ORDERS]: { options: { durable: true } },
3345
- [QueueNames.STREAM_UPDATE_ORDER_BOOK]: { options: { durable: true } },
3346
- [QueueNames.STREAM_UPDATE_QUOTE]: { options: { durable: true } },
3347
- [QueueNames.STREAM_UPDATE_TRADES]: { options: { durable: true } },
3348
- [QueueNames.TRADES_QUEUE]: { options: { durable: true } },
3349
- [QueueNames.TRADE_CONFIRMED]: { options: { durable: true } },
3350
- [QueueNames.TRADE_FIRE]: { options: { durable: true } },
3351
- [QueueNames.VAA_LOG]: { options: { durable: true } },
3352
- [QueueNames.SETTINGS_UPDATE]: { options: { durable: true } },
3353
- [QueueNames.POINT_SYSTEM_SETTINGS_UPDATE]: { options: { durable: true } },
3354
- [QueueNames.NEW_NOTIFICATION]: { options: { durable: true } },
3355
- };
3356
-
3357
-
3358
3280
  /***/ }),
3359
3281
 
3360
3282
  /***/ 7835:
@@ -2882,7 +2882,6 @@ __exportStar(__webpack_require__(2806), exports);
2882
2882
  __exportStar(__webpack_require__(661), exports);
2883
2883
  __exportStar(__webpack_require__(9862), exports);
2884
2884
  __exportStar(__webpack_require__(935), exports);
2885
- __exportStar(__webpack_require__(7801), exports);
2886
2885
  __exportStar(__webpack_require__(2169), exports);
2887
2886
  __exportStar(__webpack_require__(4574), exports);
2888
2887
 
@@ -3278,83 +3277,6 @@ function mapOrderTypeShortToLong(value) {
3278
3277
  }
3279
3278
 
3280
3279
 
3281
- /***/ }),
3282
-
3283
- /***/ 7801:
3284
- /***/ ((__unused_webpack_module, exports) => {
3285
-
3286
-
3287
- Object.defineProperty(exports, "__esModule", ({ value: true }));
3288
- exports.QueueOptions = exports.QueueNames = void 0;
3289
- var QueueNames;
3290
- (function (QueueNames) {
3291
- QueueNames["CANCELLATION_TRADE"] = "cancellation_trade";
3292
- QueueNames["CANCEL_ORDER"] = "cancelOrder";
3293
- QueueNames["MAINTENANCE"] = "maintenance";
3294
- QueueNames["SYSTEM"] = "system";
3295
- QueueNames["NEW_ORDER"] = "newOrder";
3296
- QueueNames["PROCESS_WALLET_TRANSACTION"] = "wallet_transaction";
3297
- QueueNames["LAST_LOOK_TRADE"] = "last_look_trade";
3298
- QueueNames["SEND_TRADE_TO_SETTLE"] = "send_trade_to_settle";
3299
- QueueNames["TRADE_FIRE"] = "trade_fire";
3300
- QueueNames["TRADE_CONFIRMED"] = "trade_confirmed";
3301
- QueueNames["ORDER_OPERATION"] = "order_operation";
3302
- QueueNames["ORDER_RESULT"] = "order_result";
3303
- QueueNames["TRADES_QUEUE"] = "trades_q";
3304
- QueueNames["OPEN_ORDER_BOOK"] = "open_order_book";
3305
- QueueNames["SOCKET_WALLET_TRANSACTION"] = "socket_wallet_transaction";
3306
- QueueNames["STREAM_UPDATE_QUOTE"] = "stream_update_quote";
3307
- QueueNames["STREAM_UPDATE_LAST_PRICE"] = "stream_update_last_price";
3308
- QueueNames["STREAM_UPDATE_DEPTH"] = "stream_update_depth";
3309
- QueueNames["STREAM_UPDATE_LAST_CANDLESTICK"] = "stream_update_last_candlestick";
3310
- QueueNames["STREAM_UPDATE_ORDERS"] = "stream_update_orders";
3311
- QueueNames["STREAM_UPDATE_TRADES"] = "stream_update_trades";
3312
- QueueNames["STREAM_UPDATE_ORDER_BOOK"] = "stream_update_order_book";
3313
- QueueNames["CODEX_DEPOSIT"] = "codex_deposit";
3314
- QueueNames["CODEX_TRANSFER"] = "codex_transfer";
3315
- QueueNames["CODEX_WITHDRAWAL"] = "codex_withdrawal";
3316
- QueueNames["CODEX_BALANCES"] = "codex_balances";
3317
- QueueNames["CODEX_TRADE"] = "codex_trade";
3318
- QueueNames["VAA_LOG"] = "vaa_log";
3319
- QueueNames["SETTINGS_UPDATE"] = "settings_update";
3320
- QueueNames["POINT_SYSTEM_SETTINGS_UPDATE"] = "point_system_settings_update";
3321
- QueueNames["NEW_NOTIFICATION"] = "new_notification";
3322
- })(QueueNames || (exports.QueueNames = QueueNames = {}));
3323
- exports.QueueOptions = {
3324
- [QueueNames.CANCELLATION_TRADE]: { options: { durable: true } },
3325
- [QueueNames.CANCEL_ORDER]: { options: { durable: true } },
3326
- [QueueNames.CODEX_BALANCES]: { options: { durable: true } },
3327
- [QueueNames.CODEX_DEPOSIT]: { options: { durable: true } },
3328
- [QueueNames.CODEX_TRANSFER]: { options: { durable: true } },
3329
- [QueueNames.CODEX_TRADE]: { options: { durable: true } },
3330
- [QueueNames.CODEX_WITHDRAWAL]: { options: { durable: true } },
3331
- [QueueNames.LAST_LOOK_TRADE]: { options: { durable: true } },
3332
- [QueueNames.MAINTENANCE]: { options: { durable: true } },
3333
- [QueueNames.SYSTEM]: { options: { durable: true } },
3334
- [QueueNames.NEW_ORDER]: { options: { durable: true } },
3335
- [QueueNames.OPEN_ORDER_BOOK]: { options: { durable: true } },
3336
- [QueueNames.ORDER_OPERATION]: { options: { durable: true, maxPriority: 5 } },
3337
- [QueueNames.ORDER_RESULT]: { options: { durable: true } },
3338
- [QueueNames.PROCESS_WALLET_TRANSACTION]: { options: { durable: true } },
3339
- [QueueNames.SEND_TRADE_TO_SETTLE]: { options: { durable: true } },
3340
- [QueueNames.SOCKET_WALLET_TRANSACTION]: { options: { durable: true } },
3341
- [QueueNames.STREAM_UPDATE_DEPTH]: { options: { durable: true } },
3342
- [QueueNames.STREAM_UPDATE_LAST_CANDLESTICK]: { options: { durable: true } },
3343
- [QueueNames.STREAM_UPDATE_LAST_PRICE]: { options: { durable: true } },
3344
- [QueueNames.STREAM_UPDATE_ORDERS]: { options: { durable: true } },
3345
- [QueueNames.STREAM_UPDATE_ORDER_BOOK]: { options: { durable: true } },
3346
- [QueueNames.STREAM_UPDATE_QUOTE]: { options: { durable: true } },
3347
- [QueueNames.STREAM_UPDATE_TRADES]: { options: { durable: true } },
3348
- [QueueNames.TRADES_QUEUE]: { options: { durable: true } },
3349
- [QueueNames.TRADE_CONFIRMED]: { options: { durable: true } },
3350
- [QueueNames.TRADE_FIRE]: { options: { durable: true } },
3351
- [QueueNames.VAA_LOG]: { options: { durable: true } },
3352
- [QueueNames.SETTINGS_UPDATE]: { options: { durable: true } },
3353
- [QueueNames.POINT_SYSTEM_SETTINGS_UPDATE]: { options: { durable: true } },
3354
- [QueueNames.NEW_NOTIFICATION]: { options: { durable: true } },
3355
- };
3356
-
3357
-
3358
3280
  /***/ }),
3359
3281
 
3360
3282
  /***/ 7835:
@@ -2948,7 +2948,6 @@ __exportStar(__webpack_require__(2806), exports);
2948
2948
  __exportStar(__webpack_require__(661), exports);
2949
2949
  __exportStar(__webpack_require__(9862), exports);
2950
2950
  __exportStar(__webpack_require__(935), exports);
2951
- __exportStar(__webpack_require__(7801), exports);
2952
2951
  __exportStar(__webpack_require__(2169), exports);
2953
2952
  __exportStar(__webpack_require__(4574), exports);
2954
2953
 
@@ -3344,83 +3343,6 @@ function mapOrderTypeShortToLong(value) {
3344
3343
  }
3345
3344
 
3346
3345
 
3347
- /***/ }),
3348
-
3349
- /***/ 7801:
3350
- /***/ ((__unused_webpack_module, exports) => {
3351
-
3352
-
3353
- Object.defineProperty(exports, "__esModule", ({ value: true }));
3354
- exports.QueueOptions = exports.QueueNames = void 0;
3355
- var QueueNames;
3356
- (function (QueueNames) {
3357
- QueueNames["CANCELLATION_TRADE"] = "cancellation_trade";
3358
- QueueNames["CANCEL_ORDER"] = "cancelOrder";
3359
- QueueNames["MAINTENANCE"] = "maintenance";
3360
- QueueNames["SYSTEM"] = "system";
3361
- QueueNames["NEW_ORDER"] = "newOrder";
3362
- QueueNames["PROCESS_WALLET_TRANSACTION"] = "wallet_transaction";
3363
- QueueNames["LAST_LOOK_TRADE"] = "last_look_trade";
3364
- QueueNames["SEND_TRADE_TO_SETTLE"] = "send_trade_to_settle";
3365
- QueueNames["TRADE_FIRE"] = "trade_fire";
3366
- QueueNames["TRADE_CONFIRMED"] = "trade_confirmed";
3367
- QueueNames["ORDER_OPERATION"] = "order_operation";
3368
- QueueNames["ORDER_RESULT"] = "order_result";
3369
- QueueNames["TRADES_QUEUE"] = "trades_q";
3370
- QueueNames["OPEN_ORDER_BOOK"] = "open_order_book";
3371
- QueueNames["SOCKET_WALLET_TRANSACTION"] = "socket_wallet_transaction";
3372
- QueueNames["STREAM_UPDATE_QUOTE"] = "stream_update_quote";
3373
- QueueNames["STREAM_UPDATE_LAST_PRICE"] = "stream_update_last_price";
3374
- QueueNames["STREAM_UPDATE_DEPTH"] = "stream_update_depth";
3375
- QueueNames["STREAM_UPDATE_LAST_CANDLESTICK"] = "stream_update_last_candlestick";
3376
- QueueNames["STREAM_UPDATE_ORDERS"] = "stream_update_orders";
3377
- QueueNames["STREAM_UPDATE_TRADES"] = "stream_update_trades";
3378
- QueueNames["STREAM_UPDATE_ORDER_BOOK"] = "stream_update_order_book";
3379
- QueueNames["CODEX_DEPOSIT"] = "codex_deposit";
3380
- QueueNames["CODEX_TRANSFER"] = "codex_transfer";
3381
- QueueNames["CODEX_WITHDRAWAL"] = "codex_withdrawal";
3382
- QueueNames["CODEX_BALANCES"] = "codex_balances";
3383
- QueueNames["CODEX_TRADE"] = "codex_trade";
3384
- QueueNames["VAA_LOG"] = "vaa_log";
3385
- QueueNames["SETTINGS_UPDATE"] = "settings_update";
3386
- QueueNames["POINT_SYSTEM_SETTINGS_UPDATE"] = "point_system_settings_update";
3387
- QueueNames["NEW_NOTIFICATION"] = "new_notification";
3388
- })(QueueNames || (exports.QueueNames = QueueNames = {}));
3389
- exports.QueueOptions = {
3390
- [QueueNames.CANCELLATION_TRADE]: { options: { durable: true } },
3391
- [QueueNames.CANCEL_ORDER]: { options: { durable: true } },
3392
- [QueueNames.CODEX_BALANCES]: { options: { durable: true } },
3393
- [QueueNames.CODEX_DEPOSIT]: { options: { durable: true } },
3394
- [QueueNames.CODEX_TRANSFER]: { options: { durable: true } },
3395
- [QueueNames.CODEX_TRADE]: { options: { durable: true } },
3396
- [QueueNames.CODEX_WITHDRAWAL]: { options: { durable: true } },
3397
- [QueueNames.LAST_LOOK_TRADE]: { options: { durable: true } },
3398
- [QueueNames.MAINTENANCE]: { options: { durable: true } },
3399
- [QueueNames.SYSTEM]: { options: { durable: true } },
3400
- [QueueNames.NEW_ORDER]: { options: { durable: true } },
3401
- [QueueNames.OPEN_ORDER_BOOK]: { options: { durable: true } },
3402
- [QueueNames.ORDER_OPERATION]: { options: { durable: true, maxPriority: 5 } },
3403
- [QueueNames.ORDER_RESULT]: { options: { durable: true } },
3404
- [QueueNames.PROCESS_WALLET_TRANSACTION]: { options: { durable: true } },
3405
- [QueueNames.SEND_TRADE_TO_SETTLE]: { options: { durable: true } },
3406
- [QueueNames.SOCKET_WALLET_TRANSACTION]: { options: { durable: true } },
3407
- [QueueNames.STREAM_UPDATE_DEPTH]: { options: { durable: true } },
3408
- [QueueNames.STREAM_UPDATE_LAST_CANDLESTICK]: { options: { durable: true } },
3409
- [QueueNames.STREAM_UPDATE_LAST_PRICE]: { options: { durable: true } },
3410
- [QueueNames.STREAM_UPDATE_ORDERS]: { options: { durable: true } },
3411
- [QueueNames.STREAM_UPDATE_ORDER_BOOK]: { options: { durable: true } },
3412
- [QueueNames.STREAM_UPDATE_QUOTE]: { options: { durable: true } },
3413
- [QueueNames.STREAM_UPDATE_TRADES]: { options: { durable: true } },
3414
- [QueueNames.TRADES_QUEUE]: { options: { durable: true } },
3415
- [QueueNames.TRADE_CONFIRMED]: { options: { durable: true } },
3416
- [QueueNames.TRADE_FIRE]: { options: { durable: true } },
3417
- [QueueNames.VAA_LOG]: { options: { durable: true } },
3418
- [QueueNames.SETTINGS_UPDATE]: { options: { durable: true } },
3419
- [QueueNames.POINT_SYSTEM_SETTINGS_UPDATE]: { options: { durable: true } },
3420
- [QueueNames.NEW_NOTIFICATION]: { options: { durable: true } },
3421
- };
3422
-
3423
-
3424
3346
  /***/ }),
3425
3347
 
3426
3348
  /***/ 7835:
@@ -2882,7 +2882,6 @@ __exportStar(__webpack_require__(2806), exports);
2882
2882
  __exportStar(__webpack_require__(661), exports);
2883
2883
  __exportStar(__webpack_require__(9862), exports);
2884
2884
  __exportStar(__webpack_require__(935), exports);
2885
- __exportStar(__webpack_require__(7801), exports);
2886
2885
  __exportStar(__webpack_require__(2169), exports);
2887
2886
  __exportStar(__webpack_require__(4574), exports);
2888
2887
 
@@ -3278,83 +3277,6 @@ function mapOrderTypeShortToLong(value) {
3278
3277
  }
3279
3278
 
3280
3279
 
3281
- /***/ }),
3282
-
3283
- /***/ 7801:
3284
- /***/ ((__unused_webpack_module, exports) => {
3285
-
3286
-
3287
- Object.defineProperty(exports, "__esModule", ({ value: true }));
3288
- exports.QueueOptions = exports.QueueNames = void 0;
3289
- var QueueNames;
3290
- (function (QueueNames) {
3291
- QueueNames["CANCELLATION_TRADE"] = "cancellation_trade";
3292
- QueueNames["CANCEL_ORDER"] = "cancelOrder";
3293
- QueueNames["MAINTENANCE"] = "maintenance";
3294
- QueueNames["SYSTEM"] = "system";
3295
- QueueNames["NEW_ORDER"] = "newOrder";
3296
- QueueNames["PROCESS_WALLET_TRANSACTION"] = "wallet_transaction";
3297
- QueueNames["LAST_LOOK_TRADE"] = "last_look_trade";
3298
- QueueNames["SEND_TRADE_TO_SETTLE"] = "send_trade_to_settle";
3299
- QueueNames["TRADE_FIRE"] = "trade_fire";
3300
- QueueNames["TRADE_CONFIRMED"] = "trade_confirmed";
3301
- QueueNames["ORDER_OPERATION"] = "order_operation";
3302
- QueueNames["ORDER_RESULT"] = "order_result";
3303
- QueueNames["TRADES_QUEUE"] = "trades_q";
3304
- QueueNames["OPEN_ORDER_BOOK"] = "open_order_book";
3305
- QueueNames["SOCKET_WALLET_TRANSACTION"] = "socket_wallet_transaction";
3306
- QueueNames["STREAM_UPDATE_QUOTE"] = "stream_update_quote";
3307
- QueueNames["STREAM_UPDATE_LAST_PRICE"] = "stream_update_last_price";
3308
- QueueNames["STREAM_UPDATE_DEPTH"] = "stream_update_depth";
3309
- QueueNames["STREAM_UPDATE_LAST_CANDLESTICK"] = "stream_update_last_candlestick";
3310
- QueueNames["STREAM_UPDATE_ORDERS"] = "stream_update_orders";
3311
- QueueNames["STREAM_UPDATE_TRADES"] = "stream_update_trades";
3312
- QueueNames["STREAM_UPDATE_ORDER_BOOK"] = "stream_update_order_book";
3313
- QueueNames["CODEX_DEPOSIT"] = "codex_deposit";
3314
- QueueNames["CODEX_TRANSFER"] = "codex_transfer";
3315
- QueueNames["CODEX_WITHDRAWAL"] = "codex_withdrawal";
3316
- QueueNames["CODEX_BALANCES"] = "codex_balances";
3317
- QueueNames["CODEX_TRADE"] = "codex_trade";
3318
- QueueNames["VAA_LOG"] = "vaa_log";
3319
- QueueNames["SETTINGS_UPDATE"] = "settings_update";
3320
- QueueNames["POINT_SYSTEM_SETTINGS_UPDATE"] = "point_system_settings_update";
3321
- QueueNames["NEW_NOTIFICATION"] = "new_notification";
3322
- })(QueueNames || (exports.QueueNames = QueueNames = {}));
3323
- exports.QueueOptions = {
3324
- [QueueNames.CANCELLATION_TRADE]: { options: { durable: true } },
3325
- [QueueNames.CANCEL_ORDER]: { options: { durable: true } },
3326
- [QueueNames.CODEX_BALANCES]: { options: { durable: true } },
3327
- [QueueNames.CODEX_DEPOSIT]: { options: { durable: true } },
3328
- [QueueNames.CODEX_TRANSFER]: { options: { durable: true } },
3329
- [QueueNames.CODEX_TRADE]: { options: { durable: true } },
3330
- [QueueNames.CODEX_WITHDRAWAL]: { options: { durable: true } },
3331
- [QueueNames.LAST_LOOK_TRADE]: { options: { durable: true } },
3332
- [QueueNames.MAINTENANCE]: { options: { durable: true } },
3333
- [QueueNames.SYSTEM]: { options: { durable: true } },
3334
- [QueueNames.NEW_ORDER]: { options: { durable: true } },
3335
- [QueueNames.OPEN_ORDER_BOOK]: { options: { durable: true } },
3336
- [QueueNames.ORDER_OPERATION]: { options: { durable: true, maxPriority: 5 } },
3337
- [QueueNames.ORDER_RESULT]: { options: { durable: true } },
3338
- [QueueNames.PROCESS_WALLET_TRANSACTION]: { options: { durable: true } },
3339
- [QueueNames.SEND_TRADE_TO_SETTLE]: { options: { durable: true } },
3340
- [QueueNames.SOCKET_WALLET_TRANSACTION]: { options: { durable: true } },
3341
- [QueueNames.STREAM_UPDATE_DEPTH]: { options: { durable: true } },
3342
- [QueueNames.STREAM_UPDATE_LAST_CANDLESTICK]: { options: { durable: true } },
3343
- [QueueNames.STREAM_UPDATE_LAST_PRICE]: { options: { durable: true } },
3344
- [QueueNames.STREAM_UPDATE_ORDERS]: { options: { durable: true } },
3345
- [QueueNames.STREAM_UPDATE_ORDER_BOOK]: { options: { durable: true } },
3346
- [QueueNames.STREAM_UPDATE_QUOTE]: { options: { durable: true } },
3347
- [QueueNames.STREAM_UPDATE_TRADES]: { options: { durable: true } },
3348
- [QueueNames.TRADES_QUEUE]: { options: { durable: true } },
3349
- [QueueNames.TRADE_CONFIRMED]: { options: { durable: true } },
3350
- [QueueNames.TRADE_FIRE]: { options: { durable: true } },
3351
- [QueueNames.VAA_LOG]: { options: { durable: true } },
3352
- [QueueNames.SETTINGS_UPDATE]: { options: { durable: true } },
3353
- [QueueNames.POINT_SYSTEM_SETTINGS_UPDATE]: { options: { durable: true } },
3354
- [QueueNames.NEW_NOTIFICATION]: { options: { durable: true } },
3355
- };
3356
-
3357
-
3358
3280
  /***/ }),
3359
3281
 
3360
3282
  /***/ 7835:
@@ -2882,7 +2882,6 @@ __exportStar(__webpack_require__(2806), exports);
2882
2882
  __exportStar(__webpack_require__(661), exports);
2883
2883
  __exportStar(__webpack_require__(9862), exports);
2884
2884
  __exportStar(__webpack_require__(935), exports);
2885
- __exportStar(__webpack_require__(7801), exports);
2886
2885
  __exportStar(__webpack_require__(2169), exports);
2887
2886
  __exportStar(__webpack_require__(4574), exports);
2888
2887
 
@@ -3278,83 +3277,6 @@ function mapOrderTypeShortToLong(value) {
3278
3277
  }
3279
3278
 
3280
3279
 
3281
- /***/ }),
3282
-
3283
- /***/ 7801:
3284
- /***/ ((__unused_webpack_module, exports) => {
3285
-
3286
-
3287
- Object.defineProperty(exports, "__esModule", ({ value: true }));
3288
- exports.QueueOptions = exports.QueueNames = void 0;
3289
- var QueueNames;
3290
- (function (QueueNames) {
3291
- QueueNames["CANCELLATION_TRADE"] = "cancellation_trade";
3292
- QueueNames["CANCEL_ORDER"] = "cancelOrder";
3293
- QueueNames["MAINTENANCE"] = "maintenance";
3294
- QueueNames["SYSTEM"] = "system";
3295
- QueueNames["NEW_ORDER"] = "newOrder";
3296
- QueueNames["PROCESS_WALLET_TRANSACTION"] = "wallet_transaction";
3297
- QueueNames["LAST_LOOK_TRADE"] = "last_look_trade";
3298
- QueueNames["SEND_TRADE_TO_SETTLE"] = "send_trade_to_settle";
3299
- QueueNames["TRADE_FIRE"] = "trade_fire";
3300
- QueueNames["TRADE_CONFIRMED"] = "trade_confirmed";
3301
- QueueNames["ORDER_OPERATION"] = "order_operation";
3302
- QueueNames["ORDER_RESULT"] = "order_result";
3303
- QueueNames["TRADES_QUEUE"] = "trades_q";
3304
- QueueNames["OPEN_ORDER_BOOK"] = "open_order_book";
3305
- QueueNames["SOCKET_WALLET_TRANSACTION"] = "socket_wallet_transaction";
3306
- QueueNames["STREAM_UPDATE_QUOTE"] = "stream_update_quote";
3307
- QueueNames["STREAM_UPDATE_LAST_PRICE"] = "stream_update_last_price";
3308
- QueueNames["STREAM_UPDATE_DEPTH"] = "stream_update_depth";
3309
- QueueNames["STREAM_UPDATE_LAST_CANDLESTICK"] = "stream_update_last_candlestick";
3310
- QueueNames["STREAM_UPDATE_ORDERS"] = "stream_update_orders";
3311
- QueueNames["STREAM_UPDATE_TRADES"] = "stream_update_trades";
3312
- QueueNames["STREAM_UPDATE_ORDER_BOOK"] = "stream_update_order_book";
3313
- QueueNames["CODEX_DEPOSIT"] = "codex_deposit";
3314
- QueueNames["CODEX_TRANSFER"] = "codex_transfer";
3315
- QueueNames["CODEX_WITHDRAWAL"] = "codex_withdrawal";
3316
- QueueNames["CODEX_BALANCES"] = "codex_balances";
3317
- QueueNames["CODEX_TRADE"] = "codex_trade";
3318
- QueueNames["VAA_LOG"] = "vaa_log";
3319
- QueueNames["SETTINGS_UPDATE"] = "settings_update";
3320
- QueueNames["POINT_SYSTEM_SETTINGS_UPDATE"] = "point_system_settings_update";
3321
- QueueNames["NEW_NOTIFICATION"] = "new_notification";
3322
- })(QueueNames || (exports.QueueNames = QueueNames = {}));
3323
- exports.QueueOptions = {
3324
- [QueueNames.CANCELLATION_TRADE]: { options: { durable: true } },
3325
- [QueueNames.CANCEL_ORDER]: { options: { durable: true } },
3326
- [QueueNames.CODEX_BALANCES]: { options: { durable: true } },
3327
- [QueueNames.CODEX_DEPOSIT]: { options: { durable: true } },
3328
- [QueueNames.CODEX_TRANSFER]: { options: { durable: true } },
3329
- [QueueNames.CODEX_TRADE]: { options: { durable: true } },
3330
- [QueueNames.CODEX_WITHDRAWAL]: { options: { durable: true } },
3331
- [QueueNames.LAST_LOOK_TRADE]: { options: { durable: true } },
3332
- [QueueNames.MAINTENANCE]: { options: { durable: true } },
3333
- [QueueNames.SYSTEM]: { options: { durable: true } },
3334
- [QueueNames.NEW_ORDER]: { options: { durable: true } },
3335
- [QueueNames.OPEN_ORDER_BOOK]: { options: { durable: true } },
3336
- [QueueNames.ORDER_OPERATION]: { options: { durable: true, maxPriority: 5 } },
3337
- [QueueNames.ORDER_RESULT]: { options: { durable: true } },
3338
- [QueueNames.PROCESS_WALLET_TRANSACTION]: { options: { durable: true } },
3339
- [QueueNames.SEND_TRADE_TO_SETTLE]: { options: { durable: true } },
3340
- [QueueNames.SOCKET_WALLET_TRANSACTION]: { options: { durable: true } },
3341
- [QueueNames.STREAM_UPDATE_DEPTH]: { options: { durable: true } },
3342
- [QueueNames.STREAM_UPDATE_LAST_CANDLESTICK]: { options: { durable: true } },
3343
- [QueueNames.STREAM_UPDATE_LAST_PRICE]: { options: { durable: true } },
3344
- [QueueNames.STREAM_UPDATE_ORDERS]: { options: { durable: true } },
3345
- [QueueNames.STREAM_UPDATE_ORDER_BOOK]: { options: { durable: true } },
3346
- [QueueNames.STREAM_UPDATE_QUOTE]: { options: { durable: true } },
3347
- [QueueNames.STREAM_UPDATE_TRADES]: { options: { durable: true } },
3348
- [QueueNames.TRADES_QUEUE]: { options: { durable: true } },
3349
- [QueueNames.TRADE_CONFIRMED]: { options: { durable: true } },
3350
- [QueueNames.TRADE_FIRE]: { options: { durable: true } },
3351
- [QueueNames.VAA_LOG]: { options: { durable: true } },
3352
- [QueueNames.SETTINGS_UPDATE]: { options: { durable: true } },
3353
- [QueueNames.POINT_SYSTEM_SETTINGS_UPDATE]: { options: { durable: true } },
3354
- [QueueNames.NEW_NOTIFICATION]: { options: { durable: true } },
3355
- };
3356
-
3357
-
3358
3280
  /***/ }),
3359
3281
 
3360
3282
  /***/ 7835:
@@ -2882,7 +2882,6 @@ __exportStar(__webpack_require__(2806), exports);
2882
2882
  __exportStar(__webpack_require__(661), exports);
2883
2883
  __exportStar(__webpack_require__(9862), exports);
2884
2884
  __exportStar(__webpack_require__(935), exports);
2885
- __exportStar(__webpack_require__(7801), exports);
2886
2885
  __exportStar(__webpack_require__(2169), exports);
2887
2886
  __exportStar(__webpack_require__(4574), exports);
2888
2887
 
@@ -3278,83 +3277,6 @@ function mapOrderTypeShortToLong(value) {
3278
3277
  }
3279
3278
 
3280
3279
 
3281
- /***/ }),
3282
-
3283
- /***/ 7801:
3284
- /***/ ((__unused_webpack_module, exports) => {
3285
-
3286
-
3287
- Object.defineProperty(exports, "__esModule", ({ value: true }));
3288
- exports.QueueOptions = exports.QueueNames = void 0;
3289
- var QueueNames;
3290
- (function (QueueNames) {
3291
- QueueNames["CANCELLATION_TRADE"] = "cancellation_trade";
3292
- QueueNames["CANCEL_ORDER"] = "cancelOrder";
3293
- QueueNames["MAINTENANCE"] = "maintenance";
3294
- QueueNames["SYSTEM"] = "system";
3295
- QueueNames["NEW_ORDER"] = "newOrder";
3296
- QueueNames["PROCESS_WALLET_TRANSACTION"] = "wallet_transaction";
3297
- QueueNames["LAST_LOOK_TRADE"] = "last_look_trade";
3298
- QueueNames["SEND_TRADE_TO_SETTLE"] = "send_trade_to_settle";
3299
- QueueNames["TRADE_FIRE"] = "trade_fire";
3300
- QueueNames["TRADE_CONFIRMED"] = "trade_confirmed";
3301
- QueueNames["ORDER_OPERATION"] = "order_operation";
3302
- QueueNames["ORDER_RESULT"] = "order_result";
3303
- QueueNames["TRADES_QUEUE"] = "trades_q";
3304
- QueueNames["OPEN_ORDER_BOOK"] = "open_order_book";
3305
- QueueNames["SOCKET_WALLET_TRANSACTION"] = "socket_wallet_transaction";
3306
- QueueNames["STREAM_UPDATE_QUOTE"] = "stream_update_quote";
3307
- QueueNames["STREAM_UPDATE_LAST_PRICE"] = "stream_update_last_price";
3308
- QueueNames["STREAM_UPDATE_DEPTH"] = "stream_update_depth";
3309
- QueueNames["STREAM_UPDATE_LAST_CANDLESTICK"] = "stream_update_last_candlestick";
3310
- QueueNames["STREAM_UPDATE_ORDERS"] = "stream_update_orders";
3311
- QueueNames["STREAM_UPDATE_TRADES"] = "stream_update_trades";
3312
- QueueNames["STREAM_UPDATE_ORDER_BOOK"] = "stream_update_order_book";
3313
- QueueNames["CODEX_DEPOSIT"] = "codex_deposit";
3314
- QueueNames["CODEX_TRANSFER"] = "codex_transfer";
3315
- QueueNames["CODEX_WITHDRAWAL"] = "codex_withdrawal";
3316
- QueueNames["CODEX_BALANCES"] = "codex_balances";
3317
- QueueNames["CODEX_TRADE"] = "codex_trade";
3318
- QueueNames["VAA_LOG"] = "vaa_log";
3319
- QueueNames["SETTINGS_UPDATE"] = "settings_update";
3320
- QueueNames["POINT_SYSTEM_SETTINGS_UPDATE"] = "point_system_settings_update";
3321
- QueueNames["NEW_NOTIFICATION"] = "new_notification";
3322
- })(QueueNames || (exports.QueueNames = QueueNames = {}));
3323
- exports.QueueOptions = {
3324
- [QueueNames.CANCELLATION_TRADE]: { options: { durable: true } },
3325
- [QueueNames.CANCEL_ORDER]: { options: { durable: true } },
3326
- [QueueNames.CODEX_BALANCES]: { options: { durable: true } },
3327
- [QueueNames.CODEX_DEPOSIT]: { options: { durable: true } },
3328
- [QueueNames.CODEX_TRANSFER]: { options: { durable: true } },
3329
- [QueueNames.CODEX_TRADE]: { options: { durable: true } },
3330
- [QueueNames.CODEX_WITHDRAWAL]: { options: { durable: true } },
3331
- [QueueNames.LAST_LOOK_TRADE]: { options: { durable: true } },
3332
- [QueueNames.MAINTENANCE]: { options: { durable: true } },
3333
- [QueueNames.SYSTEM]: { options: { durable: true } },
3334
- [QueueNames.NEW_ORDER]: { options: { durable: true } },
3335
- [QueueNames.OPEN_ORDER_BOOK]: { options: { durable: true } },
3336
- [QueueNames.ORDER_OPERATION]: { options: { durable: true, maxPriority: 5 } },
3337
- [QueueNames.ORDER_RESULT]: { options: { durable: true } },
3338
- [QueueNames.PROCESS_WALLET_TRANSACTION]: { options: { durable: true } },
3339
- [QueueNames.SEND_TRADE_TO_SETTLE]: { options: { durable: true } },
3340
- [QueueNames.SOCKET_WALLET_TRANSACTION]: { options: { durable: true } },
3341
- [QueueNames.STREAM_UPDATE_DEPTH]: { options: { durable: true } },
3342
- [QueueNames.STREAM_UPDATE_LAST_CANDLESTICK]: { options: { durable: true } },
3343
- [QueueNames.STREAM_UPDATE_LAST_PRICE]: { options: { durable: true } },
3344
- [QueueNames.STREAM_UPDATE_ORDERS]: { options: { durable: true } },
3345
- [QueueNames.STREAM_UPDATE_ORDER_BOOK]: { options: { durable: true } },
3346
- [QueueNames.STREAM_UPDATE_QUOTE]: { options: { durable: true } },
3347
- [QueueNames.STREAM_UPDATE_TRADES]: { options: { durable: true } },
3348
- [QueueNames.TRADES_QUEUE]: { options: { durable: true } },
3349
- [QueueNames.TRADE_CONFIRMED]: { options: { durable: true } },
3350
- [QueueNames.TRADE_FIRE]: { options: { durable: true } },
3351
- [QueueNames.VAA_LOG]: { options: { durable: true } },
3352
- [QueueNames.SETTINGS_UPDATE]: { options: { durable: true } },
3353
- [QueueNames.POINT_SYSTEM_SETTINGS_UPDATE]: { options: { durable: true } },
3354
- [QueueNames.NEW_NOTIFICATION]: { options: { durable: true } },
3355
- };
3356
-
3357
-
3358
3280
  /***/ }),
3359
3281
 
3360
3282
  /***/ 7835:
@@ -2882,7 +2882,6 @@ __exportStar(__webpack_require__(2806), exports);
2882
2882
  __exportStar(__webpack_require__(661), exports);
2883
2883
  __exportStar(__webpack_require__(9862), exports);
2884
2884
  __exportStar(__webpack_require__(935), exports);
2885
- __exportStar(__webpack_require__(7801), exports);
2886
2885
  __exportStar(__webpack_require__(2169), exports);
2887
2886
  __exportStar(__webpack_require__(4574), exports);
2888
2887
 
@@ -3278,83 +3277,6 @@ function mapOrderTypeShortToLong(value) {
3278
3277
  }
3279
3278
 
3280
3279
 
3281
- /***/ }),
3282
-
3283
- /***/ 7801:
3284
- /***/ ((__unused_webpack_module, exports) => {
3285
-
3286
-
3287
- Object.defineProperty(exports, "__esModule", ({ value: true }));
3288
- exports.QueueOptions = exports.QueueNames = void 0;
3289
- var QueueNames;
3290
- (function (QueueNames) {
3291
- QueueNames["CANCELLATION_TRADE"] = "cancellation_trade";
3292
- QueueNames["CANCEL_ORDER"] = "cancelOrder";
3293
- QueueNames["MAINTENANCE"] = "maintenance";
3294
- QueueNames["SYSTEM"] = "system";
3295
- QueueNames["NEW_ORDER"] = "newOrder";
3296
- QueueNames["PROCESS_WALLET_TRANSACTION"] = "wallet_transaction";
3297
- QueueNames["LAST_LOOK_TRADE"] = "last_look_trade";
3298
- QueueNames["SEND_TRADE_TO_SETTLE"] = "send_trade_to_settle";
3299
- QueueNames["TRADE_FIRE"] = "trade_fire";
3300
- QueueNames["TRADE_CONFIRMED"] = "trade_confirmed";
3301
- QueueNames["ORDER_OPERATION"] = "order_operation";
3302
- QueueNames["ORDER_RESULT"] = "order_result";
3303
- QueueNames["TRADES_QUEUE"] = "trades_q";
3304
- QueueNames["OPEN_ORDER_BOOK"] = "open_order_book";
3305
- QueueNames["SOCKET_WALLET_TRANSACTION"] = "socket_wallet_transaction";
3306
- QueueNames["STREAM_UPDATE_QUOTE"] = "stream_update_quote";
3307
- QueueNames["STREAM_UPDATE_LAST_PRICE"] = "stream_update_last_price";
3308
- QueueNames["STREAM_UPDATE_DEPTH"] = "stream_update_depth";
3309
- QueueNames["STREAM_UPDATE_LAST_CANDLESTICK"] = "stream_update_last_candlestick";
3310
- QueueNames["STREAM_UPDATE_ORDERS"] = "stream_update_orders";
3311
- QueueNames["STREAM_UPDATE_TRADES"] = "stream_update_trades";
3312
- QueueNames["STREAM_UPDATE_ORDER_BOOK"] = "stream_update_order_book";
3313
- QueueNames["CODEX_DEPOSIT"] = "codex_deposit";
3314
- QueueNames["CODEX_TRANSFER"] = "codex_transfer";
3315
- QueueNames["CODEX_WITHDRAWAL"] = "codex_withdrawal";
3316
- QueueNames["CODEX_BALANCES"] = "codex_balances";
3317
- QueueNames["CODEX_TRADE"] = "codex_trade";
3318
- QueueNames["VAA_LOG"] = "vaa_log";
3319
- QueueNames["SETTINGS_UPDATE"] = "settings_update";
3320
- QueueNames["POINT_SYSTEM_SETTINGS_UPDATE"] = "point_system_settings_update";
3321
- QueueNames["NEW_NOTIFICATION"] = "new_notification";
3322
- })(QueueNames || (exports.QueueNames = QueueNames = {}));
3323
- exports.QueueOptions = {
3324
- [QueueNames.CANCELLATION_TRADE]: { options: { durable: true } },
3325
- [QueueNames.CANCEL_ORDER]: { options: { durable: true } },
3326
- [QueueNames.CODEX_BALANCES]: { options: { durable: true } },
3327
- [QueueNames.CODEX_DEPOSIT]: { options: { durable: true } },
3328
- [QueueNames.CODEX_TRANSFER]: { options: { durable: true } },
3329
- [QueueNames.CODEX_TRADE]: { options: { durable: true } },
3330
- [QueueNames.CODEX_WITHDRAWAL]: { options: { durable: true } },
3331
- [QueueNames.LAST_LOOK_TRADE]: { options: { durable: true } },
3332
- [QueueNames.MAINTENANCE]: { options: { durable: true } },
3333
- [QueueNames.SYSTEM]: { options: { durable: true } },
3334
- [QueueNames.NEW_ORDER]: { options: { durable: true } },
3335
- [QueueNames.OPEN_ORDER_BOOK]: { options: { durable: true } },
3336
- [QueueNames.ORDER_OPERATION]: { options: { durable: true, maxPriority: 5 } },
3337
- [QueueNames.ORDER_RESULT]: { options: { durable: true } },
3338
- [QueueNames.PROCESS_WALLET_TRANSACTION]: { options: { durable: true } },
3339
- [QueueNames.SEND_TRADE_TO_SETTLE]: { options: { durable: true } },
3340
- [QueueNames.SOCKET_WALLET_TRANSACTION]: { options: { durable: true } },
3341
- [QueueNames.STREAM_UPDATE_DEPTH]: { options: { durable: true } },
3342
- [QueueNames.STREAM_UPDATE_LAST_CANDLESTICK]: { options: { durable: true } },
3343
- [QueueNames.STREAM_UPDATE_LAST_PRICE]: { options: { durable: true } },
3344
- [QueueNames.STREAM_UPDATE_ORDERS]: { options: { durable: true } },
3345
- [QueueNames.STREAM_UPDATE_ORDER_BOOK]: { options: { durable: true } },
3346
- [QueueNames.STREAM_UPDATE_QUOTE]: { options: { durable: true } },
3347
- [QueueNames.STREAM_UPDATE_TRADES]: { options: { durable: true } },
3348
- [QueueNames.TRADES_QUEUE]: { options: { durable: true } },
3349
- [QueueNames.TRADE_CONFIRMED]: { options: { durable: true } },
3350
- [QueueNames.TRADE_FIRE]: { options: { durable: true } },
3351
- [QueueNames.VAA_LOG]: { options: { durable: true } },
3352
- [QueueNames.SETTINGS_UPDATE]: { options: { durable: true } },
3353
- [QueueNames.POINT_SYSTEM_SETTINGS_UPDATE]: { options: { durable: true } },
3354
- [QueueNames.NEW_NOTIFICATION]: { options: { durable: true } },
3355
- };
3356
-
3357
-
3358
3280
  /***/ }),
3359
3281
 
3360
3282
  /***/ 7835: