Skip to content
Closed
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
4 changes: 3 additions & 1 deletion op-alt-da/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ 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.
// For EigenDA, batch size is not a limiter for Data Availability Challenge contract,
// so this is set to 16MB (current EigenDA batch size limit)
// This value can only be changed in a hard fork.
const MaxInputSize = 130672
const MaxInputSize = 16_000_000

// TxDataVersion1 is the version number for batcher transactions containing
// altDA commitments. It should not collide with DerivationVersion which is still
Expand Down
Loading