@gainsnetwork/sdk 0.2.72-rc4 → 0.2.73-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 -0
- 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
|
@@ -407,6 +407,11 @@ export declare const pairs: {
|
|
|
407
407
|
"ICNT/USD": string;
|
|
408
408
|
"NEWT/USD": string;
|
|
409
409
|
"PUMP/USD": string;
|
|
410
|
+
"SAROS/USD": string;
|
|
411
|
+
"SPK/USD": string;
|
|
412
|
+
"ERA/USD": string;
|
|
413
|
+
"BGSC/USD": string;
|
|
414
|
+
"TAG/USD": string;
|
|
410
415
|
};
|
|
411
416
|
export declare const syntheticPairs: Set<string>;
|
|
412
417
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -415,6 +415,11 @@ exports.pairs = {
|
|
|
415
415
|
"ICNT/USD": CRYPTO,
|
|
416
416
|
"NEWT/USD": CRYPTO,
|
|
417
417
|
"PUMP/USD": CRYPTO,
|
|
418
|
+
"SAROS/USD": CRYPTO,
|
|
419
|
+
"SPK/USD": CRYPTO,
|
|
420
|
+
"ERA/USD": CRYPTO,
|
|
421
|
+
"BGSC/USD": CRYPTO,
|
|
422
|
+
"TAG/USD": CRYPTO,
|
|
418
423
|
};
|
|
419
424
|
exports.syntheticPairs = new Set([
|
|
420
425
|
"BTCDEGEN/USD",
|
|
@@ -468,6 +473,7 @@ exports.delistedPairIxs = new Set([
|
|
|
468
473
|
160, 163, 170, 179, 182, 183, 188, 189, 190, 208, 209, 225, 229, 230, 231,
|
|
469
474
|
238, 239, 241, 250, 253, 254, 258, 270, 275, 276, 278, 279, 282, 285, 290,
|
|
470
475
|
294, 296, 305, 311, 330, 349, 352, 353, 354, 355, 357, 365, 366, 395, 396,
|
|
476
|
+
408, 409, 410, 411, 412,
|
|
471
477
|
]);
|
|
472
478
|
exports.delistedGroupsIxs = new Set([]);
|
|
473
479
|
exports.DEFAULT_PROTECTION_CLOSE_FACTOR = 1;
|
|
@@ -513,4 +513,9 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
513
513
|
[types_1.PairIndex.ICNTUSD]: "Impossible Cloud Network to US Dollar",
|
|
514
514
|
[types_1.PairIndex.NEWTUSD]: "Newton Protocol to US Dollar",
|
|
515
515
|
[types_1.PairIndex.PUMPUSD]: "Pump.fun to US Dollar",
|
|
516
|
+
[types_1.PairIndex.SAROSUSD]: "Saros to US Dollar",
|
|
517
|
+
[types_1.PairIndex.SPKUSD]: "Spark to US Dollar",
|
|
518
|
+
[types_1.PairIndex.ERAUSD]: "Caldera to US Dollar",
|
|
519
|
+
[types_1.PairIndex.BGSCUSD]: "BugsCoin to US Dollar",
|
|
520
|
+
[types_1.PairIndex.TAGUSD]: "TAGGER to US Dollar",
|
|
516
521
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -437,4 +437,9 @@ var PairIndex;
|
|
|
437
437
|
PairIndex[PairIndex["ICNTUSD"] = 405] = "ICNTUSD";
|
|
438
438
|
PairIndex[PairIndex["NEWTUSD"] = 406] = "NEWTUSD";
|
|
439
439
|
PairIndex[PairIndex["PUMPUSD"] = 407] = "PUMPUSD";
|
|
440
|
+
PairIndex[PairIndex["SAROSUSD"] = 408] = "SAROSUSD";
|
|
441
|
+
PairIndex[PairIndex["SPKUSD"] = 409] = "SPKUSD";
|
|
442
|
+
PairIndex[PairIndex["ERAUSD"] = 410] = "ERAUSD";
|
|
443
|
+
PairIndex[PairIndex["BGSCUSD"] = 411] = "BGSCUSD";
|
|
444
|
+
PairIndex[PairIndex["TAGUSD"] = 412] = "TAGUSD";
|
|
440
445
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|