@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.
Files changed (2) hide show
  1. package/dist/index.mjs +15 -13
  2. 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
- const etherscanEntry = await this.etherscan.verify(entry.address);
305974
- if (etherscanEntry.verified) {
305975
- const auditedFiles = [];
305976
- for (const contract of etherscanEntry.data) {
305977
- const audits2 = await this.#auditor.auditEtherscanVerified(contract);
305978
- auditedFiles.push(...audits2);
305979
- }
305980
- entry.verification = {
305981
- contract: etherscanEntry.data[0].ContractName,
305982
- match: "etherscan",
305983
- files: auditedFiles
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.4",
311304
+ version: "5.60.5",
311303
311305
  homepage: "https://gearbox.fi",
311304
311306
  keywords: [
311305
311307
  "gearbox"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/deploy-tools",
3
3
  "description": "Gearbox deploy tools",
4
- "version": "5.60.4",
4
+ "version": "5.60.5",
5
5
  "homepage": "https://gearbox.fi",
6
6
  "keywords": [
7
7
  "gearbox"