mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
4b4d8a4840
* Add passphrase support for Eth, Polygon, and Tron * move passphrase to advanced settings even for restore
171 lines
5.1 KiB
Dart
171 lines
5.1 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:bip39/bip39.dart' as bip39;
|
|
import 'package:collection/collection.dart';
|
|
import 'package:cw_core/balance.dart';
|
|
import 'package:cw_core/encryption_file_utils.dart';
|
|
import 'package:cw_core/pathForWallet.dart';
|
|
import 'package:cw_core/transaction_history.dart';
|
|
import 'package:cw_core/transaction_info.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cw_core/wallet_info.dart';
|
|
import 'package:cw_core/wallet_service.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:cw_tron/tron_client.dart';
|
|
import 'package:cw_tron/tron_exception.dart';
|
|
import 'package:cw_tron/tron_wallet.dart';
|
|
import 'package:cw_tron/tron_wallet_creation_credentials.dart';
|
|
import 'package:hive/hive.dart';
|
|
|
|
class TronWalletService extends WalletService<
|
|
TronNewWalletCredentials,
|
|
TronRestoreWalletFromSeedCredentials,
|
|
TronRestoreWalletFromPrivateKey,
|
|
TronNewWalletCredentials> {
|
|
TronWalletService(this.walletInfoSource, {required this.client, required this.isDirect});
|
|
|
|
late TronClient client;
|
|
|
|
final Box<WalletInfo> walletInfoSource;
|
|
final bool isDirect;
|
|
|
|
@override
|
|
WalletType getType() => WalletType.tron;
|
|
|
|
@override
|
|
Future<TronWallet> create(TronNewWalletCredentials credentials, {bool? isTestnet}) async {
|
|
final strength = credentials.seedPhraseLength == 24 ? 256 : 128;
|
|
|
|
final mnemonic = credentials.mnemonic ?? bip39.generateMnemonic(strength: strength);
|
|
|
|
final wallet = TronWallet(
|
|
walletInfo: credentials.walletInfo!,
|
|
mnemonic: mnemonic,
|
|
password: credentials.password!,
|
|
passphrase: credentials.passphrase,
|
|
encryptionFileUtils: encryptionFileUtilsFor(isDirect),
|
|
);
|
|
|
|
await wallet.init();
|
|
wallet.addInitialTokens();
|
|
await wallet.save();
|
|
|
|
return wallet;
|
|
}
|
|
|
|
@override
|
|
Future<TronWallet> openWallet(String name, String password) async {
|
|
final walletInfo =
|
|
walletInfoSource.values.firstWhere((info) => info.id == WalletBase.idFor(name, getType()));
|
|
|
|
try {
|
|
final wallet = await TronWalletBase.open(
|
|
name: name,
|
|
password: password,
|
|
walletInfo: walletInfo,
|
|
encryptionFileUtils: encryptionFileUtilsFor(isDirect),
|
|
);
|
|
|
|
await wallet.init();
|
|
await wallet.save();
|
|
saveBackup(name);
|
|
return wallet;
|
|
} catch (_) {
|
|
await restoreWalletFilesFromBackup(name);
|
|
|
|
final wallet = await TronWalletBase.open(
|
|
name: name,
|
|
password: password,
|
|
walletInfo: walletInfo,
|
|
encryptionFileUtils: encryptionFileUtilsFor(isDirect),
|
|
);
|
|
|
|
await wallet.init();
|
|
await wallet.save();
|
|
return wallet;
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<TronWallet> restoreFromKeys(
|
|
TronRestoreWalletFromPrivateKey credentials, {
|
|
bool? isTestnet,
|
|
}) async {
|
|
final wallet = TronWallet(
|
|
password: credentials.password!,
|
|
privateKey: credentials.privateKey,
|
|
walletInfo: credentials.walletInfo!,
|
|
encryptionFileUtils: encryptionFileUtilsFor(isDirect),
|
|
);
|
|
|
|
await wallet.init();
|
|
wallet.addInitialTokens();
|
|
await wallet.save();
|
|
|
|
return wallet;
|
|
}
|
|
|
|
@override
|
|
Future<TronWallet> restoreFromSeed(
|
|
TronRestoreWalletFromSeedCredentials credentials, {
|
|
bool? isTestnet,
|
|
}) async {
|
|
if (!bip39.validateMnemonic(credentials.mnemonic)) {
|
|
throw TronMnemonicIsIncorrectException();
|
|
}
|
|
|
|
final wallet = TronWallet(
|
|
password: credentials.password!,
|
|
mnemonic: credentials.mnemonic,
|
|
walletInfo: credentials.walletInfo!,
|
|
passphrase: credentials.passphrase,
|
|
encryptionFileUtils: encryptionFileUtilsFor(isDirect),
|
|
);
|
|
|
|
await wallet.init();
|
|
wallet.addInitialTokens();
|
|
await wallet.save();
|
|
|
|
return wallet;
|
|
}
|
|
|
|
@override
|
|
Future<void> rename(String currentName, String password, String newName) async {
|
|
final currentWalletInfo = walletInfoSource.values
|
|
.firstWhere((info) => info.id == WalletBase.idFor(currentName, getType()));
|
|
final currentWallet = await TronWalletBase.open(
|
|
password: password,
|
|
name: currentName,
|
|
walletInfo: currentWalletInfo,
|
|
encryptionFileUtils: encryptionFileUtilsFor(isDirect),
|
|
);
|
|
|
|
await currentWallet.renameWalletFiles(newName);
|
|
await saveBackup(newName);
|
|
|
|
final newWalletInfo = currentWalletInfo;
|
|
newWalletInfo.id = WalletBase.idFor(newName, getType());
|
|
newWalletInfo.name = newName;
|
|
|
|
await walletInfoSource.put(currentWalletInfo.key, newWalletInfo);
|
|
}
|
|
|
|
@override
|
|
Future<bool> isWalletExit(String name) async =>
|
|
File(await pathForWallet(name: name, type: getType())).existsSync();
|
|
|
|
@override
|
|
Future<void> remove(String wallet) async {
|
|
File(await pathForWalletDir(name: wallet, type: getType())).delete(recursive: true);
|
|
final walletInfo = walletInfoSource.values
|
|
.firstWhereOrNull((info) => info.id == WalletBase.idFor(wallet, getType()))!;
|
|
await walletInfoSource.delete(walletInfo.key);
|
|
}
|
|
|
|
@override
|
|
Future<WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo>>
|
|
restoreFromHardwareWallet(TronNewWalletCredentials credentials) {
|
|
// TODO: implement restoreFromHardwareWallet
|
|
throw UnimplementedError();
|
|
}
|
|
}
|