Skip to content

Commit

Permalink
support eigenda blob size up to 16 Mib (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
claymega authored Dec 12, 2024
1 parent 541b268 commit 1dbd8fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion op-alt-da/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package altda
// MaxInputSize ensures the canonical chain cannot include input batches too large to
// challenge in the Data Availability Challenge contract. Value in number of bytes.
// This value can only be changed in a hard fork.
const MaxInputSize = 4000000
const MaxInputSize = 16000000

// TxDataVersion1 is the version number for batcher transactions containing
// altDA commitments. It should not collide with DerivationVersion which is still
Expand Down
2 changes: 1 addition & 1 deletion op-node/rollup/derive/frame.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
// 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 = 4_000_000
const MaxFrameLen = 16_000_000

// Data Format
//
Expand Down

0 comments on commit 1dbd8fd

Please sign in to comment.