@gainsnetwork/sdk 0.0.45 → 0.0.46
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 +4 -0
- package/lib/constants.js +4 -0
- package/package.json +1 -1
package/lib/constants.d.ts
CHANGED
|
@@ -186,6 +186,10 @@ export declare const pairs: {
|
|
|
186
186
|
"SKL/USD": string;
|
|
187
187
|
"SUPER/USD": string;
|
|
188
188
|
"BAL/USD": string;
|
|
189
|
+
"WTI/USD": string;
|
|
190
|
+
"XPT/USD": string;
|
|
191
|
+
"XPD/USD": string;
|
|
192
|
+
"HG/USD": string;
|
|
189
193
|
};
|
|
190
194
|
export declare const getAssetClassFromGroupIndex: (groupIndex: number) => string | undefined;
|
|
191
195
|
export declare const tickerChanges: {
|
package/lib/constants.js
CHANGED
|
@@ -194,6 +194,10 @@ exports.pairs = {
|
|
|
194
194
|
"SKL/USD": CRYPTO,
|
|
195
195
|
"SUPER/USD": CRYPTO,
|
|
196
196
|
"BAL/USD": CRYPTO,
|
|
197
|
+
"WTI/USD": COMMODITIES,
|
|
198
|
+
"XPT/USD": COMMODITIES,
|
|
199
|
+
"XPD/USD": COMMODITIES,
|
|
200
|
+
"HG/USD": COMMODITIES,
|
|
197
201
|
};
|
|
198
202
|
const getAssetClassFromGroupIndex = (groupIndex) => {
|
|
199
203
|
switch (groupIndex) {
|