Conversation
frisitano
force-pushed
the
review/proof-engine-ere-bindings
branch
from
September 18, 2026 11:16
bb1af75 to
1fd27de
Compare
Separate signed gossip envelopes from locally reconstructed proof-engine input and use progressive versioned hashes for Gloas and Heze.
* Align execution proof types with zkBoost * Clarify ERE verifier and guest versions
frisitano
force-pushed
the
review/proof-engine-ere-bindings
branch
from
September 18, 2026 11:26
1fd27de to
19bdf39
Compare
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.
Important
This PR is stacked on sigp/lighthouse#10063 and should be reviewed only after that PR has merged. Until then, this diff also contains its execution-proof refactor.
After the upstream PR lands, this branch will be rebased onto
unstableand this PR will be marked ready for review.Issue Addressed
Follow-up to sigp/lighthouse#10063.
This adds production verification for EIP-8025 execution proofs using ERE. It also incorporates the proof-type assignments and verification keys merged in eth-act/lighthouse#50, aligned with zkBoost and ERE v0.17.1.
Proposed Changes
eth-act/ere-guestsv0.17.0.ProofEnginea cheaply clonable handle backed byArc<dyn ProofEngineT>.spawn_blockingso CPU-bound verification does not block the async runtime.--proof-engine [PATH], using the built-in verifier configuration when no path is supplied and a JSONProofEngineConfigotherwise.MockProofEnginebehind the test-onlytest-utilsfeature.Additional Info
The
ere-verifierfeature uses the checksummed ERE v0.17.1 native verifier artifacts. It currently supports:aarch64-apple-darwinx86_64-unknown-linux-gnuaarch64-unknown-linux-gnuProof fixtures are embedded only in the integration-test target and are not included in the production Lighthouse binary.
The
Arc<dyn ProofEngineT>handle adds one virtual call per verification and atomic reference counting when cloned. This overhead is negligible compared with proof verification, and the handle itself does not serialize concurrent calls.Validation
cargo checkcargo test -p proof_engine --features ere-verifier(20 tests)cargo test -p proof_engine --features test-utils(6 tests)FORK_NAME=fulu cargo test -p beacon_chain --test beacon_chain_tests --features fork_from_env envelope_verification::lookup_imports_gloas_payload_after_restart -- --exactcargo test -p beacon_chain --test beacon_chain_tests --features fork_from_env --no-runcargo fmt --all -- --checkcargo sort --workspace --checkgit diff --checkReviewer Focus
After the upstream PR has merged, the main review areas are:
Arc-backed proof-engine handle andspawn_blockingboundary.