isBlockhashValidRaw method

Future<JsonRpcContextResponse<bool>> isBlockhashValidRaw(
  1. String blockhash, {
  2. IsBlockhashValidConfig? config,
})

Returns whether a blockhash (base-58) is still valid or not.

Implementation

Future<JsonRpcContextResponse<bool>> isBlockhashValidRaw(
  final String blockhash, {
  final IsBlockhashValidConfig? config,
}) =>
    send(IsBlockhashValid(blockhash, config: config));