Vitalik Buterin
Proposed a general-purpose blockchain rather than a chain restricted to one application. The whitepaper described a state-transition platform capable of running arbitrary agreements and decentralised applications.
Ethereum is a programmable public ledger launched in 2015. Bitcoin proved that a network could agree on ownership without a central operator; Ethereum generalised the idea into a shared state machine where developers can deploy code, create assets and compose financial systems that execute in a common environment.
ETH is therefore several things at once: the asset used to pay for execution, the bond validators place at risk, collateral inside applications, liquidity across exchanges and rollups, and the accounting asset that absorbs issuance and fee burn. The investment question is not simply whether Ethereum is used. It is whether that use creates durable demand for ETH.
Vitalik Buterin conceived Ethereum in late 2013 and wrote the original whitepaper. Seven other co-founders helped turn the proposal into a network: Gavin Wood, Joseph Lubin, Jeffrey Wilcke, Mihai Alisie, Anthony Di Iorio, Amir Chetrit and Charles Hoskinson. The project raised roughly 31,000 BTC in its 2014 crowd sale and launched Frontier on 30 July 2015.
Proposed a general-purpose blockchain rather than a chain restricted to one application. The whitepaper described a state-transition platform capable of running arbitrary agreements and decentralised applications.
Wrote the Yellow Paper, formalised the Ethereum Virtual Machine and developed Solidity, the language that became the dominant way to write Ethereum smart contracts.
The remaining co-founders helped finance the project, build clients, establish the Foundation, organise the sale and develop the early ecosystem. Ethereum now has no CEO and no single party able to change its rules unilaterally.
| Milestone | Date | What changed | Why it matters |
|---|---|---|---|
| Whitepaper | Late 2013 | A general programmable blockchain was proposed. | The asset thesis began as execution and shared state, not digital scarcity alone. |
| Ether sale | 22 Jul–2 Sep 2014 | ETH was sold for BTC to fund development. | Ethereum began with a known founding allocation and public crowd sale rather than mining from zero. |
| Frontier launch | 30 Jul 2015 | The genesis block started the live proof-of-work network. | Developers could deploy permanent code and create assets on a common ledger. |
| DAO fork | 20 Jul 2016 | The community changed state to recover funds from an exploited contract. | The dissenting chain continued as Ethereum Classic, creating the governance precedent. |
| The Merge | 15 Sep 2022 | Mainnet execution joined the proof-of-stake Beacon Chain. | Mining issuance ended; validators and staked ETH became the security mechanism. |
ETH still trades inside Bitcoin's global liquidity cycle, but its peaks are shaped by a second clock: what people are building and financing on Ethereum. ICOs drove the first full cycle, DeFi and NFTs drove the next, and the present cycle is testing staking, ETFs, stablecoins, tokenised funds and rollup settlement.
$6.68 to $1,432.88.
$82.83 to $4,878.26.
$880.93 to $4,946.05.
ICO leverage and forced liquidation.
DeFi contagion and macro tightening.
Only marginally above the 2021 ATH.
| Cycle | Shape | Engine | Structural lesson |
|---|---|---|---|
| 2015–2016 | Genesis, first apps, DAO boom and collapse | The idea of programmable money itself. | A chain can survive an application disaster, but governance choices become permanent history. |
| 2016–2018 | ICO supercycle and January blow-off | ERC-20 made fundraising and exchange listing mechanically repeatable. | ETH became reserve collateral for issuing thousands of new tokens, then fell 94% when that demand reversed. |
| 2018–2022 | DeFi summer, NFT mania and 2021 double top | Automated markets, lending, stablecoins, NFTs and anticipation of proof-of-stake. | Application demand became real, but leverage and bridge risk connected failures across the system. |
| 2022–2025 | Merge recovery, rollup migration and marginal new ATH | Staking, fee burn, ETFs, stablecoins, tokenised funds and cheaper L2 execution. | The network matured faster than the token multiple. Activity can move to L2 while ETH capture becomes indirect. |
| 2026 test | Post-ATH bear and value-capture audit | Institutional wrappers versus weak ETH/BTC and low base-layer fees. | The next cycle must prove that Ethereum's expanding settlement role creates more than a marginal nominal high. |
A mature network should be expected to require more capital for each percentage move. Ethereum's measured compression is unusually severe: the 2025 ATH barely exceeded 2021 even though the network acquired proof-of-stake, ETFs, a larger stablecoin economy and a broader institutional narrative.
How many times price expanded from the previous bear low.
The percentage of a cycle high surrendered into the next low.
Whether the new cycle created meaningful nominal price discovery.
Measures proportional compression without being dominated by early huge numbers.
The multiple fell from roughly 214.5× to 58.9×. The market remained explosive, but the easy early repricing had already compressed.
The multiple collapsed from 58.9× to 5.61×. Compression accelerated rather than slowing.
The rate of decay became more negative. A future re-acceleration would need evidence from both ETH/USD and ETH/BTC.
| Interval | Measured span | Change | Interpretation |
|---|---|---|---|
| 2018 low → 2021 high | 1,061 days | ≈58.9× | A mature crypto bull length comparable to Bitcoin's broad rhythm. |
| 2022 low → 2025 high | 1,164 days | ≈5.61× | The bull lasted longer but produced far less expansion. |
| 2018 high → 2018 low | 336 days | −94.2% | A classic one-year speculative reset. |
| 2021 high → 2022 low | 220 days | −81.9% | Macro tightening and crypto credit failure accelerated the bear. |
| 2018 high → 2021 high | 1,397 days | 3.40× top growth | The second major cycle created real nominal price discovery. |
| 2021 high → 2025 high | 1,384 days | 1.014× top growth | The four-year timing survived more clearly than the return multiple. |
Ethereum is best understood as a replicated computer whose state is agreed by many nodes. Developers normally write Solidity or Vyper, compile it into EVM bytecode and deploy that bytecode to a contract account. Every node executes the same ordered instructions and checks that the resulting balances, storage and logs match.
The EVM is a stack-based virtual machine. Bytecode instructions perform arithmetic, read and write memory, update persistent storage, emit logs and call other contracts. Determinism means honest clients given the same prior state and transactions reach the same result.
Each opcode has a gas cost. Users set a transaction gas limit and pay in ETH. The meter prevents infinite loops and prices expensive storage or computation so one program cannot consume the entire network for free.
Atomic composition is Ethereum's superpower: one transaction can borrow, trade, repay and settle. It is also a contagion channel. A bug, manipulated oracle, malicious approval or compromised admin key can travel through connected protocols in one block.
| Layer | What it contains | Examples | Main failure mode |
|---|---|---|---|
| Externally owned accounts | Addresses controlled by private keys. | Wallets, exchanges, custodians. | Lost or stolen keys, malicious signatures and phishing. |
| Contract accounts | Bytecode and persistent storage triggered by calls. | Tokens, exchanges, vaults, DAOs. | Logic bugs, upgrades, admin power and unexpected composition. |
| Execution clients | Transaction pool, EVM, state database and JSON-RPC. | Geth, Nethermind, Besu, Erigon, Reth. | A dominant-client bug can threaten network correctness. |
| Consensus clients | Validator duties, attestations, finality and fork choice. | Lighthouse, Prysm, Teku, Nimbus, Lodestar. | Client concentration, validator outages and correlated slashing. |
| Networking | Execution gossip over DevP2P; consensus gossip over libp2p. | Peer discovery, transactions, blocks, attestations and blobs. | Eclipse attacks, censorship, poor propagation and infrastructure concentration. |
Most “coins on Ethereum” are not independent blockchains. They are balances and rules stored inside smart contracts. Standards define common function names and events so wallets, exchanges and applications can understand unfamiliar assets without custom integration for each one.
Every unit is intended to be interchangeable: stablecoins, governance tokens, utility tokens, wrapped assets and most memecoins.
Examples: USDC, USDT, DAI/USDS, LINK, UNI, WBTC, PEPE.Each token ID can represent a distinct item, claim, identity object, licence, position or piece of digital property.
Examples: collectibles, game assets, names, tickets and tokenised deeds.One contract can manage many fungible and non-fungible asset classes, making games and batch transfers more efficient.
Useful where one application has currencies, items, editions and unique assets together.Standardises shares in yield-bearing vaults so deposits, withdrawals and asset accounting can integrate across DeFi.
A receipt token can represent a proportional claim on a changing pool of underlying assets.Tokens such as stETH or rETH represent claims connected to staked ETH, letting holders use the position elsewhere while validators secure Ethereum.
Additional liquidity comes with protocol, slashing, oracle, depeg and concentration risk.Issuers can add allowlists, freezes, clawbacks, transfer agents and legal redemption rules around an ERC-compatible asset.
The blockchain settles the token; the issuer and law determine the off-chain claim.Stablecoins turn bank deposits, Treasury-backed reserves, overcollateralised loans or algorithmic mechanisms into transferable on-chain units. Ethereum became their first deep settlement market, and its rollups extend the same standards into cheaper execution environments.
An issuer holds reserves and promises redemption. Smart contracts add transfer, freeze and administrative controls, but users ultimately depend on the issuer, custodian, banking partners and applicable law.
Users create stable liabilities against collateral managed by smart contracts and governance. The system adds liquidation, oracle and governance risk, but can reduce direct dependence on one bank issuer.
Freezes, bank failures, reserve losses, oracle errors, bridge failures or governance attacks can break the peg. A stablecoin can remain transferable on Ethereum while its off-chain redemption claim fails.
Mainnet transfers and contract calls consume ETH-denominated blockspace.
Wallets and contracts maintain ETH for future execution.
ETH and wrapped ETH serve as exchange and collateral liquidity.
Users can price, save and trade in dollars while touching only tiny amounts of ETH.
Institutional use appears in two separate forms. First, regulated wrappers hold ETH as an investment asset. Second, institutions issue dollars, funds and other claims on Ethereum. The second category can make the network more important without giving ETH holders ownership of the issuer's revenue or underlying assets.
BlackRock's first tokenised fund launched on Ethereum through Securitize. Its token represents a regulated fund interest with on-chain issuance, transfers and daily income, connecting traditional custody and fund administration to public-chain settlement.
verify: Ethereum share class value, qualified holders, collateral use and secondary liquidityVisa used USDC over Ethereum for settlement with participating partners and later expanded stablecoin settlement across additional chains. Ethereum's significance is that a global payment network proved public-chain settlement could connect to its treasury operations.
verify: Ethereum-specific volume rather than total multichain programme volumePYUSD launched as an ERC-20 token on Ethereum, backed by dollar deposits, Treasuries and cash equivalents through Paxos. It later expanded to other networks, showing both Ethereum's launchpad advantage and the reality of multichain competition.
verify: supply by chain, payment velocity, merchant use and redemption routesExchange-traded products allow investors to obtain ETH exposure through conventional brokerage and custody structures. Later filings and products added staking mechanics, turning validator yield, liquidity windows and custody control into regulated-product questions.
verify: assets, flows, fees, percentage staked and treatment of rewardsQualified institutions can convert bank dollars into native USDC on Ethereum and redeem back through Circle. This gives exchanges, wallets and businesses a direct fiat bridge without treating bridged copies as the issuer's liability.
verify: native versus bridged token, issuer contract and redemption eligibilityArbitrum, Base, Optimism and other rollups execute cheaply while posting data or proofs to Ethereum. Institutions can use EVM tooling and standards without putting every action on mainnet, but sequencers and bridges introduce additional trust layers.
verify: settlement path, data availability, upgrade keys, sequencer control and withdrawal assumptionsEthereum split because of the DAO dispute in 2016. Ethereum later changed its consensus mechanism through The Merge in 2022. The first event created Ethereum and Ethereum Classic as enduring histories. The second replaced mining on canonical Ethereum with staking after years of parallel preparation.
An insecure DAO contract was drained of more than 3.6 million ETH. The majority-supported fork moved affected funds into a withdrawal contract. Participants who considered that intervention unacceptable continued the unforked history as Ethereum Classic.
The Beacon Chain began separately in December 2020. On 15 September 2022, Ethereum's execution state and transaction history were joined to that proof-of-stake consensus system. Users did not receive a new canonical ETH coin; the existing state continued under a new security engine.
Ethash miners ordered transactions, produced blocks and received new ETH plus transaction fees.
The dispute was about whether social governance could change ledger state after a smart-contract exploit.
Proof-of-stake validators began agreeing on a separate consensus chain while mainnet still used miners.
The base fee began being burned, separating part of transaction demand from validator or miner income.
Execution continued without resetting balances or contracts; the Beacon Chain became Ethereum's consensus layer.
Validators could exit and withdraw rewards, completing a major part of the staking lifecycle.
Rollups gained a cheaper temporary data market, reducing L2 transaction costs and changing mainnet fee capture.
Account, validator and blob-throughput improvements made Ethereum increasingly a settlement and data-availability layer.
New ETH rewards validators for securing consensus. EIP-1559 destroys each block's base fee. Supply grows when issuance exceeds burn and shrinks when burn exceeds issuance. The result responds to network activity and the amount of ETH participating in security rather than following Bitcoin's predetermined 21-million path.
Validators lock ETH as slashable collateral and earn protocol issuance plus selected execution rewards.
Users and rollups compete for execution or data space and pay ETH-denominated fees.
The base fee is removed from supply instead of being paid to a block producer.
Staking removes liquid ETH temporarily, while liquid-staking tokens reintroduce tradable claims.
Supply, yield, fees, MEV, validator count and market price continually alter one another.
High-value settlement increases fee burn, applications require ETH liquidity, and validators remove ETH from immediate circulation. ETH becomes the scarce collateral underneath a growing programmable economy.
Blob space is deliberately cheap. Users can hold stablecoins, pay sponsored fees and transact mainly on L2. Ethereum may succeed as infrastructure while ETH supply becomes mildly inflationary and token demand grows more slowly than application activity.
| Cash-flow-like component | Who receives it | What ETH holders receive | Important limit |
|---|---|---|---|
| Protocol issuance | Active validators. | Only stakers receive direct issuance rewards. | Non-staking holders are diluted when net issuance is positive. |
| Priority fees and MEV | Block proposers/builders and connected participants. | Stakers may capture part depending on setup and pool. | MEV can centralise block construction and harm users. |
| Base-fee burn | No recipient; ETH is destroyed. | All holders benefit indirectly from lower supply than otherwise. | Low fees mean low burn; burn is not distributable revenue. |
| L2 blob fees | Paid to Ethereum and partly burned through the blob fee market. | Creates settlement demand for ETH. | The protocol intentionally keeps blob data inexpensive enough for rollups to scale. |
| Application revenue | Protocol token holders, developers, LPs or companies. | ETH holders receive nothing automatically. | Ethereum hosts the business but does not own every business. |
Instead of forcing every user transaction through one global execution queue, rollups execute batches elsewhere and use Ethereum for data availability, proofs, dispute resolution and final settlement. Dencun introduced blobs in 2024; Pectra and Fusaka followed in 2025, increasing account, validator and blob capabilities.
Transactions execute on L2; compressed data reaches Ethereum. Fraud proofs and challenge windows protect withdrawals under the rollup's rules.
A validity proof lets Ethereum verify that a large off-chain computation followed the rules without re-executing every transaction.
Blobs give rollups a cheaper place to publish transaction data long enough for verification, while the final commitments remain part of Ethereum history.
| Upgrade | Date | Main role | Value-capture question |
|---|---|---|---|
| The Merge / Paris | 15 Sep 2022 | Replaced proof-of-work with proof-of-stake. | Did lower issuance and staking demand improve ETH's monetary premium? |
| Shapella | 12 Apr 2023 | Enabled validator withdrawals. | Did liquid exits make staking safer or create more concentrated providers? |
| Dencun | 13 Mar 2024 | Introduced blob transactions for cheaper rollup data. | Can enormous L2 volume compensate for much lower fees per transaction? |
| Pectra | 7 May 2025 | Improved accounts, validator operations and scaling support. | Do better wallets and validator efficiency deepen ETH demand or abstract it away? |
| Fusaka | 3 Dec 2025 | Added PeerDAS and increased safe blob throughput. | Does Ethereum become the dominant data-settlement layer while execution revenue migrates outward? |
| Glamsterdam / later roadmap | Development | Further execution, block-building and scalability improvements. | Can Ethereum scale without concentrating builders, relays, sequencers or validators? |
“Ethereum was hacked” can describe several different events: a wallet key was stolen, a contract contained a bug, a bridge failed, a client implementation disagreed, validators censored transactions, or the consensus protocol itself failed. These are not equivalent.
| Target | Attacker needs | Possible damage | What remains protected |
|---|---|---|---|
| Wallet or custodian | Private keys, signing approval or internal access. | Transfer assets controlled by that account. | Other accounts and protocol consensus remain valid. |
| Smart contract | A logic flaw, oracle weakness, upgrade key or governance capture. | Drain or freeze assets governed by that code. | The chain can faithfully record a disastrous but valid execution. |
| Bridge or rollup | Proof-system flaw, validator compromise, sequencer/admin control or message bug. | Mint unbacked assets, censor users or block withdrawals. | Ethereum L1 can remain correct while the connected system fails. |
| Consensus with ≥33% stake | Coordinated validator weight. | Disrupt finality and cause inactivity penalties. | Invalid state transitions are still rejected by execution clients. |
| Consensus with majority influence | Large stake plus infrastructure and client coordination. | Censor, reorganise or finalise malicious ordering under extreme conditions. | Attackers cannot forge signatures for arbitrary user accounts; slashable stake and social recovery remain counterforces. |
| Dominant client bug | A flaw in software run by a large share of nodes. | Chain split, missed finality or correlated penalties. | Client diversity can isolate the bug and preserve an honest majority. |
Many nominal validators can still be controlled through a smaller set of pools, operators, clouds and governance systems. Count control paths, not only validator keys.
Builders can extract value by ordering, inserting or excluding transactions. Separation of proposers and builders can improve efficiency while concentrating visibility and censorship pressure.
Independent execution and consensus clients, open specifications, validators with capital at risk and social coordination make a silent permanent takeover difficult—not impossible.
ETH, a stablecoin, a governance token, an NFT and a tokenised fund can all use Ethereum while having different legal treatment. Regulation normally attaches to the issuer, product, intermediary, rights and marketing—not merely to the fact that an ERC contract exists.
Regulated funds can hold ETH or participate in staking through custodians and service providers. Investors own fund shares, not native wallet keys, and depend on the product's custody, liquidity, fee and staking arrangements.
Reserve, redemption, disclosure, sanctions and anti-money-laundering requirements apply to regulated stablecoin issuers. Ethereum provides the ledger, but the legal promise comes from the company and its regulated reserve structure.
A tokenised fund can restrict holders and transfers through identity checks, allowlists and transfer agents while using Ethereum for settlement. Public infrastructure does not require every asset to be permissionless.
Ethereum already proved that general-purpose blockchain applications can exist. The current investment question is narrower: does the mature network create expanding economic demand for ETH relative to Bitcoin and competing settlement systems?
Live APIs can fail or change fields. Historical prices are working market anchors rather than a claim that every venue printed the same wick. Protocol, institutional and legal statements should be checked against the linked primary source.