Modular vs Monolithic Blockchains: Two Different Theories of How a Blockchain Should Scale

Modular and monolithic blockchains aren't different architectural preferences — they're built on different theories of where a blockchain's scaling constraints should live. This post explains the four functions a blockchain performs, what it means to separate them, and where the tradeoffs actually live.
Lewis Jackson
CEO and Founder

Modular and monolithic blockchains aren't different flavors of the same design. They're answers to the same question — how do you scale without giving up the properties that make a blockchain worth using? — with fundamentally different architectural answers.

The confusion starts because "blockchain" gets used to describe all of them: Bitcoin and Solana are blockchains, Ethereum and its layer-2 ecosystem together form something that's increasingly becoming a modular blockchain stack, Celestia is a blockchain that doesn't even execute transactions. These systems share a name but are built on different theories of what a blockchain's job should be.

The Four Functions a Blockchain Actually Performs

Before the comparison makes sense, you need to understand what a blockchain actually does — because it's not one thing.

A blockchain performs four distinct functions:

Execution is transaction processing: taking inputs (a transfer, a smart contract call) and computing outputs (new account balances, updated state). This requires real computational resources.

Consensus is ordering and agreement: determining which transactions are valid, in what order, and getting a sufficiently large set of participants to agree on that sequence. This requires distributed coordination.

Data availability is storage and accessibility: ensuring that the data needed to verify the chain's state is actually available to participants. If you can't download the block data, you can't verify anything. This is easy to overlook until it becomes the bottleneck.

Settlement is finality: the point at which a transaction is considered irreversible and can be used as a foundation for further state transitions.

A monolithic blockchain bundles all four into one integrated system. A modular blockchain separates them.

Monolithic: Everything In One Place

Monolithic blockchains handle execution, consensus, data availability, and settlement in a single system. Bitcoin is the clearest example — every full node validates transactions, participates in consensus, stores the complete transaction history, and treats Bitcoin's own finality as settlement. There's no external layer to trust, no bridge to fail.

Solana takes the monolithic approach and pushes it hard: parallel transaction processing (the Sealevel runtime), Proof of History as a VDF-based sequencing mechanism layered on top of Proof of Stake, and validator hardware requirements high enough that running a full node requires a serious server — 128+ GB RAM, fast NVMe storage, 10 Gbit/s network. The result is high throughput (several thousand transactions per second in practice) but a smaller validator set, because the hardware barrier is real.

The monolithic constraint is structural: because every node processes everything, the system's throughput ceiling is roughly bounded by what a reasonably-specced node can handle. Scale up throughput enough and you start excluding nodes that can't keep up. Exclude enough nodes and you've traded decentralization for throughput. This isn't a Solana-specific problem — it's inherent to integrated architecture.

Monolithic chains have a composability advantage worth taking seriously. On Solana, any smart contract can atomically call any other smart contract in the same transaction. The entire state is local — no bridges, no message-passing delays, no cross-layer latency. For DeFi in particular, where composability between lending protocols, AMMs, and derivative markets matters, that's a meaningful property.

Modular: Separation of Concerns

Modular blockchains separate these functions across specialized layers.

The clearest example in practice is Ethereum's current architecture. The execution layer (the EVM environment where contracts run) and the consensus layer (the Beacon Chain, running since the September 2022 Merge) are already distinct components. Rollups — Optimism, Arbitrum, zkSync Era, Starknet — take this further: they handle execution off-chain, compress hundreds of transactions into a single proof or data batch, and post that back to Ethereum. Ethereum provides consensus, data availability, and settlement. The rollup handles execution.

Celestia, which launched mainnet in October 2023, takes modular specialization to its logical conclusion: it's a blockchain that doesn't execute transactions at all. Its only job is ordering data and making it available. Rollups and application-specific chains post their transaction data to Celestia and inherit its data availability guarantees.

Celestia uses a technique called data availability sampling (DAS): light nodes download small random samples of each block and use erasure coding to probabilistically verify that the full data is available without downloading it all. This is why Celestia can support much larger blocks than a traditional monolithic chain — nodes don't have to process everything, just verify that it's available.

EIP-4844, which shipped in March 2024, moved Ethereum toward similar territory: blob transactions give rollups a dedicated, cheaper data channel separate from regular calldata. This isn't full danksharding — which would add DAS to Ethereum itself — but it's the first structural step toward a modular data availability layer within Ethereum's architecture.

Where the Modular Tradeoffs Actually Live

Modular architecture introduces risk at every interface between layers.

The bridge between a rollup and Ethereum's base layer is a smart contract. It's audited, it holds hundreds of millions in assets, and it can have bugs. The security of the modular system is only as good as its weakest interface. Optimistic rollups depend on fraud proof systems where at least one honest party submits a challenge within the dispute window (typically 7 days). ZK rollups depend on the soundness of the validity proof system. These aren't hypothetical risks — they're the actual attack surface.

There's also liquidity fragmentation. USDC on Arbitrum isn't USDC on Optimism. You can bridge between them, but the bridge takes time and gas, and there's counterparty risk in the bridge contract. On Solana, USDC is USDC — one pool, instantly composable. Modular architecture's within-rollup composability advantage comes at the cost of composability across rollups.

