isBlockhashValidRaw method
Future<JsonRpcContextResponse<bool> >
isBlockhashValidRaw(
- String blockhash, {
- 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));