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