Base Fee
Pronunciation: BAYS FEE
Also known as: Protocol Base Fee, Minimum Gas Base Fee
Definition
A base fee is the protocol-determined minimum fee per unit of execution or data that a transaction must pay to be eligible for inclusion under a fee-market rule. On Ethereum after EIP-1559, the execution base fee rises or falls according to recent block usage and is burned rather than paid to the validator. It is separate from any priority fee added to encourage faster inclusion.
Overview
A Base Fee is the reserve price established by a blockchain protocol for consuming a defined resource. On Ethereum, each block carries an execution base fee measured per unit of gas. A transaction must offer at least that amount to be valid for inclusion, while a separate priority fee can reward the validator.
The adjustment rule introduced by EIP-1559 compares the previous block’s gas use with a target. When usage exceeds the target, the next base fee increases; when usage falls below it, the fee decreases. This creates an automatic response to Blockspace Demand instead of relying only on users to guess one competitive gas price.
The base fee is not the complete transaction cost. The sender pays gas used multiplied by the effective fee per gas, subject to the transaction’s maximum settings. Unused gas under the Gas Limit is not normally charged, but failed execution can still consume gas. The validator receives the priority portion, while Ethereum burns the execution base fee.
Applications should read the current protocol value from a trusted node and estimate how it may change before inclusion. A transaction valid at submission can become temporarily underpriced if demand rises and its maximum fee is too low. Wallets therefore present a maximum fee and a priority fee rather than treating the current base fee as a fixed quotation.
Other networks can use different base-fee designs, including separate markets for data or storage. With EIP-4844, blob data has its own fee mechanism rather than sharing the ordinary execution-gas price. Payment systems must identify which resource and network a quoted base fee applies to before estimating cost.
Key Takeaway
A base fee is the protocol-set minimum price for a network resource, while the actual transaction cost also depends on resource use, priority fees, and inclusion timing.
Sources
- EIP-1559: Fee Market Change for Ethereum — Ethereum Improvement Proposals (2026-08-02)
- Ethereum.org Documentation: Gas and Fees — Ethereum.org (2026-08-02)
- EIP-4844: Shard Blob Transactions — Ethereum Improvement Proposals (2026-08-02)