-
Notifications
You must be signed in to change notification settings - Fork 97
refactor(l2): replace sequencer config toml with CLI flags #2606
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
Merged
Merged
Changes from 50 commits
Commits
Show all changes
75 commits
Select commit
Hold shift + click to select a range
4acf92b
Add sequencer options & refactor `cmd/ethrex/l2.rs`
ilitteri 93e0cbe
Update Makefile
ilitteri 6ffd633
Cut needless configs
ilitteri e81d119
Refactor L2 configs
ilitteri 0da65cc
Pass `SequencerConfig` to all components that need it & add `Sequence…
ilitteri cf43fec
Update utils config leftovers
ilitteri c9ac518
Fix metrics
ilitteri 7fa0991
More fixes
ilitteri 5f71c74
Fix pr-main_l2 workflow
ilitteri ffbe069
Fix compilation under based feature
ilitteri fa0c2e8
Fix `main_prover` workflow
ilitteri b3856e3
Fix l2 workflows
ilitteri 0e3b9e9
CI fix intent
ilitteri 9544774
CI fix intent
ilitteri dc766c0
Update Makefile
ilitteri 441412c
Merge branch 'main' of github.com:lambdaclass/ethrex into replace_seq…
ilitteri de164c8
Merge leftover
ilitteri d5baae4
Fix merge errors
ilitteri 12ad897
CI fix intent
ilitteri 2d2d27d
Delete server_makefile
ilitteri 0bcd421
Delete deploy_blockscout.sh
ilitteri 60e8456
CI fix intent
ilitteri b3c6c4d
Merge branch 'replace_sequencer_config' of github.com:lambdaclass/eth…
ilitteri ae775ac
Fix flags long
ilitteri eba610b
Fix defaults and pass new flag
ilitteri 4310e15
Merge branch 'main' of github.com:lambdaclass/ethrex into replace_seq…
ilitteri 1618702
CI fix intent
ilitteri c323f8a
CI fix intent
ilitteri 222792b
CI fix intent
ilitteri 249e43f
CI fix intent
ilitteri ad5c054
Cleanup workflows
ilitteri 9b9fddd
CI fix intent
ilitteri cc02921
CI fix intent
ilitteri 43261e2
CI fix intent
ilitteri 4183fb0
Merge branch 'main' into replace_sequencer_config
ilitteri 9b881c7
CI fix intent
ilitteri 635aaf8
CI fix intent
ilitteri befed7d
Update pr-main_l2.yaml
ilitteri 22c71d8
Update pr-main_l2.yaml
ilitteri 8745c7b
Merge branch 'main' into replace_sequencer_config
jrchatruc 03b779f
Clean up
ilitteri 257e5f7
Merge branch 'main' of github.com:lambdaclass/ethrex into replace_seq…
ilitteri 0e04890
Merge branch 'main' of github.com:lambdaclass/ethrex into replace_seq…
ilitteri 41a0664
Fix merge
ilitteri 0da9048
Fix merge
ilitteri 08c39a3
Make bridge and on chain prop addresses required flags
ilitteri c6a7ec6
Use default values for contract addresses
ilitteri 6bb4634
Fix overrides
ilitteri 49af901
CI fix intent: deploy L1 contracts on state-diff-test job
ilitteri 67de823
Merge branch 'main' of github.com:lambdaclass/ethrex into replace_seq…
ilitteri 03b966b
refactor(l2): rewrite deployer and system contracts updater bins (#2643)
ilitteri a956a6f
Merge branch 'main' of github.com:lambdaclass/ethrex into replace_seq…
ilitteri 43fd4a8
Remove comment
ilitteri a5196d4
Use copies of the config instead of `Arc`s
ilitteri 52ad825
Merge branch 'main' into replace_sequencer_config
ilitteri 22ba592
Merge branch 'main' into replace_sequencer_config
jrchatruc 8cd7ead
Fix `integration-test-gpu` target
ilitteri 18a59ba
Fix main_prover workflow
ilitteri 336d8b0
Fix pr-main_l2 workflow
ilitteri 34968ab
Merge branch 'main' of github.com:lambdaclass/ethrex into replace_seq…
ilitteri 510da14
Remove `DeployerOptions` from Sequencer CLI
ilitteri cc99fd7
Fix deployer's prover-related args
ilitteri 7a8c205
Fix deployer's prover-related args
ilitteri 80374f8
Fix deployer's prover-related args
ilitteri 40657ad
Deployer docker fix intent
ilitteri 8da8005
Update Deploy L1 step in workflows
ilitteri fe2b678
Fix `make deploy-l1`
ilitteri 636b789
Merge branch 'main' into replace_sequencer_config
ilitteri c8e77a9
Fix `make deploy-l1`
ilitteri 3d0e11a
Update default addresses
ilitteri ecf0fe6
Merge branch 'replace_sequencer_config' of github.com:lambdaclass/eth…
ilitteri 039c84f
Add logs for L1 Proof Sender
ilitteri 9ef29f7
Add `ETHREX_PROOF_COORDINATOR_DEV_MODE` to the ethrex_l2 docker conta…
ilitteri 77dfbfc
Fix `main_prover` workflow
ilitteri ae833d6
FIx `main_prover` workflow
ilitteri 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
pub mod command; | ||
pub mod options; | ||
|
||
pub use command::Command; | ||
#[cfg(feature = "based")] | ||
pub use options::BasedOptions; | ||
pub use options::{ | ||
CommitterOptions, DeployerOptions, EthOptions, Options as L2Options, ProofCoordinatorOptions, | ||
ProposerOptions, SequencerOptions, WatcherOptions, | ||
}; |
Oops, something went wrong.
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.