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