getTransactions method
Future<Either<Failure, WalletTransactionsEntity> >
getTransactions({
- 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);
}