@gainsnetwork/sdk 0.2.51 → 0.2.52-rc2
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
|
@@ -328,6 +328,7 @@ export declare const pairs: {
|
|
|
328
328
|
"XRPDEGEN/USD": string;
|
|
329
329
|
"BNBDEGEN/USD": string;
|
|
330
330
|
"TRUMP/USD": string;
|
|
331
|
+
"MELANIA/USD": string;
|
|
331
332
|
};
|
|
332
333
|
export declare const syntheticPairs: Set<string>;
|
|
333
334
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -434,4 +434,5 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
434
434
|
[types_1.PairIndex.XRPDEGEN]: "Ripple to US Dollar",
|
|
435
435
|
[types_1.PairIndex.BNBDEGEN]: "Binance Coin to US Dollar",
|
|
436
436
|
[types_1.PairIndex.TRUMPUSD]: "Official Trump to US Dollar",
|
|
437
|
+
[types_1.PairIndex.MELANIAUSD]: "Melania Meme to US Dollar",
|
|
437
438
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -358,4 +358,5 @@ var PairIndex;
|
|
|
358
358
|
PairIndex[PairIndex["XRPDEGEN"] = 326] = "XRPDEGEN";
|
|
359
359
|
PairIndex[PairIndex["BNBDEGEN"] = 327] = "BNBDEGEN";
|
|
360
360
|
PairIndex[PairIndex["TRUMPUSD"] = 328] = "TRUMPUSD";
|
|
361
|
+
PairIndex[PairIndex["MELANIAUSD"] = 329] = "MELANIAUSD";
|
|
361
362
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|