Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update EIP-7840: Add BaseFeeUpdateFraction #9240

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions EIPS/eip-7840.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
eip: 7840
title: Add blob schedule to EL config files
description: Include a per-fork schedule of max and target blob counts in client configuration files
description: Include a per-fork blob parameters in client configuration files
author: lightclient (@lightclient)
discussions-to: https://ethereum-magicians.org/t/add-blob-schedule-to-execution-client-configuration-files/22182
status: Draft
Expand All @@ -19,6 +19,7 @@ target blob count per block and max blob count per block for each fork.

- ensure there is a way to dynamically adjust the target and max blob counts per
block
- ensure there is a way to dynamically adjust the blob base fee update fraction
- avoid complex handshake over engine API

## Specification
Expand All @@ -30,11 +31,13 @@ following shape:
"blobSchedule": {
"cancun": {
"target": 3,
"max": 6
"max": 6,
"baseFeeUpdateFraction": 3338477
},
"prague": {
"target": 6,
"max": 9
"max": 9,
"baseFeeUpdateFraction": 5007716
}
}
```
Expand Down
Loading