## TL;DR
Ethereum is a decentralized, open-source blockchain platform with smart contract functionality, proposed by Vitalik Buterin in 2013 and launched in July 2015. It enables developers to build decentralized applications (dApps) on a Turing-complete virtual machine (EVM). As of May 2026, Ethereum is the second-largest cryptocurrency by market capitalization and the dominant platform for DeFi, NFTs, and Web3 applications. Ethereum completed the transition from Proof-of-Work to Proof-of-Stake ("The Merge") in September 2022, reducing energy consumption by approximately 99.95%.
## Core Concepts
- **Smart Contracts**: Self-executing code stored on the blockchain (primarily written in Solidity)
- **EVM**: Ethereum Virtual Machine — deterministic, sandboxed execution environment
- **Gas**: Unit measuring computational effort; each operation costs gas
- **Accounts**: Externally Owned Accounts (user-controlled) and Contract Accounts (code-controlled)
- **ERC Standards**: Token standards (ERC-20 fungible, ERC-721 NFTs, ERC-1155 multi-token)
- **Consensus**: Proof-of-Stake (since The Merge, Sep 2022)
## Major Upgrades
- **The Merge** (Sep 2022): PoW → PoS transition
- **Shanghai/Capella** (Apr 2023): Staking withdrawals enabled
- **Dencun** (Mar 2024): EIP-4844 (proto-danksharding), drastically reducing L2 fees
- **Pectra** (2025): Validator improvements, account abstraction
## Further Reading
- [Ethereum Docs](https://ethereum.org/developers/docs/): Official documentation
- [go-ethereum](https://github.com/ethereum/go-ethereum): Main client implementation (51K+ stars)