@gearbox-protocol/deploy-tools 5.49.11 → 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 +18 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -429521,7 +429521,8 @@ function getGithubUrl(repo, https = false) {
|
|
|
429521
429521
|
cred = githubUser ? `${githubUser}:${credentials}@` : `${credentials}@`;
|
|
429522
429522
|
}
|
|
429523
429523
|
const url2 = https || credentials ? `https://${cred}github.com/${path12}.git` : `git@github.com:${path12}.git`;
|
|
429524
|
-
|
|
429524
|
+
const censored = credentials ? url2.replace(credentials, `*****${credentials?.slice(-4)}`) : url2;
|
|
429525
|
+
log.info(`github URL: ${censored}`);
|
|
429525
429526
|
return url2;
|
|
429526
429527
|
}
|
|
429527
429528
|
async function cloneRepo(opts) {
|
|
@@ -453785,7 +453786,8 @@ var ADAPTER_NAMES = {
|
|
|
453785
453786
|
Mellow4626VaultAdapter: "ADAPTER_MELLOW_ERC4626_VAULT",
|
|
453786
453787
|
PendleRouterAdapter: "ADAPTER_PENDLE_ROUTER",
|
|
453787
453788
|
BalancerV3RouterAdapter: "ADAPTER_BALANCER_V3_ROUTER",
|
|
453788
|
-
EqualizerRouterAdapter: "ADAPTER_EQUALIZER_ROUTER"
|
|
453789
|
+
EqualizerRouterAdapter: "ADAPTER_EQUALIZER_ROUTER",
|
|
453790
|
+
AccountMigratorAdapterV30: "ADAPTER_ACCOUNT_MIGRATOR_V30"
|
|
453789
453791
|
};
|
|
453790
453792
|
|
|
453791
453793
|
// ../../packages/node/dist/parsers/adapters/AaveV2LendingPoolAdapterParser.js
|
|
@@ -453810,6 +453812,17 @@ var AaveV2WrappedAtokenAdapterParser = class extends AbstractParser {
|
|
|
453810
453812
|
}
|
|
453811
453813
|
};
|
|
453812
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
|
+
|
|
453813
453826
|
// ../../packages/node/dist/parsers/adapters/BalancerV2VaultAdapterParser.js
|
|
453814
453827
|
var BalancerV2VaultAdapterParser = class extends AbstractParser {
|
|
453815
453828
|
constructor(contractType) {
|
|
@@ -454257,6 +454270,8 @@ function adapterParser(contract, _version, _contractName) {
|
|
|
454257
454270
|
return new BalancerV3RouterAdapterParser(contract);
|
|
454258
454271
|
case "ADAPTER_EQUALIZER_ROUTER":
|
|
454259
454272
|
return new EqualizerRouterAdapterParser(contract);
|
|
454273
|
+
case "ADAPTER_ACCOUNT_MIGRATOR_V30":
|
|
454274
|
+
return new AccountMigratorAdapterV30Parser(contract);
|
|
454260
454275
|
}
|
|
454261
454276
|
}
|
|
454262
454277
|
|
|
@@ -458803,7 +458818,7 @@ function getRenderer(opts) {
|
|
|
458803
458818
|
var package_default = {
|
|
458804
458819
|
name: "@gearbox-protocol/deploy-tools",
|
|
458805
458820
|
description: "Gearbox deploy tools",
|
|
458806
|
-
version: "5.49.
|
|
458821
|
+
version: "5.49.13",
|
|
458807
458822
|
homepage: "https://gearbox.fi",
|
|
458808
458823
|
keywords: [
|
|
458809
458824
|
"gearbox"
|