sendRawTransactions method

Future<String> sendRawTransactions(
  1. List<Uint8List> transactions, {
  2. bool waitForConfirmation = false,
  3. int? timeout,
})

Broadcast a list of (signed) transaction on the network.

Throws an AlgorandException if there is an HTTP error. Returns the id of the transaction.

Implementation

Future<String> sendRawTransactions(
  List<Uint8List> transactions, {
  bool waitForConfirmation = false,
  int? timeout,
}) async {
  return _transactionRepository.sendRawTransactions(
    transactions,
    waitForConfirmation: waitForConfirmation,
    timeout: timeout ?? _options.timeout,
  );
}