cake_wallet/lib/store/app_store.dart

43 lines
1.2 KiB
Dart
Raw Normal View History

2021-12-24 12:37:24 +00:00
import 'package:cw_core/transaction_info.dart';
2020-06-20 07:10:00 +00:00
import 'package:mobx/mobx.dart';
2021-12-24 12:37:24 +00:00
import 'package:cw_core/balance.dart';
import 'package:cw_core/wallet_base.dart';
import 'package:cw_core/transaction_history.dart';
2020-07-06 20:09:03 +00:00
import 'package:cake_wallet/store/wallet_list_store.dart';
2020-06-20 07:10:00 +00:00
import 'package:cake_wallet/store/authentication_store.dart';
2020-07-06 20:09:03 +00:00
import 'package:cake_wallet/store/settings_store.dart';
import 'package:cake_wallet/store/node_list_store.dart';
2020-06-20 07:10:00 +00:00
part 'app_store.g.dart';
class AppStore = AppStoreBase with _$AppStore;
abstract class AppStoreBase with Store {
2020-07-06 20:09:03 +00:00
AppStoreBase(
2022-10-12 17:09:57 +00:00
{required this.authenticationStore,
required this.walletList,
required this.settingsStore,
required this.nodeListStore});
2020-06-20 07:10:00 +00:00
AuthenticationStore authenticationStore;
@observable
2022-10-12 17:09:57 +00:00
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo>?
wallet;
2020-07-06 20:09:03 +00:00
WalletListStore walletList;
SettingsStore settingsStore;
NodeListStore nodeListStore;
@action
void changeCurrentWallet(
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>,
TransactionInfo>
wallet) {
this.wallet?.close();
this.wallet = wallet;
}
2020-06-20 07:10:00 +00:00
}