getBlockHeightRaw method

Future<JsonRpcSuccessResponse<u64>> getBlockHeightRaw({
  1. GetBlockHeightConfig? config,
})

Returns the current block height of the node.

Implementation

Future<JsonRpcSuccessResponse<u64>> getBlockHeightRaw({
  final GetBlockHeightConfig? config,
}) =>
    send(GetBlockHeight(config: config));