getTransactions method

  1. @override
Future<Either<Failure, WalletTransactionsEntity>> getTransactions({
  1. required String address,
})
override

Get history of transactions for given address

Throw Failure if there is a poor network connection or an error occurs with an external library

Implementation

@override
Future<Either<Failure, WalletTransactionsEntity>> getTransactions(
    {required String address}) async {
  return await historyUsecase.call(address);
}