@gainsnetwork/sdk 0.2.59-rc3 → 0.2.59-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 +1 -0
- package/lib/constants.js +2 -0
- package/lib/contracts/utils/pairs.js +1 -0
- package/lib/trade/types.d.ts +2 -1
- package/lib/trade/types.js +1 -0
- package/package.json +1 -1
package/lib/constants.d.ts
CHANGED
|
@@ -351,6 +351,7 @@ export declare const pairs: {
|
|
|
351
351
|
"ELX/USD": string;
|
|
352
352
|
"PI/USD": string;
|
|
353
353
|
"SHELL/USD": string;
|
|
354
|
+
"BMT/USD": string;
|
|
354
355
|
};
|
|
355
356
|
export declare const syntheticPairs: Set<string>;
|
|
356
357
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -359,6 +359,7 @@ exports.pairs = {
|
|
|
359
359
|
"ELX/USD": CRYPTO,
|
|
360
360
|
"PI/USD": CRYPTO,
|
|
361
361
|
"SHELL/USD": CRYPTO,
|
|
362
|
+
"BMT/USD": CRYPTO,
|
|
362
363
|
};
|
|
363
364
|
exports.syntheticPairs = new Set([
|
|
364
365
|
"BTCDEGEN/USD",
|
|
@@ -410,6 +411,7 @@ exports.delistedPairIxs = new Set([
|
|
|
410
411
|
71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
|
|
411
412
|
97, 99, 101, 106, 52, 147, 152, 160, 179, 182, 183, 190, 229, 163, 15, 170,
|
|
412
413
|
239, 254, 230, 4, 275, 290, 296, 311, 330, 250, 276, 347, 348, 349, 350, 351,
|
|
414
|
+
352,
|
|
413
415
|
]);
|
|
414
416
|
exports.delistedGroupsIxs = new Set([6, 7]);
|
|
415
417
|
exports.DEFAULT_PROTECTION_CLOSE_FACTOR = 1;
|
|
@@ -457,4 +457,5 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
457
457
|
[types_1.PairIndex.ELXUSD]: "Elixir to US Dollar",
|
|
458
458
|
[types_1.PairIndex.PIUSD]: "Pi Network to US Dollar",
|
|
459
459
|
[types_1.PairIndex.SHELLUSD]: "MyShell to US Dollar",
|
|
460
|
+
[types_1.PairIndex.BMTUSD]: "Bubblemaps to US Dollar",
|
|
460
461
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -381,4 +381,5 @@ var PairIndex;
|
|
|
381
381
|
PairIndex[PairIndex["ELXUSD"] = 349] = "ELXUSD";
|
|
382
382
|
PairIndex[PairIndex["PIUSD"] = 350] = "PIUSD";
|
|
383
383
|
PairIndex[PairIndex["SHELLUSD"] = 351] = "SHELLUSD";
|
|
384
|
+
PairIndex[PairIndex["BMTUSD"] = 352] = "BMTUSD";
|
|
384
385
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|