Blockchain · Infrastructure · 202520 min read

Layer-1 Scaling:
Beyond TPS Metrics

Why throughput alone doesn't tell the full story — and what really matters when evaluating blockchain infrastructure.

~7Bitcoin Real TPS
15–30Ethereum Real TPS
2K–4KSolana Real TPS

The blockchain marketing playbook has a favourite number: transactions per second. Solana claims 65,000. Sui claims 297,000. Aptos claims 160,000. Every new Layer-1 emerges with a TPS figure designed to embarrass its predecessors — and every figure, examined closely, dissolves under a single question: measured how, under what conditions, doing what?

TPS is not a lie exactly. It is something more dangerous — a metric that is technically accurate in controlled benchmarks and substantively misleading in production. It flattens a multidimensional engineering problem into a single integer, optimised for press releases rather than protocol evaluation.

This analysis unpacks what that multidimensional problem actually looks like: the dimensions that matter, the tradeoffs they encode, and a more honest framework for evaluating whether a blockchain can serve as foundational global infrastructure.

01 · Throughput

The TPS Problem: What the Number Hides

Transactions per second is a throughput measure. It tells you how many discrete state transitions a network can process in one second. What it does not tell you is the nature of those transactions, the conditions under which they were counted, the cost imposed on the network by processing them at that speed, or what happens to the system when it actually approaches that limit.

benchmark_audit.sh — TPS Claim Deconstruction
// What "65,000 TPS" actually means in most whitepapers:

test_conditions: {
  transaction_type:   "simple token transfer",  // not contract calls
  validator_count:    4,                          // not 1000+
  network_topology:   "local testnet",            // not global p2p
  state_size:         "minimal",                  // not 200GB+
  adversarial_load:   false,                      // no spam
}

⚠  production_tps ≈ benchmark_tps × 0.03 to 0.15
⚠  smart_contract_tps ≈ benchmark_tps × 0.005 to 0.04

Ethereum mainnet processes roughly 15–30 TPS in production. Its theoretical ceiling, often cited at around 30 TPS, is achieved with simple ETH transfers; complex DeFi interactions involving multiple contract calls consume gas that effectively reduces throughput to single digits for that transaction type. Solana's real-world throughput, widely cited in independent analyses, hovers between 2,000–4,000 TPS — impressive, but a fraction of headline claims, and achieved with a validator hardware requirement that has material implications for decentralization.

The Validator Hardware Trap

High TPS almost always requires high validator hardware specifications. Solana validators require machines with 256GB+ RAM, high-end GPUs, and 1Gbps+ network connections — creating a hardware barrier that systematically excludes individual node operators and concentrates validation in data centers. This is not a bug in Solana's design. It is a deliberate tradeoff. The question is whether that tradeoff is disclosed and priced correctly in the ecosystem's valuation of the chain.

02 · Latency

Finality: The Metric That Actually Matters for UX

For most end-user experiences — and for virtually all cross-chain bridges, exchanges, and payments infrastructure — the relevant question is not how many transactions per second a chain can process, but how long after submission a transaction is irreversible. This is finality: the moment at which a transaction cannot be reorganised away by a future chain state.

Finality types differ fundamentally across consensus mechanisms:

TYPE_01

Probabilistic Finality

Used by Bitcoin (Nakamoto consensus). Transactions become more final with each subsequent block, but are never mathematically guaranteed. 6 confirmations (~60 min) is convention, not proof. Re-orgs are possible at any depth — merely exponentially unlikely.

TYPE_02

Economic Finality

Used by Ethereum post-Merge. Finality occurs after two epochs (~12.8 min) when a supermajority of validators attest. Reversal requires burning 1/3 of staked ETH (~$30B+) — economically, but not mathematically, impossible to undo.

TYPE_03

Instant Finality

BFT-based chains (Cosmos, Avalanche) achieve finality within seconds — often 1–2 blocks. The tradeoff: validators must reach agreement synchronously, which bounds validator set size and introduces liveness risks under network partitions.

TYPE_04

Optimistic Finality

Solana's approach — transactions are treated as final immediately but subject to a brief confirmation window. Produces excellent UX but has historically suffered from outages when the optimism fails: the chain has halted multiple times under adversarial load.

For payment applications, instant BFT finality is the gold standard. For DeFi protocols where liveness is paramount, economic finality with strong validator economics may be preferable. For store-of-value use cases, probabilistic finality backed by extreme hash rate remains the battle-tested choice. No single finality model is universally superior — but TPS tells you nothing about which model a chain uses.

A chain that processes 100,000 TPS with 2-second finality is not ten times better than one processing 10,000 TPS. It may be worse — if that speed comes at the cost of a validator set so small that three data centers can collude to rewrite history.

