@gainsnetwork/sdk 0.1.29-rc4 → 0.1.30-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
|
@@ -231,6 +231,7 @@ export declare const pairs: {
|
|
|
231
231
|
"LL/USD": string;
|
|
232
232
|
"MSN/USD": string;
|
|
233
233
|
"REZ/USD": string;
|
|
234
|
+
"NOT/USD": string;
|
|
234
235
|
};
|
|
235
236
|
export declare const getAssetClassFromGroupIndex: (groupIndex: number) => string | undefined;
|
|
236
237
|
export declare const tickerChanges: {
|
package/lib/constants.js
CHANGED
|
@@ -239,6 +239,7 @@ exports.pairs = {
|
|
|
239
239
|
"LL/USD": CRYPTO,
|
|
240
240
|
"MSN/USD": CRYPTO,
|
|
241
241
|
"REZ/USD": CRYPTO,
|
|
242
|
+
"NOT/USD": CRYPTO,
|
|
242
243
|
};
|
|
243
244
|
const getAssetClassFromGroupIndex = (groupIndex) => {
|
|
244
245
|
switch (groupIndex) {
|
|
@@ -272,6 +273,6 @@ exports.stockSplits = {
|
|
|
272
273
|
exports.delistedPairIxs = new Set([
|
|
273
274
|
6, 31, 36, 42, 45, 48, 51, 54, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
|
|
274
275
|
70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
|
|
275
|
-
89, 97, 99, 101, 106, 108, 52, 131, 147, 160, 179, 182, 183, 190, 229,
|
|
276
|
+
89, 97, 99, 101, 106, 108, 52, 131, 147, 160, 179, 182, 183, 190, 229, 232,
|
|
276
277
|
]);
|
|
277
278
|
exports.delistedGroupsIxs = new Set([6, 7]);
|
|
@@ -334,4 +334,5 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
334
334
|
[types_1.PairIndex.LLUSD]: "Light Link to US Dollar",
|
|
335
335
|
[types_1.PairIndex.MSNUSD]: "Meson Network to US Dollar",
|
|
336
336
|
[types_1.PairIndex.REZUSD]: "Renzo to US Dollar",
|
|
337
|
+
[types_1.PairIndex.NOTUSD]: "Notcoin to US Dollar",
|
|
337
338
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -246,4 +246,5 @@ var PairIndex;
|
|
|
246
246
|
PairIndex[PairIndex["LLUSD"] = 229] = "LLUSD";
|
|
247
247
|
PairIndex[PairIndex["MSNUSD"] = 230] = "MSNUSD";
|
|
248
248
|
PairIndex[PairIndex["REZUSD"] = 231] = "REZUSD";
|
|
249
|
+
PairIndex[PairIndex["NOTUSD"] = 232] = "NOTUSD";
|
|
249
250
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|