Skip to content

Commit

Permalink
Set MAX_BLOBS_PER_BLOCK to 1/2
Browse files Browse the repository at this point in the history
  • Loading branch information
dapplion committed Oct 28, 2024
1 parent 2ef3453 commit 1cdd76c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions beacon_chain.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ ETHEREUM_SPEC_COMMIT: v1.5.0-alpha.8
| `ETH1_FOLLOW_DISTANCE` | `2048` | `1024` |
| `MAX_PER_EPOCH_ACTIVATION_CHURN_LIMIT` | `8` | `2` | See https://github.com/gnosischain/specs/pull/22 for rationale |
| `MIN_EPOCHS_FOR_BLOB_SIDECARS_REQUESTS` | `4096` | `16384` | Increased to match the expected 2 weeks rollups consider today for Ethereum mainnet. The total disk requirement roughly equivalent to Ethereum mainnet since epochs are 4.8x faster |
| `MAX_BLOBS_PER_BLOCK` | `6` | `2` | See [/network-upgrades/dencun.md#eip-4844](/network-upgrades/dencun.md#eip-4844) for rationale on choosing 1/2 for the Dencun hard fork |

4 changes: 2 additions & 2 deletions consensus/config/gnosis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ MAX_REQUEST_BLOB_SIDECARS: 768
MIN_EPOCHS_FOR_BLOB_SIDECARS_REQUESTS: 16384
# `6`
BLOB_SIDECAR_SUBNET_COUNT: 6
## `uint64(6)`
MAX_BLOBS_PER_BLOCK: 6
## `uint64(2)`
MAX_BLOBS_PER_BLOCK: 2

# EIP7594
NUMBER_OF_COLUMNS: 128
Expand Down

0 comments on commit 1cdd76c

Please sign in to comment.