SBB Architecture
This section provides the architecture and transaction flow of Secure Block Building (SBB).

A user generates a transaction and sends either an encrypted or plaintext transaction to the
Tx_Orderers
via Secure-RPC.The public key generated by the DKG (operated by Radius) is shared with Secure-RPC.
The transaction is encrypted using this public key and delivered to one of the available
Tx_Orderers
.There are multiple Tx_Orderers: one serves as the lead
Tx_Orderer
, while the others verify the leader’s results.The lead
Tx_Orderer
aggregates transactions, appends them to its transaction list, and returns order commitments—a preconfirmation of each transaction’s position in the batch.Since commitments are made before decryption, the lead
Tx_Orderer
has no visibility into transaction contents or value, eliminating incentives for frontrunning or reordering.Once the timelock puzzle is solved, the corresponding private key is delivered to the
Tx_Orderers
. The leadTx_Orderer
then decrypts the transactions and adds them to the mempool.When the rollup initiaties block building based on a new fork choice, the lead
Tx_Orderer
sends decrypted user transaction list (Top of Block, or ToB) to the searcher.The searcher constructs an MEV bundle (Bottom of Block, or BoB) using the ToB as reference, and sends it back to the Tx_Orderer.
The lead
Tx_Orderer
stores the transactions inside the MEV Bundle into the mempool while preserving the order between ToB and BoB.
Last updated