Gas Fee gwei → USD Converter

Convert Ethereum gas fees from gwei to USD and ETH in real time

Ad placeholder (leaderboard)

Ethereum gas fees are quoted in gwei, a unit most people cannot intuitively convert to real money. This tool does the arithmetic: enter the gas limit, the gas price in gwei, and the current ETH/USD price, and it returns the transaction cost in gwei, ETH, and dollars. It supports EIP-1559’s split of base fee and priority fee, and it never needs an API key or a wallet connection.

How it works

The conversion chain is three multiplications and one unit shift:

1 ETH        = 1,000,000,000 gwei  (10^9)
effective gwei price = base fee + priority fee   (EIP-1559)
total fee (gwei) = gas limit × effective gwei price
total fee (ETH)  = total fee (gwei) / 1,000,000,000
total fee (USD)  = total fee (ETH) × ETH/USD price

Because gwei is one billionth of an ETH, the gas-limit-times-price product is divided by 10 to the power of 9 to land in ETH, and then scaled by the dollar price you supply.

Example and tips

A standard ETH transfer uses 21,000 gas. At a 30 gwei effective price the fee is 630,000 gwei, which is 0.00063 ETH; at an ETH price of 3,000 that is 1.89 USD. Contract-heavy transactions use far more gas, so the same gwei price can cost ten times as much on a Uniswap swap as on a plain transfer. When the network is busy the base fee rises automatically — set a priority fee just high enough to be included in the next block or two, and avoid overpaying during quiet periods.

Ad placeholder (rectangle)