@gainsnetwork/sdk 0.2.56-rc5 → 0.2.57-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 +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
|
@@ -346,6 +346,8 @@ export declare const pairs: {
|
|
|
346
346
|
"CHEEMS/USD": string;
|
|
347
347
|
"SOLV/USD": string;
|
|
348
348
|
"TST/USD": string;
|
|
349
|
+
"IP/USD": string;
|
|
350
|
+
"KAITO/USD": string;
|
|
349
351
|
};
|
|
350
352
|
export declare const syntheticPairs: Set<string>;
|
|
351
353
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -354,6 +354,8 @@ exports.pairs = {
|
|
|
354
354
|
"CHEEMS/USD": CRYPTO,
|
|
355
355
|
"SOLV/USD": CRYPTO,
|
|
356
356
|
"TST/USD": CRYPTO,
|
|
357
|
+
"IP/USD": CRYPTO,
|
|
358
|
+
"KAITO/USD": CRYPTO,
|
|
357
359
|
};
|
|
358
360
|
exports.syntheticPairs = new Set([
|
|
359
361
|
"BTCDEGEN/USD",
|
|
@@ -404,7 +406,7 @@ exports.delistedPairIxs = new Set([
|
|
|
404
406
|
4, 6, 31, 36, 48, 51, 54, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
|
405
407
|
71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
|
|
406
408
|
97, 99, 101, 106, 52, 147, 152, 160, 179, 182, 183, 190, 229, 163, 15, 170,
|
|
407
|
-
239, 254, 230, 4, 275, 290, 296, 311, 330, 250, 276,
|
|
409
|
+
239, 254, 230, 4, 275, 290, 296, 311, 330, 250, 276, 347, 348,
|
|
408
410
|
]);
|
|
409
411
|
exports.delistedGroupsIxs = new Set([6, 7]);
|
|
410
412
|
exports.DEFAULT_PROTECTION_CLOSE_FACTOR = 1;
|
|
@@ -452,4 +452,6 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
452
452
|
[types_1.PairIndex.CHEEMSUSD]: "Cheems Token to US Dollar",
|
|
453
453
|
[types_1.PairIndex.SOLVUSD]: "Solv Protocol to US Dollar",
|
|
454
454
|
[types_1.PairIndex.TSTUSD]: "Test to US Dollar",
|
|
455
|
+
[types_1.PairIndex.IPUSD]: "Story to US Dollar",
|
|
456
|
+
[types_1.PairIndex.KAITOUSD]: "KAITO to US Dollar",
|
|
455
457
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -376,4 +376,6 @@ var PairIndex;
|
|
|
376
376
|
PairIndex[PairIndex["CHEEMSUSD"] = 344] = "CHEEMSUSD";
|
|
377
377
|
PairIndex[PairIndex["SOLVUSD"] = 345] = "SOLVUSD";
|
|
378
378
|
PairIndex[PairIndex["TSTUSD"] = 346] = "TSTUSD";
|
|
379
|
+
PairIndex[PairIndex["IPUSD"] = 347] = "IPUSD";
|
|
380
|
+
PairIndex[PairIndex["KAITOUSD"] = 348] = "KAITOUSD";
|
|
379
381
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|