— Infrastructure design principle
03 · Decentralization

Decentralization: The Cost Everyone Underprices

The blockchain trilemma — the proposition that networks can optimise for at most two of security, scalability, and decentralization — is a simplification, but a useful one. What it captures is that decentralization has real costs that manifest as throughput limits, and that teams who claim to have solved the trilemma have almost always done so by redefining one of its terms.

Decentralization in practical terms means: how many independent parties must collude to corrupt the chain? This question has multiple layers.

~4Mining pools control 60%+ of Bitcoin hashrateconcentration risk despite PoW 'decentralization'
~1,900Active Ethereum validators (entities, not keys)strongest validator diversity among major L1s
19Validators control 33%+ of Solana stakeliveness and safety threshold concentration

Node count is an imprecise but instructive proxy. A chain with 10,000 full nodes is meaningfully more decentralized than one with 100 — because geographic distribution, client diversity, and hardware accessibility compound. Ethereum's ~10,000 full nodes, distributed across dozens of countries and multiple client implementations (Geth, Lighthouse, Besu, Nethermind), represent a kind of decentralization that is structurally resistant to nation-state-level attack in ways that a 1,000-validator proof-of-stake chain operating within a handful of jurisdictions is not.

The Nakamoto Coefficient

The Nakamoto Coefficient — the minimum number of entities required to reach a protocol-breaking threshold (typically 33% for liveness, 51% for safety in BFT systems) — is a more precise decentralization metric than node count. It can be calculated across multiple subsystems: mining/staking, clients, geographic distribution, exchange liquidity, and developer activity. A chain with a Nakamoto Coefficient of 3 on any subsystem has a single-digit number of attack targets — regardless of what its TPS marketing claims.

04 · State Scalability

State Growth: The Silent Killer of Long-Term Scalability

Every transaction on a smart contract platform modifies state: account balances, contract storage, code. State is the cumulative record of every interaction ever made. State growth is the rate at which this record expands — and it represents one of the most underappreciated threats to long-term blockchain viability.

state_growth_analysis.rs
// State size as of 2025 (approx, full archive nodes):
ethereum_archive:  ~2.4 TB   // growing ~1 GB/day
ethereum_pruned:   ~1.1 TB  // manageable, but rising
solana_ledger:     ~90 TB   // extremely high due to throughput
bitcoin_full:      ~650 GB  // slow growth, UTXO model helps

// The problem: state must be held in fast storage (SSD/RAM)
// for validators to process blocks within slot time.
// As state grows, hardware requirements escalate.
// Decentralization shrinks. The trilemma bites.

High-TPS chains face a compounding state growth problem: more transactions per second means more state modifications per second. Solana's ledger history, requiring tens of terabytes even with aggressive pruning, is already accessible only to institutional node operators with significant storage infrastructure. This is not a temporary condition — it is a structural consequence of the design choices that enable the throughput figure.

Solutions under active development — Ethereum's EIP-4444 (history expiry), stateless clients, and Verkle trees — address this at the protocol level by separating history storage from state execution. These represent genuine progress. They also illustrate that TPS without a state growth management strategy is not a long-term scalability solution. It is a debt instrument: borrowed performance, payable in future centralization.

05 · MEV

MEV: The Hidden Tax on Throughput

Maximal Extractable Value — formerly Miner Extractable Value — is the profit available to block producers by selectively ordering, including, or excluding transactions within a block. It is, in practical terms, a tax on network users levied by validators, and it scales directly with throughput: more transactions per second means more opportunities for value extraction.

MEV manifests as sandwich attacks on DEX trades, frontrunning of oracle updates, liquidation racing in lending protocols, and arbitrage across fragmented liquidity pools. In competitive MEV environments, users pay inflated gas fees as bots bid for priority inclusion, and naive users with large trades lose value to sandwiching that never appears in their transaction receipt.

MEV Is Not a Bug. It Is a Revenue Model.

Ethereum's Flashbots ecosystem has extracted over $1.5 billion in cumulative MEV since tracking began. This is not a flaw in Ethereum's design — it is an emergent consequence of a public mempool and arbitrary transaction ordering. The relevant evaluation question is whether a Layer-1's MEV environment is transparent, whether it can be mitigated, and whether it is disproportionately captured by a small number of sophisticated actors — which directly affects whether the chain's throughput is genuinely accessible to average users at advertised costs.

Chains that claim to eliminate MEV have typically done so through one of three mechanisms: private mempools (which centralise information advantage with the block producer), deterministic ordering (which eliminates MEV but also eliminates priority fee markets, creating inclusion uncertainty), or application-layer rate limiting (which pushes MEV to other surfaces). None of these are free — they represent different distributions of the same underlying economic force.

