@gainsnetwork/sdk 1.6.6 → 1.6.8-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
|
@@ -440,6 +440,7 @@ export declare const pairs: {
|
|
|
440
440
|
"USA30/USD": string;
|
|
441
441
|
"NFLX_1/USD": string;
|
|
442
442
|
"STABLE/USD": string;
|
|
443
|
+
"VOOI/USD": string;
|
|
443
444
|
};
|
|
444
445
|
export declare const syntheticPairs: Set<string>;
|
|
445
446
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -448,6 +448,7 @@ exports.pairs = {
|
|
|
448
448
|
"USA30/USD": INDICES,
|
|
449
449
|
"NFLX_1/USD": STOCKS,
|
|
450
450
|
"STABLE/USD": CRYPTO,
|
|
451
|
+
"VOOI/USD": CRYPTO,
|
|
451
452
|
};
|
|
452
453
|
exports.syntheticPairs = new Set([
|
|
453
454
|
"BTCDEGEN/USD",
|
|
@@ -504,7 +505,7 @@ exports.delistedPairIxs = new Set([
|
|
|
504
505
|
272, 273, 275, 276, 278, 279, 280, 281, 284, 285, 290, 291, 292, 294, 296, 303,
|
|
505
506
|
305, 306, 311, 312, 322, 323, 330, 333, 335, 336, 337, 342, 343, 344, 346, 347,
|
|
506
507
|
349, 350, 351, 352, 353, 354, 355, 357, 362, 365, 366, 372, 379, 380, 387, 395,
|
|
507
|
-
396, 400, 401, 408, 423, 427, 428, 430, 435, 436, 437, 438,
|
|
508
|
+
396, 400, 401, 408, 423, 427, 428, 430, 435, 436, 437, 438, 441,
|
|
508
509
|
]);
|
|
509
510
|
exports.delistedGroupsIxs = new Set([]);
|
|
510
511
|
exports.DEFAULT_PROTECTION_CLOSE_FACTOR = 1;
|
|
@@ -594,4 +594,5 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
594
594
|
[types_1.PairIndex.USA30USD]: "Down Jones 30 to US Dollar",
|
|
595
595
|
[types_1.PairIndex.NFLXUSD2]: "Netflix to US Dollar",
|
|
596
596
|
[types_1.PairIndex.STABLEUSD]: "Stable to US Dollar",
|
|
597
|
+
[types_1.PairIndex.VOOIUSD]: "VOOI to US Dollar",
|
|
597
598
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -470,4 +470,5 @@ var PairIndex;
|
|
|
470
470
|
PairIndex[PairIndex["USA30USD"] = 438] = "USA30USD";
|
|
471
471
|
PairIndex[PairIndex["NFLXUSD2"] = 439] = "NFLXUSD2";
|
|
472
472
|
PairIndex[PairIndex["STABLEUSD"] = 440] = "STABLEUSD";
|
|
473
|
+
PairIndex[PairIndex["VOOIUSD"] = 441] = "VOOIUSD";
|
|
473
474
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|