Deep Dive

Ethereum - Deep Dive

The full picture on Ethereum - architecture, the Merge, L2 ecosystem, ETH monetary policy, the roadmap ahead, and why we build here.

Ethereum - Deep Dive

The ecosystems overview covers Ethereum at a summary level. This page goes further - into the architecture, the monetary mechanics, the full L2 map, and an honest assessment of where the roadmap stands today versus where it is headed. If you are building on Ethereum, holding ETH, or trying to understand why this chain anchors the entire crypto economy, this is the reference.


What Ethereum Actually Is

Ethereum is a globally distributed state machine. That is not a metaphor - it is the technical description. Every Ethereum node maintains an identical copy of the world state: a mapping of every account address to its balance, nonce, storage, and code. When a transaction is included in a block, the state transitions deterministically - every node computes the same result from the same inputs. There are no servers. There is no privileged operator. The rules are the code.

The Ethereum Virtual Machine (EVM) is the execution environment that processes state transitions. It is a sandboxed, stack-based virtual machine that runs the bytecode compiled from high-level languages like Solidity and Vyper. The EVM is intentionally limited - it has no external network access, no filesystem, and bounded execution via gas - and those constraints are what make it safe to run arbitrary code on 10,000+ nodes simultaneously.

Accounts come in two types. Externally Owned Accounts (EOAs) are controlled by a private key - the wallets you use to send ETH and sign transactions. Contract Accounts are deployed code with their own storage. A contract cannot initiate action on its own; it can only respond when called by an EOA or another contract. This distinction matters for understanding how DeFi protocols work: every interaction is ultimately triggered by a human-controlled key.

Gas is the unit of computational work. Every EVM instruction has a gas cost defined in the protocol. A transaction specifies a gas limit (the maximum it will consume) and a gas price (what the sender is willing to pay per unit). Post-EIP-1559, gas pricing splits into a base fee (set by the protocol, burned) and a priority fee (optional tip to validators). Gas serves two functions: it prevents infinite loops from halting the network, and it rations scarce block space through pricing.

The state tree is structured as a Merkle Patricia Trie - a data structure that lets any node verify state membership with a small cryptographic proof rather than downloading everything. This property is foundational to Ethereum's scaling roadmap: if you can verify state without storing all of it, you can build much lighter clients.


The Merge and What Changed

In September 2022, Ethereum transitioned from Proof-of-Work to Proof-of-Stake. The Merge was the most technically complex upgrade ever executed on a live blockchain - swapping the consensus engine of a $200B+ network without downtime or loss of funds.

Before The Merge, Ethereum's security came from miners expending electricity to compete for block rewards. Miners needed to recoup hardware and energy costs, which meant selling a significant portion of block rewards. Issuance was approximately 13,000 ETH per day, with no burning mechanism. ETH supply grew continuously.

After The Merge, security comes from validators staking 32 ETH each as economic collateral. Misbehaving validators get slashed - a portion of their stake is destroyed. The energy consumption dropped by approximately 99.95% overnight. Issuance dropped from ~13,000 ETH/day to roughly 1,700 ETH/day at current validator counts. EIP-1559's base fee burn, introduced in August 2021 before The Merge, now determines whether ETH is net inflationary or deflationary on any given day.

What did not change: The EVM. All existing smart contracts kept running without modification. All user balances carried over. The execution layer (how transactions are processed) remained the same - only the consensus layer (how blocks are finalized) changed. This is why The Merge had no perceptible impact on application users.

What actually changed for security: PoS Ethereum's security model is different from PoW, not simply superior. A 51% attack on PoW requires acquiring and operating 51% of global hash power - primarily a hardware and energy problem. A 51% attack on PoS Ethereum requires acquiring 33%+ of staked ETH to disrupt finality, or 51%+ to rewrite history. An attack large enough to succeed would destroy the value of the ETH used to execute it - the attacker's stake gets slashed and the token value collapses. The economics of attack are punishing in a way PoW never achieved.


ETH Monetary Policy

ETH's monetary policy is more dynamic than Bitcoin's and requires understanding two forces operating simultaneously: issuance to stakers and base fee burning from users.

Issuance: Validators who propose and attest to blocks earn ETH rewards. The annual issuance rate scales with the total amount staked - specifically, it scales with the square root of total stake. At approximately 33 million ETH staked (the level in early 2026), annual issuance is roughly 0.5-0.6% of total supply, or approximately 600,000-700,000 ETH per year.

