cake_wallet/lib/view_model/wallet_new_vm.dart

63 lines
2.5 KiB
Dart
Raw Normal View History

import 'package:cake_wallet/view_model/restore/restore_wallet.dart';
2023-01-03 20:19:02 +00:00
import 'package:cake_wallet/ethereum/ethereum.dart';
2020-06-20 07:10:00 +00:00
import 'package:flutter/foundation.dart';
CW-432-Add-Bitcoin-Cash-BCH (#1041) * 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 1549bf4d8c3bdb0addbd6e3c5f049ebc3799ff8f. * 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>
2023-10-12 22:50:16 +00:00
import 'package:cake_wallet/bitcoin_cash/bitcoin_cash.dart';
2020-07-06 20:09:03 +00:00
import 'package:hive/hive.dart';
2020-06-20 07:10:00 +00:00
import 'package:mobx/mobx.dart';
2021-12-24 12:37:24 +00:00
import 'package:cake_wallet/monero/monero.dart';
2023-07-24 20:23:09 +00:00
import 'package:cake_wallet/nano/nano.dart';
2020-09-21 11:50:26 +00:00
import 'package:cake_wallet/store/app_store.dart';
2021-12-24 12:37:24 +00:00
import 'package:cw_core/wallet_base.dart';
2020-06-20 07:10:00 +00:00
import 'package:cake_wallet/core/wallet_creation_service.dart';
2021-12-24 12:37:24 +00:00
import 'package:cw_core/wallet_credentials.dart';
import 'package:cw_core/wallet_info.dart';
import 'package:cw_core/wallet_type.dart';
2020-06-20 07:10:00 +00:00
import 'package:cake_wallet/view_model/wallet_creation_vm.dart';
2021-12-24 12:37:24 +00:00
import 'package:cake_wallet/bitcoin/bitcoin.dart';
2022-03-30 15:57:04 +00:00
import 'package:cake_wallet/haven/haven.dart';
2020-06-20 07:10:00 +00:00
part 'wallet_new_vm.g.dart';
class WalletNewVM = WalletNewVMBase with _$WalletNewVM;
abstract class WalletNewVMBase extends WalletCreationVM with Store {
WalletNewVMBase(AppStore appStore, WalletCreationService walletCreationService,
2020-09-21 11:50:26 +00:00
Box<WalletInfo> walletInfoSource,
2022-10-12 17:09:57 +00:00
{required WalletType type})
2020-06-20 07:10:00 +00:00
: selectedMnemonicLanguage = '',
super(appStore, walletInfoSource, walletCreationService, type: type, isRecovery: false);
2020-06-20 07:10:00 +00:00
@observable
String selectedMnemonicLanguage;
2022-03-30 15:57:04 +00:00
bool get hasLanguageSelector => type == WalletType.monero || type == WalletType.haven;
2020-06-20 07:10:00 +00:00
@override
WalletCredentials getCredentials(dynamic options) {
switch (type) {
case WalletType.monero:
return monero!.createMoneroNewWalletCredentials(name: name, language: options as String);
2020-06-20 07:10:00 +00:00
case WalletType.bitcoin:
2022-10-12 17:09:57 +00:00
return bitcoin!.createBitcoinNewWalletCredentials(name: name);
case WalletType.litecoin:
2022-10-12 17:09:57 +00:00
return bitcoin!.createBitcoinNewWalletCredentials(name: name);
2022-03-30 15:57:04 +00:00
case WalletType.haven:
return haven!.createHavenNewWalletCredentials(name: name, language: options as String);
2023-01-03 20:19:02 +00:00
case WalletType.ethereum:
return ethereum!.createEthereumNewWalletCredentials(name: name);
CW-432-Add-Bitcoin-Cash-BCH (#1041) * 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 1549bf4d8c3bdb0addbd6e3c5f049ebc3799ff8f. * 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>
2023-10-12 22:50:16 +00:00
case WalletType.bitcoinCash:
return bitcoinCash!.createBitcoinCashNewWalletCredentials(name: name);
2023-07-24 20:23:09 +00:00
case WalletType.nano:
2023-07-25 17:36:24 +00:00
return nano!.createNanoNewWalletCredentials(name: name);
2020-06-20 07:10:00 +00:00
default:
throw Exception('Unexpected type: ${type.toString()}');
2020-06-20 07:10:00 +00:00
}
}
@override
Future<WalletBase> process(WalletCredentials credentials) async {
walletCreationService.changeWalletType(type: type);
return walletCreationService.create(credentials);
}
2020-06-20 07:10:00 +00:00
}