getBlocksRaw method

Future<JsonRpcSuccessResponse<List<u64>>> getBlocksRaw(
  1. u64 startSlot, {
  2. u64? endSlot,
  3. GetBlocksConfig? config,
})
inherited

Returns a list of confirmed blocks between two slots.

Implementation

Future<JsonRpcSuccessResponse<List<u64>>> getBlocksRaw(
  final u64 startSlot, {
  final u64? endSlot,
  final GetBlocksConfig? config,
}) => send(GetBlocks(startSlot, endSlot: endSlot, config: config));