@ultrade/shared 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/index.d.ts +0 -1
- package/dist/common/index.js +19 -26
- package/dist/common/mappers/index.js +19 -0
- package/dist/common/mappers/trade.mapper.js +19 -0
- package/dist/enums/index.d.ts +1 -0
- package/dist/enums/index.js +19 -0
- package/dist/enums/rabbitMq.d.ts +7 -0
- package/dist/helpers/algo.helper.js +10 -0
- package/dist/helpers/assert.helper.js +19 -0
- package/dist/helpers/balance.helper.js +29 -0
- package/dist/helpers/codex/common.helper.js +29 -0
- package/dist/helpers/codex/index.js +29 -0
- package/dist/helpers/codex/mbr.helper.js +29 -0
- package/dist/helpers/codex/mna.helper.js +29 -0
- package/dist/helpers/codex/order.helper.js +29 -0
- package/dist/helpers/codex/setGlobal.helper.js +29 -0
- package/dist/helpers/codex/transfer.helper.js +29 -0
- package/dist/helpers/codex/txn.helper.js +29 -0
- package/dist/helpers/codex.helper.js +29 -0
- package/dist/helpers/eth.helper.js +29 -0
- package/dist/helpers/index.js +10 -0
- package/dist/helpers/order.helper.js +19 -0
- package/dist/helpers/pair.helper.js +19 -0
- package/dist/helpers/pointSystem.helper.js +10 -0
- package/dist/helpers/vaa.helper.js +29 -0
- package/dist/helpers/withdraw.helper.js +83 -0
- package/dist/interfaces/api/index.d.ts +1 -0
- package/dist/interfaces/index.d.ts +3 -0
- package/dist/interfaces/index.js +73 -0
- package/dist/types/amm/amm.d.ts +2 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.js +10 -0
- package/package.json +1 -1
- package/dist/common/timestamp.helper.d.ts +0 -1
- package/dist/common/timestamp.helper.js +0 -30
|
@@ -1504,6 +1504,7 @@ __exportStar(__webpack_require__(9181), exports);
|
|
|
1504
1504
|
__exportStar(__webpack_require__(7359), exports);
|
|
1505
1505
|
__exportStar(__webpack_require__(3620), exports);
|
|
1506
1506
|
__exportStar(__webpack_require__(573), exports);
|
|
1507
|
+
__exportStar(__webpack_require__(7493), exports);
|
|
1507
1508
|
|
|
1508
1509
|
|
|
1509
1510
|
/***/ }),
|
|
@@ -3218,6 +3219,15 @@ class ChartQueryDto {
|
|
|
3218
3219
|
exports.ChartQueryDto = ChartQueryDto;
|
|
3219
3220
|
|
|
3220
3221
|
|
|
3222
|
+
/***/ }),
|
|
3223
|
+
|
|
3224
|
+
/***/ 7493:
|
|
3225
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
3226
|
+
|
|
3227
|
+
|
|
3228
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3229
|
+
|
|
3230
|
+
|
|
3221
3231
|
/***/ }),
|
|
3222
3232
|
|
|
3223
3233
|
/***/ 7542:
|
|
@@ -3909,6 +3919,24 @@ var AmmBucketKeys;
|
|
|
3909
3919
|
})(AmmBucketKeys || (exports.AmmBucketKeys = AmmBucketKeys = {}));
|
|
3910
3920
|
|
|
3911
3921
|
|
|
3922
|
+
/***/ }),
|
|
3923
|
+
|
|
3924
|
+
/***/ 9275:
|
|
3925
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
3926
|
+
|
|
3927
|
+
|
|
3928
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3929
|
+
exports.RabbitConnectionStatus = void 0;
|
|
3930
|
+
var RabbitConnectionStatus;
|
|
3931
|
+
(function (RabbitConnectionStatus) {
|
|
3932
|
+
RabbitConnectionStatus["CONNECTED"] = "CONNECTED";
|
|
3933
|
+
RabbitConnectionStatus["CONNECTING"] = "CONNECTING";
|
|
3934
|
+
RabbitConnectionStatus["DISCONNECTED"] = "DISCONNECTED";
|
|
3935
|
+
RabbitConnectionStatus["DISCONNECTING"] = "DISCONNECTING";
|
|
3936
|
+
RabbitConnectionStatus["PENDING"] = "PENDING";
|
|
3937
|
+
})(RabbitConnectionStatus || (exports.RabbitConnectionStatus = RabbitConnectionStatus = {}));
|
|
3938
|
+
|
|
3939
|
+
|
|
3912
3940
|
/***/ }),
|
|
3913
3941
|
|
|
3914
3942
|
/***/ 9367:
|
|
@@ -4048,6 +4076,7 @@ __exportStar(__webpack_require__(6978), exports);
|
|
|
4048
4076
|
__exportStar(__webpack_require__(2739), exports);
|
|
4049
4077
|
__exportStar(__webpack_require__(6119), exports);
|
|
4050
4078
|
__exportStar(__webpack_require__(3004), exports);
|
|
4079
|
+
__exportStar(__webpack_require__(9275), exports);
|
|
4051
4080
|
|
|
4052
4081
|
|
|
4053
4082
|
/***/ })
|
|
@@ -1504,6 +1504,7 @@ __exportStar(__webpack_require__(9181), exports);
|
|
|
1504
1504
|
__exportStar(__webpack_require__(7359), exports);
|
|
1505
1505
|
__exportStar(__webpack_require__(3620), exports);
|
|
1506
1506
|
__exportStar(__webpack_require__(573), exports);
|
|
1507
|
+
__exportStar(__webpack_require__(7493), exports);
|
|
1507
1508
|
|
|
1508
1509
|
|
|
1509
1510
|
/***/ }),
|
|
@@ -3218,6 +3219,15 @@ class ChartQueryDto {
|
|
|
3218
3219
|
exports.ChartQueryDto = ChartQueryDto;
|
|
3219
3220
|
|
|
3220
3221
|
|
|
3222
|
+
/***/ }),
|
|
3223
|
+
|
|
3224
|
+
/***/ 7493:
|
|
3225
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
3226
|
+
|
|
3227
|
+
|
|
3228
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3229
|
+
|
|
3230
|
+
|
|
3221
3231
|
/***/ }),
|
|
3222
3232
|
|
|
3223
3233
|
/***/ 7542:
|
|
@@ -3909,6 +3919,24 @@ var AmmBucketKeys;
|
|
|
3909
3919
|
})(AmmBucketKeys || (exports.AmmBucketKeys = AmmBucketKeys = {}));
|
|
3910
3920
|
|
|
3911
3921
|
|
|
3922
|
+
/***/ }),
|
|
3923
|
+
|
|
3924
|
+
/***/ 9275:
|
|
3925
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
3926
|
+
|
|
3927
|
+
|
|
3928
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3929
|
+
exports.RabbitConnectionStatus = void 0;
|
|
3930
|
+
var RabbitConnectionStatus;
|
|
3931
|
+
(function (RabbitConnectionStatus) {
|
|
3932
|
+
RabbitConnectionStatus["CONNECTED"] = "CONNECTED";
|
|
3933
|
+
RabbitConnectionStatus["CONNECTING"] = "CONNECTING";
|
|
3934
|
+
RabbitConnectionStatus["DISCONNECTED"] = "DISCONNECTED";
|
|
3935
|
+
RabbitConnectionStatus["DISCONNECTING"] = "DISCONNECTING";
|
|
3936
|
+
RabbitConnectionStatus["PENDING"] = "PENDING";
|
|
3937
|
+
})(RabbitConnectionStatus || (exports.RabbitConnectionStatus = RabbitConnectionStatus = {}));
|
|
3938
|
+
|
|
3939
|
+
|
|
3912
3940
|
/***/ }),
|
|
3913
3941
|
|
|
3914
3942
|
/***/ 9367:
|
|
@@ -4048,6 +4076,7 @@ __exportStar(__webpack_require__(6978), exports);
|
|
|
4048
4076
|
__exportStar(__webpack_require__(2739), exports);
|
|
4049
4077
|
__exportStar(__webpack_require__(6119), exports);
|
|
4050
4078
|
__exportStar(__webpack_require__(3004), exports);
|
|
4079
|
+
__exportStar(__webpack_require__(9275), exports);
|
|
4051
4080
|
|
|
4052
4081
|
|
|
4053
4082
|
/***/ })
|
|
@@ -1504,6 +1504,7 @@ __exportStar(__webpack_require__(9181), exports);
|
|
|
1504
1504
|
__exportStar(__webpack_require__(7359), exports);
|
|
1505
1505
|
__exportStar(__webpack_require__(3620), exports);
|
|
1506
1506
|
__exportStar(__webpack_require__(573), exports);
|
|
1507
|
+
__exportStar(__webpack_require__(7493), exports);
|
|
1507
1508
|
|
|
1508
1509
|
|
|
1509
1510
|
/***/ }),
|
|
@@ -3218,6 +3219,15 @@ class ChartQueryDto {
|
|
|
3218
3219
|
exports.ChartQueryDto = ChartQueryDto;
|
|
3219
3220
|
|
|
3220
3221
|
|
|
3222
|
+
/***/ }),
|
|
3223
|
+
|
|
3224
|
+
/***/ 7493:
|
|
3225
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
3226
|
+
|
|
3227
|
+
|
|
3228
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3229
|
+
|
|
3230
|
+
|
|
3221
3231
|
/***/ }),
|
|
3222
3232
|
|
|
3223
3233
|
/***/ 7542:
|
|
@@ -3909,6 +3919,24 @@ var AmmBucketKeys;
|
|
|
3909
3919
|
})(AmmBucketKeys || (exports.AmmBucketKeys = AmmBucketKeys = {}));
|
|
3910
3920
|
|
|
3911
3921
|
|
|
3922
|
+
/***/ }),
|
|
3923
|
+
|
|
3924
|
+
/***/ 9275:
|
|
3925
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
3926
|
+
|
|
3927
|
+
|
|
3928
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3929
|
+
exports.RabbitConnectionStatus = void 0;
|
|
3930
|
+
var RabbitConnectionStatus;
|
|
3931
|
+
(function (RabbitConnectionStatus) {
|
|
3932
|
+
RabbitConnectionStatus["CONNECTED"] = "CONNECTED";
|
|
3933
|
+
RabbitConnectionStatus["CONNECTING"] = "CONNECTING";
|
|
3934
|
+
RabbitConnectionStatus["DISCONNECTED"] = "DISCONNECTED";
|
|
3935
|
+
RabbitConnectionStatus["DISCONNECTING"] = "DISCONNECTING";
|
|
3936
|
+
RabbitConnectionStatus["PENDING"] = "PENDING";
|
|
3937
|
+
})(RabbitConnectionStatus || (exports.RabbitConnectionStatus = RabbitConnectionStatus = {}));
|
|
3938
|
+
|
|
3939
|
+
|
|
3912
3940
|
/***/ }),
|
|
3913
3941
|
|
|
3914
3942
|
/***/ 9367:
|
|
@@ -4048,6 +4076,7 @@ __exportStar(__webpack_require__(6978), exports);
|
|
|
4048
4076
|
__exportStar(__webpack_require__(2739), exports);
|
|
4049
4077
|
__exportStar(__webpack_require__(6119), exports);
|
|
4050
4078
|
__exportStar(__webpack_require__(3004), exports);
|
|
4079
|
+
__exportStar(__webpack_require__(9275), exports);
|
|
4051
4080
|
|
|
4052
4081
|
|
|
4053
4082
|
/***/ })
|
|
@@ -1504,6 +1504,7 @@ __exportStar(__webpack_require__(9181), exports);
|
|
|
1504
1504
|
__exportStar(__webpack_require__(7359), exports);
|
|
1505
1505
|
__exportStar(__webpack_require__(3620), exports);
|
|
1506
1506
|
__exportStar(__webpack_require__(573), exports);
|
|
1507
|
+
__exportStar(__webpack_require__(7493), exports);
|
|
1507
1508
|
|
|
1508
1509
|
|
|
1509
1510
|
/***/ }),
|
|
@@ -3218,6 +3219,15 @@ class ChartQueryDto {
|
|
|
3218
3219
|
exports.ChartQueryDto = ChartQueryDto;
|
|
3219
3220
|
|
|
3220
3221
|
|
|
3222
|
+
/***/ }),
|
|
3223
|
+
|
|
3224
|
+
/***/ 7493:
|
|
3225
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
3226
|
+
|
|
3227
|
+
|
|
3228
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3229
|
+
|
|
3230
|
+
|
|
3221
3231
|
/***/ }),
|
|
3222
3232
|
|
|
3223
3233
|
/***/ 7542:
|
|
@@ -3909,6 +3919,24 @@ var AmmBucketKeys;
|
|
|
3909
3919
|
})(AmmBucketKeys || (exports.AmmBucketKeys = AmmBucketKeys = {}));
|
|
3910
3920
|
|
|
3911
3921
|
|
|
3922
|
+
/***/ }),
|
|
3923
|
+
|
|
3924
|
+
/***/ 9275:
|
|
3925
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
3926
|
+
|
|
3927
|
+
|
|
3928
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3929
|
+
exports.RabbitConnectionStatus = void 0;
|
|
3930
|
+
var RabbitConnectionStatus;
|
|
3931
|
+
(function (RabbitConnectionStatus) {
|
|
3932
|
+
RabbitConnectionStatus["CONNECTED"] = "CONNECTED";
|
|
3933
|
+
RabbitConnectionStatus["CONNECTING"] = "CONNECTING";
|
|
3934
|
+
RabbitConnectionStatus["DISCONNECTED"] = "DISCONNECTED";
|
|
3935
|
+
RabbitConnectionStatus["DISCONNECTING"] = "DISCONNECTING";
|
|
3936
|
+
RabbitConnectionStatus["PENDING"] = "PENDING";
|
|
3937
|
+
})(RabbitConnectionStatus || (exports.RabbitConnectionStatus = RabbitConnectionStatus = {}));
|
|
3938
|
+
|
|
3939
|
+
|
|
3912
3940
|
/***/ }),
|
|
3913
3941
|
|
|
3914
3942
|
/***/ 9367:
|
|
@@ -4048,6 +4076,7 @@ __exportStar(__webpack_require__(6978), exports);
|
|
|
4048
4076
|
__exportStar(__webpack_require__(2739), exports);
|
|
4049
4077
|
__exportStar(__webpack_require__(6119), exports);
|
|
4050
4078
|
__exportStar(__webpack_require__(3004), exports);
|
|
4079
|
+
__exportStar(__webpack_require__(9275), exports);
|
|
4051
4080
|
|
|
4052
4081
|
|
|
4053
4082
|
/***/ })
|
package/dist/helpers/index.js
CHANGED
|
@@ -370,6 +370,7 @@ __exportStar(__webpack_require__(9181), exports);
|
|
|
370
370
|
__exportStar(__webpack_require__(7359), exports);
|
|
371
371
|
__exportStar(__webpack_require__(3620), exports);
|
|
372
372
|
__exportStar(__webpack_require__(573), exports);
|
|
373
|
+
__exportStar(__webpack_require__(7493), exports);
|
|
373
374
|
|
|
374
375
|
|
|
375
376
|
/***/ }),
|
|
@@ -677,6 +678,15 @@ class ChartQueryDto {
|
|
|
677
678
|
exports.ChartQueryDto = ChartQueryDto;
|
|
678
679
|
|
|
679
680
|
|
|
681
|
+
/***/ }),
|
|
682
|
+
|
|
683
|
+
/***/ 7493:
|
|
684
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
688
|
+
|
|
689
|
+
|
|
680
690
|
/***/ }),
|
|
681
691
|
|
|
682
692
|
/***/ 9181:
|
|
@@ -814,6 +814,24 @@ var MaintenanceMode;
|
|
|
814
814
|
})(MaintenanceMode || (exports.MaintenanceMode = MaintenanceMode = {}));
|
|
815
815
|
|
|
816
816
|
|
|
817
|
+
/***/ }),
|
|
818
|
+
|
|
819
|
+
/***/ 9275:
|
|
820
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
824
|
+
exports.RabbitConnectionStatus = void 0;
|
|
825
|
+
var RabbitConnectionStatus;
|
|
826
|
+
(function (RabbitConnectionStatus) {
|
|
827
|
+
RabbitConnectionStatus["CONNECTED"] = "CONNECTED";
|
|
828
|
+
RabbitConnectionStatus["CONNECTING"] = "CONNECTING";
|
|
829
|
+
RabbitConnectionStatus["DISCONNECTED"] = "DISCONNECTED";
|
|
830
|
+
RabbitConnectionStatus["DISCONNECTING"] = "DISCONNECTING";
|
|
831
|
+
RabbitConnectionStatus["PENDING"] = "PENDING";
|
|
832
|
+
})(RabbitConnectionStatus || (exports.RabbitConnectionStatus = RabbitConnectionStatus = {}));
|
|
833
|
+
|
|
834
|
+
|
|
817
835
|
/***/ }),
|
|
818
836
|
|
|
819
837
|
/***/ 9965:
|
|
@@ -840,6 +858,7 @@ __exportStar(__webpack_require__(6978), exports);
|
|
|
840
858
|
__exportStar(__webpack_require__(2739), exports);
|
|
841
859
|
__exportStar(__webpack_require__(6119), exports);
|
|
842
860
|
__exportStar(__webpack_require__(3004), exports);
|
|
861
|
+
__exportStar(__webpack_require__(9275), exports);
|
|
843
862
|
|
|
844
863
|
|
|
845
864
|
/***/ })
|
|
@@ -859,6 +859,24 @@ var MaintenanceMode;
|
|
|
859
859
|
})(MaintenanceMode || (exports.MaintenanceMode = MaintenanceMode = {}));
|
|
860
860
|
|
|
861
861
|
|
|
862
|
+
/***/ }),
|
|
863
|
+
|
|
864
|
+
/***/ 9275:
|
|
865
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
869
|
+
exports.RabbitConnectionStatus = void 0;
|
|
870
|
+
var RabbitConnectionStatus;
|
|
871
|
+
(function (RabbitConnectionStatus) {
|
|
872
|
+
RabbitConnectionStatus["CONNECTED"] = "CONNECTED";
|
|
873
|
+
RabbitConnectionStatus["CONNECTING"] = "CONNECTING";
|
|
874
|
+
RabbitConnectionStatus["DISCONNECTED"] = "DISCONNECTED";
|
|
875
|
+
RabbitConnectionStatus["DISCONNECTING"] = "DISCONNECTING";
|
|
876
|
+
RabbitConnectionStatus["PENDING"] = "PENDING";
|
|
877
|
+
})(RabbitConnectionStatus || (exports.RabbitConnectionStatus = RabbitConnectionStatus = {}));
|
|
878
|
+
|
|
879
|
+
|
|
862
880
|
/***/ }),
|
|
863
881
|
|
|
864
882
|
/***/ 9965:
|
|
@@ -885,6 +903,7 @@ __exportStar(__webpack_require__(6978), exports);
|
|
|
885
903
|
__exportStar(__webpack_require__(2739), exports);
|
|
886
904
|
__exportStar(__webpack_require__(6119), exports);
|
|
887
905
|
__exportStar(__webpack_require__(3004), exports);
|
|
906
|
+
__exportStar(__webpack_require__(9275), exports);
|
|
888
907
|
|
|
889
908
|
|
|
890
909
|
/***/ })
|
|
@@ -37,6 +37,7 @@ __exportStar(__webpack_require__(9181), exports);
|
|
|
37
37
|
__exportStar(__webpack_require__(7359), exports);
|
|
38
38
|
__exportStar(__webpack_require__(3620), exports);
|
|
39
39
|
__exportStar(__webpack_require__(573), exports);
|
|
40
|
+
__exportStar(__webpack_require__(7493), exports);
|
|
40
41
|
|
|
41
42
|
|
|
42
43
|
/***/ }),
|
|
@@ -243,6 +244,15 @@ class ChartQueryDto {
|
|
|
243
244
|
exports.ChartQueryDto = ChartQueryDto;
|
|
244
245
|
|
|
245
246
|
|
|
247
|
+
/***/ }),
|
|
248
|
+
|
|
249
|
+
/***/ 7493:
|
|
250
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
254
|
+
|
|
255
|
+
|
|
246
256
|
/***/ }),
|
|
247
257
|
|
|
248
258
|
/***/ 9181:
|
|
@@ -1518,6 +1518,7 @@ __exportStar(__webpack_require__(9181), exports);
|
|
|
1518
1518
|
__exportStar(__webpack_require__(7359), exports);
|
|
1519
1519
|
__exportStar(__webpack_require__(3620), exports);
|
|
1520
1520
|
__exportStar(__webpack_require__(573), exports);
|
|
1521
|
+
__exportStar(__webpack_require__(7493), exports);
|
|
1521
1522
|
|
|
1522
1523
|
|
|
1523
1524
|
/***/ }),
|
|
@@ -3322,6 +3323,15 @@ class ChartQueryDto {
|
|
|
3322
3323
|
exports.ChartQueryDto = ChartQueryDto;
|
|
3323
3324
|
|
|
3324
3325
|
|
|
3326
|
+
/***/ }),
|
|
3327
|
+
|
|
3328
|
+
/***/ 7493:
|
|
3329
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
3330
|
+
|
|
3331
|
+
|
|
3332
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3333
|
+
|
|
3334
|
+
|
|
3325
3335
|
/***/ }),
|
|
3326
3336
|
|
|
3327
3337
|
/***/ 7542:
|
|
@@ -4013,6 +4023,24 @@ var AmmBucketKeys;
|
|
|
4013
4023
|
})(AmmBucketKeys || (exports.AmmBucketKeys = AmmBucketKeys = {}));
|
|
4014
4024
|
|
|
4015
4025
|
|
|
4026
|
+
/***/ }),
|
|
4027
|
+
|
|
4028
|
+
/***/ 9275:
|
|
4029
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
4030
|
+
|
|
4031
|
+
|
|
4032
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
4033
|
+
exports.RabbitConnectionStatus = void 0;
|
|
4034
|
+
var RabbitConnectionStatus;
|
|
4035
|
+
(function (RabbitConnectionStatus) {
|
|
4036
|
+
RabbitConnectionStatus["CONNECTED"] = "CONNECTED";
|
|
4037
|
+
RabbitConnectionStatus["CONNECTING"] = "CONNECTING";
|
|
4038
|
+
RabbitConnectionStatus["DISCONNECTED"] = "DISCONNECTED";
|
|
4039
|
+
RabbitConnectionStatus["DISCONNECTING"] = "DISCONNECTING";
|
|
4040
|
+
RabbitConnectionStatus["PENDING"] = "PENDING";
|
|
4041
|
+
})(RabbitConnectionStatus || (exports.RabbitConnectionStatus = RabbitConnectionStatus = {}));
|
|
4042
|
+
|
|
4043
|
+
|
|
4016
4044
|
/***/ }),
|
|
4017
4045
|
|
|
4018
4046
|
/***/ 9367:
|
|
@@ -4152,6 +4180,7 @@ __exportStar(__webpack_require__(6978), exports);
|
|
|
4152
4180
|
__exportStar(__webpack_require__(2739), exports);
|
|
4153
4181
|
__exportStar(__webpack_require__(6119), exports);
|
|
4154
4182
|
__exportStar(__webpack_require__(3004), exports);
|
|
4183
|
+
__exportStar(__webpack_require__(9275), exports);
|
|
4155
4184
|
|
|
4156
4185
|
|
|
4157
4186
|
/***/ })
|
|
@@ -1221,6 +1221,15 @@ __exportStar(__webpack_require__(1710), exports);
|
|
|
1221
1221
|
__exportStar(__webpack_require__(2577), exports);
|
|
1222
1222
|
|
|
1223
1223
|
|
|
1224
|
+
/***/ }),
|
|
1225
|
+
|
|
1226
|
+
/***/ 2428:
|
|
1227
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
1231
|
+
|
|
1232
|
+
|
|
1224
1233
|
/***/ }),
|
|
1225
1234
|
|
|
1226
1235
|
/***/ 2493:
|
|
@@ -1669,6 +1678,7 @@ __exportStar(__webpack_require__(9181), exports);
|
|
|
1669
1678
|
__exportStar(__webpack_require__(7359), exports);
|
|
1670
1679
|
__exportStar(__webpack_require__(3620), exports);
|
|
1671
1680
|
__exportStar(__webpack_require__(573), exports);
|
|
1681
|
+
__exportStar(__webpack_require__(7493), exports);
|
|
1672
1682
|
|
|
1673
1683
|
|
|
1674
1684
|
/***/ }),
|
|
@@ -2764,6 +2774,30 @@ const getUpgradeImpMsg = (chainId, implementationAddress) => {
|
|
|
2764
2774
|
exports.getUpgradeImpMsg = getUpgradeImpMsg;
|
|
2765
2775
|
|
|
2766
2776
|
|
|
2777
|
+
/***/ }),
|
|
2778
|
+
|
|
2779
|
+
/***/ 4050:
|
|
2780
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
2781
|
+
|
|
2782
|
+
|
|
2783
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
2784
|
+
if (k2 === undefined) k2 = k;
|
|
2785
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
2786
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
2787
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
2788
|
+
}
|
|
2789
|
+
Object.defineProperty(o, k2, desc);
|
|
2790
|
+
}) : (function(o, m, k, k2) {
|
|
2791
|
+
if (k2 === undefined) k2 = k;
|
|
2792
|
+
o[k2] = m[k];
|
|
2793
|
+
}));
|
|
2794
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
2795
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
2796
|
+
};
|
|
2797
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
2798
|
+
__exportStar(__webpack_require__(2428), exports);
|
|
2799
|
+
|
|
2800
|
+
|
|
2767
2801
|
/***/ }),
|
|
2768
2802
|
|
|
2769
2803
|
/***/ 4132:
|
|
@@ -3287,6 +3321,15 @@ __exportStar(__webpack_require__(2169), exports);
|
|
|
3287
3321
|
__exportStar(__webpack_require__(4574), exports);
|
|
3288
3322
|
|
|
3289
3323
|
|
|
3324
|
+
/***/ }),
|
|
3325
|
+
|
|
3326
|
+
/***/ 6511:
|
|
3327
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
3328
|
+
|
|
3329
|
+
|
|
3330
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3331
|
+
|
|
3332
|
+
|
|
3290
3333
|
/***/ }),
|
|
3291
3334
|
|
|
3292
3335
|
/***/ 6828:
|
|
@@ -3425,6 +3468,15 @@ const verifySignature = (signature, address, message, encoding) => {
|
|
|
3425
3468
|
exports.verifySignature = verifySignature;
|
|
3426
3469
|
|
|
3427
3470
|
|
|
3471
|
+
/***/ }),
|
|
3472
|
+
|
|
3473
|
+
/***/ 6900:
|
|
3474
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
3475
|
+
|
|
3476
|
+
|
|
3477
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3478
|
+
|
|
3479
|
+
|
|
3428
3480
|
/***/ }),
|
|
3429
3481
|
|
|
3430
3482
|
/***/ 6978:
|
|
@@ -3628,6 +3680,15 @@ class ChartQueryDto {
|
|
|
3628
3680
|
exports.ChartQueryDto = ChartQueryDto;
|
|
3629
3681
|
|
|
3630
3682
|
|
|
3683
|
+
/***/ }),
|
|
3684
|
+
|
|
3685
|
+
/***/ 7493:
|
|
3686
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
3687
|
+
|
|
3688
|
+
|
|
3689
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3690
|
+
|
|
3691
|
+
|
|
3631
3692
|
/***/ }),
|
|
3632
3693
|
|
|
3633
3694
|
/***/ 7525:
|
|
@@ -3665,6 +3726,9 @@ __exportStar(__webpack_require__(9035), exports);
|
|
|
3665
3726
|
__exportStar(__webpack_require__(8212), exports);
|
|
3666
3727
|
__exportStar(__webpack_require__(1817), exports);
|
|
3667
3728
|
__exportStar(__webpack_require__(2420), exports);
|
|
3729
|
+
__exportStar(__webpack_require__(4050), exports);
|
|
3730
|
+
__exportStar(__webpack_require__(6511), exports);
|
|
3731
|
+
__exportStar(__webpack_require__(6900), exports);
|
|
3668
3732
|
__exportStar(__webpack_require__(5874), exports);
|
|
3669
3733
|
|
|
3670
3734
|
|
|
@@ -4425,6 +4489,24 @@ var AmmBucketKeys;
|
|
|
4425
4489
|
})(AmmBucketKeys || (exports.AmmBucketKeys = AmmBucketKeys = {}));
|
|
4426
4490
|
|
|
4427
4491
|
|
|
4492
|
+
/***/ }),
|
|
4493
|
+
|
|
4494
|
+
/***/ 9275:
|
|
4495
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
4496
|
+
|
|
4497
|
+
|
|
4498
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
4499
|
+
exports.RabbitConnectionStatus = void 0;
|
|
4500
|
+
var RabbitConnectionStatus;
|
|
4501
|
+
(function (RabbitConnectionStatus) {
|
|
4502
|
+
RabbitConnectionStatus["CONNECTED"] = "CONNECTED";
|
|
4503
|
+
RabbitConnectionStatus["CONNECTING"] = "CONNECTING";
|
|
4504
|
+
RabbitConnectionStatus["DISCONNECTED"] = "DISCONNECTED";
|
|
4505
|
+
RabbitConnectionStatus["DISCONNECTING"] = "DISCONNECTING";
|
|
4506
|
+
RabbitConnectionStatus["PENDING"] = "PENDING";
|
|
4507
|
+
})(RabbitConnectionStatus || (exports.RabbitConnectionStatus = RabbitConnectionStatus = {}));
|
|
4508
|
+
|
|
4509
|
+
|
|
4428
4510
|
/***/ }),
|
|
4429
4511
|
|
|
4430
4512
|
/***/ 9367:
|
|
@@ -4582,6 +4664,7 @@ __exportStar(__webpack_require__(6978), exports);
|
|
|
4582
4664
|
__exportStar(__webpack_require__(2739), exports);
|
|
4583
4665
|
__exportStar(__webpack_require__(6119), exports);
|
|
4584
4666
|
__exportStar(__webpack_require__(3004), exports);
|
|
4667
|
+
__exportStar(__webpack_require__(9275), exports);
|
|
4585
4668
|
|
|
4586
4669
|
|
|
4587
4670
|
/***/ }),
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './affiliate.interface';
|
|
@@ -14,4 +14,7 @@ export * from "./last-look-trade.interface";
|
|
|
14
14
|
export * from "./pair.interface";
|
|
15
15
|
export * from "./trading.interface";
|
|
16
16
|
export * from "./db";
|
|
17
|
+
export * from "./api";
|
|
18
|
+
export * from "./emailService.interface";
|
|
19
|
+
export * from "./kmsService.interface";
|
|
17
20
|
export * from "./services";
|
package/dist/interfaces/index.js
CHANGED
|
@@ -545,6 +545,15 @@ __exportStar(__webpack_require__(1710), exports);
|
|
|
545
545
|
__exportStar(__webpack_require__(2577), exports);
|
|
546
546
|
|
|
547
547
|
|
|
548
|
+
/***/ }),
|
|
549
|
+
|
|
550
|
+
/***/ 2428:
|
|
551
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
555
|
+
|
|
556
|
+
|
|
548
557
|
/***/ }),
|
|
549
558
|
|
|
550
559
|
/***/ 2562:
|
|
@@ -842,6 +851,30 @@ var TradeSubStatus;
|
|
|
842
851
|
})(TradeSubStatus || (exports.TradeSubStatus = TradeSubStatus = {}));
|
|
843
852
|
|
|
844
853
|
|
|
854
|
+
/***/ }),
|
|
855
|
+
|
|
856
|
+
/***/ 4050:
|
|
857
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
861
|
+
if (k2 === undefined) k2 = k;
|
|
862
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
863
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
864
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
865
|
+
}
|
|
866
|
+
Object.defineProperty(o, k2, desc);
|
|
867
|
+
}) : (function(o, m, k, k2) {
|
|
868
|
+
if (k2 === undefined) k2 = k;
|
|
869
|
+
o[k2] = m[k];
|
|
870
|
+
}));
|
|
871
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
872
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
873
|
+
};
|
|
874
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
875
|
+
__exportStar(__webpack_require__(2428), exports);
|
|
876
|
+
|
|
877
|
+
|
|
845
878
|
/***/ }),
|
|
846
879
|
|
|
847
880
|
/***/ 4132:
|
|
@@ -1054,6 +1087,15 @@ var TwitterAccessScopeEnum;
|
|
|
1054
1087
|
})(TwitterAccessScopeEnum || (exports.TwitterAccessScopeEnum = TwitterAccessScopeEnum = {}));
|
|
1055
1088
|
|
|
1056
1089
|
|
|
1090
|
+
/***/ }),
|
|
1091
|
+
|
|
1092
|
+
/***/ 6511:
|
|
1093
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
1094
|
+
|
|
1095
|
+
|
|
1096
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
1097
|
+
|
|
1098
|
+
|
|
1057
1099
|
/***/ }),
|
|
1058
1100
|
|
|
1059
1101
|
/***/ 6828:
|
|
@@ -1086,6 +1128,15 @@ var KYCAuthenticationStatus;
|
|
|
1086
1128
|
})(KYCAuthenticationStatus || (exports.KYCAuthenticationStatus = KYCAuthenticationStatus = {}));
|
|
1087
1129
|
|
|
1088
1130
|
|
|
1131
|
+
/***/ }),
|
|
1132
|
+
|
|
1133
|
+
/***/ 6900:
|
|
1134
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
1135
|
+
|
|
1136
|
+
|
|
1137
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
1138
|
+
|
|
1139
|
+
|
|
1089
1140
|
/***/ }),
|
|
1090
1141
|
|
|
1091
1142
|
/***/ 6978:
|
|
@@ -1149,6 +1200,9 @@ __exportStar(__webpack_require__(9035), exports);
|
|
|
1149
1200
|
__exportStar(__webpack_require__(8212), exports);
|
|
1150
1201
|
__exportStar(__webpack_require__(1817), exports);
|
|
1151
1202
|
__exportStar(__webpack_require__(2420), exports);
|
|
1203
|
+
__exportStar(__webpack_require__(4050), exports);
|
|
1204
|
+
__exportStar(__webpack_require__(6511), exports);
|
|
1205
|
+
__exportStar(__webpack_require__(6900), exports);
|
|
1152
1206
|
__exportStar(__webpack_require__(5874), exports);
|
|
1153
1207
|
|
|
1154
1208
|
|
|
@@ -1218,6 +1272,24 @@ exports.ISetting = ISetting;
|
|
|
1218
1272
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
1219
1273
|
|
|
1220
1274
|
|
|
1275
|
+
/***/ }),
|
|
1276
|
+
|
|
1277
|
+
/***/ 9275:
|
|
1278
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
1279
|
+
|
|
1280
|
+
|
|
1281
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
1282
|
+
exports.RabbitConnectionStatus = void 0;
|
|
1283
|
+
var RabbitConnectionStatus;
|
|
1284
|
+
(function (RabbitConnectionStatus) {
|
|
1285
|
+
RabbitConnectionStatus["CONNECTED"] = "CONNECTED";
|
|
1286
|
+
RabbitConnectionStatus["CONNECTING"] = "CONNECTING";
|
|
1287
|
+
RabbitConnectionStatus["DISCONNECTED"] = "DISCONNECTED";
|
|
1288
|
+
RabbitConnectionStatus["DISCONNECTING"] = "DISCONNECTING";
|
|
1289
|
+
RabbitConnectionStatus["PENDING"] = "PENDING";
|
|
1290
|
+
})(RabbitConnectionStatus || (exports.RabbitConnectionStatus = RabbitConnectionStatus = {}));
|
|
1291
|
+
|
|
1292
|
+
|
|
1221
1293
|
/***/ }),
|
|
1222
1294
|
|
|
1223
1295
|
/***/ 9610:
|
|
@@ -1262,6 +1334,7 @@ __exportStar(__webpack_require__(6978), exports);
|
|
|
1262
1334
|
__exportStar(__webpack_require__(2739), exports);
|
|
1263
1335
|
__exportStar(__webpack_require__(6119), exports);
|
|
1264
1336
|
__exportStar(__webpack_require__(3004), exports);
|
|
1337
|
+
__exportStar(__webpack_require__(9275), exports);
|
|
1265
1338
|
|
|
1266
1339
|
|
|
1267
1340
|
/***/ }),
|
package/dist/types/amm/amm.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IAsset } from "@interfaces";
|
|
1
2
|
export interface PoolInfo {
|
|
2
3
|
appId: number | string;
|
|
3
4
|
asset1Id: number;
|
|
@@ -156,6 +157,7 @@ export type ValueOf<T> = T[keyof T];
|
|
|
156
157
|
export type ContractVersionValue = ValueOf<typeof CONTRACT_VERSION>;
|
|
157
158
|
export declare const VALIDATOR_APP_ID: Record<ContractVersionValue, Record<SupportedNetwork, number>>;
|
|
158
159
|
export interface S3Assets {
|
|
160
|
+
[key: number]: IAsset;
|
|
159
161
|
}
|
|
160
162
|
export declare enum AmmBucketKeys {
|
|
161
163
|
ASSETS = "assets.json",
|
package/dist/types/index.d.ts
CHANGED