getTransactionCountRaw method

Future<JsonRpcSuccessResponse<u64>> getTransactionCountRaw({
  1. GetTransactionCountConfig? config,
})

Returns the current Transaction count from the ledger.

Implementation

Future<JsonRpcSuccessResponse<u64>> getTransactionCountRaw({
  final GetTransactionCountConfig? config,
}) =>
    send(GetTransactionCount(config: config));