diff --git a/typescript/infra/config/environments/mainnet3/owners.ts b/typescript/infra/config/environments/mainnet3/owners.ts index ae6221a442..ab949f366e 100644 --- a/typescript/infra/config/environments/mainnet3/owners.ts +++ b/typescript/infra/config/environments/mainnet3/owners.ts @@ -54,13 +54,12 @@ export const owners: ChainMap = Object.fromEntries( ethereumChainNames.map((local) => [ local, { - owner: DEPLOYER, - // owner: safes[local] ?? DEPLOYER, - // ownerOverrides: { - // proxyAdmin: timelocks[local] ?? safes[local] ?? DEPLOYER, - // validatorAnnounce: DEPLOYER, // unused - // testRecipient: DEPLOYER, - // }, + owner: safes[local] ?? DEPLOYER, + ownerOverrides: { + proxyAdmin: timelocks[local] ?? safes[local] ?? DEPLOYER, + validatorAnnounce: DEPLOYER, // unused + testRecipient: DEPLOYER, + }, }, ]), );