2023-08-04 17:01:49 +00:00
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:cw_core/pathForWallet.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';
|
2023-10-06 00:38:39 +00:00
|
|
|
import 'package:cw_core/encryption_file_utils.dart';
|
2023-08-04 17:01:49 +00:00
|
|
|
import 'package:cw_ethereum/ethereum_mnemonics.dart';
|
|
|
|
import 'package:cw_ethereum/ethereum_wallet.dart';
|
|
|
|
import 'package:cw_ethereum/ethereum_wallet_creation_credentials.dart';
|
|
|
|
import 'package:hive/hive.dart';
|
|
|
|
import 'package:bip39/bip39.dart' as bip39;
|
|
|
|
import 'package:collection/collection.dart';
|
|
|
|
|
|
|
|
class EthereumWalletService extends WalletService<EthereumNewWalletCredentials,
|
2023-08-23 12:33:20 +00:00
|
|
|
EthereumRestoreWalletFromSeedCredentials, EthereumRestoreWalletFromPrivateKey> {
|
2023-08-08 13:58:07 +00:00
|
|
|
EthereumWalletService(this.walletInfoSource, this.isDirect);
|
2023-08-04 17:01:49 +00:00
|
|
|
|
|
|
|
final Box<WalletInfo> walletInfoSource;
|
2023-08-08 13:58:07 +00:00
|
|
|
final bool isDirect;
|
2023-08-04 17:01:49 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Future<EthereumWallet> create(EthereumNewWalletCredentials credentials) async {
|
|
|
|
final mnemonic = bip39.generateMnemonic();
|
|
|
|
final wallet = EthereumWallet(
|
|
|
|
walletInfo: credentials.walletInfo!,
|
|
|
|
mnemonic: mnemonic,
|
|
|
|
password: credentials.password!,
|
2023-08-08 13:58:07 +00:00
|
|
|
encryptionFileUtils: encryptionFileUtilsFor(isDirect),
|
2023-08-04 17:01:49 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
await wallet.init();
|
|
|
|
wallet.addInitialTokens();
|
|
|
|
await wallet.save();
|
|
|
|
|
|
|
|
return wallet;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
WalletType getType() => WalletType.ethereum;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<bool> isWalletExit(String name) async =>
|
|
|
|
File(await pathForWallet(name: name, type: getType())).existsSync();
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<EthereumWallet> openWallet(String name, String password) async {
|
|
|
|
final walletInfo =
|
|
|
|
walletInfoSource.values.firstWhere((info) => info.id == WalletBase.idFor(name, getType()));
|
|
|
|
final wallet = await EthereumWalletBase.open(
|
|
|
|
name: name,
|
|
|
|
password: password,
|
|
|
|
walletInfo: walletInfo,
|
2023-08-08 13:58:07 +00:00
|
|
|
encryptionFileUtils: encryptionFileUtilsFor(isDirect),
|
2023-08-04 17:01:49 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
await wallet.init();
|
|
|
|
await wallet.save();
|
|
|
|
|
|
|
|
return wallet;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> remove(String wallet) async {
|
|
|
|
File(await pathForWalletDir(name: wallet, type: getType())).delete(recursive: true);
|
2023-08-08 13:58:07 +00:00
|
|
|
final walletInfo = walletInfoSource.values
|
|
|
|
.firstWhereOrNull((info) => info.id == WalletBase.idFor(wallet, getType()))!;
|
2023-08-04 17:01:49 +00:00
|
|
|
await walletInfoSource.delete(walletInfo.key);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2023-08-23 12:33:20 +00:00
|
|
|
Future<EthereumWallet> restoreFromKeys(EthereumRestoreWalletFromPrivateKey credentials) async {
|
|
|
|
final wallet = EthereumWallet(
|
|
|
|
password: credentials.password!,
|
|
|
|
privateKey: credentials.privateKey,
|
|
|
|
walletInfo: credentials.walletInfo!,
|
2023-08-08 13:58:07 +00:00
|
|
|
encryptionFileUtils: encryptionFileUtilsFor(isDirect),
|
2023-08-23 12:33:20 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
await wallet.init();
|
|
|
|
wallet.addInitialTokens();
|
|
|
|
await wallet.save();
|
|
|
|
|
|
|
|
return wallet;
|
2023-08-04 17:01:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<EthereumWallet> restoreFromSeed(
|
|
|
|
EthereumRestoreWalletFromSeedCredentials credentials) async {
|
|
|
|
if (!bip39.validateMnemonic(credentials.mnemonic)) {
|
|
|
|
throw EthereumMnemonicIsIncorrectException();
|
|
|
|
}
|
|
|
|
|
|
|
|
final wallet = EthereumWallet(
|
|
|
|
password: credentials.password!,
|
|
|
|
mnemonic: credentials.mnemonic,
|
|
|
|
walletInfo: credentials.walletInfo!,
|
2023-08-08 13:58:07 +00:00
|
|
|
encryptionFileUtils: encryptionFileUtilsFor(isDirect),
|
2023-08-04 17:01:49 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
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 EthereumWalletBase.open(
|
2023-08-08 13:58:07 +00:00
|
|
|
password: password,
|
|
|
|
name: currentName,
|
|
|
|
walletInfo: currentWalletInfo,
|
|
|
|
encryptionFileUtils: encryptionFileUtilsFor(isDirect),
|
|
|
|
);
|
2023-08-04 17:01:49 +00:00
|
|
|
|
|
|
|
await currentWallet.renameWalletFiles(newName);
|
|
|
|
|
|
|
|
final newWalletInfo = currentWalletInfo;
|
|
|
|
newWalletInfo.id = WalletBase.idFor(newName, getType());
|
|
|
|
newWalletInfo.name = newName;
|
|
|
|
|
|
|
|
await walletInfoSource.put(currentWalletInfo.key, newWalletInfo);
|
|
|
|
}
|
|
|
|
}
|