Skip to content

Commit

Permalink
Ensure owners are configured correctly (#3677)
Browse files Browse the repository at this point in the history
### Description

Fixes owner config to be safes

### Backward compatibility

Yes
  • Loading branch information
yorhodes authored Apr 30, 2024
1 parent 3a08e31 commit 2928791
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions typescript/infra/config/environments/mainnet3/owners.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
},
]),
);

0 comments on commit 2928791

Please sign in to comment.