Not financial, legal, or tax advice. This guide is for general education only. ETH is volatile and you could lose money. Do your own research and consider consulting a qualified professional before investing.
Ethereum is a decentralized network that lets people run software and agreements directly on a blockchain, without any company hosting them. Its native currency, ether (ETH), pays for that activity, which is why Ethereum is often described as a world computer rather than simply a form of digital money.
Table of Contents
- What Ethereum is
- ETH vs. the Ethereum network
- What smart contracts are
- What people build on Ethereum
- Gas and transaction fees
- Layer 2s and scaling
- The Merge and staking
- Risks to understand
- Common misconceptions
- How to get started
- FAQ
What Ethereum is
The project's own documentation at ethereum.org describes it as "the foundation for a new era of the internet". Ethereum launched in 2015, proposed by Vitalik Buterin and a group of co-founders who wanted a blockchain that could do more than record payments. Where Bitcoin was designed mainly to move value, Ethereum was designed to run arbitrary programs — a contrast we draw out in Bitcoin vs. Ethereum. That single design choice opened the door to a huge range of applications: lending platforms, marketplaces, games, and digital collectibles, all running on shared infrastructure that nobody owns.
If you already understand how a blockchain works, the simplest way to think about Ethereum is a blockchain with a built-in programming layer. It keeps the ledger of who owns what, and it also executes code that anyone can deploy and anyone can use.
The phrase "world computer" is a useful image and a poor specification, so it is worth being literal about what the machine actually does. Every node in the network runs the same program and must arrive at the same answer, because the answer is the shared state. That makes it the slowest and most expensive computer you will ever use: thousands of machines redundantly executing the same few lines so that no single machine has to be trusted. You would never build ordinary software this way. You would build software this way when the point is that the code cannot be changed, switched off, or quietly rewritten by whoever hosts it.
What that buys is a property software has never really had before: a program that keeps running whether or not its author wants it to. Deploy a contract to Ethereum and you cannot take it down. Neither can the company you work for, the government you live under, or the developers of Ethereum itself. That permanence is the entire proposition, and, as the risks section below makes clear, it is also the source of nearly everything that goes wrong.
ETH vs. the Ethereum network
People often blur two different things, so it helps to separate them.
Ethereum is the network: the collection of computers running the software, the shared ledger, and the programs deployed on it.
Ether (ETH) is the network's native cryptocurrency. You use it to pay for transactions and computation, and many people also hold it as an investment. When someone says they own Ethereum, they usually mean they own ETH.
This echoes the broader coins-and-tokens distinction. ETH is the coin that powers the platform; thousands of other tokens are built on top of it, most of them following the ERC-20 standard.
The distinction has a practical edge. You need ETH to do anything on Ethereum, including moving a token that is not ETH. People discover this at the worst moment: holding a wallet full of some token, unable to sell it, because there is no ether left to pay the fee. Gas is always paid in ETH, whatever you are actually transacting.
ETH's supply also works differently from Bitcoin's, and the difference is often misreported. There is no cap. But since 2021 a portion of every transaction fee is destroyed rather than paid out, so when the network is busy, more ETH is burned than issued and the total supply shrinks. When it is quiet, supply grows slightly. Ether is therefore neither fixed nor reliably deflationary; its issuance floats with how much the network is used. Whether you consider that better or worse than a hard cap depends on whether you want a monetary policy that responds to demand or one that ignores it entirely.
What smart contracts are
A smart contract is a program stored on the blockchain that runs automatically when its conditions are met. Think of it as a vending machine for agreements: put in the right input, and the defined output happens, with no clerk in the middle and no ability for either side to renege.
For example, a lending contract can hold collateral, release a loan, and return the collateral when the loan is repaid, all in code, all visible on the public ledger. Because the logic runs exactly as written and cannot be quietly altered, users can interact with strangers and still trust the outcome.
Smart contracts are the foundation of decentralized finance and of most token projects; our guide to how smart contracts actually execute goes a level deeper. They are powerful, and they carry a specific risk: if the code contains a bug, that bug executes faithfully too, which has led to real losses.
That last point deserves more weight than it usually gets, because it inverts how software normally works. Ordinary code has bugs and you ship a patch on Tuesday. A smart contract holding funds has bugs and someone empties it on Tuesday, permanently, and the network processes the theft as a valid transaction, because by the contract's own rules that is exactly what it was. There is no appeal, because there is nobody to appeal to. "The code is the agreement" sounds like a principle until the code says something its authors did not mean.
The word "contract" also oversells it. A real contract is enforced by courts that can read intent, weigh fairness, and set aside terms that are unconscionable. A smart contract enforces the literal text and nothing else, and has no concept of what you were trying to achieve. It is closer to an escrow agent with perfect reliability and no judgment whatsoever. That is a genuine advance for arrangements where you want zero discretion, and a genuine hazard everywhere ambiguity is normal, which is most of human affairs.
What people build on Ethereum
The abstraction gets easier to grasp through what actually runs on it. A decade in, a few categories have proven durable while a great many have not.
- Stablecoins. The quiet success story. Dollar-pegged tokens moving on Ethereum settle enormous volume, and for a large share of the world this is the most practical way to hold and send dollars without a US bank account.
- Decentralized finance. Lending, borrowing, and trading run by contracts rather than firms. A decentralized exchange can swap tokens with no company holding your funds, using liquidity pools instead of an order book.
- NFTs. Tokens representing something unique rather than interchangeable. The speculative mania around profile pictures collapsed, but the underlying mechanism, provable ownership of a specific digital item, has settled into narrower uses like tickets and credentials.
- Token issuance. The most common use by count. Anyone can create an ERC-20 token in minutes, which is precisely why most of them are worthless and some are outright fraud.
- Tokenized real-world assets. Treasuries, funds, and property represented on-chain. Currently the area where established finance is actually spending money.
The honest reading is that Ethereum found strong fit for moving value in programmable ways, and much weaker fit for the broader "decentralize everything" ambitions of 2017. Most applications that did not touch money have quietly disappeared. That is a normal outcome for a general-purpose platform, and it is a more useful thing to know than any roadmap.
Gas and transaction fees
Running code on a shared network is not free. Every action on Ethereum, from sending ETH to using a complex application, costs a fee measured in units called gas. Gas exists for two reasons: it compensates the validators who process transactions, and it prevents anyone from clogging the network with endless computation.
The total fee depends on how much computation your action requires and how busy the network is at that moment. When many people transact at once, fees rise; when activity is quiet, fees fall. High gas fees during busy periods have been one of Ethereum's longest-standing pain points, which is a big part of why scaling solutions matter.
The mechanism is an auction for limited space, which explains behavior that otherwise looks arbitrary. Each block fits a finite amount of computation, and transactions bid for inclusion, so a fee is a price for a scarce resource rather than a charge levied by anyone. It is also why the fee is unrelated to the amount you send: transferring five dollars and five million costs the same, because both consume identical space. Complex operations cost more than simple ones for the same reason, since they use more of the block.
The practical consequence is that Ethereum's base layer prices out small transactions during busy periods, and no amount of optimization changes that while demand exceeds capacity. Paying twenty dollars to move thirty is not a bug; it is an auction working correctly and telling you that you are not the highest-value use of that block. Our guide to how gas is actually calculated covers the detail, and the answer to the cost problem is not a cheaper base layer but a different one, which is what the next section is about.
Layer 2s and scaling
Because the main Ethereum network (often called layer 1) can only process so many transactions at once, developers built layer 2 networks that sit on top of it. These handle transactions off the main chain in bulk, then post a compressed summary back to Ethereum for security. The result is much faster and cheaper transactions while still relying on Ethereum's underlying trust.
This is now the official strategy rather than a workaround. Ethereum deliberately chose not to make its base layer fast, on the grounds that raising the cost of running a node would concentrate the network in the hands of whoever could afford the hardware. Instead the base layer stays deliberately modest and expensive, doing one job well: settling disputes and storing proofs. Everything else moves upstairs. Networks like Arbitrum and Optimism batch thousands of transactions, execute them cheaply, and post the result down to Ethereum, which never has to re-run the work but can always verify it.
The trade-off is complexity, and it is not trivial. Users now face a choice of networks, funds must be bridged between them, and bridges have been among the most catastrophically exploited software in crypto. It also fragments liquidity, so your assets on one layer 2 are not directly usable on another. Ethereum's bet is that this is a better problem than centralization, and the jury is genuinely still out. Our guide to how Layer 2s work covers the mechanics, and Solana vs. Ethereum sets out the rival answer: make the base layer fast and accept the hardware requirements.
The Merge and staking
Ethereum also changed how it secures the network. In an upgrade known as the Merge, completed in 2022, it moved from proof of work to proof of stake, where validators lock up ETH as collateral instead of running energy-hungry mining hardware. This cut the network's energy use by roughly 99.9% overnight and introduced staking, a way for holders to help secure the network and earn rewards.
It is worth appreciating how unlikely that was. Ethereum replaced the engine of a live network securing hundreds of billions of dollars, with no downtime, no lost funds, and no rollback, on a system that cannot be taken offline for maintenance. Plenty of competent engineers expected it to fail. It is probably the single strongest piece of evidence for the project's execution, and worth remembering whenever a roadmap promise slips.
The security logic changed shape rather than strength. Under proof of work, attacking the network meant out-spending it on electricity. Under proof of stake, it means acquiring an enormous quantity of ETH and then watching the protocol destroy it when you misbehave, a penalty called slashing. Attacking the network now requires owning a great deal of the thing you are attacking, which is a neat alignment of incentives.
The trade-off critics raise is real: proof of stake means those who already hold the most ETH earn the most new ETH, which concentrates ownership over time in a way mining does not. There is also a centralizing pull in practice, since running a validator requires 32 ETH and constant uptime, so most people stake through a pool or an exchange, and a handful of those now control an uncomfortable share of the network. The energy question was resolved decisively; the governance question was not.
Risks to understand
- Price volatility. ETH can move sharply in either direction. Only invest what you can afford to lose.
- Smart contract risk. Bugs or exploits in applications built on Ethereum can drain funds, even when Ethereum itself works as intended.
- Fees. During busy periods, transaction costs can be high, which matters for small transactions.
- Complexity. The ecosystem is large and fast-moving, which makes it easy for newcomers to stumble into risky or fraudulent projects — a good reason to learn basic security habits first.
- Regulatory and tax uncertainty. Treatment of ETH and staking rewards varies by country and can change.
Common misconceptions
"Ethereum is a competitor to Bitcoin." They are barely the same category. Bitcoin is trying to be sound money and treats change as a threat. Ethereum is trying to be a platform and treats change as the job. You can think both are valuable, or neither, without any contradiction.
"Smart contracts are legally binding contracts." They are programs. Whether any of it is enforceable in a court is a separate question with a jurisdiction-dependent answer, and the code will execute regardless of what the law thinks.
"ETH has a fixed supply like Bitcoin." It does not. Issuance floats, and the fee burn means supply can shrink or grow depending on network activity.
"Gas fees go to Ethereum the company." There is no company. Fees go to validators, and a portion is destroyed outright. The Ethereum Foundation is a non-profit that funds research and has no ability to charge you anything.
"Layer 2s are less safe because they are not the real Ethereum." They inherit Ethereum's settlement guarantees by design, which is the whole point of the architecture. The real risks sit in bridges and in the operators who can currently sequence transactions, not in the idea itself.
"If a contract is audited, it is safe." An audit is a review under time pressure, not a proof. Audited contracts have been drained repeatedly. It raises the odds; it does not settle them.
How to get started
A sensible path is to understand the foundations first, then decide how you want to hold ETH. You can buy a small fraction through a reputable platform and store it yourself in a wallet you control. If you would rather accumulate gradually than buy all at once, a recurring plan can smooth out the ups and downs.