@gainsnetwork/sdk 1.8.9-rc1 → 1.8.10
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 +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
|
@@ -452,6 +452,7 @@ export declare const pairs: {
|
|
|
452
452
|
"BRENT/USD": string;
|
|
453
453
|
"URNM/USD": string;
|
|
454
454
|
"HYPEDEGEN/USD": string;
|
|
455
|
+
"MEGA/USD": string;
|
|
455
456
|
};
|
|
456
457
|
export declare const syntheticPairs: Set<string>;
|
|
457
458
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -606,4 +606,5 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
606
606
|
[types_1.PairIndex.BRENTUSD]: "Brent Crude Oil to US Dollar",
|
|
607
607
|
[types_1.PairIndex.URNMUSD]: "Sprott Uranium Miners ETF to US Dollar",
|
|
608
608
|
[types_1.PairIndex.HYPEDEGEN]: "Hyperliquid to US Dollar",
|
|
609
|
+
[types_1.PairIndex.MEGA]: "MegaETH to US Dollar",
|
|
609
610
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -482,4 +482,5 @@ var PairIndex;
|
|
|
482
482
|
PairIndex[PairIndex["BRENTUSD"] = 450] = "BRENTUSD";
|
|
483
483
|
PairIndex[PairIndex["URNMUSD"] = 451] = "URNMUSD";
|
|
484
484
|
PairIndex[PairIndex["HYPEDEGEN"] = 452] = "HYPEDEGEN";
|
|
485
|
+
PairIndex[PairIndex["MEGA"] = 453] = "MEGA";
|
|
485
486
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|