Proof-carrying transactions
Table of Contents
- Re-execution vs ZK enforcement
- Design principles
- Data layout
- Re-execution specification
- ZK specification
Re-execution vs ZK enforcement
The original proposal for the EXECUTE precompile presented two possible enforcement mechanisms: re-execution and ZK proofs. While the latter requires the L1 ZK-EVM upgrade to take place, the former can potentially be implemented beforehand and set the stage for the ZK version, in a similar way that proto-danksharding was first introduced without PeerDAS.
The re-execution variant would only be able to support optimistic rollups with a bisection protocol that goes down to single or few-L2-blocks sized steps, and that are EVM-equivalent. Today there are three stacks with working bisection protocols, namely Orbit stack (Arbitrum), OP stack (Optimism) and Cartesi. Cartesi is built to run a Linux VM so they wouldn’t be able to use the precompile, and Orbit supports Stylus which doesn’t make them fully EVM-equivalent, unless a Stylus-less version is implemented, but even in this case it wouldn’t be able to support Arbitrum One. OP stack is mostly EVM-equivalent, but still requires heavy modifications to support native execution. It’s therefore unclear whether trying to implement the re-execution version of the precompile is worth it, or if it’s better to wait for the more powerful ZK version.
While the L1 ZK-EVM upgrade is not needed for the re-execution version, statelessness is, as we want L1 validators to be able to verify the precompile without having to hold all rollups’ state. It’s not clear whether the time interval between statelessness and L1 ZK-EVM will be long enough to justify the implementation of the re-execution variant, or whether statelessness will be implemented before the L1 ZK-EVM in the first place.
Both variants are specified in this document. The re-execution spec comes first because it is simpler and helps explain the progression to ZK: the core function being executed or proven is the same (verify_stateless_new_payload), and the contract patterns (state management, messaging, anchoring) are shared. The ZK spec then shows what changes when re-execution is replaced by proof verification.
Design principles
The core principle is to re-use as many L1 components as possible. L2 operators run the same proving infrastructure as L1 provers: they prove the same program (verify_stateless_new_payload) with the same keys. The mandatory L1 proving path verifies those L2 proofs using the generalized verification infrastructure derived from EIP-8025, while L1 validators verify the resulting L1 block proof. In the re-execution variant, L1 validators run the same stateless validation function directly.
This means native rollups inherit whatever the L1 EVM supports: no custom transaction types, precompiles, or fee markets on the L2 side. Any such change would require modifying the shared program, making the proposal more complex and harder to accept. The L2-specific logic (blob transaction filtering, L1 anchoring) is kept outside the standard function, in a thin preprocessing layer.
Significant parts of the design depend on its tech dependencies, which might still be in development. The specification tries to be written as if such features were already implemented, without trying to predict exact details. Significant changes are therefore expected once they mature.
Data layout
Both variants execute or prove the same function (verify_stateless_new_payload) and therefore share the same L2 block structure. The following tables describe how native rollup blocks map to the standard spec types.
Fields marked constrained are validated during execution (wrong value = proof/execution fails). Fields marked unconstrained are free inputs chosen by the operator. Fields marked fixed have a constant value for L2.
The unconstrained fields (fee_recipient, prev_randao, parent_beacon_block_root) correspond to the PayloadAttributes that on L1 are trusted to come from the consensus layer. The EL never validates them; it accepts whatever the CL provides. Since native rollups have no CL, these become free inputs for the operator. timestamp is also CL-provided on L1 but additionally constrained by the EL (> parent_header.timestamp).
StatelessInput
StatelessInput: input to verify_stateless_new_payload.
| Field | Expected source | Notes |
|---|---|---|
new_payload_request | see below | |
witness | calldata (re-execution) / offchain (ZK) | ExecutionWitness: MPT node preimages, contract bytecodes, ancestor headers |
chain_config | storage (chain_id) + EVM environment (active_fork.activation) | L2 chain configuration; see below |
public_keys | calldata (re-execution) / offchain (ZK) | Pre-recovered ECDSA keys to avoid expensive recovery in the ZK circuit |
ChainConfig
The current L1 zkEVM ChainConfig has the following logical shape:
ChainConfig {
chain_id: uint64,
active_fork: {
activation: {
block_number: Optional[uint64],
timestamp: Optional[uint64],
},
},
}
At least one activation coordinate must be present, and stateless validation checks that the active fork’s activation has been reached by the target payload. ChainConfig no longer contains a fork identifier or blob schedule. The exact stateless-validation schema and fork semantics are bound separately by the canonical program identity.
This proposal assumes a parameterless EVM environmental interface exposes the current canonical L1 ChainConfig, analogously to how CHAINID exposes the current chain ID. The exact opcode or precompile is left to the L1 zkEVM work. A native-rollup contract reads that value, discards its L1 chain_id, and constructs the L2 configuration from:
- the L2
chain_idstored by the rollup contract; and - the complete L1
active_fork.activation, including both optional block-number and timestamp coordinates.
For post-Merge L1 forks the timestamp is normally the relevant coordinate, but copying the complete activation preserves the upstream type. Because the activation data comes from the EVM environment, native rollups follow L1 fork transitions without maintaining a fork schedule or applying a contract upgrade. The constructed L2 ChainConfig is used both as StatelessInput.chain_config and when reconstructing the proof’s full StatelessValidationResult.
NewPayloadRequest
NewPayloadRequest (inside StatelessInput):
| Field | Constrained | Expected source | Notes |
|---|---|---|---|
execution_payload | See below | ||
versioned_hashes | yes | ZK: BLOBHASH / re-execution: empty | Ordered list of blob versioned hashes. On L1, the first payload_blob_count entries are payload blobs (EIP-8142, carrying block data) and the rest are from type-3 blob transactions. On L2, since blob transactions are not supported, the list contains only payload blob hashes. In ZK, read via BLOBHASH from the proof-carrying transaction’s blobs. Empty in re-execution (no blobs) |
parent_beacon_block_root | no | computed onchain | Repurposed as the L1 anchor on L2. The existing EIP-4788 system transaction inside apply_body writes this value to the beacon roots predeploy, making it available to L2 contracts. The rollup contract chooses what to pass in this field (e.g. an L1 block hash, a message queue commitment, or any other value useful for L1->L2 communication). See L1 anchoring and L1->L2 messaging |
execution_requests | fixed | constant | Empty for L2 |
ExecutionPayload
ExecutionPayload (inside NewPayloadRequest):
| Field | Constrained | Expected source | Notes |
|---|---|---|---|
parent_hash | yes | storage | Hash of the previous L2 block. Chain continuity link |
fee_recipient | no | various | Fee recipient (coinbase). Could come from calldata, or be a fixed address in storage (e.g. a DAO treasury) |
state_root | yes | calldata | Post-state root |
receipts_root | yes | calldata | Post-receipts root |
logs_bloom | yes | calldata | Computed during execution |
prev_randao | no | various | See L1 vs L2 diff: RANDAO |
block_number | yes | storage | Must equal parent_header.number + 1 |
gas_limit | yes | storage | Bounds check against parent (1/1024 rule). TBD: ZK gas handling |
gas_used | yes | calldata | Computed during execution |
timestamp | yes | calldata | Must be > parent_header.timestamp |
extra_data | no | various | Max 32 bytes |
base_fee_per_gas | yes | calldata | Must match EIP-1559 formula from parent header |
block_hash | yes | calldata | Computed from header |
transactions | yes | calldata or blobs | Re-execution: full transactions in calldata. ZK: transactions_root in calldata, full transactions in blobs (EIP-8142) |
withdrawals | fixed | constant | Empty for L2 |
blob_gas_used | fixed | constant | 0 for L2 |
excess_blob_gas | fixed | constant | 0 for L2 |
block_access_list | yes | TBD | TBD |
Re-execution specification
Overview
The re-execution variant uses an EXECUTE precompile that performs L2-specific preprocessing and then calls the standard stateless validation function. This is the simplest enforcement mechanism: the L1 EL directly re-executes the L2 state transition.
This variant is not intended for production. It is specified for:
- Testing: validating the native rollup contract patterns without needing ZK infrastructure.
- Understanding: providing a concrete, executable reference for the verification flow.
- Progression: showing the stepping stone from re-execution to ZK (see From re-execution to ZK).
The ethrex project implements a version of this approach (PR #6186). Our spec follows the same pattern but wraps the standard verify_stateless_new_payload directly, rather than using a custom apply_body variant with individual ABI-encoded fields.
The EXECUTE precompile
The EXECUTE precompile is the precompile equivalent of run_stateless_guest, the ZK guest entry point that takes SSZ-serialized input, runs verify_stateless_new_payload, and returns SSZ-serialized output. The precompile adds L2-specific preprocessing (fixed-field checks) before calling the same function. The pseudocode uses types and functions from the execution-specs:
from ethereum_types.numeric import U64
from ethereum.forks.amsterdam.vm import Evm
from ethereum.forks.amsterdam.vm.gas import charge_gas
from ethereum.forks.amsterdam.vm.exceptions import ExceptionalHalt, InvalidParameter
from ethereum.forks.amsterdam.stateless import (
verify_stateless_new_payload,
)
from ethereum.forks.amsterdam.stateless_guest import (
deserialize_stateless_input,
serialize_stateless_output,
)
def execute(evm: Evm) -> None:
data = evm.message.data
stateless_input = deserialize_stateless_input(data)
charge_gas(evm, stateless_input.new_payload_request.execution_payload.gas_used)
# L2-specific preprocessing: enforce fixed fields.
payload = stateless_input.new_payload_request.execution_payload
request = stateless_input.new_payload_request
if payload.blob_gas_used != U64(0) or payload.excess_blob_gas != U64(0):
raise InvalidParameter
if len(payload.withdrawals) != 0:
raise InvalidParameter
if len(request.execution_requests) != 0:
raise InvalidParameter
# Standard stateless validation (identical to L1).
result = verify_stateless_new_payload(stateless_input)
if not result.successful_validation:
raise ExceptionalHalt
evm.output = serialize_stateless_output(result)
Input: The precompile reads its input from evm.message.data, which contains an SSZ-serialized StatelessInput, decoded via deserialize_stateless_input.
Output:
- On success:
evm.outputcontains the SSZ-serializedStatelessValidationResult, encoded viaserialize_stateless_output. This includesnew_payload_request_root,successful_validation, and the completechain_config. - On failure: raises
InvalidParameterfor bad fixed fields, orExceptionalHaltif validation fails. Both consume all gas and cause theSTATICCALLto returnsuccess = falsewith empty output.
L2-specific preprocessing
The preprocessing steps before verify_stateless_new_payload enforce that all fixed fields are zero/empty:
blob_gas_used = 0andexcess_blob_gas = 0: L2 does not support type-3 (blob-carrying) transactions. Rather than iterating through all transactions to detect them, the precompile asserts these two fields are zero. Since the STF verifies that the computedblob_gas_usedmatches the header claim, any blob transaction would cause a mismatch and be rejected insideverify_stateless_new_payloaditself. This makes the check O(1) instead of O(n). See also EIP-8079 which defines a similar check.withdrawalsempty: L2 has no beacon chain, so withdrawals must be empty. Without this check, an operator could mint arbitrary ETH on L2 via fake withdrawals.execution_requestsempty: L2 has no validator operations (deposits, exits, consolidations).
L1 anchoring does not require preprocessing. The parent_beacon_block_root field of NewPayloadRequest is repurposed to carry an L1 anchor value chosen by the rollup contract. The existing EIP-4788 system transaction inside apply_body writes this value to the beacon roots predeploy, making it available to L2 contracts. This happens inside verify_stateless_new_payload, so the anchor write is covered by the L2 execution proof (or re-execution). No separate system transaction or predeploy is needed. The format of the anchor is not prescribed: rollups can pass an L1 block hash, a message queue commitment, or any other value useful for L1->L2 communication. See L1 anchoring for more details.
NativeRollup contract (re-execution)
The following contract is a proof of concept showing how the EXECUTE precompile can be used. It calls the precompile and updates its onchain state. Like the ZK variant, the contract constructs the precompile input from a mix of storage (chain state that the contract enforces) and calldata (operator-provided fields). The contract stores:
stateRoot,blockNumber,blockHash,gasLimit: current L2 chain headchainId: L2 chain identifier (part ofChainConfig)stateRootHistory: mapping of block numbers to state roots (for L2->L1 messaging via state proofs)
contract NativeRollup {
struct BlockParams {
// Constrained fields (validated by re-execution)
bytes32 stateRoot;
bytes32 receiptsRoot;
bytes logsBloom;
uint256 gasUsed;
uint256 timestamp;
uint256 baseFeePerGas;
bytes32 blockHash;
// Unconstrained fields (free operator inputs)
address feeRecipient;
bytes32 prevRandao;
bytes32 extraData;
}
// L2 chain state tracked onchain
bytes32 public blockHash;
bytes32 public stateRoot;
uint256 public blockNumber;
uint256 public gasLimit;
uint64 public chainId;
// L2 state root history (for L2->L1 messaging via state proofs)
mapping(uint256 => bytes32) public stateRootHistory;
// L1->L2 message queue. Messages are stored in this contract's
// storage and become accessible on L2 via storage proofs against
// the anchored L1 block hash.
bytes32[] public pendingL1Messages;
// EXECUTE precompile address (TBD)
address constant EXECUTE = address(0xTBD);
// Queue an L1->L2 message. The message hash is stored in this
// contract's storage. On L2, a relayer provides a storage proof
// against the anchored L1 block hash to prove the message exists.
function sendMessage(address to, bytes calldata data) external payable {
bytes32 messageHash = keccak256(
abi.encodePacked(msg.sender, to, msg.value, keccak256(data), pendingL1Messages.length)
);
pendingL1Messages.push(messageHash);
}
function advance(
BlockParams calldata params,
bytes calldata transactions,
bytes calldata witness,
bytes calldata publicKeys
) external {
// 1. Compute the L1 anchor.
// Passed as parent_beacon_block_root; the EIP-4788 system
// transaction inside apply_body writes it to the beacon
// roots predeploy, making it available to L2 contracts.
// The anchor format is up to the rollup. This example uses
// the L1 block hash, which lets L2 contracts use storage
// proofs to access any L1 state.
// See: l1_anchoring.md, l1_l2_messaging.md
bytes32 l1Anchor = blockhash(block.number - 1);
// 2. Construct the current L2 ChainConfig. L1CHAINCONFIG is the
// assumed parameterless EVM environmental interface. Its L1
// chain ID is overwritten; its complete active-fork activation
// is retained.
ChainConfig memory l2ChainConfig = L1CHAINCONFIG();
l2ChainConfig.chainId = chainId;
// 3. Call EXECUTE precompile with SSZ-serialized StatelessInput.
bytes memory input = SSZ.encodeStatelessInput(
NewPayloadRequest(
ExecutionPayload(
blockHash, // parent_hash (from storage)
params.feeRecipient,
params.stateRoot,
params.receiptsRoot,
params.logsBloom,
params.prevRandao,
blockNumber + 1, // block_number (from storage)
gasLimit, // gas_limit (from storage)
params.gasUsed,
params.timestamp,
params.extraData,
params.baseFeePerGas,
params.blockHash,
transactions,
new bytes[](0), // withdrawals (empty for L2)
0, // blob_gas_used (zero for L2)
0 // excess_blob_gas (zero for L2)
),
new bytes32[](0), // versioned_hashes (empty for re-execution)
l1Anchor, // parent_beacon_block_root
new bytes[](0) // execution_requests (empty for L2)
),
witness,
l2ChainConfig,
publicKeys
);
(bool success, bytes memory result) = EXECUTE.staticcall(input);
require(success, "EXECUTE failed");
// 4. Decode and verify result (SSZ-encoded StatelessValidationResult).
(
bytes32 newPayloadRequestRoot,
bool validationSuccessful,
ChainConfig memory provenChainConfig
) =
SSZ.decodeStatelessValidationResult(result);
require(validationSuccessful, "L2 validation failed");
require(
SSZ.hashTreeRoot(provenChainConfig) == SSZ.hashTreeRoot(l2ChainConfig),
"chain_config mismatch"
);
// 5. Update onchain state
blockHash = params.blockHash;
stateRoot = params.stateRoot;
blockNumber = blockNumber + 1;
stateRootHistory[blockNumber] = params.stateRoot;
}
}
ZK specification
Overview
The ZK variant replaces the EXECUTE precompile with proof-carrying transactions and a PROOFROOT opcode. Instead of re-executing the L2 state transition on L1, the rollup operator generates a ZK proof that is recursively verified by the mandatory L1 block proof. The rollup contract computes the expected commitment onchain and checks it against the proof.
This follows the same commitment pattern as EIP-4844 blob transactions: the EL references a commitment (validation_result_root), while the proving and consensus path establishes that the corresponding proof is valid. The validation_result_root is the hash_tree_root of the StatelessValidationResult, the proof’s public output, which contains the new_payload_request_root, whether validation succeeded, and the chain_config used during execution.
The specification follows the stateless execution model from the execution-specs, the Block-in-Blobs (EIP-8142) pattern for transaction data availability, and the EIP-8025 proof validation infrastructure from the consensus-specs.
Mandatory-proof assumption. This design targets the future L1 regime in which execution proofs are consensus-critical and validators do not download full execution payloads. Validators sample payload data through DAS and validate the mandatory L1 block proof against a compact NewPayloadRequestHeader. The header must have the same SSZ hash_tree_root as the full NewPayloadRequest. The current optional EIP-8025 flow, in which the proof engine is notified with the full request, is a development-stage predecessor rather than the validator model assumed here.
The flow:
- The rollup operator builds an L2 block and generates an execution proof by proving
verify_stateless_new_payload, the same program that L1 provers prove for L1 blocks. - The operator submits a proof-carrying transaction to L1. The transaction body includes the
validation_result_root(accessible to the EVM viaPROOFROOT) andblob_versioned_hashes. The sidecar carries the ZK proof and blobs (EIP-8142-encoded L2 block data). - The rollup contract reconstructs the expected
validation_result_rootand checks it againstPROOFROOT(see Root computation). - The assumed mandatory L1 block proof recursively verifies the proof-carrying transaction’s execution proof. Validators verify that L1 block proof and sample payload data through DAS; they do not download the full execution payload.
- The rollup contract updates its onchain state (block hash, state root, etc.).
No precompile is needed. The rollup contract is the “programmable consensus layer” that decides which fields come from storage, which from the operator, and which are fixed.
This document assumes that the mandatory L1 proving infrastructure can recursively verify proof-carrying transaction proofs. The construction of that recursive proving and aggregation infrastructure is outside the scope of this proposal and can be specified separately.
From re-execution to ZK
The ZK variant builds directly on the re-execution spec. The core function being verified is the same: verify_stateless_new_payload. What changes is how that function is verified and where the data lives.
| Aspect | Re-execution | ZK |
|---|---|---|
| Enforcement | EXECUTE precompile re-runs L2 STF | Mandatory L1 block proof recursively verifies L2 proof |
| L2 data | Calldata (txs + witness + public keys) | Blobs for txs (EIP-8142), witness + public keys offchain |
| EVM access | Precompile return value | BLOBHASH + PROOFROOT opcodes |
| Contract role | Calls precompile, checks return | Computes validation_result_root, checks PROOFROOT |
| CL involvement | None (pure EL) | Verifies mandatory L1 block proof and samples payload data |
| L1 proves | Full L2 execution (re-execution) | Contract execution and recursive L2 proof verification |
| Requires | Statelessness | Statelessness + L1 ZK-EVM |
What stays the same:
- NativeRollup contract pattern (state management, messaging)
- L1 anchoring mechanism
- L1->L2 and L2->L1 messaging patterns
- The function being proven/executed:
verify_stateless_new_payload - The
StatelessValidationResultas the proof’s public output (which containsnew_payload_request_root)
What changes:
The main change is where L2 block data lives and who processes it:
- Transactions and block access list: in re-execution, the full transaction list is passed as calldata to the
EXECUTEprecompile, which re-executes them. In ZK, the full data moves to blobs following EIP-8142: the block access list and RLP-encoded transactions are packed into blobs viaexecution_payload_data_to_blobs. The contract only receivestransactions_rootin calldata, a constrained field validated by the L2 proof. The blobs ensure data availability so that L2 nodes and provers can reconstruct the block. - Witness and public keys: in re-execution, the
ExecutionWitness(trie node preimages, contract codes, ancestor headers) and pre-recovered public keys are passed as calldata because the EL needs them to re-execute. In ZK, neither is needed onchain: the prover uses them offchain to generate the proof, and they are not posted to L1. - Block parameters: remain in calldata in both variants. The contract needs them to either call the precompile (re-execution) or compute the
validation_result_rootonchain (ZK). - Verification: the
EXECUTEprecompile is replaced by proof-carrying transactions +PROOFROOT. The L1 EL no longer re-executes the L2 STF. Instead, the mandatory L1 block proof covers the contract’s root computation andPROOFROOTcheck and recursively verifies the referenced L2 proof.
Proof-carrying transactions
Proof-carrying transactions are a new EIP-2718 transaction type that extends EIP-4844 blob transactions with a proof. Like blob transactions, they declare blob_versioned_hashes in their body and carry blobs in their sidecar. Additionally, they declare a validation_result_root and carry a ZK proof in the sidecar.
The blobs contain the L2 block data (EIP-8142 encoded). The proof attests to the correctness of that block’s execution. Bundling both in one transaction ensures that data availability (via DAS) and execution correctness (via the proof) are guaranteed atomically: if the blobs are unavailable, the L1 block is invalid; if the proof is invalid, the L1 block is also invalid.
Each proof-carrying transaction proves exactly one L2 block.
TransactionType: PROOF_TX_TYPE
TransactionPayloadBody:
[chain_id, nonce, max_priority_fee_per_gas, max_fee_per_gas, gas_limit,
to, value, data, access_list, max_fee_per_blob_gas,
blob_versioned_hashes, validation_result_root,
y_parity, r, s]
During transaction gossip responses (PooledTransactions), the transaction payload is wrapped to include blobs, KZG commitments, KZG proofs, and the execution proof:
rlp([tx_payload_body, blobs, kzg_commitments, kzg_proofs, execution_proof])
The validation_result_root is a hash of the proof’s public output (see Proof validation). The blob_versioned_hashes commit to the EIP-8142-encoded L2 block data. The execution_proof is recursively verified by the mandatory L1 proving path (see Transaction processing).
The pattern extends EIP-4844:
| Blob transactions (EIP-4844) | Proof-carrying transactions | |
|---|---|---|
| Blobs | Transaction data | L2 block data (EIP-8142) |
| Onchain reference | blob_versioned_hashes | blob_versioned_hashes + validation_result_root |
| EVM access | BLOBHASH opcode | BLOBHASH + PROOFROOT opcodes |
| CL validation | Blob availability (KZG, DAS) | Blob availability + mandatory L1 block proof |
| EL validation | is_valid_versioned_hashes (protocol) | validation_result_root != 0 (protocol) + contract checks PROOFROOT |
See also Proof-carrying transactions for more context on the proof format.
The PROOFROOT opcode
A new opcode PROOFROOT provides EVM access to the validation_result_root declared in the current proof-carrying transaction. It is simpler than BLOBHASH since there is exactly one root per transaction (no index input).
| Opcode | 0x4b (TBD) |
| Stack input | none |
| Stack output | validation_result_root (bytes32) |
| Gas cost | G_base (2) |
The gas cost follows the same pricing as other zero-input environment opcodes like ORIGIN, GASPRICE, and BLOBBASEFEE, which all cost G_base (2 gas).
def proofroot(evm: Evm) -> None:
charge_gas(evm, GAS_BASE)
root = evm.message.tx_env.validation_result_root
push(evm.stack, root)
evm.pc += Uint(1)
If the transaction is not a proof-carrying transaction, PROOFROOT returns bytes32(0), analogous to how BLOBHASH returns zero for non-blob transactions.
Transaction processing
Proof-carrying transactions are processed like blob transactions with one additional field (validation_result_root). The EL treats the proof as opaque. The assumed mandatory L1 proving path recursively verifies the proof; validators verify only the resulting L1 block proof.
EL: transaction decoding and validation. A new transaction type (e.g. PROOF_TX_TYPE = 0x05) is added to transactions.py. The ProofCarryingTransaction class extends BlobTransaction with validation_result_root: Hash32. The signing hash includes validation_result_root, so the sender commits to which L2 block is being proven.
check_transaction applies the same validation as blob transactions (blob count, version byte, max_fee_per_blob_gas >= blob_gas_price, balance coverage including blob gas) plus:
validation_result_root != bytes32(0)
The blobs use the existing blob gas market. How to price the proof verification cost is an open question (see Open questions).
EL: transaction environment. TransactionEnvironment is extended with validation_result_root: Hash32 (set from the transaction in process_transaction, or bytes32(0) for non-proof-carrying txs). This is what the PROOFROOT opcode reads, mirroring how blob_versioned_hashes in TransactionEnvironment is what BLOBHASH reads.
EL: engine API. is_valid_versioned_hashes validates that versioned hashes from the CL match blob transaction hashes in the payload. It would need to be updated to also extract blob_versioned_hashes from ProofCarryingTransaction instances (currently it only handles BlobTransaction). Beyond this, no additional engine API changes are needed: the EL does not see or validate the proof, just as it does not see blob contents.
Mandatory L1 proof. The proof-carrying transaction makes the execution_proof and its declared validation_result_root available to the L1 proving path. The L1 block proof recursively verifies the execution proof and proves that its public output matches the declared root. A validator checks that single mandatory L1 proof against NewPayloadRequestHeader; it does not separately verify every proof-carrying transaction proof or download the full execution payload. The exact proof-delivery and recursive-aggregation machinery is assumed infrastructure and is outside this proposal.
CL: data availability. Blob availability is handled by the existing DAS mechanism (EIP-4844 / EIP-7594 PeerDAS). The CL treats proof-carrying transaction blobs identically to any other blobs: they are included in blob_kzg_commitments, sampled via DAS, and their versioned hashes are passed to the EL for cross-verification.
P2P: gossip. During transaction gossip (PooledTransactions), the network representation wraps the transaction body with blobs, KZG data, and the execution proof (as shown in the sidecar format above). Receiving nodes retain the existing blob-sidecar checks:
- Blob/commitment/proof counts match
blob_versioned_hashes(same as blob txs) kzg_to_versioned_hash(commitments[i]) == blob_versioned_hashes[i](same as blob txs)- KZG proofs are valid for the blobs (same as blob txs, via
verify_blob_kzg_proof_batch)
Whether transaction gossip also verifies the execution proof before forwarding is a non-consensus policy and delivery question left to the assumed L1 proving infrastructure.
Summary of changes by layer:
| Layer | Blob transactions (EIP-4844) | Proof-carrying transactions (additions) |
|---|---|---|
| EL: tx type | BlobTransaction (0x03) | ProofCarryingTransaction (0x05), adds validation_result_root |
| EL: validation | Blob count, version byte, fee checks | Same + validation_result_root != 0 |
| EL: tx env | blob_versioned_hashes | Same + validation_result_root |
| EL: engine API | is_valid_versioned_hashes | Updated to also handle ProofCarryingTransaction |
| CL: validation | is_data_available (DAS) | DAS + mandatory L1 block proof recursively verifies the execution proof |
| P2P: sidecar | [tx, blobs, commitments, kzg_proofs] | Same + execution_proof |
Proof validation
An L2 execution proof uses the same ExecutionProof structure as an L1 block proof. It proves that verify_stateless_new_payload succeeded for the L2 block. The proof’s public output is the full StatelessValidationResult:
new_payload_request_root: the root of theNewPayloadRequestfor that L2 block, computed viacompute_new_payload_request_rootsuccessful_validation: whether the state transition succeededchain_config: the completeChainConfig, includingchain_idand the active fork’s activation, used during execution (see PR #2342)
The validation_result_root declared in the proof-carrying transaction is a hash of this full StatelessValidationResult. Current optional EIP-8025 gossips L1 proofs as SignedExecutionProof messages and notifies the proof engine with the full NewPayloadRequest. This proposal instead assumes the mandatory-proof regime: the proof-carrying transaction sidecar makes the L2 proof available to the L1 proving path, the mandatory L1 block proof recursively verifies it, and validators validate the resulting L1 proof against the root reconstructed from NewPayloadRequestHeader. Validators never need the full payload for this check.
Together, the EL check (the contract reconstructs the expected root and matches PROOFROOT, see Root computation) and the mandatory L1 proof (which recursively verifies the L2 proof for that root) guarantee that the L2 state transition was executed correctly.
ChainConfig and proof binding. ChainConfig is part of StatelessInput but not part of NewPayloadRequest or the block header. If the public output were only the new_payload_request_root, the prover could freely choose it as a private input. In particular, choosing another chain_id would enable cross-chain transaction replay: for typed transactions (EIP-2930 and later), recover_sender uses the transaction’s own tx.chain_id for signature recovery, not block_env.chain_id, so transactions from any chain would execute successfully. By including the complete chain_config in StatelessValidationResult (PR #2342), the contract binds both its stored L2 chain ID and the EVM-provided current L1 fork activation.
The exact fork/schema identity is not encoded in the current ChainConfig; it remains bound by the canonical proof program identity. The activation fields are still useful as an additional guard: stateless validation rejects a payload that predates the active fork, and the parameterless EVM value changes with L1’s fork rules.
Root computation
The rollup contract must reconstruct the expected validation_result_root and check it against PROOFROOT. This requires two steps:
-
Compute
new_payload_request_rootfromNewPayloadRequestHeader. The mandatory-proof model requires a compact header because neither validators nor the contract have the full transaction list. SSZ defines root-equivalent summaries: variable-sized payload fields can be replaced by theirhash_tree_rootwithout changing the root of the enclosing object. Consequently,hash_tree_root(NewPayloadRequestHeader) == hash_tree_root(NewPayloadRequest).NewPayloadRequestHeaderwas removed from the current optional EIP-8025 flow only because validators still receive the full payload; this proposal assumes its return for mandatory proofs. The root itself follows the zkEVMSszNewPayloadRequestschema. Execution-specs PR #3248 is updating that schema to Gloas’s EIP-7688 progressive merkleization, which intentionally changesnew_payload_request_rootwhile leaving its SSZ serialization unchanged. This proposal targets that progressive root. -
Hash the full
StatelessValidationResult: read the current L1ChainConfigfrom the parameterless EVM environmental interface, replace its L1 chain ID with the contract’s stored L2 chain ID, and computehash_tree_rootof theSszStatelessValidationResultcontainingnew_payload_request_root(from step 1),successful_validation = true, and that complete L2chain_config. The result is thevalidation_result_root.
The contract has access to every field needed for step 1:
| Leaf | Expected source |
|---|---|
Scalar header fields (parent_hash, block_number, etc.) | Contract storage and operator calldata |
transactions_root | Operator calldata (constrained: proven by the L2 proof) |
withdrawals_root | Known constant (empty for L2) |
block_access_list_root | Operator calldata (constrained: proven by the L2 proof) |
slot_number | TBD: its L2 interpretation must be defined |
versioned_hashes | BLOBHASH from the proof-carrying transaction |
parent_beacon_block_root | Computed onchain (L1 anchor) |
execution_requests | Known constant (empty for L2) |
transactions_root is a constrained field: if the operator provides a wrong value, the L2 proof fails and the CL rejects the L1 block. This is the same trust model as state_root and receipts_root, which are also claimed by the operator and validated by the proof.
NativeRollup contract (ZK)
The ZK contract implements the Root computation steps and checks the result against PROOFROOT. The operator submits a proof-carrying transaction where the blobs contain L2 block data, the calldata contains block parameters, and the sidecar contains the execution proof.
contract NativeRollup {
struct BlockParams {
// Constrained fields (validated by the L2 proof)
bytes32 stateRoot;
bytes32 receiptsRoot;
bytes logsBloom;
uint256 gasUsed;
uint256 timestamp;
uint256 baseFeePerGas;
bytes32 blockHash;
bytes32 transactionsRoot;
uint256 payloadBlobCount; // EIP-8142: number of blobs carrying L2 block data
// Unconstrained fields (free operator inputs)
address feeRecipient;
bytes32 prevRandao;
bytes32 extraData;
}
// L2 chain state tracked onchain
bytes32 public blockHash;
bytes32 public stateRoot;
uint256 public blockNumber;
uint256 public gasLimit;
uint64 public chainId;
// L2 state root history (for L2->L1 messaging via state proofs)
mapping(uint256 => bytes32) public stateRootHistory;
// L1->L2 message queue (same as re-execution variant)
bytes32[] public pendingL1Messages;
function sendMessage(address to, bytes calldata data) external payable {
bytes32 messageHash = keccak256(
abi.encodePacked(msg.sender, to, msg.value, keccak256(data), pendingL1Messages.length)
);
pendingL1Messages.push(messageHash);
}
function advance(BlockParams calldata params) external {
// 1. Compute the L1 anchor.
// Same pattern as the re-execution variant (see above).
bytes32 l1Anchor = blockhash(block.number - 1);
// 2. Construct the current L2 ChainConfig. L1CHAINCONFIG is the
// assumed parameterless EVM environmental interface. Its L1
// chain ID is overwritten; its complete active-fork activation
// is retained.
ChainConfig memory l2ChainConfig = L1CHAINCONFIG();
l2ChainConfig.chainId = chainId;
// 3. Compute new_payload_request_root from
// storage + calldata + versioned hashes + computed anchor.
// Uses header-level fields: transactions_root instead of
// full transactions list.
// Hashing scheme is SSZ hash_tree_root. TBD: onchain library.
bytes32 npRoot = computeNewPayloadRequestRoot(
// ExecutionPayloadHeader fields
parentHash: blockHash, // from storage
feeRecipient: params.feeRecipient,
stateRoot: params.stateRoot,
receiptsRoot: params.receiptsRoot,
logsBloom: params.logsBloom,
prevRandao: params.prevRandao,
blockNumber: blockNumber + 1, // from storage
gasLimit: gasLimit, // from storage
gasUsed: params.gasUsed,
timestamp: params.timestamp,
extraData: params.extraData,
baseFeePerGas: params.baseFeePerGas,
blockHash: params.blockHash,
transactionsRoot: params.transactionsRoot, // constrained (proven)
withdrawalsRoot: bytes32(0), // empty for L2
blobGasUsed: 0, // fixed for L2
excessBlobGas: 0, // fixed for L2
payloadBlobCount: params.payloadBlobCount,
// NewPayloadRequest fields
versionedHashes: getVersionedHashes(params.payloadBlobCount),
parentBeaconBlockRoot: l1Anchor, // computed onchain
executionRequests: bytes32(0) // empty for L2
);
// 4. Hash the full StatelessValidationResult:
// (new_payload_request_root, successful_validation, chain_config)
// This binds chain_id from storage, the current L1 active-fork
// activation, and successful_validation = true.
bytes32 validationResultRoot = SSZ.hashTreeRootStatelessValidationResult(
npRoot,
true,
l2ChainConfig
);
// 5. Verify the computed root matches the proof-carrying tx's
// declared root. The mandatory L1 block proof recursively
// verifies the L2 proof for this root.
require(validationResultRoot == PROOFROOT, "root mismatch");
// 6. Update onchain state.
blockHash = params.blockHash;
stateRoot = params.stateRoot;
blockNumber = blockNumber + 1;
stateRootHistory[blockNumber] = params.stateRoot;
}
function getVersionedHashes(uint256 count) internal view returns (bytes32[] memory) {
// Read blob versioned hashes from the proof-carrying tx via
// BLOBHASH. Since L2 has no type-3 blob transactions, all blobs
// in the tx are payload blobs (EIP-8142 encoded L2 block data).
// DAS guarantees these blobs are available.
bytes32[] memory hashes = new bytes32[](count);
for (uint256 i = 0; i < count; i++) {
hashes[i] = blobhash(i);
}
return hashes;
}
}
See also: L1 anchoring, L1->L2 messaging, L2->L1 messaging
Blob encoding
L2 block data (transactions + block access list) is encoded into blobs following EIP-8142. The operator calls execution_payload_data_to_blobs to produce an ordered list of blobs, which are included in the proof-carrying transaction’s sidecar.
Data availability guarantee. The proof-carrying transaction carries both the blobs and the ZK proof. The blob_versioned_hashes in the transaction body commit to the blob data via KZG. The validation_result_root commits (through the new_payload_request_root) to a NewPayloadRequest that includes those same versioned_hashes. The contract reads the blob hashes via BLOBHASH and includes them in the root computation, binding the proof to the blob data. DAS ensures the blobs are available. An operator cannot withhold L2 data: if the blobs are missing, the L1 block is invalid (same as any blob transaction); if the versioned hashes don’t match, the root check fails.
Open questions
-
block_access_listhandling: With EIP-8142, block access lists may also be encoded in blobs. If so, the operator would provide theblock_access_listroot as calldata (same pattern astransactions_root). -
Proof-carrying transaction pricing: Recursively verifying the transaction proof imposes additional work on the mandatory L1 prover. Whether this requires a separate proof gas market (analogous to the blob gas market), a flat fee, or is folded into the existing gas model is TBD. Related: how the overall gas model works depends on the L1 ZK-EVM design. See tech dependencies.
-
Root computation library: The rollup contract needs to compute
new_payload_request_rootonchain via SSZhash_tree_root(overSszNewPayloadRequest) and thenhash_tree_rootthe fullSszStatelessValidationResult. The availability and gas cost of an SSZhash_tree_rootlibrary in Solidity is a practical consideration. -
Re-execution data encoding: The
EXECUTEprecompile takes an SSZ-serializedStatelessInputas calldata. The encoding must be efficient given the potentially large witness size. -
Re-execution gas cost: The gas cost of the
EXECUTEprecompile depends on the L2 block complexity. The gas metering model is TBD. -
Sequence-first-prove-later: The current spec requires blobs and proof to be in the same transaction, so the operator must have the proof ready at data posting time. Supporting sequence-first-prove-later (post data first, prove later) would require a mechanism to reference past blobs from the proof-carrying transaction.
BLOBHASHonly accesses blobs in the current transaction. Possible approaches include a new opcode or precompile that can attest to blob availability from past blocks (within the DAS availability window), or a contract-level registry of blob commitments.