Skip to content

Commit b610b9f

Browse files
committed
fix: add migration bot audit
1 parent affbbe5 commit b610b9f

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

src/verification/audits.ts

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,13 @@ export const repos = [
2020
"oracles-v3",
2121
] as const;
2222

23+
export const allRepos = [...repos, "periphery-v3"] as const;
24+
2325
export type Repo = (typeof repos)[number];
26+
export type AllRepos = (typeof allRepos)[number];
2427

2528
export type Audits = Record<
26-
(typeof repos)[number],
29+
(typeof allRepos)[number],
2730
Array<CommitLink | BranchLink>
2831
>;
2932

@@ -168,6 +171,12 @@ export const auditReports: Record<string, Report> = {
168171
reportLink:
169172
"https://github.com/Gearbox-protocol/security/blob/main/audits/2025%20Feb%20-%20Decurity_Gearbox_BalancerV3.pdf",
170173
},
174+
"2025_Jul_ChainSecutiry_Migration_Bot": {
175+
auditor: Auditor.ChainSecurity,
176+
revision: "2025 Jul",
177+
reportLink:
178+
"https://github.com/Gearbox-protocol/security/blob/main/audits/2025-07-chainsecurity-account-migration.pdf",
179+
},
171180
};
172181

173182
export const audits: Audits = {
@@ -305,6 +314,13 @@ export const audits: Audits = {
305314
report: auditReports["2022_Aug_Sigma"],
306315
},
307316
],
317+
"periphery-v3": [
318+
{
319+
type: "commit",
320+
commit: "0b1827d061f1d5340b71e6670bd3c56b47f55070",
321+
report: auditReports["2025_Jul_ChainSecutiry_Migration_Bot"],
322+
},
323+
],
308324
"oracles-v3": [
309325
{
310326
type: "commit",

0 commit comments

Comments
 (0)