Glossary
Gwei
Ethereum's gas-price unit
By Buğra SözeriPublished Updated
Gwei(giga-Wei, sometimes called “Shannon”) is the unit Ethereum gas prices are quoted in. One Gwei equals 10⁻⁹ ETH = 10⁹ Wei. A typical gas price of 25 Gwei is therefore 0.000000025 ETH per unit of gas.
Why Gwei specifically? Two reasons. Gas prices in raw Wei would be inconveniently large numbers (10¹⁰ - 10¹¹ Wei per unit gas at typical rates), and gas prices in ETH would be inconveniently small (10⁻⁸ ETH). Gwei lands in the human-readable middle: single- to triple-digit decimal numbers that fit on a wallet screen without scientific notation.
On EIP-1559 transactions (post-London hard fork, August 2021) the gas price decomposes into base fee (set algorithmically, burned) and priority fee (tip to validators). Both are denominated in Gwei.
Convert any value between the three Ethereum denominations with our Wei / Gwei / ETH converter, which uses BigInt math so even values larger than JavaScript’s 15-digit Number precision round-trip exactly.
Worked example
You’re about to send 0.5 ETH to a friend. The wallet shows a current base fee of 22 Gwei and recommends a 1 Gwei priority tip. Gas limit for a simple transfer is 21,000 (Ethereum’s minimum). Total max fee: 21,000 × (22 + 1) = 483,000 Gwei = 0.000483 ETH (at $3,000/ETH, that’s about $1.45). Submit the transaction. The 22 Gwei base fee component — 21,000 × 22 = 462,000 Gwei (~$1.39) — gets burned permanently, reducing ETH supply. The 1 Gwei priority — 21,000 × 1 = 21,000 Gwei (~$0.06) — goes to the validator. Now consider doing the same transfer on Arbitrum (L2): base fee around 0.05 Gwei, total fee 21,000 × 0.05 = 1,050 Gwei = 0.00000105 ETH (~$0.003) — roughly 500× cheaper, because the L2 batches thousands of transactions into a single L1 settlement and amortises the L1 gas across all participants.
The base-fee burn introduced by EIP-1559 has cumulatively destroyed several million ETH since 2021 — an amount comparable to a few years of issuance. During periods of high network demand (NFT mints, DeFi liquidations, stablecoin depegs), ETH becomes net-deflationary as more is burned than issued. The Gwei-denominated base fee is therefore not just a pricing signal but a monetary-policy lever encoded directly into the protocol.
When and why it matters
Gwei matters whenever you’re comparing gas prices, setting maximum fees, or estimating transaction costs across Ethereum and its L2 rollups. The denominational confusion is real: a beginner who reads “current gas: 25 Gwei” and assumes that’s the total transaction fee misses that the figure is per unit of gas — a 25 Gwei quote on a 500,000-gas NFT mint is 12.5 million Gwei = 0.0125 ETH, not 0.000000025 ETH. The opposite mistake is reading L2 prices in the same mental model as L1 and thinking “Arbitrum costs 0.05 ETH” when in fact the operation costs 0.05 Gwei — six orders of magnitude smaller. Every Ethereum block explorer (Etherscan, Blockscout) displays fees in both denominations; double-check which column you’re reading before sending. Reference: Etherscan — Gas Tracker.
Reading a Gwei gas price like a market quote:the Ethereum mempool publishes pending transactions and their offered gas prices in real time. Wallets (MetaMask, Rabby) sample this and recommend “low / medium / high” priority tiers — typically the 25th, 50th, and 75th percentile of pending tips. At quiet times (weekends, off-hours) the medium tier might be 5-15 Gwei. During an NFT mint or a stablecoin depeg, the high tier can spike to 200-500 Gwei for a few minutes. The base fee follows EIP-1559’s exponential adjustment formula — it doubles approximately every six blocks of full demand and halves at the same rate when demand drops.
Layer-2 Gwei context:Optimism, Arbitrum, Base, and other L2 rollups inherit the same Wei/Gwei/ETH denominations but operate at one to three orders of magnitude lower gas prices. An Arbitrum transaction in 2025-26 typically costs 0.01-0.1 Gwei rather than mainnet’s 10-50 Gwei range. The reason: L2 batches many user transactions into a single L1 settlement, amortising the L1 gas cost across everyone in the batch. Reading L2 gas prices without realising the scale shift produces misleading cost comparisons. Reference: EIP-1559 — Fee market change for ETH 1.0 chain.
Try the calculator
Translate a gas price in gwei into the wei or ETH equivalent in one click.
Open the wei / gwei / ETH converter →Frequently asked questions
- What is Gwei?
- Gwei is a denomination of Ether equal to 10⁻⁹ ETH (one billionth of an Ether). It is the standard unit used to express Ethereum gas prices.
- How is Gwei used in practice?
- When you submit an Ethereum transaction, your wallet shows the gas price in Gwei — for example, 20 Gwei means you are offering 20 × 10⁻⁹ ETH per unit of gas. A standard ETH transfer costs 21,000 gas units, so at 20 Gwei that is 0.00042 ETH in fees.
- What is the difference between Wei, Gwei, and ETH?
- Wei is the smallest indivisible unit of Ether. 1 ETH = 10⁹ Gwei = 10¹⁸ Wei. Gwei is the practical middle denomination used for gas pricing, while Wei appears in smart-contract arithmetic.
- Why do gas prices spike during network congestion?
- Ethereum uses a fee market where users bid for block space. When demand outstrips the block gas limit, miners or validators include higher-bid transactions first, driving the prevailing Gwei price up until demand subsides.
Related
Published May 14, 2026 · Last reviewed May 31, 2026