@gainsnetwork/sdk 0.2.31-rc2 → 0.2.31-rc4
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 +1 -0
- package/lib/constants.js +1 -0
- package/lib/contracts/utils/pairs.js +1 -0
- package/lib/trade/types.d.ts +2 -1
- package/lib/trade/types.js +1 -0
- package/package.json +1 -1
- package/lib/contracts/types/generated/GFarmTradingStorageV5.d.ts +0 -1911
- package/lib/contracts/types/generated/GFarmTradingStorageV5.js +0 -2
- package/lib/contracts/types/generated/GNSBorrowingFees.d.ts +0 -1067
- package/lib/contracts/types/generated/GNSBorrowingFees.js +0 -2
- package/lib/contracts/types/generated/GNSNftRewardsV6.d.ts +0 -533
- package/lib/contracts/types/generated/GNSNftRewardsV6.js +0 -2
- package/lib/contracts/types/generated/GNSNftRewardsV6_3_1.d.ts +0 -613
- package/lib/contracts/types/generated/GNSNftRewardsV6_3_1.js +0 -2
- package/lib/contracts/types/generated/GNSTrading.d.ts +0 -758
- package/lib/contracts/types/generated/GNSTrading.js +0 -2
- package/lib/contracts/types/generated/GNSTradingCallbacks.d.ts +0 -875
- package/lib/contracts/types/generated/GNSTradingCallbacks.js +0 -2
- package/lib/contracts/types/generated/GNSTradingStorage.d.ts +0 -1387
- package/lib/contracts/types/generated/GNSTradingStorage.js +0 -2
- package/lib/contracts/types/generated/factories/GFarmTradingStorageV5__factory.d.ts +0 -83
- package/lib/contracts/types/generated/factories/GFarmTradingStorageV5__factory.js +0 -2691
- package/lib/contracts/types/generated/factories/GNSBorrowingFees__factory.d.ts +0 -124
- package/lib/contracts/types/generated/factories/GNSBorrowingFees__factory.js +0 -1784
- package/lib/contracts/types/generated/factories/GNSNftRewardsV6_3_1__factory.d.ts +0 -100
- package/lib/contracts/types/generated/factories/GNSNftRewardsV6_3_1__factory.js +0 -1116
- package/lib/contracts/types/generated/factories/GNSNftRewardsV6__factory.d.ts +0 -100
- package/lib/contracts/types/generated/factories/GNSNftRewardsV6__factory.js +0 -1003
- package/lib/contracts/types/generated/factories/GNSTradingCallbacks__factory.d.ts +0 -113
- package/lib/contracts/types/generated/factories/GNSTradingCallbacks__factory.js +0 -1428
- package/lib/contracts/types/generated/factories/GNSTradingStorage__factory.d.ts +0 -96
- package/lib/contracts/types/generated/factories/GNSTradingStorage__factory.js +0 -2241
- package/lib/contracts/types/generated/factories/GNSTrading__factory.d.ts +0 -95
- package/lib/contracts/types/generated/factories/GNSTrading__factory.js +0 -1071
package/lib/constants.d.ts
CHANGED
|
@@ -280,6 +280,7 @@ export declare const pairs: {
|
|
|
280
280
|
"CATI/USD": string;
|
|
281
281
|
"LOOM/USD": string;
|
|
282
282
|
"ZETA/USD": string;
|
|
283
|
+
"HMSTR/USD": string;
|
|
283
284
|
};
|
|
284
285
|
export declare const getAssetClassFromGroupIndex: (groupIndex: number) => string | undefined;
|
|
285
286
|
export declare const tickerChanges: {
|
package/lib/constants.js
CHANGED
|
@@ -386,4 +386,5 @@ const PAIR_INDEX_TO_DESCRIPTION = {
|
|
|
386
386
|
[types_1.PairIndex.CATIUSD]: "Catizen to US Dollar",
|
|
387
387
|
[types_1.PairIndex.LOOMUSD]: "Loom Network to US Dollar",
|
|
388
388
|
[types_1.PairIndex.ZETAUSD]: "ZetaChain to US Dollar",
|
|
389
|
+
[types_1.PairIndex.HMSTRUSD]: "Hamster Kombat to US Dollar",
|
|
389
390
|
};
|
package/lib/trade/types.d.ts
CHANGED
package/lib/trade/types.js
CHANGED
|
@@ -310,4 +310,5 @@ var PairIndex;
|
|
|
310
310
|
PairIndex[PairIndex["CATIUSD"] = 278] = "CATIUSD";
|
|
311
311
|
PairIndex[PairIndex["LOOMUSD"] = 279] = "LOOMUSD";
|
|
312
312
|
PairIndex[PairIndex["ZETAUSD"] = 280] = "ZETAUSD";
|
|
313
|
+
PairIndex[PairIndex["HMSTRUSD"] = 281] = "HMSTRUSD";
|
|
313
314
|
})(PairIndex = exports.PairIndex || (exports.PairIndex = {}));
|