Merged
Conversation
…d to replace w new proof
* load op stack rollup cfg fixes * Parse the rust rollup config and default return the entire range * fix: import paths for rollup cfg * add * update * docs * lint --------- Co-authored-by: Ubuntu <ubuntu@op-sepolia-archive-1.maas>
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
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.
Add support for a rollups outside of the
superchain-registryvia a dynamicRollupConfig.Overview
Program Changes
fault-proofandrangeprograms now take in aBootInfoWithBytesconfig that contains therollup_config_bytes. These bytes are hashed inside of the program to get therollupConfigHashwhich is committed to within therollupConfigStruct. TheRollupConfigis used in theBlockExecutor.rollupConfigHashcommitted to in each range proof is the same, and therollupConfigHashis then verified to match the one stored in the contract on-chain. This guarantees that only 1rollupConfigHashcan be used at a time.Script Changes
rollup-configs/{chain_id}.json. This path is used during witness generation, so it's important that the relevant rollup configuration is present at that path.BootInfoStructto include therollup_config_hash.Contract Changes
rollupConfigHashwheneverproposeL2Outputroot is called onZKL2OutputOracle.zkl2ooconfig.json, build & invoke thefetch-rollup-configbinary, which updates thevkey,startingBlockNumber,chainId,l2BlockTime,rollupConfigHash,startingOutputRootandstartingTimestamp. To use a manually setstartingBlockNumber, setUSE_CACHED_STARTING_BLOCKin your environment.Miscellaneous
zkl2ooconfig.json, rather than re-initializing it.native_host_runnercorrectly.ec_recoverprecompile as it's infrequently used..env.exampleto the root.TODO's
Remaining:
cargo run --bin fetch_rollup_configbefore deploying contracts.