Base Halted Block Production Twice in Two Days, Delaying Beryl

Base, an Ethereum layer-2 network, stopped producing blocks twice within two days at the end of June. The first halt began at 16:03 UTC on 25 June and ran for 116 minutes, according to the network's own postmortem; a second stoppage began at 15:33 UTC on 26 June and lasted 20 minutes by the same count. Both were traced to a single defect in the software that assembles blocks, which produced a block validators rejected at height 47,806,542. Base said no user funds were at risk, although deposits and withdrawals were delayed and new transactions were refused while the chain was stalled. It was the network's first halt in 90 days, and it pushed back the Beryl hardfork that had been scheduled for 25 June.
The Root Cause: Stale State Left Behind by a Failed Transaction
A sequencer is the single program that orders incoming transactions on a layer-2 network and packs them into blocks. As it executes each one, it keeps a journal, a running record of the changes that transaction would make, so those changes can be discarded if the transaction turns out to be invalid. Base's postmortem said "a bug in sequencer block-building logic allowed stale journal state to persist after a transaction validation failure" β in plain terms, the discarded work of a failed transaction was not fully cleared away. The next legitimate transaction then executed against that corrupted state. It was charged the wrong amount of gas, the fee paid for computation on the network, and the block containing it described a state transition that validators independently recomputed and refused to accept. With no agreed next block, production stopped. Base said the correction shipped as pull request #3806.
The Second Halt: A Fault in the Restart Path
The 26 June outage was not an independent failure but a product of the recovery from the first. Base attributed it to a secondary bug in its engine-reset feature, the mechanism that returns block-building to a known-good starting point, which misfired during the restart and stopped the chain again. How long each outage lasted depends on who measured it. Base put the two at 116 minutes and 20 minutes, while third-party uptime trackers logged roughly one hour and 48 minutes for the first and about 38 minutes for the second β slightly shorter than the official figure in one case and close to twice as long in the other.
- 25 June, 16:03 UTC: first halt, 116 minutes officially, about 1 hour 48 minutes per trackers.
- 26 June, 15:33 UTC: second halt, 20 minutes officially, about 38 minutes per trackers.
- Block height 47,806,542: the invalid block validators refused.
- Pull request #3806: the fix for the block-building bug.
The Impact: A Full Mempool and Rejected Transactions
While block production was stopped, the mempool β the queue of transactions waiting to be included in a block β overflowed, and eth_sendRawTransaction, the standard call a wallet or application uses to submit a signed transaction, was rejected. Pending activity sat unconfirmed and new submissions failed outright rather than waiting in line. Deposits and withdrawals were delayed rather than lost, and Base repeated in its postmortem that no funds were at risk at any point in either outage. Coinbase shares, which trade as COIN, fell more than 5%.
What Comes Next: Beryl Postponed and the Sequencer Question
Beryl, the hardfork scheduled for 25 June, first slipped to 26 June and was then delayed further. Its centerpiece is mainnet enablement of the B20 Activation Registry, a new token standard packaged with finality improvements, and Base said the postponement was intended "to ensure a smooth rollout." The unresolved question is structural rather than a matter of any one bug. Base runs a single centralized sequencer with no automatic failover, so when that one component builds a block validators reject, there is nothing for the network to switch to and it stays down until operators intervene. That design drew renewed criticism after the two halts, and it is what will determine how long the next fault of this kind lasts.