@gainsnetwork/sdk 0.2.59 → 0.2.61-rc1
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 +5 -0
- package/lib/constants.js +6 -1
- package/lib/contracts/utils/pairs.js +5 -0
- package/lib/trade/types.d.ts +6 -1
- package/lib/trade/types.js +5 -0
- package/package.json +1 -1
package/lib/constants.d.ts
CHANGED
|
@@ -358,6 +358,11 @@ export declare const pairs: {
|
|
|
358
358
|
"RED/USD": string;
|
|
359
359
|
"MUBARAK/USD": string;
|
|
360
360
|
"FORM/USD": string;
|
|
361
|
+
"WAL/USD": string;
|
|
362
|
+
"NIL/USD": string;
|
|
363
|
+
"PARTI/USD": string;
|
|
364
|
+
"SIREN/USD": string;
|
|
365
|
+
"BANANAS31/USD": string;
|
|
361
366
|
};
|
|
362
367
|
export declare const syntheticPairs: Set<string>;
|
|
363
368
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -366,6 +366,11 @@ exports.pairs = {
|
|
|
366
366
|
"RED/USD": CRYPTO,
|
|
367
367
|
"MUBARAK/USD": CRYPTO,
|
|
368
368
|
"FORM/USD": CRYPTO,
|
|
369
|
+
"WAL/USD": CRYPTO,
|
|
370
|
+
"NIL/USD": CRYPTO,
|
|
371
|
+
"PARTI/USD": CRYPTO,
|
|
372
|
+
"SIREN/USD": CRYPTO,
|
|
373
|
+
"BANANAS31/USD": CRYPTO,
|
|
369
374
|
};
|
|
370
375
|
exports.syntheticPairs = new Set([
|
|
371
376
|
"BTCDEGEN/USD",
|
|
@@ -416,7 +421,7 @@ exports.delistedPairIxs = new Set([
|
|
|
416
421
|
4, 6, 31, 36, 48, 51, 54, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
|
417
422
|
71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
|
|
418
423
|
97, 99, 101, 106, 52, 147, 152, 160, 179, 182, 183, 190, 229, 163, 15, 170,
|
|
419
|
-
239, 254, 230, 4, 275, 290, 296, 311, 330, 250, 276,
|
|
424
|
+
239, 254, 230, 4, 275, 290, 296, 311, 330, 250, 276, 359, 360, 361, 362, 363,
|
|
420
425
|
]);
|
|
421
426
|
exports.delistedGroupsIxs = new Set([6, 7]);
|
|
422
427
|
exports.DEFAULT_PROTECTION_CLOSE_FACTOR = 1;
|
|
@@ -464,4 +464,9 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
464
464
|
[types_1.PairIndex.REDUSD]: "RedStone to US Dollar",
|
|
465
465
|
[types_1.PairIndex.MUBARAKUSD]: "Mubarak to US Dollar",
|
|
466
466
|
[types_1.PairIndex.FORMUSD]: "Four to US Dollar",
|
|
467
|
+
[types_1.PairIndex.WALUSD]: "Walrus to US Dollar",
|
|
468
|
+
[types_1.PairIndex.NILUSD]: "Nillion to US Dollar",
|
|
469
|
+
[types_1.PairIndex.PARTIUSD]: "Particle Network to US Dollar",
|
|
470
|
+
[types_1.PairIndex.SIRENUSD]: "Siren to US Dollar",
|
|
471
|
+
[types_1.PairIndex.BANANAS31]: "Banana For Scale to US Dollar",
|
|
467
472
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -388,4 +388,9 @@ var PairIndex;
|
|
|
388
388
|
PairIndex[PairIndex["REDUSD"] = 356] = "REDUSD";
|
|
389
389
|
PairIndex[PairIndex["MUBARAKUSD"] = 357] = "MUBARAKUSD";
|
|
390
390
|
PairIndex[PairIndex["FORMUSD"] = 358] = "FORMUSD";
|
|
391
|
+
PairIndex[PairIndex["WALUSD"] = 359] = "WALUSD";
|
|
392
|
+
PairIndex[PairIndex["NILUSD"] = 360] = "NILUSD";
|
|
393
|
+
PairIndex[PairIndex["PARTIUSD"] = 361] = "PARTIUSD";
|
|
394
|
+
PairIndex[PairIndex["SIRENUSD"] = 362] = "SIRENUSD";
|
|
395
|
+
PairIndex[PairIndex["BANANAS31"] = 363] = "BANANAS31";
|
|
391
396
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|