Gas fees explained: what they are and why they vary
What gas measures, how base fees and tips interact on Ethereum-style networks, why fees rise with demand, and how to read fee fields on a public explorer—literacy only, no timing trades.
Gas is the unit that measures computational work on Ethereum and many EVM-compatible networks. According to ethereum.org’s gas documentation, every transaction consumes resources, so the network charges a fee to deter spam and pay for execution. You pay that fee in the network’s native currency—whether the transfer succeeds or fails. This page explains the vocabulary and how to verify fees yourself. It is not advice about when to send, what to buy, or which network to prefer.
Gas units vs gas price
- Gas used / gas limit — how much computation the operation needs (or the ceiling you allow). A simple native transfer on Ethereum historically uses 21,000 gas units; a complex contract call uses more. Set the limit too low and the transaction can fail mid-execution while still consuming the gas it used.
- Gas price — how much you pay per unit of gas. On Ethereum this is often quoted in gwei (one-billionth of ETH). ethereum.org’s docs walk through the arithmetic: fee ≈ gas used × (base fee + priority fee).
Other EVM networks reuse the same mental model with their own native coin and sometimes different fee markets. Always read the network your wallet shows before confirming.
Base fee, tip, and max fee (EIP-1559 style)
On Ethereum after EIP-1559, ethereum.org describes the total as two main parts:
- Base fee — protocol-set reserve price for inclusion. It adjusts block-to-block with demand (up when blocks are fuller than target, down when quieter). The base fee is burned, not paid to validators as a tip.
- Priority fee (tip) — optional extra you add so validators prefer your transaction when the mempool is busy.
- Max fee per gas — a ceiling many wallets set so you never pay more than you authorized; unused headroom is refunded relative to what was actually charged.
Most wallets fill these fields with estimates. Literacy means knowing what the estimate is estimating—not treating a green “Fast” button as a market signal.
Why fees vary
- Network demand — when many people compete for block space, tips rise and base fees climb. ethereum.org states high fees are largely a popularity/congestion story, not a mystery tax.
- Transaction complexity — more contract steps ⇒ more gas units ⇒ higher total even at the same price per unit.
- Failed or reverted calls — you can still pay for work that reverted. Always read the prompt and, when available, simulation / “what this does” panels from sources you trust.
- Wrong network or duplicated sends — accidental retries and mis-selected networks create extra fee spend without moving value where you intended. Confirm chain ID and destination with the habits in our hot-wallet hygiene checklist.
How to verify on an explorer
- After a send, open the transaction hash on a public explorer you navigated to yourself (for Ethereum mainnet, e.g. Etherscan; other networks have their own).
- Find fields such as Gas Used, Gas Price / Base Fee / Max Fee, and Transaction Fee (total paid).
- Compare status: success vs failed/reverted. A failed tx can still show a non-zero fee.
- Use explorer gas trackers only as educational dashboards—not as buy/sell timing tools. See also how to read a transaction.
What we will not do
We will not tell you the “best” hour to transact, whether fees are “cheap enough” for a trade, or which chain’s fees make it a better investment. Fee literacy is about reading the bill—not timing markets.
Related free docs
- How to read a blockchain transaction on an explorer
- How to read a wallet prompt
- Bridges in plain English
- Wallet basics: hot, cold, and custodial
- Crypto glossary in plain English
Sources
- ethereum.org — Gas and fees
- ethereum.org — Transactions
- ethereum.org — Why can gas fees get so high?
- Etherscan — Gas tracker (public monitoring UI; not an endorsement)
- FTC — What to know about cryptocurrency and scams
Educational content only — not investment advice. This page explains gas mechanics and how to read fees; it does not recommend when to transact, which network to use, or any asset to buy or sell.