@@ -42,7 +42,7 @@ import {
42
42
WethDepositEventBase ,
43
43
WethDepositEventLinea ,
44
44
WethDepositEventOptimism ,
45
- WethTransfetEventArbitrum ,
45
+ WethTransferEventArbitrum ,
46
46
} from "../../../web3/model/weth-events" ;
47
47
import { AppConfig } from "../../../configuration/configuration.service" ;
48
48
import { splitBlockRanges } from "../../utils" ;
@@ -287,7 +287,7 @@ export class BlocksEventsConsumer {
287
287
spokePoolAddresses . includes ( typedEvent . args . dst )
288
288
) ;
289
289
} else if ( chainId === ChainIds . arbitrum ) {
290
- const typedEvent = e as WethTransfetEventArbitrum ;
290
+ const typedEvent = e as WethTransferEventArbitrum ;
291
291
return (
292
292
e . logIndex < depositEvent . logIndex &&
293
293
typedEvent . args . value . eq ( depositEvent . args . inputAmount ) &&
@@ -663,7 +663,7 @@ export class BlocksEventsConsumer {
663
663
} else if ( chainId === ChainIds . arbitrum ) {
664
664
swapTokenValues = {
665
665
swapTokenId : undefined ,
666
- swapTokenAmount : ( wethEvent as WethTransfetEventArbitrum ) . args . value . toString ( ) ,
666
+ swapTokenAmount : ( wethEvent as WethTransferEventArbitrum ) . args . value . toString ( ) ,
667
667
swapTokenAddress : "native" ,
668
668
} ;
669
669
} else if ( chainId === ChainIds . linea ) {
0 commit comments