mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
66301ff247
* initial commit
* creating and restoring a wallet
* [skip ci] add transaction priority
* fix send and unspent screen
* fix transaction priority type
* replace Unspend with BitcoinUnspent
* add transaction creation
* fix transaction details screen
* minor fix
* fix create side wallet
* basic transaction creation flow
* fix fiat amount calculation
* edit wallet
* minor fix
* fix address book parsing
* merge commit fixes
* minor fixes
* Update gradle.properties
* fix bch unspent coins
* minor fix
* fix BitcoinCashTransactionPriority
* Fetch tags first before switching to one of them
* Update build_haven.sh
* Update build_haven.sh
* Update build_haven.sh
* Update build_haven.sh
* update transaction build function
* Update build_haven.sh
* add ability to rename and delete
* fix address format
* Update pubspec.lock
* Revert "fix address format"
This reverts commit 1549bf4d8c
.
* fix address format for exange
* restore from qr
* Update configure.dart
* [skip ci] minor fix
* fix default fee rate
* Update onramper_buy_provider.dart
* Update wallet_address_list_view_model.dart
* PR comments fixes
* Update exchange_view_model.dart
* fix merge conflict
* Update address_validator.dart
* merge fixes
* update initialMigrationVersion
* move cw_bitbox to Cake tech
* PR fixes
* PR fixes
* Fix configure.dart brackets
* update the new version text after macos
* dummy change to run workflow
* Fix Nano restore from QR issue
Fix Conflicts with main
* PR fixes
* Update app_config.sh
---------
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
88 lines
2.8 KiB
Dart
88 lines
2.8 KiB
Dart
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
|
import 'package:cake_wallet/entities/buy_provider_types.dart';
|
|
import 'package:cake_wallet/entities/priority_for_wallet_type.dart';
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
|
import 'package:cw_core/balance.dart';
|
|
import 'package:cw_core/transaction_history.dart';
|
|
import 'package:cw_core/transaction_info.dart';
|
|
import 'package:cw_core/transaction_priority.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:package_info/package_info.dart';
|
|
|
|
part 'other_settings_view_model.g.dart';
|
|
|
|
class OtherSettingsViewModel = OtherSettingsViewModelBase with _$OtherSettingsViewModel;
|
|
|
|
abstract class OtherSettingsViewModelBase with Store {
|
|
OtherSettingsViewModelBase(this._settingsStore, this._wallet)
|
|
: walletType = _wallet.type,
|
|
currentVersion = '' {
|
|
PackageInfo.fromPlatform()
|
|
.then((PackageInfo packageInfo) => currentVersion = packageInfo.version);
|
|
|
|
final priority = _settingsStore.priority[_wallet.type];
|
|
final priorities = priorityForWalletType(_wallet.type);
|
|
|
|
if (!priorities.contains(priority) && priorities.isNotEmpty) {
|
|
_settingsStore.priority[_wallet.type] = priorities.first;
|
|
}
|
|
}
|
|
|
|
final WalletType walletType;
|
|
final WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo> _wallet;
|
|
|
|
@observable
|
|
String currentVersion;
|
|
|
|
final SettingsStore _settingsStore;
|
|
|
|
@computed
|
|
TransactionPriority get transactionPriority {
|
|
final priority = _settingsStore.priority[walletType];
|
|
|
|
if (priority == null) {
|
|
throw Exception('Unexpected type ${walletType.toString()}');
|
|
}
|
|
|
|
return priority;
|
|
}
|
|
|
|
@computed
|
|
bool get changeRepresentativeEnabled {
|
|
if (_wallet.type == WalletType.nano || _wallet.type == WalletType.banano) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
BuyProviderType get buyProviderType { return _settingsStore.defaultBuyProvider; }
|
|
|
|
String getDisplayPriority(dynamic priority) {
|
|
final _priority = priority as TransactionPriority;
|
|
|
|
if (_wallet.type == WalletType.bitcoin ||
|
|
_wallet.type == WalletType.litecoin ||
|
|
_wallet.type == WalletType.bitcoinCash) {
|
|
final rate = bitcoin!.getFeeRate(_wallet, _priority);
|
|
return bitcoin!.bitcoinTransactionPriorityWithLabel(_priority, rate);
|
|
}
|
|
|
|
return priority.toString();
|
|
}
|
|
|
|
String getBuyProviderType (dynamic buyProviderType) {
|
|
final _buyProviderType = buyProviderType as BuyProviderType;
|
|
|
|
return _buyProviderType.toString();
|
|
}
|
|
|
|
void onDisplayPrioritySelected(TransactionPriority priority) =>
|
|
_settingsStore.priority[_wallet.type] = priority;
|
|
|
|
void onBuyProviderTypeSelected(BuyProviderType buyProviderType) =>
|
|
_settingsStore.defaultBuyProvider = buyProviderType;
|
|
|
|
}
|