06 · Security

Economic Security: What Backs the Chain?

A blockchain's security model ultimately rests on an economic proposition: attacking the chain must cost more than any achievable gain. For proof-of-work chains this is the cost of acquiring and operating sufficient hash rate. For proof-of-stake chains it is the cost of acquiring and risking the slashing of sufficient staked value.

ChainConsensusAttack Cost (est.)TPS (Real-world)FinalityNakamoto Coeff.
BitcoinPoW$10B+/hr~7~60 min (6 conf)~4
EthereumPoS$30B+ slash15–30~12.8 min~11
SolanaPoS+PoH~$2–4B slash2,000–4,000<1 sec~19 (33%)
Avalanche (C)Snowball BFT~$1.5B slash~4,500~2 sec~26
Cosmos HubTendermint BFT~$300M slash~10,000 (bench)~6 sec~7

Economic security is not static. It scales with the market value of staked or mined assets — meaning that during bear markets, chains with smaller market caps see their security budgets compress. A chain with $5B in staked value at $10 token price has a very different security profile from the same chain at $0.50. TPS figures, needless to say, are unaffected by this dynamic.

07 · Framework

A Better Evaluation Framework

Rather than a single headline number, a rigorous Layer-1 evaluation examines performance across at least six dimensions, each representing a distinct set of engineering tradeoffs:

[01] THROUGHPUT

Real-world TPS

Sustained production TPS for complex contract interactions, not benchmark transfers. Measured during peak load, not idle periods.

[02] LATENCY

Time-to-finality

The actual irreversibility window for a transaction, measured in seconds, with the economic cost of reversal specified. Critical for UX and bridge design.

[03] DECENTRALIZATION

Nakamoto Coefficient

Across staking, client diversity, geography, and infrastructure providers. Measured at current state, not theoretical design capacity.

[04] STATE SCALABILITY

State growth rate

GB per year of state accumulation, hardware requirements to operate a full node, and the existence of credible state management strategies.

[05] MEV ENVIRONMENT

Extractable value surface

Is the MEV market transparent or opaque? Who captures it? Does it materially affect effective cost and inclusion for average users?

[06] ECONOMIC SECURITY

Cost-to-attack

USD value required to execute a liveness or safety attack, adjusted for market conditions and validator concentration. The floor beneath all other metrics.

08 · Verdict

The Verdict: Chain Selection in 2025

The honest answer to "which Layer-1 is best" is: it depends entirely on what you are building and which dimensions of the evaluation framework you are willing to compromise.

For maximum security and decentralization: Ethereum remains the only chain with a combination of economic security, validator diversity, client pluralism, and geographic distribution that approaches meaningful censorship resistance at nation-state scale. Its throughput limitations are real, but its Layer-2 ecosystem (Arbitrum, Optimism, Base, zkSync) means that application throughput and Ethereum security are no longer mutually exclusive.

For applications requiring fast finality and high application-layer throughput: Solana's engineering is genuinely impressive, and its real-world performance in consumer applications (compressed NFTs, high-frequency trading, consumer payments) is unmatched among decentralised alternatives. The validator concentration and hardware requirements represent known, quantifiable tradeoffs — the question is whether they are acceptable for the specific application.

For sovereign application chains: The Cosmos ecosystem's application-specific chain model — where each application runs its own BFT chain with its own validator set and token economics — offers a different kind of scalability: not more TPS on a shared chain, but the ability to design the chain itself around application requirements. The tradeoffs are security fragmentation and bridge complexity.

The best blockchain for your application is the one whose tradeoff surface maps most cleanly onto your threat model. TPS is a feature. Decentralization is infrastructure. Security is a prerequisite. Get the order right.

— Framework synthesis, 2025
Conclusion

Stop Benchmarking. Start Auditing.

TPS will remain the dominant marketing metric for new Layer-1 launches because it is simple, large, and easily fabricated under controlled conditions. That will not change. What can change is the sophistication of the audience evaluating those claims.

Every blockchain represents a specific set of bets about which properties matter most: how decentralized a system needs to be to resist the relevant threat actors, how fast finality needs to be for the target use case, how much state growth is acceptable given the hardware economics of the next decade, and what MEV environment is tolerable for the users the chain will serve.

The chains that survive the next cycle of infrastructure maturation will not be the ones with the highest TPS in 2025 whitepapers. They will be the ones whose engineering decisions — visible in finality models, validator economics, state management strategies, and MEV environments — prove correct over a decade of production load.

Audit those decisions. The TPS number is a distraction.

Layer-1 Scaling: Beyond TPS Metrics · May 2025

Infrastructure analysis for builders · Not financial advice