Abstract

Ethereum Improvement Proposal 1559 (EIP-1559) redefined the transaction fee market on the Ethereum blockchain. Introduced in the London Hard Fork (August 2021), it replaced the legacy auction-based gas model with a dynamic base fee + tip mechanism. This article explores how EIP-1559 works, its economic effects on ETH supply, and its role in the broader evolution toward Ethereum’s deflationary and scalable future.

EIP 1559

Conceptual Background

Before EIP-1559, Ethereum used a first-price auction for transaction inclusion. Users submitted bids (gas prices), and miners selected the highest-paying transactions. This model caused:

EIP-1559 introduced predictable pricing and a fee burn model. Instead of pure competition, users pay a base fee determined by network demand plus an optional tip to miners for priority inclusion.

Mechanism of EIP-1559

The proposal defines a new structure for transaction fees:

Total Transaction Fee = Base Fee + Priority Fee (Tip)

Mathematical Model

If gas_used > gas_target, then:

new_base_fee = old_base_fee * (1 + (gas_used - gas_target) / gas_target / 8)

If gas_used < gas_target, then:

new_base_fee = old_base_fee * (1 - (gas_target - gas_used) / gas_target / 8)

This ensures gradual adjustment rather than abrupt changes.

Simplified Workflow (Mermaid Diagram)

eip-1559-fee-mechanism-flow

Step-by-Step Example

  1. Network Congestion:
    The base fee rises automatically as demand grows.

  2. User Sends Transaction:
    Alice specifies a max fee of 100 gwei and a tip of 2 gwei.

  3. Network Base Fee:
    Assume 90 gwei.

    • 90 gwei is burned.

    • 2 gwei goes to the validator.

    • 8 gwei refunded to Alice (100 – 90 – 2).

  4. Next Block Adjustment:
    If usage remains high, the base fee increases again.

This structure prevents bidding wars and stabilizes network costs.

Economic Impact: ETH Burn and Deflation

EIP-1559 introduced permanent ETH burning, reducing supply over time.

Key effects:

Data Snapshot (as of 2025):

Use Cases and Scenarios

Limitations and Considerations

Common Fixes and Troubleshooting Tips

IssueCauseFix
Transaction StuckBase fee rose above maxFeePerGasIncrease max fee and resubmit
Overpaying GasUser sets too high maxFeePerGasUse the eth_maxPriorityFeePerGas API estimate
No Refund ReceivedWallet not updatedUpgrade to EIP-1559-compatible client (e.g., MetaMask v10+)

FAQs

Q1. Does EIP-1559 make ETH deflationary? Yes. When network activity is high, more ETH is burned than issued, reducing total supply.

Q2. Do validators still earn block rewards? Yes. They receive priority tips and staking rewards, but not the burned base fee.

Q3. Does EIP-1559 work on other chains? Yes. Many EVM-compatible networks (e.g., Polygon, Binance Smart Chain) adopted similar mechanisms.

Q4. How do I estimate gas now? Use updated RPC endpoints (eth_feeHistory, eth_maxPriorityFeePerGas) for real-time fee prediction.

Q5. What happens if gas demand suddenly drops? The base fee decreases gradually, avoiding dramatic price swings.

References

Conclusion

EIP-1559 marked a turning point in Ethereum’s economic design. By burning base fees and stabilizing transaction costs, it aligned user experience with long-term network sustainability. Combined with Proof of Stake, it positioned Ethereum as a deflationary, predictable, and environmentally efficient blockchain.

EIP-1559 isn’t just a technical change—it redefined Ethereum’s monetary policy, ensuring every transaction contributes to ETH’s scarcity and stability.