@gainsnetwork/sdk 0.1.28-rc2 → 0.1.29-rc2
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 +2 -0
- 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/contracts/types/generated/GNSBorrowingFeesV6_3_2.d.ts +0 -979
- package/lib/contracts/types/generated/GNSBorrowingFeesV6_3_2.js +0 -2
- package/lib/contracts/types/generated/GNSBorrowingFeesV6_4.d.ts +0 -1058
- package/lib/contracts/types/generated/GNSBorrowingFeesV6_4.js +0 -2
- package/lib/contracts/types/generated/GNSPairInfosV6_1.d.ts +0 -911
- package/lib/contracts/types/generated/GNSPairInfosV6_1.js +0 -2
- package/lib/contracts/types/generated/GNSPairsStorageV6.d.ts +0 -660
- package/lib/contracts/types/generated/GNSPairsStorageV6.js +0 -2
- package/lib/contracts/types/generated/GNSTradingCallbacksV6_3_2.d.ts +0 -806
- package/lib/contracts/types/generated/GNSTradingCallbacksV6_3_2.js +0 -2
- package/lib/contracts/types/generated/GNSTradingCallbacksV6_4.d.ts +0 -821
- package/lib/contracts/types/generated/GNSTradingCallbacksV6_4.js +0 -2
- package/lib/contracts/types/generated/GTokenV6_3_2.d.ts +0 -1838
- package/lib/contracts/types/generated/GTokenV6_3_2.js +0 -2
- package/lib/contracts/types/generated/factories/GNSBorrowingFeesV6_3_2__factory.d.ts +0 -88
- package/lib/contracts/types/generated/factories/GNSBorrowingFeesV6_3_2__factory.js +0 -1654
- package/lib/contracts/types/generated/factories/GNSBorrowingFeesV6_4__factory.d.ts +0 -113
- package/lib/contracts/types/generated/factories/GNSBorrowingFeesV6_4__factory.js +0 -1742
- package/lib/contracts/types/generated/factories/GNSPairInfosV6_1__factory.d.ts +0 -98
- package/lib/contracts/types/generated/factories/GNSPairInfosV6_1__factory.js +0 -1485
- package/lib/contracts/types/generated/factories/GNSPairsStorageV6__factory.d.ts +0 -117
- package/lib/contracts/types/generated/factories/GNSPairsStorageV6__factory.js +0 -1265
- package/lib/contracts/types/generated/factories/GNSTradingCallbacksV6_3_2__factory.d.ts +0 -82
- package/lib/contracts/types/generated/factories/GNSTradingCallbacksV6_3_2__factory.js +0 -1273
- package/lib/contracts/types/generated/factories/GNSTradingCallbacksV6_4__factory.d.ts +0 -82
- package/lib/contracts/types/generated/factories/GNSTradingCallbacksV6_4__factory.js +0 -1326
- package/lib/contracts/types/generated/factories/GTokenV6_3_2__factory.d.ts +0 -110
- package/lib/contracts/types/generated/factories/GTokenV6_3_2__factory.js +0 -2682
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
|
@@ -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 = {}));
|