--buffer
flag for forge script
to adjust broadcast buffer size
#6669
Labels
--buffer
flag for forge script
to adjust broadcast buffer size
#6669
Component
Forge
Describe the feature you would like
add a
--buffer
flag forforge script
to adjust broadcast buffer size – transactions are broadcasted in hardcoded batches of 100, introduced in #1824. This is fine for most chains, but is still too big for some (eg Optimism Sepolia).--slow
works, but can be excruciatingly slow with big scripts. Proposing--buffer
as an optional flag (defaults to100
) that customises this broadcast buffer size. This would enable somewhere between--slow
andbuffer=100
and bigger buffer sizes for chains that support itAdditional context
working on a large testnet deployment on Optimism Sepolia (~2000 txes) and getting rate limited very quickly. Running a personal archive node, tracked down the issue to the central sequencer rate limiting after sending about 20-30 transactions at once
--slow
takes over 12h to run this script TTThe text was updated successfully, but these errors were encountered: