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