What is modular blockchain?

A network design that separates execution, settlement, consensus, and data availability into distinct layers rather than doing all four in one chain.

Not yet verifiedHow we verify

3 min read

In this entry

A network design that separates execution, settlement, consensus, and data availability into distinct layers rather than doing all four in one chain.

The word appears in chain marketing, in rollup documentation, and in arguments about which network is genuinely scaling. The opposing design, where one chain does all four jobs, is called monolithic, and Solana is the usual example cited on that side.

The argument for modularity is specialization: a layer built only to order and publish data can do that more cheaply than a chain also running every computation. The argument against is complexity and fractured liquidity, since users must move assets and attention across more surfaces. Both arguments are about engineering trade-offs, not about which asset is worth owning.

How it works

Four jobs are separable.

Execution runs the transactions and computes the new state. This is what a rollup does.

Settlement is where disputes are resolved and where a rollup's proofs or challenges are adjudicated, usually the base chain.

Consensus agrees the order of data.

Data availability guarantees that the underlying transaction data was actually published, so anyone can reconstruct the state and challenge a bad result.

The common shape is a rollup for execution, Ethereum for settlement, and either Ethereum blobs or a separate data availability layer for publishing. Ethereum's blob transactions, introduced by EIP-4844, exist specifically to make that publishing cheap, since blob data is priced separately from ordinary calldata and expires after a short window (source: EIP-4844).

The trust question moves with the layers. A rollup posting data to a separate network inherits that network's security for availability, not Ethereum's, which is a real difference in failure modes even when the marketing describes both as layer 2.

Example

Illustrative comparison of where the same $10 swap's costs land.

Illustrative split of responsibilities for one transaction on a modular stack.
JobHandled byWhat you pay for
ExecutionThe rollup's sequencerA small execution fee
Data availabilityBlobs on the base chain or a separate layerThe dominant share of the cost
SettlementThe base chainAmortized across the whole batch

Because the settlement cost is shared across every transaction in a batch, a busier rollup is a cheaper one per transaction. That is why a layer-2 fee can fall when usage rises, which is the reverse of how a monolithic chain behaves.

Why it matters when you buy

For a buyer the practical consequence is at withdrawal time and at bridge time. Assets on a rollup are not the same object as assets on the base chain, and moving between them has a cost and a delay set by the design. Before buying an asset that lives primarily on a layer 2, check which networks your exchange supports for deposits and withdrawals. The per-network measurements are on the chain rankings, and our explainer at Layer 1 vs layer 2 covers the routing choices.

Questions

Is a modular chain safer than a monolithic one?

Neither is inherently safer. Modularity narrows what each layer must do well and adds surfaces between them. Monolithic designs keep everything in one trust domain and take on more per-node hardware cost.

Does this change how I buy the token?

No. You buy the network's token on an exchange like any other asset. What changes is which network you withdraw to and what the bridge back costs.

Why do some layer 2s cost so much less than others?

Mostly because of where they publish data and how many transactions share each batch. A rollup using cheap blob space with heavy usage spreads the fixed cost across more users.