# Vitalik Buterin

> 1994– · Programmer, Creator of Ethereum
>
> **Recorded contribution:** Ethereum; smart contracts; EVM; proof-of-stake transition

## How to use this dossier

Read for a causal chain, not a hero story: inherited problem → contribution → mechanism → downstream capability → limit. Then close the page and complete the reconstruction exercise from memory.

## 1. Historical orientation

Russian-Canadian programmer Vitalik Buterin published the Ethereum white paper in 2013 and co-founded the project with a wider founding group. Ethereum generalized blockchain state transition beyond currency transfers through a virtual machine and smart contracts. Buterin remained a major researcher and public contributor as the network moved from proof of work to proof of stake in 2022. Ethereum generalized a blockchain node from checking currency transfers to executing a deterministic state-transition program. Contracts store code and state; transactions supply signed inputs and gas; every validating node re-executes the transition so agreement covers both balances and application logic.

## 2. The problem inherited

Bitcoin offered decentralized transfer and limited scripts, but developers lacked a general shared state machine for deploying arbitrary persistent applications without creating a new blockchain each time.

## 3. The central contribution

Buterin conceived Ethereum's general programmable blockchain and co-founded the ecosystem that implemented and evolved it.

## 4. Reconstruct the mechanism

1. Encode contract code and account state in a replicated global state machine.
2. Broadcast signed transactions that call contracts or transfer value.
3. Have validators execute the same deterministic EVM operations and charge gas for resource use.
4. Reach consensus on blocks and update state, now securing participation through proof-of-stake deposits and penalties.

## 5. What changed downstream

- Ethereum enabled tokens, decentralized finance, NFTs, DAOs, and many experiments in programmable digital assets.
- It made smart-contract security, governance forks, scaling, energy use, and financial regulation major systems questions.
- This design enabled decentralized exchanges, tokens, lending, organizations, and digital collectibles while creating a large ecosystem of smart-contract languages, audits, wallets, and scaling systems.

## 6. Attribution, limits, and uncertainty

- Ethereum has many co-founders, implementers, researchers, validators, and standards authors; Buterin conceived and led but did not build it alone.
- Immutability can preserve bugs, smart contracts do not know off-chain truth without trusted inputs, and decentralization varies across infrastructure and governance.
- Public deterministic execution exposes privacy and ordering problems, immutable bugs can hold valuable assets, governance remains social, and proof of stake changes rather than eliminates concentration and security trade-offs.

## 7. Reconstruction lab

Implement a tiny stack VM with gas and a two-account contract. Trigger reentrancy or an unchecked state transition, then repair the invariant and calculate execution cost. Add reentrancy, oracle manipulation, and transaction-ordering attacks to the toy contract, then state which protections belong in code, protocol, or off-chain governance.

## 8. Evidence trail

- [Ethereum Whitepaper](https://ethereum.org/en/whitepaper/) — Ethereum.org
- [Ethereum proof-of-stake documentation](https://ethereum.org/en/developers/docs/consensus-mechanisms/pos/) — Ethereum.org
- [Vitalik Buterin](https://en.wikipedia.org/wiki/Vitalik_Buterin) — Wikipedia contributors

---

*Research checked 2026-08-09. Dates, roles, and claims about living people are historical snapshots. Linked sources remain the authority; this dossier is original instructional synthesis.*
