@gainsnetwork/sdk 1.4.2 → 1.4.3
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 +1 -0
- package/lib/contracts/utils/pairs.js +2 -1
- 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
|
@@ -417,6 +417,7 @@ export declare const pairs: {
|
|
|
417
417
|
"OKB/USD": string;
|
|
418
418
|
"CRO/USD": string;
|
|
419
419
|
"SKY/USD": string;
|
|
420
|
+
"XPL/USD": string;
|
|
420
421
|
};
|
|
421
422
|
export declare const syntheticPairs: Set<string>;
|
|
422
423
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -513,5 +513,6 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
513
513
|
[types_1.PairIndex.ASTERUSD]: "Aster to US Dollar",
|
|
514
514
|
[types_1.PairIndex.OKBUSD]: "OKB to US Dollar",
|
|
515
515
|
[types_1.PairIndex.CROUSD]: "Cronos to US Dollar",
|
|
516
|
-
[types_1.PairIndex.SKYUSD]: "
|
|
516
|
+
[types_1.PairIndex.SKYUSD]: "Sky to US Dollar",
|
|
517
|
+
[types_1.PairIndex.XPLUSD]: "Plasma to US Dollar",
|
|
517
518
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -447,4 +447,5 @@ var PairIndex;
|
|
|
447
447
|
PairIndex[PairIndex["OKBUSD"] = 415] = "OKBUSD";
|
|
448
448
|
PairIndex[PairIndex["CROUSD"] = 416] = "CROUSD";
|
|
449
449
|
PairIndex[PairIndex["SKYUSD"] = 417] = "SKYUSD";
|
|
450
|
+
PairIndex[PairIndex["XPLUSD"] = 418] = "XPLUSD";
|
|
450
451
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|