@gainsnetwork/sdk 0.2.67-rc3 → 0.2.67-rc4
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/lib/constants.d.ts +0 -1
- package/lib/constants.js +1 -2
- package/lib/contracts/utils/pairs.js +0 -1
- package/lib/trade/types.d.ts +6 -7
- package/lib/trade/types.js +6 -7
- package/package.json +1 -1
package/lib/constants.d.ts
CHANGED
package/lib/constants.js
CHANGED
|
@@ -387,7 +387,6 @@ exports.pairs = {
|
|
|
387
387
|
"HOOD/USD": STOCKS,
|
|
388
388
|
"MSTR/USD": STOCKS,
|
|
389
389
|
"NFLX/USD": STOCKS,
|
|
390
|
-
"DAX/USD": INDICES,
|
|
391
390
|
"LAUNCHCOIN/USD": CRYPTO,
|
|
392
391
|
"NXPC/USD": CRYPTO,
|
|
393
392
|
"SOPH/USD": CRYPTO,
|
|
@@ -447,7 +446,7 @@ exports.delistedPairIxs = new Set([
|
|
|
447
446
|
160, 163, 170, 179, 182, 183, 187, 188, 189, 190, 208, 209, 225, 229, 230,
|
|
448
447
|
231, 238, 239, 241, 250, 253, 254, 258, 270, 275, 276, 278, 279, 282, 285,
|
|
449
448
|
290, 294, 296, 305, 330, 349, 352, 353, 354, 355, 357, 365, 366, 377, 378,
|
|
450
|
-
379, 380, 381, 382, 383, 384, 385,
|
|
449
|
+
379, 380, 381, 382, 383, 384, 385,
|
|
451
450
|
]);
|
|
452
451
|
exports.delistedGroupsIxs = new Set([]);
|
|
453
452
|
exports.DEFAULT_PROTECTION_CLOSE_FACTOR = 1;
|
|
@@ -485,7 +485,6 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
485
485
|
[types_1.PairIndex.HOODUSD]: "Robinhood Markets to US Dollar",
|
|
486
486
|
[types_1.PairIndex.MSTRUSD]: "MicroStrategy Inc to US Dollar",
|
|
487
487
|
[types_1.PairIndex.NFLXUSD]: "Netflix to US Dollar",
|
|
488
|
-
[types_1.PairIndex.DAXUSD]: "DAX to US Dollar",
|
|
489
488
|
[types_1.PairIndex.LAUNCHCOINUSD]: "Launch Coin on Believe to US Dollar",
|
|
490
489
|
[types_1.PairIndex.NXPCUSD]: "NEXPACE to US Dollar",
|
|
491
490
|
[types_1.PairIndex.SOPHUSD]: "Sophon to US Dollar",
|
package/lib/trade/types.d.ts
CHANGED
|
@@ -603,11 +603,10 @@ export declare enum PairIndex {
|
|
|
603
603
|
HOODUSD = 377,
|
|
604
604
|
MSTRUSD = 378,
|
|
605
605
|
NFLXUSD = 379,
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
EVIVUSD = 386
|
|
606
|
+
LAUNCHCOINUSD = 380,
|
|
607
|
+
NXPCUSD = 381,
|
|
608
|
+
SOPHUSD = 382,
|
|
609
|
+
LPTUSD = 383,
|
|
610
|
+
BVIVUSD = 384,
|
|
611
|
+
EVIVUSD = 385
|
|
613
612
|
}
|
package/lib/trade/types.js
CHANGED
|
@@ -409,11 +409,10 @@ var PairIndex;
|
|
|
409
409
|
PairIndex[PairIndex["HOODUSD"] = 377] = "HOODUSD";
|
|
410
410
|
PairIndex[PairIndex["MSTRUSD"] = 378] = "MSTRUSD";
|
|
411
411
|
PairIndex[PairIndex["NFLXUSD"] = 379] = "NFLXUSD";
|
|
412
|
-
PairIndex[PairIndex["
|
|
413
|
-
PairIndex[PairIndex["
|
|
414
|
-
PairIndex[PairIndex["
|
|
415
|
-
PairIndex[PairIndex["
|
|
416
|
-
PairIndex[PairIndex["
|
|
417
|
-
PairIndex[PairIndex["
|
|
418
|
-
PairIndex[PairIndex["EVIVUSD"] = 386] = "EVIVUSD";
|
|
412
|
+
PairIndex[PairIndex["LAUNCHCOINUSD"] = 380] = "LAUNCHCOINUSD";
|
|
413
|
+
PairIndex[PairIndex["NXPCUSD"] = 381] = "NXPCUSD";
|
|
414
|
+
PairIndex[PairIndex["SOPHUSD"] = 382] = "SOPHUSD";
|
|
415
|
+
PairIndex[PairIndex["LPTUSD"] = 383] = "LPTUSD";
|
|
416
|
+
PairIndex[PairIndex["BVIVUSD"] = 384] = "BVIVUSD";
|
|
417
|
+
PairIndex[PairIndex["EVIVUSD"] = 385] = "EVIVUSD";
|
|
419
418
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|