@gainsnetwork/sdk 0.2.59-rc6 → 0.2.59-rc8
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 +6 -0
- package/lib/constants.js +6 -0
- package/lib/contracts/utils/pairs.js +6 -0
- package/lib/trade/types.d.ts +7 -1
- package/lib/trade/types.js +6 -0
- package/package.json +1 -1
package/lib/constants.d.ts
CHANGED
|
@@ -352,6 +352,12 @@ export declare const pairs: {
|
|
|
352
352
|
"PI/USD": string;
|
|
353
353
|
"SHELL/USD": string;
|
|
354
354
|
"BMT/USD": string;
|
|
355
|
+
"BROCCOLI/USD": string;
|
|
356
|
+
"TUT/USD": string;
|
|
357
|
+
"GPS/USD": string;
|
|
358
|
+
"RED/USD": string;
|
|
359
|
+
"MUBARAK/USD": string;
|
|
360
|
+
"FORM/USD": string;
|
|
355
361
|
};
|
|
356
362
|
export declare const syntheticPairs: Set<string>;
|
|
357
363
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -360,6 +360,12 @@ exports.pairs = {
|
|
|
360
360
|
"PI/USD": CRYPTO,
|
|
361
361
|
"SHELL/USD": CRYPTO,
|
|
362
362
|
"BMT/USD": CRYPTO,
|
|
363
|
+
"BROCCOLI/USD": CRYPTO,
|
|
364
|
+
"TUT/USD": CRYPTO,
|
|
365
|
+
"GPS/USD": CRYPTO,
|
|
366
|
+
"RED/USD": CRYPTO,
|
|
367
|
+
"MUBARAK/USD": CRYPTO,
|
|
368
|
+
"FORM/USD": CRYPTO,
|
|
363
369
|
};
|
|
364
370
|
exports.syntheticPairs = new Set([
|
|
365
371
|
"BTCDEGEN/USD",
|
|
@@ -458,4 +458,10 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
458
458
|
[types_1.PairIndex.PIUSD]: "Pi Network to US Dollar",
|
|
459
459
|
[types_1.PairIndex.SHELLUSD]: "MyShell to US Dollar",
|
|
460
460
|
[types_1.PairIndex.BMTUSD]: "Bubblemaps to US Dollar",
|
|
461
|
+
[types_1.PairIndex.BROCCOLIUSD]: "CZ'S Dog to US Dollar",
|
|
462
|
+
[types_1.PairIndex.TUTUSD]: "Tutorial to US Dollar",
|
|
463
|
+
[types_1.PairIndex.GPSUSD]: "GoPlus Security to US Dollar",
|
|
464
|
+
[types_1.PairIndex.REDUSD]: "RedStone to US Dollar",
|
|
465
|
+
[types_1.PairIndex.MUBARAKUSD]: "Mubarak to US Dollar",
|
|
466
|
+
[types_1.PairIndex.FORMUSD]: "Four to US Dollar",
|
|
461
467
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -382,4 +382,10 @@ var PairIndex;
|
|
|
382
382
|
PairIndex[PairIndex["PIUSD"] = 350] = "PIUSD";
|
|
383
383
|
PairIndex[PairIndex["SHELLUSD"] = 351] = "SHELLUSD";
|
|
384
384
|
PairIndex[PairIndex["BMTUSD"] = 352] = "BMTUSD";
|
|
385
|
+
PairIndex[PairIndex["BROCCOLIUSD"] = 353] = "BROCCOLIUSD";
|
|
386
|
+
PairIndex[PairIndex["TUTUSD"] = 354] = "TUTUSD";
|
|
387
|
+
PairIndex[PairIndex["GPSUSD"] = 355] = "GPSUSD";
|
|
388
|
+
PairIndex[PairIndex["REDUSD"] = 356] = "REDUSD";
|
|
389
|
+
PairIndex[PairIndex["MUBARAKUSD"] = 357] = "MUBARAKUSD";
|
|
390
|
+
PairIndex[PairIndex["FORMUSD"] = 358] = "FORMUSD";
|
|
385
391
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|