mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
380f7653b2
* version 4.20.0 * update build numbers * UI updates and script fix for ios bundle identifier * disable mweb for desktop * change hardcoded ltc server ip address electrum connection enhancement * MWEB enhancements 2.0 (#1735) * additional logging and minor fixes * additional logging and minor fixes * addresses pt.1 * Allow Wallet Group Names to be the same as Wallet Names (#1730) * fix: Issues with imaging * fix: Allow group names to be the same as wallet names * fix: Bug with wallet grouping when a wallet is minimized * fix: Bug with wallet grouping when a wallet is minimized * logs of fixes and experimental changes, close wallet before opening next * save * fix icon * fixes * [skip ci] updates * [skip ci] updates * updates * minor optimizations * fix for when switching between wallets * [skip ci] updates * [skip ci] updates * Update cw_bitcoin/lib/litecoin_wallet.dart Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * Update cw_bitcoin/lib/litecoin_wallet.dart Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * mobx * mostly logging * stream fix pt.1 [skip ci] * updates * some fixes and enhancements * [skip ci] minor * potential partial fix for streamsink closed * fix stream sink closed errors * fix mweb logo colors * save * minor enhancements [skip ci] * save * experimental * minor * minor [skip ci] --------- Co-authored-by: David Adegoke <64401859+Blazebrain@users.noreply.github.com> Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * fix menu list removing from original list --------- Co-authored-by: Matthew Fosse <matt@fosse.co> Co-authored-by: David Adegoke <64401859+Blazebrain@users.noreply.github.com>
103 lines
2.9 KiB
Dart
103 lines
2.9 KiB
Dart
import 'package:mobx/mobx.dart';
|
|
import 'package:cw_core/balance.dart';
|
|
import 'package:cw_core/transaction_info.dart';
|
|
import 'package:cw_core/transaction_history.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/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, isTestnet: isTestnet);
|
|
|
|
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;
|
|
|
|
set syncStatus(SyncStatus status);
|
|
|
|
String? get seed;
|
|
|
|
String? get privateKey => null;
|
|
|
|
String? get hexSeed => null;
|
|
|
|
String? get passphrase => null;
|
|
|
|
Object get keys;
|
|
|
|
WalletAddresses get walletAddresses;
|
|
|
|
late HistoryType transactionHistory;
|
|
|
|
set isEnabledAutoGenerateSubaddress(bool value) {}
|
|
|
|
bool get isEnabledAutoGenerateSubaddress => false;
|
|
|
|
bool get isHardwareWallet => walletInfo.isHardwareWallet;
|
|
|
|
Future<void> connectToNode({required Node node});
|
|
|
|
// there is a default definition here because only coins with a pow node (nano based) need to override this
|
|
Future<void> connectToPowNode({required Node node}) async {}
|
|
|
|
Future<void> startSync();
|
|
|
|
Future<void> stopSync() async {}
|
|
|
|
Future<PendingTransaction> createTransaction(Object credentials);
|
|
|
|
int calculateEstimatedFee(TransactionPriority priority, int? amount);
|
|
|
|
// void fetchTransactionsAsync(
|
|
// void Function(TransactionType transaction) onTransactionLoaded,
|
|
// {void Function() onFinished});
|
|
|
|
Future<Map<String, TransactionType>> fetchTransactions();
|
|
|
|
Future<void> save();
|
|
|
|
Future<void> rescan({required int height});
|
|
|
|
Future<void> close({required bool shouldCleanup});
|
|
|
|
Future<void> changePassword(String password);
|
|
|
|
String get password;
|
|
|
|
Future<void>? updateBalance();
|
|
|
|
void setExceptionHandler(void Function(FlutterErrorDetails) onError) => null;
|
|
|
|
Future<void> renameWalletFiles(String newWalletName);
|
|
|
|
Future<String> signMessage(String message, {String? address = null});
|
|
|
|
Future<bool> verifyMessage(String message, String signature, {String? address = null});
|
|
|
|
bool isTestnet = false;
|
|
}
|