mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +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
248 lines
9 KiB
Dart
248 lines
9 KiB
Dart
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
|
import 'package:cake_wallet/di.dart';
|
|
import 'package:cake_wallet/nano/nano.dart';
|
|
import 'package:cake_wallet/ethereum/ethereum.dart';
|
|
import 'package:cw_core/nano_account_info_response.dart';
|
|
import 'package:cake_wallet/bitcoin_cash/bitcoin_cash.dart';
|
|
import 'package:cake_wallet/polygon/polygon.dart';
|
|
import 'package:cake_wallet/solana/solana.dart';
|
|
import 'package:cake_wallet/tron/tron.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:cake_wallet/store/app_store.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cake_wallet/core/generate_wallet_password.dart';
|
|
import 'package:cake_wallet/core/wallet_creation_service.dart';
|
|
import 'package:cw_core/wallet_credentials.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:cw_core/wallet_info.dart';
|
|
import 'package:cake_wallet/view_model/wallet_creation_vm.dart';
|
|
import 'package:cake_wallet/monero/monero.dart';
|
|
import 'package:cake_wallet/haven/haven.dart';
|
|
import 'package:cake_wallet/view_model/restore/restore_mode.dart';
|
|
|
|
part 'wallet_restore_view_model.g.dart';
|
|
|
|
class WalletRestoreViewModel = WalletRestoreViewModelBase with _$WalletRestoreViewModel;
|
|
|
|
abstract class WalletRestoreViewModelBase extends WalletCreationVM with Store {
|
|
WalletRestoreViewModelBase(AppStore appStore, WalletCreationService walletCreationService,
|
|
Box<WalletInfo> walletInfoSource,
|
|
{required WalletType type})
|
|
: hasSeedLanguageSelector = type == WalletType.monero || type == WalletType.haven,
|
|
hasBlockchainHeightLanguageSelector = type == WalletType.monero || type == WalletType.haven,
|
|
hasRestoreFromPrivateKey = type == WalletType.ethereum ||
|
|
type == WalletType.polygon ||
|
|
type == WalletType.nano ||
|
|
type == WalletType.banano ||
|
|
type == WalletType.solana ||
|
|
type == WalletType.tron,
|
|
isButtonEnabled = false,
|
|
mode = WalletRestoreMode.seed,
|
|
super(appStore, walletInfoSource, walletCreationService, type: type, isRecovery: true) {
|
|
switch (type) {
|
|
case WalletType.monero:
|
|
case WalletType.haven:
|
|
case WalletType.ethereum:
|
|
case WalletType.polygon:
|
|
availableModes = WalletRestoreMode.values;
|
|
break;
|
|
case WalletType.nano:
|
|
case WalletType.banano:
|
|
case WalletType.solana:
|
|
case WalletType.tron:
|
|
availableModes = [WalletRestoreMode.seed, WalletRestoreMode.keys];
|
|
break;
|
|
default:
|
|
availableModes = [WalletRestoreMode.seed];
|
|
break;
|
|
}
|
|
isButtonEnabled = !hasSeedLanguageSelector && !hasBlockchainHeightLanguageSelector;
|
|
walletCreationService.changeWalletType(type: type);
|
|
}
|
|
|
|
static const moneroSeedMnemonicLength = 25;
|
|
static const electrumSeedMnemonicLength = 24;
|
|
static const electrumShortSeedMnemonicLength = 12;
|
|
|
|
late List<WalletRestoreMode> availableModes;
|
|
final bool hasSeedLanguageSelector;
|
|
final bool hasBlockchainHeightLanguageSelector;
|
|
final bool hasRestoreFromPrivateKey;
|
|
|
|
bool get hasPassphrase => [WalletType.bitcoin, WalletType.litecoin].contains(type);
|
|
|
|
@observable
|
|
WalletRestoreMode mode;
|
|
|
|
@observable
|
|
bool isButtonEnabled;
|
|
|
|
@override
|
|
WalletCredentials getCredentials(dynamic options) {
|
|
final password = generateWalletPassword();
|
|
String? passphrase = options['passphrase'] as String?;
|
|
final height = options['height'] as int? ?? 0;
|
|
name = options['name'] as String;
|
|
DerivationInfo? derivationInfo = options["derivationInfo"] as DerivationInfo?;
|
|
|
|
if (mode == WalletRestoreMode.seed) {
|
|
final seed = options['seed'] as String;
|
|
switch (type) {
|
|
case WalletType.monero:
|
|
return monero!.createMoneroRestoreWalletFromSeedCredentials(
|
|
name: name, height: height, mnemonic: seed, password: password);
|
|
case WalletType.bitcoin:
|
|
case WalletType.litecoin:
|
|
return bitcoin!.createBitcoinRestoreWalletFromSeedCredentials(
|
|
name: name,
|
|
mnemonic: seed,
|
|
password: password,
|
|
passphrase: passphrase,
|
|
derivationType: derivationInfo!.derivationType!,
|
|
derivationPath: derivationInfo.derivationPath!,
|
|
);
|
|
case WalletType.haven:
|
|
return haven!.createHavenRestoreWalletFromSeedCredentials(
|
|
name: name, height: height, mnemonic: seed, password: password);
|
|
case WalletType.ethereum:
|
|
return ethereum!.createEthereumRestoreWalletFromSeedCredentials(
|
|
name: name, mnemonic: seed, password: password);
|
|
case WalletType.bitcoinCash:
|
|
return bitcoinCash!.createBitcoinCashRestoreWalletFromSeedCredentials(
|
|
name: name, mnemonic: seed, password: password);
|
|
case WalletType.nano:
|
|
return nano!.createNanoRestoreWalletFromSeedCredentials(
|
|
name: name,
|
|
mnemonic: seed,
|
|
password: password,
|
|
derivationType: derivationInfo!.derivationType!,
|
|
);
|
|
case WalletType.polygon:
|
|
return polygon!.createPolygonRestoreWalletFromSeedCredentials(
|
|
name: name,
|
|
mnemonic: seed,
|
|
password: password,
|
|
);
|
|
case WalletType.solana:
|
|
return solana!.createSolanaRestoreWalletFromSeedCredentials(
|
|
name: name,
|
|
mnemonic: seed,
|
|
password: password,
|
|
);
|
|
case WalletType.tron:
|
|
return tron!.createTronRestoreWalletFromSeedCredentials(
|
|
name: name,
|
|
mnemonic: seed,
|
|
password: password,
|
|
);
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (mode == WalletRestoreMode.keys) {
|
|
final viewKey = options['viewKey'] as String?;
|
|
final spendKey = options['spendKey'] as String?;
|
|
final address = options['address'] as String?;
|
|
|
|
switch (type) {
|
|
case WalletType.monero:
|
|
return monero!.createMoneroRestoreWalletFromKeysCredentials(
|
|
name: name,
|
|
height: height,
|
|
spendKey: spendKey!,
|
|
viewKey: viewKey!,
|
|
address: address!,
|
|
password: password,
|
|
language: 'English',
|
|
);
|
|
|
|
case WalletType.haven:
|
|
return haven!.createHavenRestoreWalletFromKeysCredentials(
|
|
name: name,
|
|
height: height,
|
|
spendKey: spendKey!,
|
|
viewKey: viewKey!,
|
|
address: address!,
|
|
password: password,
|
|
language: 'English',
|
|
);
|
|
|
|
case WalletType.ethereum:
|
|
return ethereum!.createEthereumRestoreWalletFromPrivateKey(
|
|
name: name,
|
|
privateKey: options['private_key'] as String,
|
|
password: password,
|
|
);
|
|
|
|
case WalletType.nano:
|
|
return nano!.createNanoRestoreWalletFromKeysCredentials(
|
|
name: name,
|
|
password: password,
|
|
seedKey: options['private_key'] as String,
|
|
derivationType: options["derivationType"] as DerivationType);
|
|
case WalletType.polygon:
|
|
return polygon!.createPolygonRestoreWalletFromPrivateKey(
|
|
name: name,
|
|
password: password,
|
|
privateKey: options['private_key'] as String,
|
|
);
|
|
case WalletType.solana:
|
|
return solana!.createSolanaRestoreWalletFromPrivateKey(
|
|
name: name,
|
|
password: password,
|
|
privateKey: options['private_key'] as String,
|
|
);
|
|
case WalletType.tron:
|
|
return tron!.createTronRestoreWalletFromPrivateKey(
|
|
name: name,
|
|
password: password,
|
|
privateKey: options['private_key'] as String,
|
|
);
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
throw Exception('Unexpected type: ${type.toString()}');
|
|
}
|
|
|
|
Future<List<DerivationInfo>> getDerivationInfo(dynamic credentials) async {
|
|
var list = <DerivationInfo>[];
|
|
var walletType = credentials["walletType"] as WalletType;
|
|
var appStore = getIt.get<AppStore>();
|
|
var node = appStore.settingsStore.getCurrentNode(walletType);
|
|
|
|
switch (walletType) {
|
|
case WalletType.bitcoin:
|
|
case WalletType.litecoin:
|
|
String? mnemonic = credentials['seed'] as String?;
|
|
String? passphrase = credentials['passphrase'] as String?;
|
|
return bitcoin!.getDerivationsFromMnemonic(
|
|
mnemonic: mnemonic!,
|
|
node: node,
|
|
passphrase: passphrase,
|
|
);
|
|
case WalletType.nano:
|
|
String? mnemonic = credentials['seed'] as String?;
|
|
String? seedKey = credentials['private_key'] as String?;
|
|
return nanoUtil!.getDerivationsFromMnemonic(
|
|
mnemonic: mnemonic,
|
|
seedKey: seedKey,
|
|
node: node,
|
|
);
|
|
default:
|
|
break;
|
|
}
|
|
return list;
|
|
}
|
|
|
|
@override
|
|
Future<WalletBase> process(WalletCredentials credentials) async {
|
|
if (mode == WalletRestoreMode.keys) {
|
|
return walletCreationService.restoreFromKeys(credentials, isTestnet: useTestnet);
|
|
}
|
|
return walletCreationService.restoreFromSeed(credentials, isTestnet: useTestnet);
|
|
}
|
|
}
|