Return the most recent block.
(self)
| 1071 | ) |
| 1072 | |
| 1073 | def block_number(self) -> BlockNumber: |
| 1074 | """Return the most recent block.""" |
| 1075 | return self.web3.eth.block_number |
| 1076 | |
| 1077 | def get_block(self, block_identifier: BlockIdentifier) -> BlockData: |
| 1078 | """Given a block number, query the chain to get its corresponding block hash""" |
no outgoing calls