-
Notifications
You must be signed in to change notification settings - Fork 40
Use latest upgrade executor #319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
godzillaba
wants to merge
17
commits into
main
Choose a base branch
from
new-up-exec
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 12 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
51db9a3
use up exec npm package
godzillaba d74a6d9
add UpgradeExecutorUpgradeAction
godzillaba cc2a6a0
print storage
godzillaba 90fb0bc
get admin at perform time
godzillaba 557b6c4
simplify
godzillaba 773bed6
even simpler
godzillaba 3a902bf
use latest package
godzillaba 97e3103
use explicit block nums
godzillaba cbc5c7d
use interface where it was used before
godzillaba 9863832
go thru admin
godzillaba bdec6be
fmt
godzillaba f42d459
clean up imports
godzillaba e816394
deploy exec separately
godzillaba c29aeed
add impls
godzillaba 81236c3
use interface
godzillaba e4d4cc1
Revert "use interface"
godzillaba a873690
Merge branch 'main' into new-up-exec
godzillaba File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
46 changes: 46 additions & 0 deletions
46
src/gov-action-contracts/AIPs/upgrade-executor-upgrade/UpgradeExecutorUpgradeAction.sol
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
| pragma solidity 0.8.16; | ||
|
|
||
| import {UpgradeExecutor} from "@offchainlabs/upgrade-executor/src/UpgradeExecutor.sol"; | ||
| import { | ||
| ProxyAdmin, | ||
| TransparentUpgradeableProxy | ||
| } from "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol"; | ||
|
|
||
| contract UpgradeExecutorUpgradeAction { | ||
| address public immutable newUpgradeExecutorImplementation; | ||
| ProxyAdmin public immutable proxyAdmin; | ||
|
|
||
| constructor(address _proxyAdmin) { | ||
| proxyAdmin = ProxyAdmin(_proxyAdmin); | ||
| newUpgradeExecutorImplementation = address(new UpgradeExecutor()); | ||
| } | ||
|
|
||
| function perform() external { | ||
| TransparentUpgradeableProxy proxy = TransparentUpgradeableProxy(payable(address(this))); | ||
|
|
||
| proxyAdmin.upgrade(proxy, newUpgradeExecutorImplementation); | ||
|
|
||
| require( | ||
| proxyAdmin.getProxyImplementation(proxy) == newUpgradeExecutorImplementation, | ||
| "UpgradeExecutorUpgradeAction: upgrade failed" | ||
| ); | ||
| } | ||
| } | ||
|
|
||
| // Proxy Admins: | ||
| // Arb1: 0xdb216562328215E010F819B5aBe947bad4ca961e | ||
| // Nova: 0xf58eA15B20983116c21b05c876cc8e6CDAe5C2b9 | ||
| // L1: 0x5613AF0474EB9c528A34701A5b1662E3C8FA0678 | ||
|
|
||
| contract ArbOneUpgradeExecutorUpgradeAction is UpgradeExecutorUpgradeAction { | ||
| constructor() UpgradeExecutorUpgradeAction(0xdb216562328215E010F819B5aBe947bad4ca961e) {} | ||
| } | ||
|
|
||
| contract NovaUpgradeExecutorUpgradeAction is UpgradeExecutorUpgradeAction { | ||
| constructor() UpgradeExecutorUpgradeAction(0xf58eA15B20983116c21b05c876cc8e6CDAe5C2b9) {} | ||
| } | ||
|
|
||
| contract L1UpgradeExecutorUpgradeAction is UpgradeExecutorUpgradeAction { | ||
| constructor() UpgradeExecutorUpgradeAction(0x5613AF0474EB9c528A34701A5b1662E3C8FA0678) {} | ||
| } |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.