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

Add blob gas EIPs electra #61

Merged
merged 1 commit into from
Jan 23, 2025
Merged
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
14 changes: 14 additions & 0 deletions network-upgrades/pectra.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ Table below list differences if any.
| [EIP-7251](https://eips.ethereum.org/EIPS/eip-7251): Increase the MAX_EFFECTIVE_BALANCE | CL | Not modified
| [EIP-7549](https://eips.ethereum.org/EIPS/eip-7549): Move committee index outside Attestation | CL | Not modified
| [EIP-7685](https://eips.ethereum.org/EIPS/eip-7685): General purpose execution layer requests | Both | Not modified
| [EIP-7691](https://eips.ethereum.org/EIPS/eip-7691): Blob throughput increase | Both | Constants modified
| [EIP-7702](https://eips.ethereum.org/EIPS/eip-7702): Set EOA account code | EL | Not modified
| [EIP-7840](https://eips.ethereum.org/EIPS/eip-7840): Add blob schedule to EL config files | EL | Not modified
| [EIP-4844-pectra](https://eips.ethereum.org/EIPS/eip-4844): Collect Blob Gas Fee | CL | Added

\* See [Differences with Ethereum mainnet](#differences-with-ethereum-mainnet)
Expand All @@ -23,6 +25,18 @@ Note: The trusted setup required for [deneb's cryptography](https://github.com/e

## Differences with Ethereum mainnet

### [EIP-7691](https://eips.ethereum.org/EIPS/eip-7691)

The blob gas target and max is kept equal to the Dencun hard-fork.

| Constant | Value |
| ------------------------------------ | ----- |
| MAX_BLOBS_PER_BLOCK_ELECTRA | 2
| TARGET_BLOBS_PER_BLOCK_ELECTRA | 1
| MAX_BLOB_GAS_PER_BLOCK | 262144
| TARGET_BLOB_GAS_PER_BLOCK | 131072
| BLOB_BASE_FEE_UPDATE_FRACTION_PRAGUE | 5007716

### [EIP-4844-pectra](https://eips.ethereum.org/EIPS/eip-4844)

Extends the modified Gnosis EIP-4844 as defined in the [dencun spec](../dencun.md) document. Starting at the fork timestamp, the blob base fee is collected instead of burned.
Expand Down
Loading