Skip to content

update minimum base fee design doc #308

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

Open
wants to merge 2 commits into
base: main
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
5 changes: 3 additions & 2 deletions protocol/minimum-base-fee.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Additionally,
- there is no additional data beyond these 10 bytes

Note that `extraData` has a maximum capacity of 32 bytes (to fit in the L1 beacon-chain `extraData` data-type) and its
format may be modified/extended by future upgrades.
format may be modified/extended by future upgrades. Furthermore, when decoding `extraData`, it makes a best-effort for every block in the chain's history, including before the minimum base fee was enabled.

## Minimum Base Fee in `PayloadAttributesV3`

Expand All @@ -64,7 +64,8 @@ PayloadAttributesV3: {
transactions: array of DATA
noTxPool: bool
gasLimit: QUANTITY or null
eip1559Params: DATA (9 bytes) or null
eip1559Params: DATA (8 bytes) or null
minBaseFeeLog2: u8
}
```

Expand Down