@@ -69,7 +69,7 @@ export const handleEventsSequencerBatchAppended: EventHandlerSet<
6969 submitter : l1Transaction . from ,
7070 l1TransactionHash : l1Transaction . hash ,
7171 l1TransactionData : l1Transaction . data ,
72- gasLimit : SEQUENCER_GAS_LIMIT ,
72+ gasLimit : ` ${ SEQUENCER_GAS_LIMIT } ` ,
7373
7474 prevTotalElements : batchSubmissionEvent . args . _prevTotalElements ,
7575 batchIndex : batchSubmissionEvent . args . _batchIndex ,
@@ -115,7 +115,7 @@ export const handleEventsSequencerBatchAppended: EventHandlerSet<
115115 batchIndex : extraData . batchIndex . toNumber ( ) ,
116116 blockNumber : BigNumber . from ( context . blockNumber ) . toNumber ( ) ,
117117 timestamp : BigNumber . from ( context . timestamp ) . toNumber ( ) ,
118- gasLimit : BigNumber . from ( extraData . gasLimit ) . toNumber ( ) ,
118+ gasLimit : BigNumber . from ( extraData . gasLimit ) . toString ( ) ,
119119 target : SEQUENCER_ENTRYPOINT_ADDRESS ,
120120 origin : null ,
121121 data : toHexString ( sequencerTransaction ) ,
@@ -147,7 +147,7 @@ export const handleEventsSequencerBatchAppended: EventHandlerSet<
147147 batchIndex : extraData . batchIndex . toNumber ( ) ,
148148 blockNumber : BigNumber . from ( 0 ) . toNumber ( ) ,
149149 timestamp : BigNumber . from ( 0 ) . toNumber ( ) ,
150- gasLimit : BigNumber . from ( 0 ) . toNumber ( ) ,
150+ gasLimit : BigNumber . from ( 0 ) . toString ( ) ,
151151 target : constants . AddressZero ,
152152 origin : constants . AddressZero ,
153153 data : '0x' ,
0 commit comments