Burning: EIP-1559 burns the base fee from every transaction. When Ethereum is busy, the base fee is high and the burn rate is high. During quiet periods, the burn rate falls. The burn has no cap - it tracks actual network usage.

The net result: When network activity is high enough that the burn rate exceeds the issuance rate, ETH supply contracts. When activity is low, supply grows slowly. Unlike Bitcoin's hard-coded schedule, Ethereum's supply trajectory is a function of how much the network is being used. This is the "ultrasound money" thesis: ETH supply pressure is endogenous to demand, not exogenous like Bitcoin's halvings.

In practice, ETH has been deflationary during periods of high DeFi and NFT activity (2021-2022 peak periods), and modestly inflationary during bear markets and low-activity periods. The L2 migration of activity introduced a genuine complication: as users moved to cheaper L2 networks, L1 transaction volume fell, reducing burn. EIP-4844 (discussed in the roadmap section) addressed part of this by creating a new fee market for L2 data posting.

The honest assessment: ETH's monetary properties are more interesting than Bitcoin's but also more complex. The deflationary case depends on sustained network demand. That demand is real and structural - but it is not guaranteed, and it is not hard-coded.


The L2 Ecosystem

Ethereum's L1 is intentionally not optimized for throughput. Running every transaction through 10,000+ nodes with instant global consensus is secure and decentralized, but it is expensive. Ethereum's answer is not to compromise L1's properties - it is to move execution off-chain while using L1 as a trust anchor.

Why rollups work: A rollup processes transactions off L1, posts compressed transaction data to L1, and submits a proof (or allows a challenge window) that the off-chain computation was done correctly. Users inherit Ethereum's security guarantees without paying L1 prices for every transaction. The L1 validates the rollup's integrity; the rollup handles the throughput.

Two fundamentally different proof mechanisms exist:

Optimistic rollups assume transactions are valid by default. Anyone can submit a fraud proof within a challenge window (typically 7 days) to prove a fraudulent state transition. If no valid fraud proof appears, the state is finalized. The trade-off is the 7-day withdrawal window for moving funds back to L1 - bridging services abstract this for users, but the underlying latency is real. Arbitrum and Optimism (including its OP Stack derivative, Base) are the dominant optimistic rollups.

ZK rollups use zero-knowledge proofs to cryptographically prove the validity of every batch of transactions. No challenge window - if the proof verifies, the state is correct. The trade-off is computational cost on the prover side, and the engineering complexity of building ZK-compatible execution environments. zkSync Era, Starknet, Scroll, and Polygon zkEVM are the main ZK rollup players.

The key L2 players:

Arbitrum is the largest L2 by TVL. It runs the Nitro stack (WASM-based fraud proofs, ArbOS handling execution), full EVM compatibility, and has the most mature DeFi ecosystem in the L2 space. Arbitrum Nova serves lower-cost, higher-throughput use cases with different data availability assumptions.

Optimism / Base - Optimism pioneered the OP Stack, an open-source modular rollup framework. Base, launched by Coinbase on the OP Stack, has grown explosively and brought significant new user activity to the L2 ecosystem. The Superchain vision - multiple OP Stack chains sharing a security and communication layer - is the most ambitious ecosystem play in L2s.

zkSync Era - Matter Labs' ZK rollup with native account abstraction and a custom virtual machine that is LLVM-compatible but not byte-for-byte EVM equivalent. Higher security guarantees (no challenge window) with the trade-off of less seamless EVM portability for some contracts.

Starknet - Powered by STARKs rather than SNARKs (no trusted setup, quantum-resistant, but larger proof sizes), Starknet uses Cairo as its native language rather than Solidity. Technically ambitious, with a smaller but technically deep developer community.

The real trade-offs in L2 fragmentation: Liquidity splits across chains. Moving assets between L2s requires bridges, which carry smart contract risk. User experience is genuinely fragmented - different RPCs, different block explorers, different token addresses for the same underlying asset. The industry is actively working on interoperability standards, but in early 2026, L2 fragmentation remains a legitimate friction point that Ethereum's ecosystem has not fully solved.


The Roadmap

Vitalik Buterin organized Ethereum's multi-year roadmap into named phases: The Merge (complete), The Surge, The Scourge, The Verge, The Purge, and The Splurge. Here is where each stands honestly as of early 2026.

