Home / Crypto / Academy / How crypto actually works

Ethereum specifically: the world computer and its rollups

Ethereum is where most of crypto beyond Bitcoin actually happens. Understanding its account model and its rollups explains most of what you will meet.

MODULE 39 OF 64 LEVEL 1: HOW CRYPTO ACTUALLY WORKS 15 MIN

Accounts, not UTXOs

Ethereum works the way you would expect: addresses have balances, and a transaction subtracts from one and adds to another. Simpler to reason about, and it makes programs far easier to write, which is the point.

Two kinds of account
Externally owned account
A normal wallet
Controlled by a private key. Can send transactions and hold assets. This is what MetaMask creates.
Contract account
A program
Controlled by its own code rather than a key. Holds assets and runs when called. It cannot start a transaction by itself, which is why "automatic" things in DeFi are actually bots calling functions.

The EVM, in plain terms

The Ethereum Virtual Machine is the environment every contract runs in. Every node executes the same instructions and must reach the same answer, which is what makes the result trustworthy without a referee.

The EVM became a de facto standard. BNB Chain, Polygon, Avalanche, Base, Arbitrum and dozens more are "EVM compatible", meaning contracts written for Ethereum run there with little or no change. That is why your Ethereum address works on all of them and why MetaMask can add them so easily.

Why gas exists at all

If computation were free, anyone could publish a contract containing an infinite loop and halt the network. Gas prices every operation, so an infinite loop simply runs until the sender's gas is exhausted and then stops. Gas is a denial of service defence first and a fee market second.

What the Merge actually changed, and what it did not

In September 2022 Ethereum switched from proof of work to proof of stake. Energy consumption fell by over 99 percent, and issuance dropped sharply because validators cost far less to pay than miners did.

What it did not do is make Ethereum cheap. Fees are set by demand for block space, not by the consensus mechanism. Anyone who expected the Merge to cut gas fees had misunderstood what it changed. Cheap transactions came from rollups instead.

Rollups, explained properly rather than just called cheaper

A rollup is a separate chain that executes transactions off Ethereum, then posts a compressed record of them back to Ethereum. Ethereum stores the data and settles disputes. You get Ethereum level security at a fraction of the cost, because thousands of transactions share one mainnet posting.

The two kinds and how they differ
Optimistic rollups
Arbitrum, Base, Optimism
Assume every batch is valid and publish it. Anyone can challenge with a fraud proof during a window, traditionally seven days. That window is why withdrawing to Ethereum from these chains can take a week unless you use a third party bridge that fronts you the funds.
Zero knowledge rollups
zkSync, Starknet, Linea, Scroll
Publish a cryptographic proof that the batch is valid. Nothing to challenge, so withdrawals settle quickly. Harder to build, and until recently harder to make fully EVM compatible.
This is why "the money is on Arbitrum" is a meaningful statement. Your assets are on a different chain that settles to Ethereum. Moving between them is a real bridging operation, and it is why sending to the wrong network is such a common and expensive mistake.

What this means practically

Where Ethereum is going

The stated roadmap is explicitly rollup centric: Ethereum aims to be the settlement and data availability layer while execution happens on rollups. Upgrades since 2024 have focused on making data posting dramatically cheaper for rollups, which is why layer 2 fees fell so sharply.

READ NEXT

BEFORE YOU MOVE ON

Common questions

What is the EVM?

The Ethereum Virtual Machine, the environment every smart contract executes in. It became a standard, which is why dozens of other chains are EVM compatible and your Ethereum address works on them.

Did the Merge make Ethereum cheaper?

No. It cut energy use by over 99 percent and reduced issuance. Fees are set by demand for block space, and cheap transactions came from rollups instead.

What is a layer 2?

A separate chain that executes transactions and posts a compressed record back to Ethereum, inheriting its security while costing far less. Arbitrum, Base and Optimism are the largest.

Why does withdrawing from Arbitrum take seven days?

Optimistic rollups assume batches are valid and allow a challenge window for fraud proofs. Waiting it out is free; third party bridges will front you the funds sooner for a fee.

Risk warning: crypto is highly volatile and largely unregulated. You can lose everything you put in. Nothing here is financial, investment or tax advice.

← PREVIOUS
Bitcoin specifically: what makes it different
NEXT →
The major chains compared, and what each actually trades off