-
Notifications
You must be signed in to change notification settings - Fork 73
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
feat(supersim): configure l1 and l2 vanilla genesis state #28
Merged
Conversation
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 stack of pull requests is managed by Graphite. Learn more about stacking. Join @tremarkley and the rest of your teammates on Graphite |
tremarkley
changed the title
feat(supersim): configure l1 and l2 genesis state
feat(supersim): configure l1 and l2 vanilla genesis state
Jun 26, 2024
tremarkley
force-pushed
the
harry/genesis
branch
from
June 26, 2024 22:42
e52d558
to
3b9c364
Compare
tremarkley
changed the base branch from
06-25-feat_spin_up_multiple_chains
to
main
June 26, 2024 22:43
tremarkley
force-pushed
the
harry/genesis
branch
7 times, most recently
from
June 26, 2024 23:08
85bb40d
to
a90d332
Compare
nitaliano
reviewed
Jun 27, 2024
nitaliano
reviewed
Jun 27, 2024
nitaliano
reviewed
Jun 27, 2024
nitaliano
reviewed
Jun 27, 2024
nitaliano
reviewed
Jun 27, 2024
nitaliano
approved these changes
Jun 27, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good job, comments i left aren't blocking or anything and hope you're enjoying go!
tremarkley
force-pushed
the
harry/genesis
branch
3 times, most recently
from
June 27, 2024 17:55
49050fc
to
d320d75
Compare
tremarkley
force-pushed
the
harry/genesis
branch
from
June 27, 2024 18:00
d320d75
to
1eae9f1
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Closes #15
Part of #2
Pins the genesis files
genesis-l1.json
andgenesis-l2.json
, which contain all op stack predeploys including the interop contracts:CrossL2Inbox
(0x4200000000000000000000000000000000000022)L2toL2CrossDomainMessenger
(0x4200000000000000000000000000000000000023)L1Block
(0x4200000000000000000000000000000000000015)The genesis files were generated from the optimism monorepo by setting the
useInterop
flag totrue
and runningmake devnet-up
.Additionally, updated the
anvil.Config
struct to contain aGenesisPath
field, which is used for initializing the anvil instance with the genesis state.