mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
d972363417
* CW-466 Add Buy Options Page * CW-466 Add Buy Options * CW-466 Add Default Buy Provider to Other Settings * CW-466 Onramper is working from Buy Options * CW-466 Onramper is working from Buy Options * CW-466 Translation improvements * CW-466 Add Onramper & Robinhood Logos * CW-466 Implement Robinhood Flow * CW-466 Fix Robinhood Flow * CW-466 Add RH-Secrets * CW-466 Have RH Translation in English only * Add missing URI details * CW-466 Implement default Buy Provider * CW-466 Fix Padding Buy Provider Options * CW-466 Fix Bitcoin and Litecoin Signatures * CW-466 Fix Error Message * CW-466 Resolve requested changes * Add exception handler to robinhood API calls * CW-466 Fix Theming --------- Co-authored-by: Justin Ehrenhofer <justin.ehrenhofer@gmail.com> Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
88 lines
2.4 KiB
Dart
88 lines
2.4 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);
|
|
|
|
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;
|
|
|
|
Object get keys;
|
|
|
|
WalletAddresses get walletAddresses;
|
|
|
|
late HistoryType transactionHistory;
|
|
|
|
set isEnabledAutoGenerateSubaddress(bool value) {}
|
|
|
|
bool get isEnabledAutoGenerateSubaddress => false;
|
|
|
|
Future<void> connectToNode({required Node node});
|
|
|
|
Future<void> startSync();
|
|
|
|
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});
|
|
|
|
void close();
|
|
|
|
Future<void> changePassword(String password);
|
|
|
|
Future<void>? updateBalance();
|
|
|
|
void setExceptionHandler(void Function(FlutterErrorDetails) onError) => null;
|
|
|
|
Future<void> renameWalletFiles(String newWalletName);
|
|
|
|
String signMessage(String message, {String? address = null}) => throw UnimplementedError();
|
|
}
|