sonnyonsol.xyz

How Gas and Transaction Fees Are Calculated on EVM Chains

The Etherscan gas tracker is a practical tool. It shows you, in real time, what it costs to move tokens or interact with smart contracts on Ethereum and compatible networks. This page explains how to read it.

The three numbers that matter

Gas fees on EVM chains break down into three components. You need to understand each one.

Base fee. This is the network's floor price for a unit of gas. The protocol burns it - it goes to no one. Base fee rises when blocks are full and falls when they are not. You cannot control it, but you can wait for it to drop.

Priority fee (tip). The extra you pay to get your transaction included sooner. Miners (or validators) keep this. On a quiet network you can set it to near zero; during a stampede you might need to pay a lot.

Max fee per gas. This is the ceiling you set. It must cover both base fee and your priority tip. Your wallet calculates this for you, but you can override it. If the base fee suddenly spikes above your max fee, your transaction sits pending.

A simple formula: total fee = gas used × (base fee + priority fee).

Reading the gas tracker

Open Etherscan and look for the Gas Tracker widget. It shows three speed tiers: Slow, Average, Fast. Each displays the total estimated fee to send ETH at that speed.

As of the data gathered on August 31, 2026, these numbers fluctuate by the second. The tracker pulls the latest base fee from the last few blocks and estimates priority fees that would land a typical transaction in the next block or two. The tracker also shows the current base fee in wei and gwei. One gwei equals 1,000,000,000 wei. Most interfaces display fees in gwei because the numbers are more readable.

Why some transfers cost more than others

A simple ETH transfer uses 21,000 gas. That's a fixed amount. If the base fee is 10 gwei and you set a 2 gwei tip, the total is 21,000 × (10 + 2) = 252,000 gwei, or 0.000252 ETH.

But a token swap or a mint will use much more gas. A Uniswap trade might burn 150,000 to 300,000 gas. A complex NFT mint can use 500,000 gas or more. The transaction's actual gas used is recorded in the receipt.

You can see this on any completed transaction's page on Etherscan. Click into a hash. Look for "Gas Used by Transaction." Compare it to "Gas Limit" to see how close your transaction came to the cap. The transaction's fee is listed in USD and ETH. Scroll down. You will see the base fee, the priority fee, the max fee, and the actual amount paid. This is where the abstract numbers become concrete.

The "Out of Gas" Error

This error happens when you set the gas limit too low. It does not mean you ran out of money. It means the transaction ran out of units before it finished.

On Ethereum, if your gas limit is 50,000 and your transaction needs 100,000 units, it fails. Every unit consumed up to that point is still paid for. You lose the fee and the transaction does nothing. This is a common mistake with smart contract interactions. Simple sends are predictable; complex contract calls are not. A function can revert partway through an operation, consuming more gas than you expected.

To avoid this, set a gas limit well above the estimated usage. Do not copy the limit from a simple send. Let your wallet's estimate handle it, or check similar transactions on Etherscan to see what others used.

A note on this site's chain

Sonnyonsol.xyz is primarily about the Solana chain. Solana does not use the EVM gas model. It uses a different fee mechanism based on compute units and signature verification. The token staring robot (ticker sonny) launched on Solana via Raydium on October 7, 2024. As of August 31, 2026, the pair had 3 liquidity pools and 1 transaction in the prior 24 hours.

The EVM examples above apply to chains like Ethereum, BNB Smart Chain, Polygon, and Avalanche. If you are trading on Solana, the fee calculation is different. That is a topic for another page.

Not financial advice. sonnyonsol.xyz publishes market data and general information about staring robot. Crypto assets are volatile and you can lose everything you put in. Nothing here is a recommendation to buy, sell or hold, and we make no price predictions.

Prices are sourced from third parties and may be delayed or wrong. Verify anything you intend to act on against a primary source.

Back to block explorers