Skip to content
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 @@ -52,7 +52,7 @@ format may be modified/extended by future upgrades.
## Minimum Base Fee in `PayloadAttributesV3`

The [`PayloadAttributesV3`](https://github.com/ethereum-optimism/specs/blob/a773587fca6756f8468164613daa79fcee7bbbe4/specs/protocol/exec-engine.md#extended-payloadattributesv3)
type is modified to add an extra byte for `minBaseFeeLog2` to the `eip1559Params` field:
type is modified to add a separate field for `minBaseFeeLog2`; `eip1559Params` remains 8 bytes:

```rs
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: QUANTITY or null
}
```

Expand Down