getPendingTransactionsByAddress method

Future<PendingTransactionsResponse> getPendingTransactionsByAddress(
  1. String address, {
  2. int max = 0,
})

Get the list of pending transactions by address, sorted by priority, in decreasing order, truncated at the end at MAX.

If MAX = 0, returns all pending transactions.

Throws an AlgorandException if there is an HTTP error. Returns the pending transactions for the address.

Implementation

Future<PendingTransactionsResponse> getPendingTransactionsByAddress(
  String address, {
  int max = 0,
}) async {
  return _transactionRepository.getPendingTransactionsByAddress(address,
      max: max);
}