Some of this improves over time. The OP Stack's Superchain vision (shared bridge infrastructure across Optimism, Base, and other OP chains), ZK-based bridging with faster finality, and shared liquidity layers are active development areas. But as of early 2026, atomic cross-rollup transactions don't exist in production.

What's Actually Changing

EIP-4844 is live and has meaningfully reduced L2 costs. The next step — full danksharding — would add DAS to Ethereum, potentially enabling blob capacity increases of 100x or more. That's on the roadmap, probably 12-24 months out from early 2026.

The data availability market is becoming real: Ethereum blobs, Celestia, EigenDA (backed by EigenLayer restaking), and Avail are all competing for rollup data. The OP Stack's AltDA mode lets rollups switch DA providers. This is a functioning market, not a theoretical one.

Meanwhile, the modular vs monolithic debate isn't settled. Solana's throughput has continued improving. The argument that high-performance monolithic chains can serve DeFi better than modular stacks — precisely because cross-contract composability is local and atomic — remains coherent, particularly for latency-sensitive applications.

What Would Confirm and What Would Break This

Confirmation that modular architecture is the durable path: continued rollup adoption at scale, danksharding deployment, EigenDA and Celestia gaining meaningful rollup DA market share, and cross-L2 composability solutions (shared sequencing, atomic cross-rollup execution) becoming reliable production infrastructure.

Invalidation: a major bridge exploit at scale imposes losses across a modular stack in ways that reset trust assumptions; monolithic high-throughput chains demonstrate comparable security-per-validator at dramatically higher throughput, making the modular scaling argument unnecessary; or composability friction slows DeFi adoption on modular stacks enough to cede market share to integrated chains.

Timing

Now: EIP-4844 is live, blob fees are real, L2 transaction costs are substantially lower than pre-4844. The modular vs monolithic question is no longer theoretical — you can compare actual rollup costs and throughput against Solana's numbers today.

Next: Full danksharding and DA market maturation (12-24 months). This is when the modular architecture's full scaling thesis gets tested against production demand.

Later: Whether modular architecture sustains its composability and security properties at scale, versus whether high-performance monolithic chains close the throughput gap without sacrificing decentralization — this remains genuinely open.

What This Doesn't Mean

This post explains the architectural distinction between modular and monolithic blockchains. It doesn't constitute a recommendation for any chain, ecosystem, or asset. The specific security assumptions for a given rollup depend heavily on which proof system it uses and how mature that system is — fraud proofs, ZK validity proofs, and optimistic proofs have meaningfully different security properties that this post doesn't resolve.

The architecture is the foundation. Whether any specific implementation performs as designed requires ongoing verification. This is the static explanation.

Related Posts

See All
Crypto Research
New XRP-Focused Research Defining the “Velocity Threshold” for Global Settlement and Liquidity
A lot of people looking at my recent research have asked the same question: “Surely Ripple already understands all of this. So what does that mean for XRP?” That question is completely valid — and it turns out it’s the right question to ask. This research breaks down why XRP is unlikely to be the internal settlement asset of CBDC shared ledgers or unified bank platforms, and why that doesn’t mean XRP is irrelevant. Instead, it explains where XRP realistically fits in the system banks are actually building: at the seams, where different rulebooks, platforms, and networks still need to connect. Using liquidity math, system design, and real-world settlement mechanics, this piece explains: why most value settles inside venues, not through bridges why XRP’s role is narrower but more precise than most narratives suggest how velocity (refresh interval) determines whether XRP creates scarcity or just throughput and why Ripple’s strategy makes more sense once you stop assuming XRP must be “the core of everything” This isn’t a bullish or bearish take — it’s a structural one. If you want to understand XRP beyond hype and price targets, this is the question you need to grapple with.
Read Now
Crypto Research
The Jackson Liquidity Framework - Announcement
Lewis Jackson Ventures announces the release of the Jackson Liquidity Framework — the first quantitative, regulator-aligned model for liquidity sizing in AMM-based settlement systems, CBDC corridors, and tokenised financial infrastructures. Developed using advanced stochastic simulations and grounded in Basel III and PFMI principles, the framework provides a missing methodology for determining how much liquidity prefunded AMM pools actually require under real-world flow conditions.
Read Now
Crypto Research
Banks, Stablecoins, and Tokenized Assets
In Episode 011 of The Macro, crypto analyst Lewis Jackson unpacks a pivotal week in global finance — one marked by record growth in tokenized assets, expanding stablecoin adoption across emerging markets, and major institutions deepening their blockchain commitments. This research brief summarises Jackson’s key findings, from tokenized deposits to institutional RWA chains and AI-driven compliance, and explains how these developments signal a maturing, multi-rail settlement architecture spanning Ethereum, XRPL, stablecoin networks, and new interoperability layers.Taken together, this episode marks a structural shift toward programmable finance, instant settlement, and tokenized real-world assets at global scale.
Read Now

Related Posts

See All
No items found.
Lewsletter

Weekly notes on what I’m seeing

A personal letter I send straight to your inbox —reflections on crypto, wealth, time and life.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.