File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff 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+
2325export type Repo = ( typeof repos ) [ number ] ;
26+ export type AllRepos = ( typeof allRepos ) [ number ] ;
2427
2528export 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
173182export 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" ,
You can’t perform that action at this time.
0 commit comments