You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, SubmitRollupTransactionRequest allows for submission of a single transaction.
Ideally this could be refactored to SubmitRollupTransactionsRequest with Tx param refactored to Txs []Tx.
With introduction of Execution API, rollkit will receive slice of transactions from execution client, so it makes little sense to submit them one by one to sequencer. This could also simplify based sequencer implementation.,
The text was updated successfully, but these errors were encountered:
Implementation ideas
Currently,
SubmitRollupTransactionRequest
allows for submission of a single transaction.Ideally this could be refactored to
SubmitRollupTransactionsRequest
withTx
param refactored toTxs []Tx
.With introduction of Execution API, rollkit will receive slice of transactions from execution client, so it makes little sense to submit them one by one to sequencer. This could also simplify based sequencer implementation.,
The text was updated successfully, but these errors were encountered: