@@ -583,11 +583,12 @@ type RPCRollupBatch struct {
583
583
Hash common.Hash `json:"hash"`
584
584
ParentBatchHeader hexutil.Bytes `json:"parentBatchHeader"`
585
585
BlockContexts hexutil.Bytes `json:"blockContexts"`
586
- SkippedL1MessageBitmap hexutil.Bytes `json:"skippedL1MessageBitmap"`
587
586
CurrentSequencerSetBytes hexutil.Bytes `json:"currentSequencerSetBytes"`
588
587
PrevStateRoot common.Hash `json:"prevStateRoot"`
589
588
PostStateRoot common.Hash `json:"postStateRoot"`
590
589
WithdrawRoot common.Hash `json:"withdrawRoot"`
590
+ LastBlockNumber uint64 `json:"lastBlockNumber"`
591
+ NumL1Messages uint16 `json:"numL1Messages"`
591
592
592
593
Sidecar types.BlobTxSidecar `json:"sidecar"`
593
594
Signatures []RPCBatchSignature `json:"signatures"`
@@ -640,10 +641,11 @@ func (api *MorphAPI) GetRollupBatchByIndex(ctx context.Context, index uint64) (*
640
641
ParentBatchHeader : rollupBatch .ParentBatchHeader ,
641
642
BlockContexts : rollupBatch .BlockContexts ,
642
643
CurrentSequencerSetBytes : rollupBatch .CurrentSequencerSetBytes ,
643
- SkippedL1MessageBitmap : rollupBatch .SkippedL1MessageBitmap ,
644
644
PrevStateRoot : rollupBatch .PrevStateRoot ,
645
645
PostStateRoot : rollupBatch .PostStateRoot ,
646
646
WithdrawRoot : rollupBatch .WithdrawRoot ,
647
+ LastBlockNumber : rollupBatch .LastBlockNumber ,
648
+ NumL1Messages : rollupBatch .NumL1Messages ,
647
649
Sidecar : sidecar ,
648
650
Signatures : rpcSignatures ,
649
651
CollectedL1Fee : collectedL1Fee ,
0 commit comments