cake_wallet/cw_core/lib/wallet_base.dart
OmarHatem28 ee08fe77c1 Merge branch 'cw-62' of https://github.com/cake-tech/cake_wallet into CW-62-send-all-fee-calculation
 Conflicts:
	cw_bitcoin/lib/electrum_wallet.dart
	cw_monero/ios/Classes/monero_api.cpp
	cw_monero/lib/api/signatures.dart
	cw_monero/lib/api/types.dart
	cw_monero/lib/api/wallet.dart
	cw_monero/lib/monero_wallet.dart
	lib/reactions/on_current_wallet_change.dart
	lib/reactions/on_wallet_sync_status_change.dart
	lib/src/screens/send/send_page.dart
	lib/src/screens/send/widgets/send_card.dart
	lib/view_model/send/output.dart
	lib/view_model/send/send_view_model.dart
2022-08-26 01:10:13 +02:00

75 lines
2 KiB
Dart

import 'package:mobx/mobx.dart';
import 'package:cw_core/balance.dart';
import 'package:cw_core/fee_estimate.dart';
import 'package:cw_core/transaction_info.dart';
import 'package:cw_core/transaction_priority.dart';
import 'package:cw_core/wallet_addresses.dart';
import 'package:flutter/foundation.dart';
import 'package:cw_core/wallet_info.dart';
import 'package:cw_core/pending_transaction.dart';
import 'package:cw_core/transaction_history.dart';
import 'package:cw_core/currency_for_wallet_type.dart';
import 'package:cw_core/crypto_currency.dart';
import 'package:cw_core/sync_status.dart';
import 'package:cw_core/node.dart';
import 'package:cw_core/wallet_type.dart';
abstract class WalletBase<
BalanceType extends Balance,
HistoryType extends TransactionHistoryBase,
TransactionType extends TransactionInfo> {
WalletBase(this.walletInfo);
static String idFor(String name, WalletType type) =>
walletTypeToString(type).toLowerCase() + '_' + name;
WalletInfo walletInfo;
WalletType get type => walletInfo.type;
CryptoCurrency get currency => currencyForWalletType(type);
String get id => walletInfo.id;
String get name => walletInfo.name;
//String get address;
//set address(String address);
ObservableMap<CryptoCurrency, BalanceType> get balance;
SyncStatus get syncStatus;
FeeEstimate get feeEstimate;
set syncStatus(SyncStatus status);
String get seed;
Object get keys;
WalletAddresses get walletAddresses;
HistoryType transactionHistory;
Future<void> connectToNode({@required Node node});
Future<void> startSync();
Future<PendingTransaction> createTransaction(Object credentials);
// void fetchTransactionsAsync(
// void Function(TransactionType transaction) onTransactionLoaded,
// {void Function() onFinished});
Future<Map<String, TransactionType>> fetchTransactions();
Future<void> save();
Future<void> rescan({int height});
void close();
Future<void> changePassword(String password);
}