getBlockRaw method

Future<JsonRpcSuccessResponse<Block?>> getBlockRaw(
  1. u64 slot, {
  2. GetBlockConfig? config,
})

Returns identity and transaction information about a confirmed block at slot in the ledger.

Implementation

Future<JsonRpcSuccessResponse<Block?>> getBlockRaw(
  final u64 slot, {
  final GetBlockConfig? config,
}) =>
    send(GetBlock(slot, config: config));