Skip to main content
Subblocks (formerly Flashblocks) are partial blocks that an OP Stack sequencer streams while it is still building the full block. A subblock arrives every 200 ms, so an application can act on a transaction’s outcome well before the block containing it is sealed — roughly ten times sooner on a chain with a 2-second block time. This page explains what a subblock is, what its payload does and does not carry, and how production is arranged. To read pre-confirmed state from an application, follow the app integration guide. For the current interval and payload changes on OP Sepolia and OP Mainnet, see the Subblocks notice.

How it works

A sequencer normally executes an entire block and publishes it once, at the end of the block time. Subblocks split that window: the sequencer publishes what it has executed so far every 200 ms, and each subblock extends the previous one. Two properties follow from that, and both matter to anyone consuming the stream.
  • A subblock sequence is append-only. The final sealed block is the concatenation of every subblock in the sequence, in order. Transactions already emitted in a subblock are never reordered or dropped from the block that seals them.
  • A subblock is a projection, not a commitment. It reports the transactions executed so far. It does not prove the resulting state.
The first subblock in a sequence carries the block’s deposit transactions, because those execute before any transaction from the mempool is considered. Subsequent subblocks each add a batch of mempool transactions. The 200 ms interval is a target rather than a guarantee. Heavy execution in one interval leaves less time for the ones after it, so the number of subblocks in a block varies.

What a subblock payload carries

The payload is wire compatible with the Flashblocks format that preceded it, and the type is still named ExecutionPayloadFlashblockDeltaV1. No field was added or removed. Four fields are present but set to their zero value: Every other field carries a real value, including transactions, gas_used, receipts_root, and logs_bloom. The state root is the root cause. It is computed while execution continues and is only exact once the block is sealed, so a subblock cannot carry it. A block hash commits to the state root, so it cannot be final either.
Because the payload stayed wire compatible, reading a zeroed field returns a zero value rather than raising an error. An integration that treats the stream’s state_root or block_hash as authoritative will fail silently. Treat both as absent, and derive state by executing the transactions the subblock carries.
A node that consumes the stream does not need the zeroed fields. It executes the subblock’s transactions against its own view of the chain and serves the result under the pending block tag, so eth_call and eth_getBalance answer correctly without any root on the wire.

Architecture

Subblocks are produced by the sequencer’s execution client as it builds the block, and published over a WebSocket stream. Nothing sits between the consensus layer and the execution layer.
  • op-node drives block building through the engine API, exactly as it does on a chain without subblocks.
  • The execution client executes the block and publishes a subblock every 200 ms while it does so.
  • flashblocks-websocket-proxy relays the stream from the active sequencer to RPC providers.
  • op-conductor (optional) manages a multi-sequencer setup so only the healthy leader’s stream reaches the proxy.
Producing subblocks is available to OP Enterprise customers. Consuming them is not restricted: any node can follow the stream, and any application can read pre-confirmed state from a provider that does.

The Flashblocks stack

Before subblocks, pre-confirmations were produced by the Flashblocks stack: rollup-boost coordinating between the consensus layer and two execution clients, with op-rbuilder building blocks and op-reth standing by as a fallback builder.
The Flashblocks stack may still run, but OP Labs offers no support for it. It may stop working at a future fork. Chains running rollup-boost and op-rbuilder should plan a migration.
For availability information, see Enabling Subblocks.

Subblocks FAQ

Block building and availability

Safety and continuity

Next steps