Skip to content

Commit e5a984d

Browse files
authored
fix: isolate upgrade and symbiotic timelocks (#5287)
### Description Checkers would expect proxyAdmin/upgrades to be gated by ethereum timelock added in #5278 ### Backward compatibility Yes ### Testing Manual/cron
1 parent 219fb17 commit e5a984d

File tree

1 file changed

+6
-2
lines changed
  • typescript/infra/config/environments/mainnet3

1 file changed

+6
-2
lines changed

typescript/infra/config/environments/mainnet3/owners.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ import { getMainnetAddresses } from '../../registry.js';
66
import { ethereumChainNames } from './chains.js';
77
import { supportedChainNames } from './supportedChainNames.js';
88

9-
export const timelocks: ChainMap<Address | undefined> = {
9+
export const upgradeTimelocks: ChainMap<Address | undefined> = {
1010
arbitrum: '0xAC98b0cD1B64EA4fe133C6D2EDaf842cE5cF4b01',
11+
};
12+
13+
export const timelocks: ChainMap<Address> = {
14+
...upgradeTimelocks,
1115
ethereum: '0x59cf937Ea9FA9D7398223E3aA33d92F7f5f986A2', // symbiotic network timelock
1216
};
1317

@@ -211,7 +215,7 @@ export const ethereumChainOwners: ChainMap<OwnableConfig> = Object.fromEntries(
211215
{
212216
owner,
213217
ownerOverrides: {
214-
proxyAdmin: timelocks[local] ?? owner,
218+
proxyAdmin: upgradeTimelocks[local] ?? owner,
215219
validatorAnnounce: DEPLOYER, // unused
216220
testRecipient: DEPLOYER,
217221
fallbackRoutingHook: DEPLOYER,

0 commit comments

Comments
 (0)