Skip to content

Commit

Permalink
Increase MaxFrameLen to 16 MB
Browse files Browse the repository at this point in the history
EigenDA current limit for Holesky (their documentation is currently outdated but the limit seems to be set to 16 MB based on the updated tests from [this PR](Layr-Labs/eigenda-proxy#100)).
  • Loading branch information
jcortejoso authored Sep 17, 2024
1 parent 6e1861d commit b6b34f1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions op-node/rollup/derive/frame.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ import (
"io"
)

// Frames cannot be larger than 1 MB.
// For EthDA, frames cannot be larger than 1 MB.
// Data transactions that carry frames are generally not larger than 128 KB due to L1 network conditions,
// but we leave space to grow larger anyway (gas limit allows for more data).
const MaxFrameLen = 1_000_000
// For AltDA, frames size can be larger. Setting to 16 MB as current blob limit for EigenDA.
const MaxFrameLen = 16_000_000

// Data Format
//
Expand Down

0 comments on commit b6b34f1

Please sign in to comment.