SOLID STATE PRESS
← Back to catalog
Gas Fees and EIP-1559 cover
Coming soon
Coming soon to Amazon
This title is in our publishing queue.
Browse available titles
Cryptocurrency & Blockchain

Gas Fees and EIP-1559

Base Fees, Priority Tips, and the Burn That Reshaped Ethereum — A TLDR Primer

If you've ever tried to send ETH and watched the estimated fee jump $40 in ten seconds — or stared at a wallet screen showing "base fee," "priority tip," and "max fee" with no idea what any of it means — this guide is for you.

**Gas Fees and EIP-1559** covers exactly what you need to understand how Ethereum prices computation, why the network redesigned its fee market in August 2021, and how that redesign plays out block by block. You'll learn what gas actually is (a metering unit, not a currency), how the old first-price auction system made fee estimation a guessing game, and how EIP-1559 replaced it with a transparent base-fee algorithm that adjusts automatically with demand. The guide walks through the math of that algorithm with worked numbers, explains why the base fee is burned rather than paid to validators, and unpacks the ongoing debate around ETH's "ultrasound money" narrative. A final section translates all of it into practical advice: how to read a wallet fee screen, when to time a transaction, and why layer-2 networks exist as a scaling answer.

This is a TLDR primer — 15-ish focused pages, no filler, written for high school and early college students who want a solid conceptual foundation in ethereum blockchain basics without wading through whitepapers. It also works for parents helping their kids prep for fintech or econ discussions, and for anyone exploring how crypto transaction fees actually function under the hood.

Pick it up, read it in an hour, and know what you're looking at the next time a wallet asks you to set a gas limit.

What you'll learn
  • Explain what gas is, why it exists, and how gas units differ from gas prices
  • Compute a transaction's total cost given gas limit, base fee, and priority tip
  • Describe how EIP-1559's base fee adjusts based on block fullness
  • Distinguish the pre-1559 first-price auction from the post-1559 fee market
  • Understand the economic effects of the ETH burn and the concept of 'ultrasound money'
  • Read a wallet's fee estimate and pick a reasonable max fee and tip
What's inside
  1. 1. What Gas Is and Why Ethereum Charges for It
    Introduces gas as a metering unit for computation on Ethereum and explains why every operation has a price.
  2. 2. The Pre-1559 World: First-Price Auctions and Their Problems
    Describes how gas pricing worked before August 2021, why fee estimation was painful, and what motivated the redesign.
  3. 3. How EIP-1559 Works: Base Fee, Priority Tip, and Max Fee
    Breaks down the three-part fee structure introduced by EIP-1559 and how a wallet builds a transaction under it.
  4. 4. The Base Fee Algorithm: How Blocks Adjust the Price
    Walks through the per-block formula that raises or lowers the base fee based on demand, with worked numerical examples.
  5. 5. The Burn, ETH Issuance, and 'Ultrasound Money'
    Explains why the base fee is burned rather than paid to validators, and the economic debate around it.
  6. 6. Using It in Practice: Reading Wallets and Saving on Fees
    Practical guidance on interpreting wallet fee screens, timing transactions, and understanding L2s as a scaling answer.
Published by Solid State Press
Gas Fees and EIP-1559 cover
TLDR STUDY GUIDES

Gas Fees and EIP-1559

Base Fees, Priority Tips, and the Burn That Reshaped Ethereum — A TLDR Primer
Solid State Press

Contents

  1. 1 What Gas Is and Why Ethereum Charges for It
  2. 2 The Pre-1559 World: First-Price Auctions and Their Problems
  3. 3 How EIP-1559 Works: Base Fee, Priority Tip, and Max Fee
  4. 4 The Base Fee Algorithm: How Blocks Adjust the Price
  5. 5 The Burn, ETH Issuance, and 'Ultrasound Money'
  6. 6 Using It in Practice: Reading Wallets and Saving on Fees
Chapter 1

What Gas Is and Why Ethereum Charges for It

Every transaction on Ethereum asks the network's computers to do work — arithmetic, memory lookups, cryptographic checks, storage writes. Gas is the unit that measures how much of that work a given transaction requires. Think of it the way a car measures fuel consumption in miles-per-gallon: you need a common unit to compare the cost of different trips, regardless of which car is doing the driving or what the price of gasoline is that day. Gas is that common unit for Ethereum computation.

The machine that actually runs this computation is the Ethereum Virtual Machine, or EVM — a sandboxed computing environment that every node on the Ethereum network runs identically. When you send ETH to a friend, the EVM executes a simple transfer. When you interact with a decentralized exchange, the EVM executes dozens of arithmetic operations, table lookups, and storage updates. Each individual operation the EVM can perform has a fixed gas cost baked into the protocol. A basic addition costs 3 gas. Reading a value from contract storage costs 100 gas (or 2,100 if it's being accessed for the first time in a transaction). Writing a new value to storage costs 20,000 gas. These numbers don't change based on network congestion — they are constants defined in the Ethereum specification.

A gas unit (often just called "gas" on its own) is therefore dimensionless. It counts work, not money. Gas units become money only when multiplied by a gas price — the amount of ETH the sender agrees to pay per unit of gas consumed. Gas price is almost always denominated in gwei, which is one billionth of one ETH ($1 \text{ gwei} = 10^{-9} \text{ ETH}$). Using gwei keeps the numbers readable: saying "12 gwei per gas" is cleaner than "0.000000012 ETH per gas."

The total fee a transaction pays is then:

$\text{Fee (in ETH)} = \text{gas used} \times \text{gas price (in ETH)}$

or equivalently, if you're working in gwei:

$\text{Fee (in gwei)} = \text{gas used} \times \text{gas price (in gwei)}$

About This Book

If you're exploring Ethereum blockchain basics for students in a fintech or economics course, studying for a blockchain certification, or simply trying to make sense of why a simple token swap sometimes costs more than the asset itself, this book is for you. It's also written for developers new to Solidity, crypto investors tired of guessing at wallet settings, and parents or tutors helping someone prep for a blockchain concepts unit.

This is a crypto transaction fees study guide built around one question: how does Ethereum actually price computation? You'll work through how Ethereum gas fees work, get EIP-1559 explained for beginners, and see exactly how base fee, priority tip, and max fee interact block by block. Understanding the ETH burn mechanism and its "ultrasound money" implications is covered too. Think of it as a cryptocurrency concepts quick reference guide — concise, no filler, ruthless cuts only.

Read straight through in order, work every numbered example as you hit it, then tackle the problem set at the end to confirm you've got it.

Keep reading

You've read the first half of Chapter 1. The complete book covers 6 chapters in roughly fifteen pages — readable in one sitting.

Coming soon to Amazon