github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/x/evm/watcher/infura.go (about)

     1  package watcher
     2  
     3  type InfuraKeeper interface {
     4  	OnSaveTransactionReceipt(TransactionReceipt)
     5  	OnSaveBlock(Block)
     6  	OnSaveTransaction(Transaction)
     7  	OnSaveContractCode(address string, code []byte)
     8  }