Ensure owners are configured correctly (#3677)

### Description

Fixes owner config to be safes

### Backward compatibility

Yes
pull/3685/head
Yorke Rhodes 7 months ago committed by GitHub
parent 3a08e31b6d
commit 292879126c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 13
      typescript/infra/config/environments/mainnet3/owners.ts

@ -54,13 +54,12 @@ export const owners: ChainMap<OwnableConfig> = 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,
},
},
]),
);

Loading…
Cancel
Save