mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-19 09:15:11 +00:00
ab07ba47a5
Signed-off-by: Philemon Ukane <ukanephilemon@gmail.com>
162 lines
5.9 KiB
Dart
162 lines
5.9 KiB
Dart
import 'dart:io';
|
|
import 'package:cw_decred/api/libdcrwallet.dart';
|
|
import 'package:cw_decred/wallet_creation_credentials.dart';
|
|
import 'package:cw_decred/wallet.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cw_core/wallet_service.dart';
|
|
import 'package:cw_core/pathForWallet.dart';
|
|
import 'package:cw_core/wallet_info.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:collection/collection.dart';
|
|
import 'package:cw_core/unspent_coins_info.dart';
|
|
|
|
class DecredWalletService extends WalletService<
|
|
DecredNewWalletCredentials,
|
|
DecredRestoreWalletFromSeedCredentials,
|
|
DecredRestoreWalletFromPubkeyCredentials,
|
|
DecredRestoreWalletFromHardwareCredentials> {
|
|
DecredWalletService(this.walletInfoSource, this.unspentCoinsInfoSource);
|
|
|
|
final Box<WalletInfo> walletInfoSource;
|
|
final Box<UnspentCoinsInfo> unspentCoinsInfoSource;
|
|
final seedRestorePath = "m/44'/42'";
|
|
static final seedRestorePathTestnet = "m/44'/1'";
|
|
static final pubkeyRestorePath = "m/44'/42'/0'";
|
|
static final pubkeyRestorePathTestnet = "m/44'/1'/0'";
|
|
final mainnet = "mainnet";
|
|
final testnet = "testnet";
|
|
|
|
static void init() async {
|
|
// Use the general path for all dcr wallets as the general log directory.
|
|
// Individual wallet paths may be removed if the wallet is deleted.
|
|
final dcrLogDir = await pathForWalletDir(name: '', type: WalletType.decred);
|
|
initLibdcrwallet(dcrLogDir);
|
|
}
|
|
|
|
@override
|
|
WalletType getType() => WalletType.decred;
|
|
|
|
@override
|
|
Future<bool> isWalletExit(String name) async =>
|
|
File(await pathForWallet(name: name, type: getType())).existsSync();
|
|
|
|
@override
|
|
Future<DecredWallet> create(DecredNewWalletCredentials credentials,
|
|
{bool? isTestnet}) async {
|
|
await createWalletAsync(
|
|
name: credentials.walletInfo!.name,
|
|
dataDir: credentials.walletInfo!.dirPath,
|
|
password: credentials.password!,
|
|
network: isTestnet == true ? testnet : mainnet,
|
|
);
|
|
credentials.walletInfo!.derivationPath =
|
|
isTestnet == true ? seedRestorePathTestnet : seedRestorePath;
|
|
final wallet = DecredWallet(credentials.walletInfo!, credentials.password!,
|
|
this.unspentCoinsInfoSource);
|
|
await wallet.init();
|
|
return wallet;
|
|
}
|
|
|
|
@override
|
|
Future<DecredWallet> openWallet(String name, String password) async {
|
|
final walletInfo = walletInfoSource.values.firstWhereOrNull(
|
|
(info) => info.id == WalletBase.idFor(name, getType()))!;
|
|
final network = walletInfo.derivationPath == seedRestorePathTestnet ||
|
|
walletInfo.derivationPath == pubkeyRestorePathTestnet
|
|
? testnet
|
|
: mainnet;
|
|
|
|
final walletDirExists = Directory(walletInfo.dirPath).existsSync();
|
|
if (!walletDirExists) {
|
|
walletInfo.dirPath = await pathForWalletDir(name: name, type: getType());
|
|
}
|
|
|
|
await loadWalletAsync(
|
|
name: walletInfo.name,
|
|
dataDir: walletInfo.dirPath,
|
|
net: network,
|
|
);
|
|
final wallet =
|
|
DecredWallet(walletInfo, password, this.unspentCoinsInfoSource);
|
|
await wallet.init();
|
|
return wallet;
|
|
}
|
|
|
|
@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<void> rename(
|
|
String currentName, String password, String newName) async {
|
|
final currentWalletInfo = walletInfoSource.values.firstWhereOrNull(
|
|
(info) => info.id == WalletBase.idFor(currentName, getType()))!;
|
|
final network =
|
|
currentWalletInfo.derivationPath == seedRestorePathTestnet ||
|
|
currentWalletInfo.derivationPath == pubkeyRestorePathTestnet
|
|
? testnet
|
|
: mainnet;
|
|
final currentWallet =
|
|
DecredWallet(currentWalletInfo, password, this.unspentCoinsInfoSource);
|
|
|
|
await currentWallet.renameWalletFiles(newName);
|
|
|
|
final newDirPath = await pathForWalletDir(name: newName, type: getType());
|
|
final newWalletInfo = currentWalletInfo;
|
|
newWalletInfo.id = WalletBase.idFor(newName, getType());
|
|
newWalletInfo.name = newName;
|
|
newWalletInfo.dirPath = newDirPath;
|
|
newWalletInfo.network = network;
|
|
|
|
await walletInfoSource.put(currentWalletInfo.key, newWalletInfo);
|
|
}
|
|
|
|
@override
|
|
Future<DecredWallet> restoreFromSeed(
|
|
DecredRestoreWalletFromSeedCredentials credentials,
|
|
{bool? isTestnet}) async {
|
|
await createWalletAsync(
|
|
name: credentials.walletInfo!.name,
|
|
dataDir: credentials.walletInfo!.dirPath,
|
|
password: credentials.password!,
|
|
mnemonic: credentials.mnemonic,
|
|
network: isTestnet == true ? testnet : mainnet);
|
|
credentials.walletInfo!.derivationPath =
|
|
isTestnet == true ? seedRestorePathTestnet : seedRestorePath;
|
|
final wallet = DecredWallet(credentials.walletInfo!, credentials.password!,
|
|
this.unspentCoinsInfoSource);
|
|
await wallet.init();
|
|
return wallet;
|
|
}
|
|
|
|
// restoreFromKeys only supports restoring a watch only wallet from an account
|
|
// pubkey.
|
|
@override
|
|
Future<DecredWallet> restoreFromKeys(
|
|
DecredRestoreWalletFromPubkeyCredentials credentials,
|
|
{bool? isTestnet}) async {
|
|
createWatchOnlyWallet(
|
|
credentials.walletInfo!.name,
|
|
credentials.walletInfo!.dirPath,
|
|
credentials.pubkey,
|
|
isTestnet == true ? testnet : mainnet,
|
|
);
|
|
credentials.walletInfo!.derivationPath =
|
|
isTestnet == true ? pubkeyRestorePathTestnet : pubkeyRestorePath;
|
|
final wallet = DecredWallet(credentials.walletInfo!, credentials.password!,
|
|
this.unspentCoinsInfoSource);
|
|
await wallet.init();
|
|
return wallet;
|
|
}
|
|
|
|
@override
|
|
Future<DecredWallet> restoreFromHardwareWallet(
|
|
DecredRestoreWalletFromHardwareCredentials credentials) async =>
|
|
throw UnimplementedError();
|
|
}
|