@gearbox-protocol/deploy-tools 5.49.12 → 5.49.13
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/dist/index.mjs +16 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -453786,7 +453786,8 @@ var ADAPTER_NAMES = {
|
|
|
453786
453786
|
Mellow4626VaultAdapter: "ADAPTER_MELLOW_ERC4626_VAULT",
|
|
453787
453787
|
PendleRouterAdapter: "ADAPTER_PENDLE_ROUTER",
|
|
453788
453788
|
BalancerV3RouterAdapter: "ADAPTER_BALANCER_V3_ROUTER",
|
|
453789
|
-
EqualizerRouterAdapter: "ADAPTER_EQUALIZER_ROUTER"
|
|
453789
|
+
EqualizerRouterAdapter: "ADAPTER_EQUALIZER_ROUTER",
|
|
453790
|
+
AccountMigratorAdapterV30: "ADAPTER_ACCOUNT_MIGRATOR_V30"
|
|
453790
453791
|
};
|
|
453791
453792
|
|
|
453792
453793
|
// ../../packages/node/dist/parsers/adapters/AaveV2LendingPoolAdapterParser.js
|
|
@@ -453811,6 +453812,17 @@ var AaveV2WrappedAtokenAdapterParser = class extends AbstractParser {
|
|
|
453811
453812
|
}
|
|
453812
453813
|
};
|
|
453813
453814
|
|
|
453815
|
+
// ../../packages/node/dist/parsers/adapters/AccountMigratorAdapterV30Parser.js
|
|
453816
|
+
var AccountMigratorAdapterV30Parser = class extends AbstractParser {
|
|
453817
|
+
constructor(contractType) {
|
|
453818
|
+
super(contractType, "constructor(address creditManager, address targetContract)");
|
|
453819
|
+
this._abi = [];
|
|
453820
|
+
this.parameterParsers = {
|
|
453821
|
+
constructor: [parseAddress(), parseAddress()]
|
|
453822
|
+
};
|
|
453823
|
+
}
|
|
453824
|
+
};
|
|
453825
|
+
|
|
453814
453826
|
// ../../packages/node/dist/parsers/adapters/BalancerV2VaultAdapterParser.js
|
|
453815
453827
|
var BalancerV2VaultAdapterParser = class extends AbstractParser {
|
|
453816
453828
|
constructor(contractType) {
|
|
@@ -454258,6 +454270,8 @@ function adapterParser(contract, _version, _contractName) {
|
|
|
454258
454270
|
return new BalancerV3RouterAdapterParser(contract);
|
|
454259
454271
|
case "ADAPTER_EQUALIZER_ROUTER":
|
|
454260
454272
|
return new EqualizerRouterAdapterParser(contract);
|
|
454273
|
+
case "ADAPTER_ACCOUNT_MIGRATOR_V30":
|
|
454274
|
+
return new AccountMigratorAdapterV30Parser(contract);
|
|
454261
454275
|
}
|
|
454262
454276
|
}
|
|
454263
454277
|
|
|
@@ -458804,7 +458818,7 @@ function getRenderer(opts) {
|
|
|
458804
458818
|
var package_default = {
|
|
458805
458819
|
name: "@gearbox-protocol/deploy-tools",
|
|
458806
458820
|
description: "Gearbox deploy tools",
|
|
458807
|
-
version: "5.49.
|
|
458821
|
+
version: "5.49.13",
|
|
458808
458822
|
homepage: "https://gearbox.fi",
|
|
458809
458823
|
keywords: [
|
|
458810
458824
|
"gearbox"
|