@gearbox-protocol/deploy-tools 4.61.31 → 4.61.33
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 +7 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -9692,6 +9692,7 @@ var require_adapters2 = __commonJS({
|
|
|
9692
9692
|
AdapterInterface3[AdapterInterface3["MELLOW_ERC4626_VAULT"] = 32] = "MELLOW_ERC4626_VAULT";
|
|
9693
9693
|
AdapterInterface3[AdapterInterface3["DAI_USDS_EXCHANGE"] = 33] = "DAI_USDS_EXCHANGE";
|
|
9694
9694
|
AdapterInterface3[AdapterInterface3["STAKING_REWARDS"] = 34] = "STAKING_REWARDS";
|
|
9695
|
+
AdapterInterface3[AdapterInterface3["EQUALIZER_ROUTER"] = 35] = "EQUALIZER_ROUTER";
|
|
9695
9696
|
})(AdapterInterface2 || (exports2.AdapterInterface = AdapterInterface2 = {}));
|
|
9696
9697
|
}
|
|
9697
9698
|
});
|
|
@@ -9728,6 +9729,7 @@ var require_protocols = __commonJS({
|
|
|
9728
9729
|
Protocols2[Protocols2["Mellow"] = 21] = "Mellow";
|
|
9729
9730
|
Protocols2[Protocols2["Pendle"] = 22] = "Pendle";
|
|
9730
9731
|
Protocols2[Protocols2["Sky"] = 23] = "Sky";
|
|
9732
|
+
Protocols2[Protocols2["Equalizer"] = 24] = "Equalizer";
|
|
9731
9733
|
})(Protocols || (exports2.Protocols = Protocols = {}));
|
|
9732
9734
|
}
|
|
9733
9735
|
});
|
|
@@ -317429,6 +317431,7 @@ var Auditor = class {
|
|
|
317429
317431
|
this.#logger.trace(`Checking audits for ${filePath} in ${repo}`);
|
|
317430
317432
|
file.audits = await this.#findMatches(file);
|
|
317431
317433
|
if (!file.audits?.length && this.#dumpMissing) {
|
|
317434
|
+
this.#logger.warn(`Cannot find audits for ${filePath} in ${repo}`);
|
|
317432
317435
|
const dumpDest = path2.resolve(this.#missingDir, repo, filePath);
|
|
317433
317436
|
mkdirSync(path2.dirname(dumpDest), { recursive: true });
|
|
317434
317437
|
await writeFile(dumpDest, file.buffer);
|
|
@@ -317449,6 +317452,9 @@ var Auditor = class {
|
|
|
317449
317452
|
result.push(repoAudit);
|
|
317450
317453
|
}
|
|
317451
317454
|
}
|
|
317455
|
+
if (!result.length) {
|
|
317456
|
+
this.#logger.warn(`No audits found for ${file.path} in ${file.repo}, checked ${repoAudits.length} audits`);
|
|
317457
|
+
}
|
|
317452
317458
|
return result.length ? result : void 0;
|
|
317453
317459
|
}
|
|
317454
317460
|
/**
|
|
@@ -335785,7 +335791,7 @@ function getRenderer(opts) {
|
|
|
335785
335791
|
}
|
|
335786
335792
|
|
|
335787
335793
|
// package.json
|
|
335788
|
-
var version2 = "4.61.
|
|
335794
|
+
var version2 = "4.61.33";
|
|
335789
335795
|
|
|
335790
335796
|
// src/version.ts
|
|
335791
335797
|
var version_default = version2;
|
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": "4.61.
|
|
4
|
+
"version": "4.61.33",
|
|
5
5
|
"homepage": "https://gearbox.fi",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"gearbox"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@gearbox-protocol/deploy-tools-node": "0.0.0",
|
|
45
45
|
"@gearbox-protocol/deploy-tools-shared": "0.0.0",
|
|
46
46
|
"@gearbox-protocol/deploy-tools-types": "0.0.0",
|
|
47
|
-
"@gearbox-protocol/sdk-gov": "^2.
|
|
47
|
+
"@gearbox-protocol/sdk-gov": "^2.32.0",
|
|
48
48
|
"@types/lodash-es": "^4.17.12",
|
|
49
49
|
"@types/node": "^22.10.1",
|
|
50
50
|
"@types/react": "^18.3.12",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"chalk": "^5.3.0",
|
|
54
54
|
"commander": "^12.1.0",
|
|
55
55
|
"date-fns": "^4.1.0",
|
|
56
|
-
"dotenv": "^16.4.
|
|
56
|
+
"dotenv": "^16.4.6",
|
|
57
57
|
"esbuild": "^0.24.0",
|
|
58
58
|
"ethers": "^6.13.4",
|
|
59
59
|
"ethers-multisend": "^3.1.0",
|