@gainsnetwork/sdk 0.0.36 → 0.0.38
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 +9 -0
- package/lib/constants.js +11 -1
- package/package.json +1 -1
package/lib/constants.d.ts
CHANGED
|
@@ -127,6 +127,15 @@ export declare const pairs: {
|
|
|
127
127
|
"CAD/CHF": string;
|
|
128
128
|
"CAD/JPY": string;
|
|
129
129
|
"CHF/JPY": string;
|
|
130
|
+
"LDO/USD": string;
|
|
131
|
+
"INJ/USD": string;
|
|
132
|
+
"RUNE/USD": string;
|
|
133
|
+
"CAKE/USD": string;
|
|
134
|
+
"FXS/USD": string;
|
|
135
|
+
"TWT/USD": string;
|
|
136
|
+
"PEPE/USD": string;
|
|
137
|
+
"DYDX/USD": string;
|
|
138
|
+
"GMX/USD": string;
|
|
130
139
|
};
|
|
131
140
|
export declare const getAssetClassFromGroupIndex: (groupIndex: number) => string | undefined;
|
|
132
141
|
export declare const tickerChanges: {
|
package/lib/constants.js
CHANGED
|
@@ -130,6 +130,15 @@ exports.pairs = {
|
|
|
130
130
|
"CAD/CHF": "forex",
|
|
131
131
|
"CAD/JPY": "forex",
|
|
132
132
|
"CHF/JPY": "forex",
|
|
133
|
+
"LDO/USD": "crypto",
|
|
134
|
+
"INJ/USD": "crypto",
|
|
135
|
+
"RUNE/USD": "crypto",
|
|
136
|
+
"CAKE/USD": "crypto",
|
|
137
|
+
"FXS/USD": "crypto",
|
|
138
|
+
"TWT/USD": "crypto",
|
|
139
|
+
"PEPE/USD": "crypto",
|
|
140
|
+
"DYDX/USD": "crypto",
|
|
141
|
+
"GMX/USD": "crypto",
|
|
133
142
|
};
|
|
134
143
|
const getAssetClassFromGroupIndex = (groupIndex) => {
|
|
135
144
|
switch (groupIndex) {
|
|
@@ -164,6 +173,7 @@ exports.defaultSpreadReductionsP100 = [15, 20, 25, 30, 35];
|
|
|
164
173
|
exports.delistedPairIxs = new Set([
|
|
165
174
|
6, 31, 36, 42, 45, 48, 50, 54, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
|
|
166
175
|
70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
|
|
167
|
-
89, 97, 99, 101, 106, 107, 108, 52,
|
|
176
|
+
89, 97, 99, 101, 106, 107, 108, 52, 128, 129, 130, 131, 132, 133, 134, 135,
|
|
177
|
+
136,
|
|
168
178
|
]);
|
|
169
179
|
exports.delistedGroupsIxs = new Set([6, 7]);
|