The Surge - scaling throughput via blobs and Danksharding

EIP-4844 (Proto-Danksharding) shipped in March 2024 via the Dencun hard fork. It introduced blob-carrying transactions - a new transaction type where L2s post data in blobs that are cheaper and stored only temporarily (approximately 18 days) rather than in calldata that persists forever. L2 fees dropped dramatically post-Dencun, in some cases by 90%+ for end users. This was real, shipped, and consequential.

Full Danksharding - the end state - involves expanding blob capacity from 3-6 blobs per block to 64+, distributing data availability via Data Availability Sampling (DAS) where each node only downloads and verifies a random subset. This requires peer-to-peer networking changes and is a multi-year effort still in research and specification.

The Scourge - addressing MEV and validator centralization

Maximal Extractable Value (MEV) is profit extracted by those who can reorder, insert, or censor transactions within a block. In PoW, miners extracted MEV. In PoS, validators (or more precisely, sophisticated block builders they outsource to) extract MEV. The current mev-boost architecture outsources block building from validators to a competitive market of builders, which reduces centralization at the validator layer but concentrates it at the builder layer.

Attester-Proposer Separation (APS) and Execution Tickets are the proposed solutions, but they remain in research phase as of early 2026. MEV is not solved. It is a structural property of any ordering mechanism, and Ethereum's approach is to make the extraction visible and competitive rather than hidden.

The Verge - Verkle trees and stateless clients

Ethereum's state is large and growing. Currently, running a full node requires storing the full state trie (hundreds of gigabytes). Verkle trees are a more efficient cryptographic data structure that would allow nodes to serve state witnesses - small proofs that a piece of state exists without the receiver needing to store it. This enables stateless clients that can verify blocks without storing the full state.

Verkle tree migration is one of the most complex upcoming changes. It requires transforming the entire existing state tree and updating how the EVM handles storage. The Verkles specification is mature, with testing and implementation work ongoing. Not yet shipped as of early 2026.

The Purge - reducing historical data requirements

EIP-4444 proposes that nodes are no longer required to serve historical data older than approximately one year. Historical data would instead be distributed across a dedicated archive network. This reduces hardware requirements for running a full node substantially - addressing one of the practical barriers to decentralized node operation.

Honest summary of roadmap status: The Surge started shipping with Dencun in 2024. The rest is in varying stages of specification, testing, and implementation. Ethereum's roadmap is real and progressing, but it is measured in years, not months. The governance model that makes Ethereum trustworthy also makes it slow. That is not a bug.


Staking - How It Works

Running a validator requires 32 ETH and dedicated hardware - a consensus client, an execution client, and reliable uptime. The rewards are modest (approximately 3-4% annually at current validator counts) but risk-adjusted and predictable. Slashing risk is real but limited in practice to validators who double-sign - running two validator instances with the same key, which is avoidable with proper configuration.

Solo staking is the most decentralized option and earns full rewards. The barrier - 32 ETH, technical setup, uptime responsibility - puts it out of reach for most people.

Liquid staking pools ETH from many users, operates validators, and returns a receipt token representing staked ETH plus accruing rewards. The major options differ in meaningful ways:

Lido (stETH) is the largest with approximately 30% of all staked ETH. stETH rebases daily - your balance in stETH increases as rewards accrue. The centralization concern is structural: Lido's share of staked ETH gives its node operator set significant influence over block production. The Lido DAO governance is an additional trust assumption.

Rocket Pool (rETH) is permissionless - anyone with 8 ETH can run a node using RPL collateral. rETH does not rebase; it appreciates in value against ETH as rewards accrue. More decentralized than Lido, smaller scale.

Coinbase (cbETH) and Binance (wBETH) are custodial options with the obvious trade-off that you are trusting a centralized company. The regulatory clarity may make them appropriate for institutions that require it.

Restaking and EigenLayer extend the staked ETH model: validators can opt in to secure additional networks (Actively Validated Services) using their existing stake, earning additional yield in exchange for additional slashing risk. EigenLayer is real, live, and already securing multiple protocols. The theoretical risk - cascading slashing from multiple correlated failures - is worth understanding before opting in.


DeFi on Ethereum

The major DeFi protocols on Ethereum are not just popular - they are specifically on Ethereum because Ethereum's security model and decentralization are prerequisites for the level of value they custody.

