@gainsnetwork/sdk 0.2.4-rc3 → 0.2.4-rc4
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 -1
- package/lib/constants.js +1 -1
- package/lib/contracts/utils/pairs.js +1 -1
- package/lib/trade/types.d.ts +2 -2
- package/lib/trade/types.js +2 -2
- package/package.json +1 -1
package/lib/constants.d.ts
CHANGED
|
@@ -235,8 +235,8 @@ export declare const pairs: {
|
|
|
235
235
|
"IO/USD": string;
|
|
236
236
|
"BRETT/USD": string;
|
|
237
237
|
"ATH/USD": string;
|
|
238
|
-
"ZK/USD": string;
|
|
239
238
|
"ZRO/USD": string;
|
|
239
|
+
"ZK/USD": string;
|
|
240
240
|
};
|
|
241
241
|
export declare const getAssetClassFromGroupIndex: (groupIndex: number) => string | undefined;
|
|
242
242
|
export declare const tickerChanges: {
|
package/lib/constants.js
CHANGED
|
@@ -341,6 +341,6 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
341
341
|
[types_1.PairIndex.IOUSD]: "Ionet to US Dollar",
|
|
342
342
|
[types_1.PairIndex.BRETTUSD]: "Brett to US Dollar",
|
|
343
343
|
[types_1.PairIndex.ATHUSD]: "Aethir to US Dollar",
|
|
344
|
-
[types_1.PairIndex.ZKUSD]: "ZKsync to US Dollar",
|
|
345
344
|
[types_1.PairIndex.ZROUSD]: "LayerZero to US Dollar",
|
|
345
|
+
[types_1.PairIndex.ZKUSD]: "ZKsync to US Dollar",
|
|
346
346
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -265,6 +265,6 @@ var PairIndex;
|
|
|
265
265
|
PairIndex[PairIndex["IOUSD"] = 233] = "IOUSD";
|
|
266
266
|
PairIndex[PairIndex["BRETTUSD"] = 234] = "BRETTUSD";
|
|
267
267
|
PairIndex[PairIndex["ATHUSD"] = 235] = "ATHUSD";
|
|
268
|
-
PairIndex[PairIndex["
|
|
269
|
-
PairIndex[PairIndex["
|
|
268
|
+
PairIndex[PairIndex["ZROUSD"] = 236] = "ZROUSD";
|
|
269
|
+
PairIndex[PairIndex["ZKUSD"] = 237] = "ZKUSD";
|
|
270
270
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|