ETH Gas Fee Calculator
Convert gas limit and gwei into ETH and USD instantly — with presets for common operations.
How to Use
- Enter the gas limit for your operation, or click a preset (transfer, swap, NFT mint, DeFi).
- Enter the current base gas price in gwei (check Etherscan Gas Tracker for live values).
- Enter your priority tip in gwei (1-2 gwei is typical, higher in congestion).
- Enter the current ETH price in USD.
- Read the fee in gwei, ETH, and USD — plus rough L2 equivalents.
Calculation Method
total_eth = total_gwei ÷ 1,000,000,000
total_usd = total_eth × eth_price_usd
- gas_limit
- — gas units the op consumes (21,000 for ETH transfer).
- base_gas_price
- — EIP-1559 base fee (burned), set by the network per block.
- priority_fee
- — miner/validator tip you pay on top.
- 1 gwei
- — 1 / 1,000,000,000 ETH.
Source / Last updated: Standard EIP-1559 fee formula. Gas-limit presets are typical ranges. Last reviewed for SmartCryptoCalcs in May 2026.
Examples
Example 1 — Plain ETH transfer at 25 gwei
Gas limit 21,000, base 25 gwei, tip 2 gwei. Total = 21,000 × 27 = 567,000 gwei = 0.000567 ETH. At $3,820/ETH = $2.17. On Base L2, the same transfer would cost roughly $0.10.
Example 2 — NFT mint during a congested moment
Gas limit 200,000, base 80 gwei, tip 5 gwei. Total = 200,000 × 85 = 17,000,000 gwei = 0.017 ETH. At $3,820/ETH = $64.94. This is why bots and contracts often wait for off-peak hours.