@gainsnetwork/sdk 1.6.0-rc2 → 1.6.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.
- package/lib/constants.d.ts +4 -0
- package/lib/constants.js +12 -6
- package/lib/contracts/utils/pairs.js +4 -0
- package/lib/trade/types.d.ts +5 -1
- package/lib/trade/types.js +4 -0
- package/package.json +1 -1
package/lib/constants.d.ts
CHANGED
|
@@ -431,6 +431,10 @@ export declare const pairs: {
|
|
|
431
431
|
"SOMI/USD": string;
|
|
432
432
|
"HEMI/USD": string;
|
|
433
433
|
"FF/USD": string;
|
|
434
|
+
"USELESS/USD": string;
|
|
435
|
+
"MON/USD": string;
|
|
436
|
+
"MET/USD": string;
|
|
437
|
+
"TURTLE/USD": string;
|
|
434
438
|
};
|
|
435
439
|
export declare const syntheticPairs: Set<string>;
|
|
436
440
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -439,6 +439,10 @@ exports.pairs = {
|
|
|
439
439
|
"SOMI/USD": CRYPTO,
|
|
440
440
|
"HEMI/USD": CRYPTO,
|
|
441
441
|
"FF/USD": CRYPTO,
|
|
442
|
+
"USELESS/USD": CRYPTO,
|
|
443
|
+
"MON/USD": CRYPTO,
|
|
444
|
+
"MET/USD": CRYPTO,
|
|
445
|
+
"TURTLE/USD": CRYPTO,
|
|
442
446
|
};
|
|
443
447
|
exports.syntheticPairs = new Set([
|
|
444
448
|
"BTCDEGEN/USD",
|
|
@@ -486,12 +490,14 @@ exports.stockSplits = {
|
|
|
486
490
|
"TSLA_1/USD": { date: "8/25/2022", split: 3 },
|
|
487
491
|
};
|
|
488
492
|
exports.delistedPairIxs = new Set([
|
|
489
|
-
4, 6, 12, 15, 24, 25, 27, 28, 30, 31, 36, 48, 51, 52, 53, 54, 56, 59, 60,
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
160, 163, 170, 179, 182, 183, 188, 189, 190, 208, 209,
|
|
493
|
-
|
|
494
|
-
|
|
493
|
+
4, 6, 12, 15, 24, 25, 27, 28, 30, 31, 36, 41, 48, 51, 52, 53, 54, 56, 59, 60, 61,
|
|
494
|
+
63, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 79, 95, 96, 97, 98, 99,
|
|
495
|
+
101, 106, 111, 113, 114, 116, 118, 120, 122, 123, 125, 127, 130, 147, 152,
|
|
496
|
+
160, 163, 170, 179, 182, 183, 186, 188, 189, 190, 198, 208, 209, 224, 225, 227,
|
|
497
|
+
229, 230, 231, 234, 238, 239, 241, 247, 250, 253, 254, 258, 261, 270, 272, 275,
|
|
498
|
+
276, 278, 279, 280, 285, 290, 291, 292, 294, 296, 303, 305, 306, 311, 322, 330,
|
|
499
|
+
333, 336, 337, 342, 343, 344, 347, 349, 350, 352, 354, 355, 357, 365, 366, 395,
|
|
500
|
+
396, 400, 401, 408, 423, 427, 433,
|
|
495
501
|
]);
|
|
496
502
|
exports.delistedGroupsIxs = new Set([]);
|
|
497
503
|
exports.DEFAULT_PROTECTION_CLOSE_FACTOR = 1;
|
|
@@ -585,4 +585,8 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
585
585
|
[types_1.PairIndex.SOMIUSD]: "Somnia to US Dollar",
|
|
586
586
|
[types_1.PairIndex.HEMIUSD]: "Hemi to US Dollar",
|
|
587
587
|
[types_1.PairIndex.FFUSD]: "Falcon Finance to US Dollar",
|
|
588
|
+
[types_1.PairIndex.USELESSUSD]: "Useless Coin to US Dollar",
|
|
589
|
+
[types_1.PairIndex.MONUSD]: "Monad to US Dollar",
|
|
590
|
+
[types_1.PairIndex.METUSD]: "Meteora to US Dollar",
|
|
591
|
+
[types_1.PairIndex.TURTLEUSD]: "Turtle to US Dollar",
|
|
588
592
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -461,4 +461,8 @@ var PairIndex;
|
|
|
461
461
|
PairIndex[PairIndex["SOMIUSD"] = 429] = "SOMIUSD";
|
|
462
462
|
PairIndex[PairIndex["HEMIUSD"] = 430] = "HEMIUSD";
|
|
463
463
|
PairIndex[PairIndex["FFUSD"] = 431] = "FFUSD";
|
|
464
|
+
PairIndex[PairIndex["USELESSUSD"] = 432] = "USELESSUSD";
|
|
465
|
+
PairIndex[PairIndex["MONUSD"] = 433] = "MONUSD";
|
|
466
|
+
PairIndex[PairIndex["METUSD"] = 434] = "METUSD";
|
|
467
|
+
PairIndex[PairIndex["TURTLEUSD"] = 435] = "TURTLEUSD";
|
|
464
468
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|