Gets the current block number.
Future<BigInt> getBlockNumber() async { final result = await call<String>('eth_blockNumber', []); return BigInt.parse(result.substring(2), radix: 16); }