@gearbox-protocol/deploy-tools 5.60.4 → 5.60.5
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 +15 -13
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -305970,18 +305970,20 @@ var GearboxAddressTree = class _GearboxAddressTree extends ProviderBase {
|
|
|
305970
305970
|
if (entry.address === ADDRESS_0X0) {
|
|
305971
305971
|
return;
|
|
305972
305972
|
}
|
|
305973
|
-
|
|
305974
|
-
|
|
305975
|
-
|
|
305976
|
-
|
|
305977
|
-
const
|
|
305978
|
-
|
|
305979
|
-
|
|
305980
|
-
|
|
305981
|
-
|
|
305982
|
-
|
|
305983
|
-
|
|
305984
|
-
|
|
305973
|
+
if (entry.contract !== "CREDIT_ACCOUNT") {
|
|
305974
|
+
const etherscanEntry = await this.etherscan.verify(entry.address);
|
|
305975
|
+
if (etherscanEntry.verified) {
|
|
305976
|
+
const auditedFiles = [];
|
|
305977
|
+
for (const contract of etherscanEntry.data) {
|
|
305978
|
+
const audits2 = await this.#auditor.auditEtherscanVerified(contract);
|
|
305979
|
+
auditedFiles.push(...audits2);
|
|
305980
|
+
}
|
|
305981
|
+
entry.verification = {
|
|
305982
|
+
contract: etherscanEntry.data[0].ContractName,
|
|
305983
|
+
match: "etherscan",
|
|
305984
|
+
files: auditedFiles
|
|
305985
|
+
};
|
|
305986
|
+
}
|
|
305985
305987
|
}
|
|
305986
305988
|
this.#visited.set(entry.address.toLowerCase(), entry);
|
|
305987
305989
|
let cnt = 0;
|
|
@@ -311299,7 +311301,7 @@ function getRenderer(opts) {
|
|
|
311299
311301
|
var package_default = {
|
|
311300
311302
|
name: "@gearbox-protocol/deploy-tools",
|
|
311301
311303
|
description: "Gearbox deploy tools",
|
|
311302
|
-
version: "5.60.
|
|
311304
|
+
version: "5.60.5",
|
|
311303
311305
|
homepage: "https://gearbox.fi",
|
|
311304
311306
|
keywords: [
|
|
311305
311307
|
"gearbox"
|