@gainsnetwork/sdk 0.0.38 → 0.0.40
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 +7 -0
- package/lib/constants.js +9 -2
- package/package.json +1 -1
package/lib/constants.d.ts
CHANGED
|
@@ -136,6 +136,13 @@ export declare const pairs: {
|
|
|
136
136
|
"PEPE/USD": string;
|
|
137
137
|
"DYDX/USD": string;
|
|
138
138
|
"GMX/USD": string;
|
|
139
|
+
"RNDR/USD": string;
|
|
140
|
+
"SUI/USD": string;
|
|
141
|
+
"FIL/USD": string;
|
|
142
|
+
"FET/USD": string;
|
|
143
|
+
"WLD/USD": string;
|
|
144
|
+
"VET/USD": string;
|
|
145
|
+
"ZIL/USD": string;
|
|
139
146
|
};
|
|
140
147
|
export declare const getAssetClassFromGroupIndex: (groupIndex: number) => string | undefined;
|
|
141
148
|
export declare const tickerChanges: {
|
package/lib/constants.js
CHANGED
|
@@ -139,6 +139,13 @@ exports.pairs = {
|
|
|
139
139
|
"PEPE/USD": "crypto",
|
|
140
140
|
"DYDX/USD": "crypto",
|
|
141
141
|
"GMX/USD": "crypto",
|
|
142
|
+
"RNDR/USD": "crypto",
|
|
143
|
+
"SUI/USD": "crypto",
|
|
144
|
+
"FIL/USD": "crypto",
|
|
145
|
+
"FET/USD": "crypto",
|
|
146
|
+
"WLD/USD": "crypto",
|
|
147
|
+
"VET/USD": "crypto",
|
|
148
|
+
"ZIL/USD": "crypto",
|
|
142
149
|
};
|
|
143
150
|
const getAssetClassFromGroupIndex = (groupIndex) => {
|
|
144
151
|
switch (groupIndex) {
|
|
@@ -173,7 +180,7 @@ exports.defaultSpreadReductionsP100 = [15, 20, 25, 30, 35];
|
|
|
173
180
|
exports.delistedPairIxs = new Set([
|
|
174
181
|
6, 31, 36, 42, 45, 48, 50, 54, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
|
|
175
182
|
70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
|
|
176
|
-
89, 97, 99, 101, 106, 107, 108, 52,
|
|
177
|
-
|
|
183
|
+
89, 97, 99, 101, 106, 107, 108, 52, 131, 132, 137, 138, 139, 140, 141, 142,
|
|
184
|
+
143,
|
|
178
185
|
]);
|
|
179
186
|
exports.delistedGroupsIxs = new Set([6, 7]);
|