Uniswap introduced the Automated Market Maker - replacing order books with liquidity pools governed by a constant product formula (x * y = k). Uniswap V3 refined this with concentrated liquidity, allowing liquidity providers to specify price ranges rather than providing liquidity across the entire curve. Billions in daily volume. The smart contracts have been running without incident since 2018 for V1. This track record matters.

Aave is the dominant money market - deposit collateral, borrow against it, earn yield on supplied assets. Aave's architecture uses isolated markets, risk parameters per asset, and liquidation mechanisms calibrated to collateral volatility. The platform has survived multiple market crashes and black swan events without systemic failure. That history is the product's proof of concept.

MakerDAO / Sky created DAI - the oldest decentralized stablecoin, collateral-backed and minted by users who over-collateralize positions with ETH and other assets. Sky is the rebrand that followed governance decisions to expand into real-world assets and diversify collateral beyond crypto. The real-world asset integration is controversial among decentralization purists and is a genuine trade-off: more stability and yield, less pure decentralization.

Why specifically on Ethereum? Because these protocols hold billions in user funds under autonomous code. Any governance attack, validator censorship, or chain reorganization could be catastrophic. The security and decentralization margin that makes Ethereum's L1 expensive is exactly the margin these protocols are paying for. Lower fees on Solana or Avalanche are not compelling to a protocol that needs its contracts to run without interference for the next decade.


Getting Exposure

The ways to get ETH exposure vary significantly in risk profile and complexity.

Spot ETH is the direct option. A self-custodied ETH position earns you exposure to price, can be staked for yield, and works across the entire Ethereum ecosystem. Buy on an exchange, withdraw to a hardware wallet, done.

ETH ETFs became available in the US in mid-2024. They offer exposure within traditional brokerage accounts without custody responsibility. The trade-off is fees (expense ratios), no ability to stake or use the ETH in DeFi, and dependency on traditional financial infrastructure that contradicts the Ethereum ethos somewhat. For tax-advantaged accounts or institutional mandates, they are the practical choice.

Staking yield adds approximately 3-4% annually on top of ETH price exposure. Via liquid staking, you can maintain liquidity while earning. The comparison to a "productive asset" - ETH that yields like a bond while also appreciating like a commodity - is the strongest version of the ETH value thesis.

L2 ecosystem tokens - ARB (Arbitrum), OP (Optimism) - offer leveraged exposure to Ethereum's L2 growth. If Ethereum's L2 ecosystem succeeds and drives more activity, these tokens capture some of that value. They carry more risk than ETH itself: younger protocols, less certain value capture mechanisms, and governance tokens that may or may not accrue fee revenue.

Position sizing principle: ETH is the most liquid, most regulated, and most structurally important asset in the smart contract category. For most investors, it warrants a larger allocation than any individual L2 token or DeFi governance token. The ecosystem tokens are for those who have already established a core ETH position and want additional targeted exposure.


Why 10102 Builds on Ethereum

This is the honest version, not the marketing version.

Computing Legacy is a smart contract inheritance system. When someone sets up a Computing Legacy vault, they are trusting that the contract will run correctly when they are no longer around to manage it - which could be 10, 20, or 40 years from now. That is not a use case that can tolerate validator downtime, chain reorgs, or a network that pivots its architecture in response to competitive pressure.

We looked at the alternatives. Solana's outage history and validator concentration make it unsuitable for contracts that need to execute autonomously decades from now. Newer L1s with more centralized validators or shorter track records carry the same concern. Bitcoin supports scripts but not the programmable logic Computing Legacy requires.

Ethereum has been running continuously, with the same rules, on a fully decentralized validator set, since 2015. Smart contracts from 2017 still run today without modification. The network has survived the DAO hack (and the philosophical war that followed), multiple market cycles from peak to near-zero and back, the FTX collapse, the LUNA wipeout, and the most complex consensus-layer upgrade in blockchain history. It keeps running.

The L1 fee environment is a real cost. The L2 ecosystem fragmentation is a real friction. Ethereum's governance is slower than we sometimes wish. We hold these trade-offs clearly. We still build here, because no other chain gives us the same confidence that a contract we deploy today will still be running, unmodified and uncensorable, in 2050.

That is what "forever, compute, and beyond" means in practice.


Learn More


Content current as of March 2026. Not financial advice. ETH price, staking yields, and roadmap timelines are subject to change.