@gainsnetwork/sdk 0.2.67-rc4 → 0.2.67-rc5
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 +3 -2
- 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
|
@@ -385,6 +385,7 @@ export declare const pairs: {
|
|
|
385
385
|
"LPT/USD": string;
|
|
386
386
|
"BVIV/USD": string;
|
|
387
387
|
"EVIV/USD": string;
|
|
388
|
+
"CRCL/USD": string;
|
|
388
389
|
};
|
|
389
390
|
export declare const syntheticPairs: Set<string>;
|
|
390
391
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -393,6 +393,7 @@ exports.pairs = {
|
|
|
393
393
|
"LPT/USD": CRYPTO,
|
|
394
394
|
"BVIV/USD": CRYPTO,
|
|
395
395
|
"EVIV/USD": CRYPTO,
|
|
396
|
+
"CRCL/USD": STOCKS,
|
|
396
397
|
};
|
|
397
398
|
exports.syntheticPairs = new Set([
|
|
398
399
|
"BTCDEGEN/USD",
|
|
@@ -446,7 +447,7 @@ exports.delistedPairIxs = new Set([
|
|
|
446
447
|
160, 163, 170, 179, 182, 183, 187, 188, 189, 190, 208, 209, 225, 229, 230,
|
|
447
448
|
231, 238, 239, 241, 250, 253, 254, 258, 270, 275, 276, 278, 279, 282, 285,
|
|
448
449
|
290, 294, 296, 305, 330, 349, 352, 353, 354, 355, 357, 365, 366, 377, 378,
|
|
449
|
-
379, 380, 381, 382, 383, 384, 385,
|
|
450
|
+
379, 380, 381, 382, 383, 384, 385, 386,
|
|
450
451
|
]);
|
|
451
452
|
exports.delistedGroupsIxs = new Set([]);
|
|
452
453
|
exports.DEFAULT_PROTECTION_CLOSE_FACTOR = 1;
|
|
@@ -489,6 +489,7 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
489
489
|
[types_1.PairIndex.NXPCUSD]: "NEXPACE to US Dollar",
|
|
490
490
|
[types_1.PairIndex.SOPHUSD]: "Sophon to US Dollar",
|
|
491
491
|
[types_1.PairIndex.LPTUSD]: "Livepeer to US Dollar",
|
|
492
|
-
[types_1.PairIndex.BVIVUSD]: "Bitcoin Volmex Implied Volatility 30 Day Index",
|
|
493
|
-
[types_1.PairIndex.EVIVUSD]: "Ethereum Volmex Implied Volatility 30 Day Index",
|
|
492
|
+
[types_1.PairIndex.BVIVUSD]: "Bitcoin Volmex Implied Volatility 30 Day Index to US Dollar",
|
|
493
|
+
[types_1.PairIndex.EVIVUSD]: "Ethereum Volmex Implied Volatility 30 Day Index to US Dollar",
|
|
494
|
+
[types_1.PairIndex.CRCLUSD]: "Circle Internet Group to US Dollar",
|
|
494
495
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -415,4 +415,5 @@ var PairIndex;
|
|
|
415
415
|
PairIndex[PairIndex["LPTUSD"] = 383] = "LPTUSD";
|
|
416
416
|
PairIndex[PairIndex["BVIVUSD"] = 384] = "BVIVUSD";
|
|
417
417
|
PairIndex[PairIndex["EVIVUSD"] = 385] = "EVIVUSD";
|
|
418
|
+
PairIndex[PairIndex["CRCLUSD"] = 386] = "CRCLUSD";
|
|
418
419
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|