mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-02 02:17:39 +00:00
11 lines
300 B
Dart
11 lines
300 B
Dart
|
import 'package:rxdart/rxdart.dart';
|
||
|
import 'package:cake_wallet/src/domain/common/transaction_info.dart';
|
||
|
|
||
|
abstract class TransactionHistory {
|
||
|
Observable<List<TransactionInfo>> transactions;
|
||
|
Future<List<TransactionInfo>> getAll();
|
||
|
Future<int> count();
|
||
|
Future refresh();
|
||
|
Future update();
|
||
|
}
|