This EIP introduces Blob Parameter Only (BPO) Hardforks, a lightweight mechanism for incrementally scaling Ethereum’s blob capacity through targeted hard forks that modify only blob-related parameters: blob target
, blob limit
, and baseFeeUpdateFraction
. Unlike traditional hard forks, which require extensive coordination and introduce broader protocol changes, BPO forks enable rapid, low-overhead scaling of blob capacity in response to real-world demand and network conditions.
Ethereum's scaling strategy relies on Layer 2 (L2) solutions for transaction execution while using Ethereum as a data availability (DA) layer. However, the demand for DA has increased rapidly, and the current approach of only modifying blob parameters in large, infrequent hard forks is not agile enough to keep up with L2 growth.
The key motivations for BPO forks are:
BPO forks allow for more frequent, safer capacity increases.
Reduced Operational Overhead
By isolating blob parameter changes, BPO forks reduce the complexity of upgrades.
Enhanced Stability with New Scaling Technologies
Rather than forcing core developers to accept a suboptimal tradeoff between stability and capacity, BPO forks allow developers to safely increase parameters after observing mainnet performance and stability.
Predictable Upgrades for Builders
BPO forks are a special class of hard fork which only modifies any of the following blob-related parameters:
blob_target
): The expected number of blobs per block.blob_limit
): The maximum number of blobs per block.baseFeeUpdateFraction
): Determines how blob gas pricing adjusts per block.To facilitate these changes on the execution layer, the blobSchedule
object specified in EIP-7840 is extended to allow for an arbitrary number of block timestamps at which these parameters MAY change.
"blobSchedule": {
"cancun": {
"target": 3,
"max": 6,
"baseFeeUpdateFraction": 3338477
},
"prague": {
"target": 6,
"max": 9,
"baseFeeUpdateFraction": 5007716
},
"1740693335": {
"target": 24,
"max": 48,
"baseFeeUpdateFraction": 5007716
},
"1743285335": {
"target": 36,
"max": 56,
"baseFeeUpdateFraction": 5007716
}
}
On the consensus layer, a new parameter is added to the configuration:
BLOB_SCHEDULE:
- EPOCH: 348618
MAX_BLOBS_PER_BLOCK: 24
- EPOCH: 355368
MAX_BLOBS_PER_BLOCK: 56
The parameters and schedules above are purely illustrative. Actual values and schedules are beyond the scope of this specification.
blobSchedule
MUST align with the start of the epoch specified in the consensus layer configurationmax
field in blobSchedule
MUST equal the MAX_BLOBS_PER_BLOCK
value in the consensus layer configurationFull hard forks require extensive coordination, testing, and implementation changes beyond parameter adjustments. For example, in Lighthouse, a typical hard fork implementation requires thousands of lines of boilerplate before any protocol changes occur. BPO forks streamline this process by avoiding the need for this boilerplate code.
Allowing blob parameters to be configured externally enables rapid experimentation, testing, and adjustments without requiring code changes across client implementations. Testing teams can investigate different parameters with minimal involvement from client implementers.
BPO forks introduce no backwards compatibility concerns.
No security risks have been identified.
Copyright and related rights waived via CC0.