@gearbox-protocol/sdk 3.0.0-next.165 → 3.0.0-next.167
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/contracts/index.sol +2 -0
- package/lib/core/bot.d.ts +11 -0
- package/lib/core/bot.js +23 -0
- package/lib/core/creditAccount.d.ts +1 -1
- package/lib/core/creditAccount.js +1 -1
- package/lib/core/transactions.d.ts +19 -1
- package/lib/core/transactions.js +43 -1
- package/lib/index.d.ts +2 -0
- package/lib/index.js +2 -0
- package/lib/payload/bot.d.ts +13 -0
- package/lib/payload/bot.js +2 -0
- package/lib/types/ContractsRegisterTrait.d.ts +42 -0
- package/lib/types/ContractsRegisterTrait.js +2 -0
- package/lib/types/ICreditAccountV3.sol/ICreditAccountBase.d.ts +86 -0
- package/lib/types/ICreditAccountV3.sol/ICreditAccountBase.js +2 -0
- package/lib/types/ICreditAccountV3.sol/ICreditAccountV3.d.ts +110 -0
- package/lib/types/ICreditAccountV3.sol/ICreditAccountV3.js +2 -0
- package/lib/types/ICreditAccountV3.sol/index.d.ts +2 -0
- package/lib/types/ICreditAccountV3.sol/index.js +2 -0
- package/lib/types/IPartialLiquidationBotV3.d.ts +163 -0
- package/lib/types/IPartialLiquidationBotV3.js +2 -0
- package/lib/types/PartialLiquidationBotV3.d.ts +171 -0
- package/lib/types/PartialLiquidationBotV3.js +2 -0
- package/lib/types/factories/ContractsRegisterTrait__factory.d.ts +22 -0
- package/lib/types/factories/ContractsRegisterTrait__factory.js +37 -0
- package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountBase__factory.d.ts +64 -0
- package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountBase__factory.js +92 -0
- package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountV3__factory.d.ts +88 -0
- package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountV3__factory.js +123 -0
- package/lib/types/factories/ICreditAccountV3.sol/index.d.ts +2 -0
- package/lib/types/factories/ICreditAccountV3.sol/index.js +10 -0
- package/lib/types/factories/IPartialLiquidationBotV3__factory.d.ts +217 -0
- package/lib/types/factories/IPartialLiquidationBotV3__factory.js +287 -0
- package/lib/types/factories/PartialLiquidationBotV3__factory.d.ts +284 -0
- package/lib/types/factories/PartialLiquidationBotV3__factory.js +379 -0
- package/lib/types/factories/index.d.ts +4 -0
- package/lib/types/factories/index.js +9 -2
- package/lib/types/index.d.ts +12 -0
- package/lib/types/index.js +13 -3
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gearbox-protocol/sdk",
|
|
3
|
-
"version": "3.0.0-next.
|
|
3
|
+
"version": "3.0.0-next.167",
|
|
4
4
|
"description": "Gearbox SDK",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
"test": "npx mocha -r ts-node/register -r dotenv/config 'src/**/*.spec.ts'"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@gearbox-protocol/
|
|
33
|
+
"@gearbox-protocol/bots-v3": "^1.5.1",
|
|
34
|
+
"@gearbox-protocol/sdk-gov": "^1.62.2",
|
|
34
35
|
"axios": "^1.2.6",
|
|
35
36
|
"decimal.js-light": "^2.5.1",
|
|
36
37
|
"deep-eql": "^4.1.0",
|
|
@@ -42,14 +43,14 @@
|
|
|
42
43
|
"@commitlint/cli": "^17.6.3",
|
|
43
44
|
"@commitlint/config-conventional": "^17.0.3",
|
|
44
45
|
"@gearbox-protocol/core-v2": "1.19.0-base.17",
|
|
45
|
-
"@gearbox-protocol/core-v3": "^1.49.
|
|
46
|
+
"@gearbox-protocol/core-v3": "^1.49.6",
|
|
46
47
|
"@gearbox-protocol/eslint-config": "^1.4.1",
|
|
47
|
-
"@gearbox-protocol/integrations-v3": "^1.40.
|
|
48
|
+
"@gearbox-protocol/integrations-v3": "^1.40.3",
|
|
48
49
|
"@gearbox-protocol/oracles-v3": "^1.10.3",
|
|
49
50
|
"@gearbox-protocol/periphery-v3": "^1.6.1",
|
|
50
51
|
"@gearbox-protocol/prettier-config": "^1.4.1",
|
|
51
52
|
"@gearbox-protocol/router": "^1.5.5",
|
|
52
|
-
"@gearbox-protocol/router-v3": "^1.
|
|
53
|
+
"@gearbox-protocol/router-v3": "^1.22.0",
|
|
53
54
|
"@openzeppelin/contracts": "^4.9.3",
|
|
54
55
|
"@redstone-finance/evm-connector": "^0.3.6",
|
|
55
56
|
"@typechain/ethers-v5": "^10.1.0",
|