mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
d1870ba8b8
* chore: Initial setup for Tron Wallet * feat: Create Tron Wallet base flow implemented, keys, address, receive, restore and proxy classes all setup * feat: Display seed and key within the app * feat: Activate restore from key and seed for Tron wallet * feat: Add icon for tron wallet in wallet listing page * feat: Activate display of receive address for tron * feat: Fetch and display tron balance, sending transaction flow setup, fee limit calculation setup * feat: Implement sending of native tron, setup sending of trc20 tokens * chore: Rename function * Delete lib/tron/tron.dart * feat: Activate exchange for tron and its tokens, implement balance display for trc20 tokens and setup secrets configuration for tron * feat: Implement tron token management, add, remove, delete, and get tokens in home settings view, also minor cleanup * feat: Activate buy and sell for tron * feat: Implement restore from QR, transactions history listing for both native transactions and trc20 transactions * feat: Activate send all and do some minor cleanups * chore: Fix some lint infos and warnings * chore: Adjust configurations * ci: Modify CI to create and add secrets for node * fix: Fixes made while self reviewing the PR for this feature * feat: Add guide for adding new wallet types, and add fixes to requested changes * fix: Handle exceptions gracefully * fix: Alternative for trc20 estimated fee * fix: Fixes to display of amount and fee, removing clashes * fix: Fee calculation WIP * fix: Fix issue with handling of send all flow and display of amount and fee values before broadcasting transaction * fix: PR review fixes and fix merge conflicts * fix: Modify fetching assetOfTransaction [skip ci] * fix: Move tron settings migration to 33
158 lines
5.4 KiB
Dart
158 lines
5.4 KiB
Dart
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
|
import 'package:cake_wallet/entities/provider_types.dart';
|
|
import 'package:cake_wallet/entities/priority_for_wallet_type.dart';
|
|
import 'package:cake_wallet/generated/i18n.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';
|
|
import 'package:collection/collection.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 =>
|
|
_wallet.type == WalletType.nano || _wallet.type == WalletType.banano;
|
|
|
|
@computed
|
|
bool get displayTransactionPriority => !(changeRepresentativeEnabled ||
|
|
_wallet.type == WalletType.solana ||
|
|
_wallet.type == WalletType.tron);
|
|
|
|
@computed
|
|
bool get isEnabledBuyAction => !_settingsStore.disableBuy && _wallet.type != WalletType.haven;
|
|
|
|
@computed
|
|
bool get isEnabledSellAction => !_settingsStore.disableSell && _wallet.type != WalletType.haven;
|
|
|
|
List<ProviderType> get availableBuyProvidersTypes {
|
|
return ProvidersHelper.getAvailableBuyProviderTypes(walletType);
|
|
}
|
|
|
|
List<ProviderType> get availableSellProvidersTypes =>
|
|
ProvidersHelper.getAvailableSellProviderTypes(walletType);
|
|
|
|
ProviderType get buyProviderType =>
|
|
_settingsStore.defaultBuyProviders[walletType] ?? ProviderType.askEachTime;
|
|
|
|
ProviderType get sellProviderType =>
|
|
_settingsStore.defaultSellProviders[walletType] ?? ProviderType.askEachTime;
|
|
|
|
|
|
|
|
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 getDisplayBitcoinPriority(dynamic priority, int customValue) {
|
|
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, customRate: customValue);
|
|
}
|
|
|
|
return priority.toString();
|
|
}
|
|
|
|
String getBuyProviderType(dynamic buyProviderType) {
|
|
final _buyProviderType = buyProviderType as ProviderType;
|
|
return _buyProviderType == ProviderType.askEachTime
|
|
? S.current.ask_each_time
|
|
: _buyProviderType.title;
|
|
}
|
|
|
|
String getSellProviderType(dynamic sellProviderType) {
|
|
final _sellProviderType = sellProviderType as ProviderType;
|
|
return _sellProviderType == ProviderType.askEachTime
|
|
? S.current.ask_each_time
|
|
: _sellProviderType.title;
|
|
}
|
|
|
|
void onDisplayPrioritySelected(TransactionPriority priority) =>
|
|
_settingsStore.priority[walletType] = priority;
|
|
|
|
void onDisplayBitcoinPrioritySelected(TransactionPriority priority, double customValue) {
|
|
if (_wallet.type == WalletType.bitcoin) {
|
|
_settingsStore.customBitcoinFeeRate = customValue.round();
|
|
}
|
|
_settingsStore.priority[_wallet.type] = priority;
|
|
}
|
|
|
|
@computed
|
|
double get customBitcoinFeeRate => _settingsStore.customBitcoinFeeRate.toDouble();
|
|
|
|
int? get customPriorityItemIndex {
|
|
final priorities = priorityForWalletType(walletType);
|
|
final customItem = priorities
|
|
.firstWhereOrNull((element) => element == bitcoin!.getBitcoinTransactionPriorityCustom());
|
|
return customItem != null ? priorities.indexOf(customItem) : null;
|
|
}
|
|
|
|
int? get maxCustomFeeRate {
|
|
if (_wallet.type == WalletType.bitcoin) {
|
|
return bitcoin!.getMaxCustomFeeRate(_wallet);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@action
|
|
ProviderType onBuyProviderTypeSelected(ProviderType buyProviderType) =>
|
|
_settingsStore.defaultBuyProviders[walletType] = buyProviderType;
|
|
|
|
@action
|
|
ProviderType onSellProviderTypeSelected(ProviderType sellProviderType) =>
|
|
_settingsStore.defaultSellProviders[walletType] = sellProviderType;
|
|
}
|