Draft
Conversation
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.
Description
Consolidates the two per-version OPSuccinct execution scripts (
exec-succinct.shfor v1,exec-succinct-v102.shfor v102) into a single unifiedexec-succinct.shthat accepts a version argument and dispatches to the correct signer file, nonces, calldata, and approval flow.Adds first-class support for two additional versions:
Other changes
packages/op-tooling/exec/README.md:Tested
TBD
Related issues
TBD
Backwards compatibility
./exec-succinct.sh(no arg) used to run v1 silently; it now requires./exec-succinct.sh v1. Any downstream automation must update its invocation. This is the only breaking change.exec-succinct-v102.shis removed; call sites must migrate to./exec-succinct.sh v102.exec-jovian.shis intentionally untouched; its succ-v2 branch remains the bundle runner. Same calldata is duplicated inexec-succinct.sh v2with identical nonces, so either entry point produces an equivalent transaction.Documentation
packages/op-tooling/exec/README.md— merged Succinct sections, added per-version configuration / flow / signer / required-file tables, updated prerequisites and execution flow.