Scaling & Layer 2

data availability layer

A data availability layer is a blockchain whose specialized job is to receive data, guarantee it was published, and prove that availability cheaply — without executing the data or caring what it means. In the modular thesis, a monolithic chain does everything itself, but a modular stack splits the work and lets rollups rent each piece from the layer best suited to it. The DA layer rents out one thing: the assurance that a rollup's transaction data is available for anyone to download, which is the security foundation every rollup depends on.

Dedicated DA layers exist because availability is the dominant cost of running a rollup, and a chain purpose-built for it can be far cheaper than buying space on a general-purpose chain like Ethereum. Celestia is the canonical example: it provides ordering and data availability using data availability sampling so that light nodes can verify publication without downloading everything, but it runs no smart contracts of its own. Other approaches include EigenDA and Avail, and Ethereum itself acts as a DA layer for its rollups via EIP-4844 blobs. These offerings differ in their security models — a separate DA chain has its own validator set and trust assumptions, distinct from settling on Ethereum.

The crucial caveat is that cheaper DA can mean weaker security. When a rollup posts its data to an external DA layer rather than to its settlement chain, it inherits that layer's availability guarantees, not Ethereum's — and a category of designs called validiums goes further by keeping data off-chain entirely with only a committee vouching for availability, trading the strongest guarantees for the lowest cost. Choosing a DA layer is therefore a deliberate point on the security-versus-cost curve, and it is one of the central decisions in the modular blockchain design space.

Posting data to a cheap external DA layer is not free of trade-offs: the rollup's safety then rests on that layer's validators, not Ethereum's. Validiums push this furthest by keeping data off-chain under a committee's attestation — lowest cost, weakest data-availability guarantee.

Also called
DA layermodular DA layer