Skip to content
On this page
  1. Key Takeaways
  2. What the EIP-1559 Fee Burn Is
  3. The Intuition
  4. How It Works
  5. Worked Example
  6. Common Mistakes
  7. Frequently Asked Questions
  8. Sources
  9. Disclaimer
← All concepts
Crypto & DeFiAdvanced5 min read

EIP-1559: The Base Fee Burn on Ethereum

EIP-1559 changed how Ethereum charges for transactions. It introduced a base fee that the protocol sets and then destroys, so the EIP-1559 fee burn permanently removes that portion of each fee from the ETH supply instead of paying it to validators.

Key Takeaways

  • EIP-1559 splits the gas fee into a burned base fee and a priority fee paid to validators.
  • The base fee adjusts by at most 12.5% per block based on the prior block's fullness.
  • The common mistake is setting the max fee too low, which leaves a transaction stuck.
  • Burning the base fee can make ETH deflationary when network demand is high.

Key Takeaways

  • EIP-1559 splits the gas fee into a burned base fee and a priority fee paid to validators.
  • The base fee adjusts by at most 12.5% per block based on the prior block's fullness.
  • The common mistake is setting the max fee too low, which leaves a transaction stuck.
  • Burning the base fee can make ETH deflationary when network demand is high.

What the EIP-1559 Fee Burn Is

Before EIP-1559, users bid a single gas price in a blind auction, and miners kept the whole fee. That made fees hard to estimate and easy to overpay. EIP-1559, live since the August 2021 London upgrade, replaced it with a structured fee.

Now each transaction has two parts. The base fee is set by the protocol for the whole block and is burned. The priority fee, or tip, goes to the validator who includes the transaction. Users also set a max fee, the most they are willing to pay in total.

The Intuition

The old auction was wasteful because everyone guessed at the right price. EIP-1559 makes the base fee a predictable number that the protocol calculates from recent demand, so wallets can estimate fees reliably.

Burning the base fee serves two goals. It removes the incentive for validators to inflate fees, since they no longer keep the base fee. It also ties ETH supply to network usage: the busier the network, the more ETH is burned. The tip still rewards validators for including your transaction promptly.

How It Works

Ethereum targets a block half full and allows blocks up to twice that target, an elasticity multiplier of 2. The base fee responds to how full the previous block was relative to the target.

If the prior block was above target -> base fee rises
If the prior block was below target -> base fee falls
Max change per block = 12.5%   (denominator of 8)

Total fee = (base fee + priority fee) x gas used
Base fee is burned. Priority fee goes to the validator.

The base fee can move by at most 12.5% from one block to the next, so it adjusts smoothly rather than spiking unpredictably. You set a max fee per gas as a ceiling and a priority fee as your tip. If the base fee plus tip comes in under your max fee, you are refunded the difference. If the base fee alone exceeds your max fee, your transaction waits until the base fee falls.

Because the change is capped per block, the base fee cannot jump from low to extreme in a single step. But the cap is multiplicative, so a sustained run of full blocks compounds it quickly. A handful of consecutive full blocks can lift the base fee far above its starting point, which is the protocol's way of pricing congestion: the longer demand stays high, the more expensive it gets to keep using the network at that moment.

Worked Example

Suppose the current base fee is 20 gwei and you want fast inclusion, so you set a priority fee of 2 gwei and a max fee of 30 gwei. Your transaction pays 22 gwei per gas: 20 gwei burned plus 2 gwei to the validator. Because 22 is below your 30 max, you are refunded the unused headroom.

Now suppose the network gets busy and several blocks run above target. The base fee climbs by up to 12.5% per block, from 20 gwei toward 25, then higher. If it rises above your 30 gwei max fee, your transaction stalls until demand cools and the base fee drops back under your ceiling. The burned base fee in this period permanently leaves circulation, which is how heavy usage can shrink ETH supply.

Common Mistakes

  1. Setting the max fee too low. If the base fee rises above your max fee, your transaction sits unconfirmed. In volatile periods, a tight ceiling can strand it for a long time.

  2. Confusing the tip with the base fee. Only the tip goes to validators. Raising the tip speeds inclusion, but the base fee is fixed for the block and burned regardless.

  3. Assuming EIP-1559 lowers fees. It makes fees predictable, not cheap. When demand is high, the base fee still climbs. Layer 2 rollups, not EIP-1559, are the main route to lower costs.

  4. Thinking the burn guarantees deflation. ETH supply falls only when the burned base fee outpaces new issuance. In quiet periods, issuance can exceed the burn and supply still grows.

  5. Overpaying out of habit. The refund of unused max fee means you do not need to bid aggressively. A reasonable max fee with a modest tip usually confirms without waste.

Frequently Asked Questions

What is the EIP-1559 fee burn in simple terms? EIP-1559 splits each Ethereum transaction fee into a base fee and a tip. The base fee is destroyed by the protocol, and only the tip goes to the validator who includes your transaction.

How does the EIP-1559 fee burn affect investment decisions? By tying ETH burned to network demand, it can reduce ETH supply during busy periods. That supply effect is one factor some investors weigh, though it does not by itself determine price.

What is a real-world example of the EIP-1559 fee burn? If the base fee is 20 gwei and you tip 2 gwei, you pay 22 gwei per gas: 20 burned, 2 to the validator. During congestion, the base fee can rise by up to 12.5% per block, burning more ETH.

How can investors use EIP-1559 effectively? Set a max fee with enough headroom above the current base fee, add a modest tip for timely inclusion, and rely on the refund of unused max fee. As a rule, do not set the ceiling at the current base fee in volatile markets.

How is the base fee different from the priority fee? The base fee is set by the protocol per block and is burned, leaving circulation forever. The priority fee is your optional tip that goes to the validator to encourage faster inclusion.

Sources

  1. Ethereum.org. "Gas and Fees." https://ethereum.org/en/developers/docs/gas/
  2. Ethereum Improvement Proposals. "EIP-1559: Fee market change for ETH 1.0 chain." https://eips.ethereum.org/EIPS/eip-1559
  3. Ethereum.org. "Layer 2." https://ethereum.org/en/layer-2/
  4. Ethereum.org. "Danksharding and Proto-Danksharding (EIP-4844)." https://ethereum.org/en/roadmap/danksharding/

Disclaimer

This article is educational content only and is not financial advice. Nothing here is a recommendation to buy, sell, or hold any security. Consult a licensed advisor before making investment decisions.

The IWP Substack

You understand the concept. Now see it applied.

The Investing With Purpose Substack turns ideas like this into research and risk-managed trade plans on real stocks, updated every week.

Read on Substack (opens in a new tab)

Related concepts