@gainsnetwork/sdk 0.2.51 → 0.2.52-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 +1 -0
- package/lib/constants.js +2 -1
- 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
|
@@ -328,6 +328,7 @@ export declare const pairs: {
|
|
|
328
328
|
"XRPDEGEN/USD": string;
|
|
329
329
|
"BNBDEGEN/USD": string;
|
|
330
330
|
"TRUMP/USD": string;
|
|
331
|
+
"MELANIA/USD": string;
|
|
331
332
|
};
|
|
332
333
|
export declare const syntheticPairs: Set<string>;
|
|
333
334
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -336,6 +336,7 @@ exports.pairs = {
|
|
|
336
336
|
"XRPDEGEN/USD": CRYPTO,
|
|
337
337
|
"BNBDEGEN/USD": CRYPTO,
|
|
338
338
|
"TRUMP/USD": CRYPTO,
|
|
339
|
+
"MELANIA/USD": CRYPTO,
|
|
339
340
|
};
|
|
340
341
|
exports.syntheticPairs = new Set([
|
|
341
342
|
"BTCDEGEN/USD",
|
|
@@ -386,7 +387,7 @@ exports.delistedPairIxs = new Set([
|
|
|
386
387
|
4, 6, 31, 36, 48, 51, 54, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
|
387
388
|
71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
|
|
388
389
|
97, 99, 101, 106, 108, 52, 131, 147, 152, 160, 179, 182, 183, 190, 229, 163,
|
|
389
|
-
15, 170, 239, 254, 230, 4, 275, 290, 296, 311,
|
|
390
|
+
15, 170, 239, 254, 230, 4, 275, 290, 296, 311, 329,
|
|
390
391
|
]);
|
|
391
392
|
exports.delistedGroupsIxs = new Set([6, 7]);
|
|
392
393
|
exports.DEFAULT_PROTECTION_CLOSE_FACTOR = 1;
|
|
@@ -434,4 +434,5 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
434
434
|
[types_1.PairIndex.XRPDEGEN]: "Ripple to US Dollar",
|
|
435
435
|
[types_1.PairIndex.BNBDEGEN]: "Binance Coin to US Dollar",
|
|
436
436
|
[types_1.PairIndex.TRUMPUSD]: "Official Trump to US Dollar",
|
|
437
|
+
[types_1.PairIndex.MELANIAUSD]: "Melania Meme to US Dollar",
|
|
437
438
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -358,4 +358,5 @@ var PairIndex;
|
|
|
358
358
|
PairIndex[PairIndex["XRPDEGEN"] = 326] = "XRPDEGEN";
|
|
359
359
|
PairIndex[PairIndex["BNBDEGEN"] = 327] = "BNBDEGEN";
|
|
360
360
|
PairIndex[PairIndex["TRUMPUSD"] = 328] = "TRUMPUSD";
|
|
361
|
+
PairIndex[PairIndex["MELANIAUSD"] = 329] = "MELANIAUSD";
|
|
361
362
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|