@gainsnetwork/sdk 0.1.21 → 0.1.22-rc1
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 +2 -1
- 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
|
@@ -219,6 +219,7 @@ export declare const pairs: {
|
|
|
219
219
|
"KAS/USD": string;
|
|
220
220
|
"RONIN/USD": string;
|
|
221
221
|
"ENA/USD": string;
|
|
222
|
+
"W/USD": string;
|
|
222
223
|
};
|
|
223
224
|
export declare const getAssetClassFromGroupIndex: (groupIndex: number) => string | undefined;
|
|
224
225
|
export declare const tickerChanges: {
|
package/lib/constants.js
CHANGED
|
@@ -227,6 +227,7 @@ exports.pairs = {
|
|
|
227
227
|
"KAS/USD": CRYPTO,
|
|
228
228
|
"RONIN/USD": CRYPTO,
|
|
229
229
|
"ENA/USD": CRYPTO,
|
|
230
|
+
"W/USD": CRYPTO,
|
|
230
231
|
};
|
|
231
232
|
const getAssetClassFromGroupIndex = (groupIndex) => {
|
|
232
233
|
switch (groupIndex) {
|
|
@@ -260,6 +261,6 @@ exports.stockSplits = {
|
|
|
260
261
|
exports.delistedPairIxs = new Set([
|
|
261
262
|
6, 31, 36, 42, 45, 48, 51, 54, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
|
|
262
263
|
70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
|
|
263
|
-
89, 97, 99, 101, 106, 107, 108, 52, 131, 147, 160, 179, 182, 183, 190, 194,
|
|
264
|
+
89, 97, 99, 101, 106, 107, 108, 52, 131, 147, 160, 179, 182, 183, 190, 194, 220,
|
|
264
265
|
]);
|
|
265
266
|
exports.delistedGroupsIxs = new Set([6, 7]);
|
|
@@ -322,4 +322,5 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
322
322
|
[types_1.PairIndex.KASUSD]: "Kaspa to US Dollar",
|
|
323
323
|
[types_1.PairIndex.RONINUSD]: "Ronin to US Dollar",
|
|
324
324
|
[types_1.PairIndex.ENAUSD]: "Ethena to US Dollar",
|
|
325
|
+
[types_1.PairIndex.WUSD]: "Wormhole to US Dollar",
|
|
325
326
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -234,4 +234,5 @@ var PairIndex;
|
|
|
234
234
|
PairIndex[PairIndex["KASUSD"] = 217] = "KASUSD";
|
|
235
235
|
PairIndex[PairIndex["RONINUSD"] = 218] = "RONINUSD";
|
|
236
236
|
PairIndex[PairIndex["ENAUSD"] = 219] = "ENAUSD";
|
|
237
|
+
PairIndex[PairIndex["WUSD"] = 220] = "WUSD";
|
|
237
238
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|