Glossary / Gas fee
What is Gas fee?
The transaction fee paid to compensate network validators for processing a transaction on a blockchain.
Last updated June 12, 2026
A gas fee is the amount paid to a blockchain network’s validators (or miners) to process and confirm a transaction. The term is most commonly associated with Ethereum and EVM-compatible networks, but every programmable blockchain charges something analogous.
How gas fees are calculated
On Ethereum, gas fees are determined by two factors:
- Gas used — how much computational work the transaction requires. A simple ETH transfer uses 21,000 gas; a complex smart contract interaction might use hundreds of thousands.
- Gas price — how much you pay per unit of gas, denominated in gwei (1 gwei = 0.000000001 ETH). Gas price fluctuates with network demand.
Total fee = gas used × gas price.
Why gas fees matter for payments
Gas fees are a real cost when paying with crypto. A $5 coffee in ETH on Ethereum mainnet might cost an extra $1-3 in gas during busy periods, which makes small purchases uneconomical. This is the main reason:
- Most merchants default to Layer 2 networks (Base, Polygon, Arbitrum) where fees are fractions of a cent.
- Many merchants prefer stablecoins over ETH for the same payment, since stablecoin transfers can be batched or routed through cheaper L2s.
- The Lightning Network solves this for Bitcoin — Lightning fees are measured in satoshis (fractions of a cent).
How to minimize gas fees
- Pay on Layer 2 networks (Base, Arbitrum, Optimism, Polygon) rather than Ethereum mainnet.
- Time your transactions for low-activity periods (weekends, late nights in the US).
- For larger transactions, use a wallet that supports EIP-1559, which lets you set a priority fee to control how quickly your transaction is processed.
- Batch multiple operations into a single transaction where possible.
For most everyday purchases, gas should be a non-issue if the merchant has set up payments correctly on a Layer 2.