What Is Ether (ETH)?
Ether, or ETH, is the native currency of the Ethereum network.
Like Bitcoin, ETH can be used to store or transfer value digitally. But Ether’s primary role isn’t just to act like money — it’s also the fuel that powers Ethereum.
To run smart contracts and decentralized applications (dApps) on Ethereum, you need ETH. Every transaction or piece of code executed on the network consumes computing resources, and ETH is how you pay for them.
No ETH? No activity. Simple as that.
This payment model serves an important technical purpose: it prevents abuse of Ethereum’s Turing-complete virtual machine — meaning, a system that can run any computation imaginable. Without limits, someone could run an infinite loop and clog up the network.
By charging fees in ETH, Ethereum ensures developers use computing power responsibly. It’s like charging for gas in a car — you can go as far as you want, but only as long as you’re willing to pay for the fuel.
What Is Gas?
Gas is how Ethereum measures the computational effort required to process a transaction or run a smart contract.
Think of it like this:
- ETH is the currency.
- Gas is the unit of work.
- Gas price is how much ETH you’re paying per unit of work.
Every action on Ethereum — from transferring ETH to minting NFTs — costs gas.
- A basic transaction (e.g., sending ETH) might cost 21,000 gas units.
- A more complex action (e.g., interacting with a dApp) might need millions of gas units.
Gas itself isn’t ETH — it’s a unit of measurement, like liters of fuel. But the price of gas is expressed in a fraction of ETH.
Introducing Gwei (a Friendlier Unit)
Since gas prices are tiny fractions of ETH, they’re usually measured in gwei (short for giga-wei).
- 1 ETH = 1,000,000,000 gwei
- So instead of saying a gas price is 0.000000015 ETH, you’d just say 15 gwei — much easier, right?
It’s like using “cents” instead of always talking in fractions of a dollar.
How Ethereum Transaction Fees Work
Your transaction fee on Ethereum is based on three components:
- Gas Limit – the maximum amount of gas you’re willing to spend.
- Base Fee – the minimum fee per gas unit, set by the network.
- Priority Fee (Tip) – a small incentive to get miners/validators to process your transaction faster.
Transaction Fee Formula:
Transaction Fee = Gas Limit × (Base Fee + Tip)
Let’s break it down with an example:
- You’re sending 1 ETH to a friend.
- The network sets the Base Fee at 300 gwei.
- You add a Tip of 20 gwei.
- The transaction needs 21,000 gas units.
So the total fee would be:
21,000 × (300 + 20) = 6,720,000 gwei, or 0.00672 ETH
At a price of $3,000 per ETH, that’s about $18.84 just to send ETH!
Why Use Gas Limits and Max Fees?
Gas fees can fluctuate wildly depending on how busy the network is. To avoid spending too much:
- You can set a Gas Limit — the max gas you’re willing to use.
- You can also set a Max Fee — the max gwei you’re willing to pay per gas unit.
If your transaction uses less gas than the limit, you’ll be refunded the difference.
But if it runs out of gas, the transaction fails and the gas used is not refunded. Yikes!
Summary: Key Terms
| Term | Meaning |
|---|---|
| Gas | Unit measuring the computational effort of an Ethereum transaction |
| ETH | Native currency of Ethereum; used to pay for gas |
| Gwei | A denomination of ETH; 1 gwei = 0.000000001 ETH |
| Base Fee | Minimum amount per gas unit to get a transaction included in a block |
| Priority Fee (Tip) | Optional extra to speed up your transaction |
| Gas Limit | Max gas you’re willing to use for a transaction |
| Max Fee | Max amount (in gwei) you’re willing to pay per unit of gas |
| Gas Burn | The base fee is burned (destroyed), reducing ETH supply over time |
In Practice
Let’s say you want to transfer ETH or use a dApp. Your wallet will:
- Estimate how much gas your transaction needs,
- Suggest a base fee based on current network activity,
- Allow you to adjust your tip or max fee, and
- Submit the transaction with a gas limit to protect your budget.
Most modern wallets (like MetaMask) calculate all of this for you behind the scenes. But now you know what’s actually going on — and why it matters.


