Returns the number of the most recent block on the chain.
Future<int> getBlockNumber() { return _makeRPCCall<String>('eth_blockNumber') .then((s) => hexToInt(s).toInt()); }