Free Strategy Call

Layer 1

A layer 1 is a blockchain that runs its own consensus and settles its own state without depending on another chain for security. Bitcoin and Ethereum are layer 1s. Everything built above them, rollups and channels and validiums, is layer 2 and borrows the L1's security instead of producing its own. The boundary is not a marketing distinction. It is whether an attacker has to beat your validator set or the one underneath you.

The scalability trilemma is the question every L1 pitch has to answer. Scalability, decentralization and security: with simple techniques you get two of the three. If a chain claims all three without naming the assumption it relaxed, the assumption is the product.

What makes a chain a layer 1

Three properties, and a chain needs all of them. It runs its own consensus, so block production and validation happen among its own participants. It holds the authoritative copy of its own state, so a transaction is settled when that chain says it is settled. And it funds its own security budget, out of issuance, fees, or both.

The third property is the one pitches skip and the one that costs money. A layer 1's security is inherited from nowhere. It is bought every block from validators or miners who could be doing something else with the same capital or the same hardware. That makes launching an L1 a decision about a permanent operating expense before it is a decision about technology, which is why the first honest question is what pays for it in year three.

The scalability trilemma, stated properly

Vitalik Buterin's own statement of the constraint rewards reading in full rather than in paraphrase. The trilemma says there are three properties a blockchain tries to have, and that if you stick to simple techniques you can only get two. Scalability: the chain can process more transactions than a single regular node, meaning a consumer laptop, can verify. Decentralization: the chain runs without trust dependencies on a small group of large centralized actors. Security: the chain can resist a large percentage of participating nodes trying to attack it.1

The definitions carry teeth that summaries drop. Security is quantified, ideally at 50 percent of participants, with anything above 25 percent described as fine and 5 percent as definitely not fine.1 Decentralization is defined by whether you can join without trusting a set of nodes you cannot join with a consumer laptop, not by a validator count on a slide. The post also sorts the easy answers: traditional chains where every participant verifies every transaction get decentralization and security but not scalability, while high throughput chains that lean on a few dozen nodes buy scalability by giving up the first one.1 Read any L1 pitch against those three definitions and the traded corner becomes obvious.

Where the L1 and L2 boundary actually sits

The clean test comes from the rollups post. Instead of putting all activity on the blockchain directly, users perform the bulk of their activity off chain in a layer 2 protocol, and there is a smart contract on chain with only two tasks: processing deposits and withdrawals, and verifying proofs that everything happening off chain is following the rules.2 Two jobs. That is the entire L1 surface of a genuine layer 2.

Ethereum's documentation states the security consequence directly. Rollups perform transaction execution outside layer 1 and post the data to layer 1, where consensus is reached, and because that data sits inside L1 blocks the rollup is secured by native Ethereum security.3

Sidechains fail that test, and the same page says why: they run under their own chosen rules of consensus and block parameters.3 A sidechain is a separate layer 1 with a bridge attached, and its users are trusting its validators rather than Ethereum's. Validium sits between the two, using validity proofs like a zk-rollup but keeping the data off the main layer 1 chain.3 When you write a risk disclosure, the sentence that matters is which validator set a user's funds actually depend on, and it is frequently not the one on the logo.

What sits above a layer 1, and what does notL1 consensusthe only layer producing securityL1 contractdeposits, withdrawals, verificationProofs and data postinghow the L1 checks the L2Layer 2 executionruns the transactions off chain

Scroll to see the full diagram

Only the bottom layer makes security. Everything above borrows it, which is why a chain running its own validators is a second layer 1 with a bridge, whatever the marketing calls it.

The modular endgame is already the plan

The architectural direction is public and it is not neutral. Ethereum's community favours rollup centric scaling over sharding the base layer, largely because blobs of rollup data can be verified efficiently by validators.3 The L1 gets deliberately conservative while execution moves upward.

Buterin's Endgame post follows that logic somewhere uncomfortable. What he describes as the destination is a chain where block production is still centralized, but block validation is trustless and highly decentralized, with anti-censorship mechanisms stopping block producers from censoring, and he calls the result somewhat aesthetically ugly.4 Sit with that for a moment. Decentralized block production is not the property being defended. Verifiability and censorship resistance are. A great deal of L1 marketing is still selling the property that was traded away, and once you have read the post you cannot unsee it.

What picking or launching an L1 commits you to

If you are choosing an L1 to build on, four things follow you into production. Finality behaviour, and what it does to the moment your product can credit a user. Fee volatility, and whether your unit economics survive a congested week. Validator or sequencer concentration, and whether it belongs on the risk register your investors read. And upgrade governance, because the rules underneath your contracts can change without your consent.

If you are launching one, the trilemma is your budget line. Name the corner you gave up, in the whitepaper, in your own words. Reviewers will find it regardless, and letting them find it first costs credibility you cannot spare. Then answer the security budget with a revenue model instead of an emission schedule, because a layer 1 with no application demand funds its own security through dilution for as long as it runs. That is a business problem wearing a protocol costume, and no consensus design fixes it.

Common questions

What is the difference between layer 1 and layer 2?

A layer 1 runs its own consensus and produces its own security. A layer 2 executes transactions off chain and relies on a contract on the layer 1 that does only two things: handle deposits and withdrawals, and verify proofs that the off chain rules were followed.2 The practical test is which validator set an attacker has to beat in order to take your funds.

Is a sidechain a layer 2?

No. Ethereum's documentation describes sidechains as running under their own chosen rules of consensus and block parameters, which makes a sidechain a separate layer 1 joined by a bridge.3 Its users are trusting its own validators and its bridge contract rather than the chain it connects to. The distinction matters most in a risk disclosure, where secured by Ethereum is accurate for a rollup and misleading for a sidechain.

What is the blockchain trilemma?

The claim that a blockchain tries to have scalability, decentralization and security, and that simple techniques deliver only two of the three.1 Scalability means processing more than a single consumer laptop can verify. Decentralization means running without trust in a small group of large centralized actors. Security means resisting a large share of participants attacking, ideally 50 percent.1 Sharding and rollups are attempts to escape the trade rather than accept it.

Does launching your own layer 1 make sense?

Treat it as a question about a permanent operating expense rather than a technology preference. A layer 1 buys security every block, so the useful test is whether the application on top generates enough fee revenue to fund validators once issuance tapers. Where it does not, security runs on dilution for as long as the chain does. That call belongs with your board and your counsel, not with a glossary page.

See Blockchain Consulting for how this applies in practice.

Sources

  1. Why sharding is great: demystifying the technical properties
    Vitalik Buterin, 2021
    The primary statement of the scalability trilemma, including the quantified security definition and the three classes of easy solutions.
  2. An Incomplete Guide to Rollups
    Vitalik Buterin, 2021
    Defines the L1 and L2 boundary by what the on chain contract does: processing deposits and withdrawals, and verifying proofs of off chain execution.
  3. Scaling
    Ethereum Foundation
    Rollups secured by native Ethereum security, sidechains running their own consensus rules, validium keeping data off L1, and rollup centric scaling with blobs.
  4. Endgame
    Vitalik Buterin, 2021
    The modular destination: centralized block production with trustless, highly decentralized block validation and anti-censorship properties.

Last reviewed 2026-08

Know the terms but not sure how they apply to your project? That is what an engagement is for. We design, document, and stress-test the whole token economy inside the Tokenomics Data Room.

Book a discovery call

80+ projects advised. Complete tokenomics in 4 to 6 weeks.