mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-31 17:37:41 +00:00
81 lines
2.7 KiB
Dart
81 lines
2.7 KiB
Dart
|
import 'dart:io';
|
||
|
import 'package:cw_bitcoin/bitcoin_mnemonic.dart';
|
||
|
import 'package:cw_bitcoin/bitcoin_mnemonic_is_incorrect_exception.dart';
|
||
|
import 'package:cw_bitcoin/bitcoin_wallet_creation_credentials.dart';
|
||
|
import 'package:cw_core/unspent_coins_info.dart';
|
||
|
import 'package:cw_core/wallet_base.dart';
|
||
|
import 'package:cw_core/wallet_service.dart';
|
||
|
import 'package:cw_bitcoin/bitcoin_wallet.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';
|
||
|
|
||
|
class BitcoinWalletService extends WalletService<
|
||
|
BitcoinNewWalletCredentials,
|
||
|
BitcoinRestoreWalletFromSeedCredentials,
|
||
|
BitcoinRestoreWalletFromWIFCredentials> {
|
||
|
BitcoinWalletService(this.walletInfoSource, this.unspentCoinsInfoSource);
|
||
|
|
||
|
final Box<WalletInfo> walletInfoSource;
|
||
|
final Box<UnspentCoinsInfo> unspentCoinsInfoSource;
|
||
|
|
||
|
@override
|
||
|
WalletType getType() => WalletType.bitcoin;
|
||
|
|
||
|
@override
|
||
|
Future<BitcoinWallet> create(BitcoinNewWalletCredentials credentials) async {
|
||
|
final wallet = BitcoinWallet(
|
||
|
mnemonic: await generateMnemonic(),
|
||
|
password: credentials.password,
|
||
|
walletInfo: credentials.walletInfo,
|
||
|
unspentCoinsInfo: unspentCoinsInfoSource);
|
||
|
await wallet.save();
|
||
|
await wallet.init();
|
||
|
return wallet;
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Future<bool> isWalletExit(String name) async =>
|
||
|
File(await pathForWallet(name: name, type: getType())).existsSync();
|
||
|
|
||
|
@override
|
||
|
Future<BitcoinWallet> openWallet(String name, String password) async {
|
||
|
final walletInfo = walletInfoSource.values.firstWhere(
|
||
|
(info) => info.id == WalletBase.idFor(name, getType()),
|
||
|
orElse: () => null);
|
||
|
final wallet = await BitcoinWalletBase.open(
|
||
|
password: password, name: name, walletInfo: walletInfo,
|
||
|
unspentCoinsInfo: unspentCoinsInfoSource);
|
||
|
await wallet.init();
|
||
|
return wallet;
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Future<void> remove(String wallet) async =>
|
||
|
File(await pathForWalletDir(name: wallet, type: WalletType.bitcoin))
|
||
|
.delete(recursive: true);
|
||
|
|
||
|
@override
|
||
|
Future<BitcoinWallet> restoreFromKeys(
|
||
|
BitcoinRestoreWalletFromWIFCredentials credentials) async =>
|
||
|
throw UnimplementedError();
|
||
|
|
||
|
@override
|
||
|
Future<BitcoinWallet> restoreFromSeed(
|
||
|
BitcoinRestoreWalletFromSeedCredentials credentials) async {
|
||
|
if (!validateMnemonic(credentials.mnemonic)) {
|
||
|
throw BitcoinMnemonicIsIncorrectException();
|
||
|
}
|
||
|
|
||
|
final wallet = BitcoinWallet(
|
||
|
password: credentials.password,
|
||
|
mnemonic: credentials.mnemonic,
|
||
|
walletInfo: credentials.walletInfo,
|
||
|
unspentCoinsInfo: unspentCoinsInfoSource);
|
||
|
await wallet.save();
|
||
|
await wallet.init();
|
||
|
return wallet;
|
||
|
}
|
||
|
}
|