@gainsnetwork/sdk 0.2.55-rc1 → 0.2.55-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
|
@@ -341,6 +341,7 @@ export declare const pairs: {
|
|
|
341
341
|
"VVV/USD": string;
|
|
342
342
|
"VINE/USD": string;
|
|
343
343
|
"TOSHI/USD": string;
|
|
344
|
+
"BERA/USD": string;
|
|
344
345
|
};
|
|
345
346
|
export declare const syntheticPairs: Set<string>;
|
|
346
347
|
export declare const parentToSyntheticPairMap: Map<string, string>;
|
package/lib/constants.js
CHANGED
|
@@ -447,4 +447,5 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
447
447
|
[types_1.PairIndex.VVVUSD]: "Venice Token to US Dollar",
|
|
448
448
|
[types_1.PairIndex.VINEUSD]: "Vine coin to US Dollar",
|
|
449
449
|
[types_1.PairIndex.TOSHIUSD]: "Toshi to US Dollar",
|
|
450
|
+
[types_1.PairIndex.BERAUSD]: "Berachain to US Dollar",
|
|
450
451
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -371,4 +371,5 @@ var PairIndex;
|
|
|
371
371
|
PairIndex[PairIndex["VVVUSD"] = 339] = "VVVUSD";
|
|
372
372
|
PairIndex[PairIndex["VINEUSD"] = 340] = "VINEUSD";
|
|
373
373
|
PairIndex[PairIndex["TOSHIUSD"] = 341] = "TOSHIUSD";
|
|
374
|
+
PairIndex[PairIndex["BERAUSD"] = 342] = "BERAUSD";
|
|
374
375
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|