Given a block number, query the chain to get its corresponding block hash
(self, block_identifier: BlockIdentifier)
| 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""" |
| 1079 | return self.web3.eth.getBlock(block_identifier) |
| 1080 | |
| 1081 | def _sync_nonce(self) -> None: |
| 1082 | self._available_nonce = discover_next_available_nonce( |