-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: superchain address registry (#703)
* rename AddressRegistry to SuperchainAddressRegistry * test cleanup * rename * more cleanup * remove unused enumerableset import * fix: small fix, that was causing failures in CI for this PR. addresses.toml file format changed. * Update src/improvements/tasks/TaskRunner.sol Co-authored-by: blaine <[email protected]> --------- Co-authored-by: Blaine Malone <[email protected]>
- Loading branch information
Showing
22 changed files
with
512 additions
and
754 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,10 @@ | ||
[[mainnetAddresses]] | ||
identifier = "FoundationUpgradeSafe" | ||
addr = "0x847B5c174615B1B7fDF770882256e2D3E95b9D92" | ||
|
||
[[mainnetAddresses]] | ||
identifier = "FoundationOperationSafe" | ||
addr = "0x9BA6e03D8B90dE867373Db8cF1A58d2F7F006b3A" | ||
|
||
[[mainnetAddresses]] | ||
identifier = "SecurityCouncil" | ||
addr = "0xc2819DC788505Aac350142A7A707BF9D03E3Bd03" | ||
|
||
[[mainnetAddresses]] | ||
identifier = "ChainGovernorSafe" | ||
addr = "0xb0c4C487C5cf6d67807Bc2008c66fa7e2cE744EC" | ||
|
||
[[testnetAddresses]] | ||
identifier = "FoundationUpgradeSafe" | ||
addr = "0xDEe57160aAfCF04c34C887B5962D0a69676d3C8B" | ||
|
||
[[testnetAddresses]] | ||
identifier = "FoundationOperationSafe" | ||
addr = "0x837DE453AD5F21E89771e3c06239d8236c0EFd5E" | ||
|
||
[[testnetAddresses]] | ||
identifier = "SecurityCouncil" | ||
addr = "0xf64bc17485f0B4Ea5F06A96514182FC4cB561977" | ||
[eth] | ||
ChainGovernorSafe = "0xb0c4C487C5cf6d67807Bc2008c66fa7e2cE744EC" | ||
FoundationOperationSafe = "0x9BA6e03D8B90dE867373Db8cF1A58d2F7F006b3A" | ||
FoundationUpgradeSafe = "0x847B5c174615B1B7fDF770882256e2D3E95b9D92" | ||
SecurityCouncil = "0xc2819DC788505Aac350142A7A707BF9D03E3Bd03" | ||
|
||
[sep] | ||
FoundationOperationSafe = "0x837DE453AD5F21E89771e3c06239d8236c0EFd5E" | ||
FoundationUpgradeSafe = "0xDEe57160aAfCF04c34C887B5962D0a69676d3C8B" | ||
SecurityCouncil = "0xf64bc17485f0B4Ea5F06A96514182FC4cB561977" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.