2021-12-24 12:52:08 +00:00
|
|
|
import 'dart:io';
|
2023-09-05 16:04:19 +00:00
|
|
|
import 'dart:typed_data';
|
2023-08-24 22:06:58 +00:00
|
|
|
import 'package:cw_bitcoin/address_to_output_script.dart';
|
2021-12-24 12:52:08 +00:00
|
|
|
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';
|
2023-08-24 03:02:33 +00:00
|
|
|
import 'package:cw_bitcoin/electrum.dart';
|
|
|
|
import 'package:cw_bitcoin/script_hash.dart';
|
2023-08-24 22:06:58 +00:00
|
|
|
import 'package:cw_bitcoin/utils.dart';
|
2023-08-18 14:17:35 +00:00
|
|
|
import 'package:cw_core/node.dart';
|
2021-12-24 12:52:08 +00:00
|
|
|
import 'package:cw_core/unspent_coins_info.dart';
|
|
|
|
import 'package:cw_core/wallet_base.dart';
|
2023-08-24 03:02:33 +00:00
|
|
|
import 'package:cw_core/wallet_credentials.dart';
|
2021-12-24 12:52:08 +00:00
|
|
|
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';
|
2022-10-12 17:09:57 +00:00
|
|
|
import 'package:collection/collection.dart';
|
2023-08-23 12:37:36 +00:00
|
|
|
import 'package:mobx/mobx.dart';
|
|
|
|
import 'package:bitcoin_flutter/bitcoin_flutter.dart' as bitcoin;
|
2023-08-24 15:20:04 +00:00
|
|
|
import 'package:cw_bitcoin/bitcoin_derivations.dart';
|
2023-09-05 16:04:19 +00:00
|
|
|
import 'package:bip32/bip32.dart' as bip32;
|
|
|
|
import 'package:bip39/bip39.dart' as bip39;
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2023-09-12 14:33:15 +00:00
|
|
|
int countOccurrences(String str, String charToCount) {
|
|
|
|
int count = 0;
|
|
|
|
for (int i = 0; i < str.length; i++) {
|
|
|
|
if (str[i] == charToCount) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2023-08-18 14:17:35 +00:00
|
|
|
class BitcoinWalletService extends WalletService<BitcoinNewWalletCredentials,
|
|
|
|
BitcoinRestoreWalletFromSeedCredentials, BitcoinRestoreWalletFromWIFCredentials> {
|
2021-12-24 12:52:08 +00:00
|
|
|
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 {
|
2022-10-12 17:09:57 +00:00
|
|
|
final wallet = await BitcoinWalletBase.create(
|
2023-08-25 15:59:24 +00:00
|
|
|
mnemonic: await generateElectrumMnemonic(strength: 132),
|
2022-10-12 17:09:57 +00:00
|
|
|
password: credentials.password!,
|
|
|
|
walletInfo: credentials.walletInfo!,
|
2021-12-24 12:52:08 +00:00
|
|
|
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 {
|
2023-08-18 14:17:35 +00:00
|
|
|
final walletInfo = walletInfoSource.values
|
|
|
|
.firstWhereOrNull((info) => info.id == WalletBase.idFor(name, getType()))!;
|
2021-12-24 12:52:08 +00:00
|
|
|
final wallet = await BitcoinWalletBase.open(
|
2023-08-18 14:17:35 +00:00
|
|
|
password: password,
|
|
|
|
name: name,
|
|
|
|
walletInfo: walletInfo,
|
2021-12-24 12:52:08 +00:00
|
|
|
unspentCoinsInfo: unspentCoinsInfoSource);
|
|
|
|
await wallet.init();
|
|
|
|
return wallet;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2023-07-12 23:20:11 +00:00
|
|
|
Future<void> remove(String wallet) async {
|
2023-08-18 14:17:35 +00:00
|
|
|
File(await pathForWalletDir(name: wallet, type: getType())).delete(recursive: true);
|
|
|
|
final walletInfo = walletInfoSource.values
|
|
|
|
.firstWhereOrNull((info) => info.id == WalletBase.idFor(wallet, getType()))!;
|
2023-07-12 23:20:11 +00:00
|
|
|
await walletInfoSource.delete(walletInfo.key);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> rename(String currentName, String password, String newName) async {
|
2023-08-18 14:17:35 +00:00
|
|
|
final currentWalletInfo = walletInfoSource.values
|
|
|
|
.firstWhereOrNull((info) => info.id == WalletBase.idFor(currentName, getType()))!;
|
2023-07-12 23:20:11 +00:00
|
|
|
final currentWallet = await BitcoinWalletBase.open(
|
|
|
|
password: password,
|
|
|
|
name: currentName,
|
|
|
|
walletInfo: currentWalletInfo,
|
|
|
|
unspentCoinsInfo: unspentCoinsInfoSource);
|
|
|
|
|
|
|
|
await currentWallet.renameWalletFiles(newName);
|
|
|
|
|
|
|
|
final newWalletInfo = currentWalletInfo;
|
|
|
|
newWalletInfo.id = WalletBase.idFor(newName, getType());
|
|
|
|
newWalletInfo.name = newName;
|
|
|
|
|
|
|
|
await walletInfoSource.put(currentWalletInfo.key, newWalletInfo);
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
@override
|
2023-08-18 14:17:35 +00:00
|
|
|
Future<BitcoinWallet> restoreFromKeys(BitcoinRestoreWalletFromWIFCredentials credentials) async =>
|
2021-12-24 12:52:08 +00:00
|
|
|
throw UnimplementedError();
|
|
|
|
|
|
|
|
@override
|
2023-08-18 14:17:35 +00:00
|
|
|
Future<BitcoinWallet> restoreFromSeed(BitcoinRestoreWalletFromSeedCredentials credentials) async {
|
2022-10-12 17:09:57 +00:00
|
|
|
final wallet = await BitcoinWalletBase.create(
|
|
|
|
password: credentials.password!,
|
2021-12-24 12:52:08 +00:00
|
|
|
mnemonic: credentials.mnemonic,
|
2022-10-12 17:09:57 +00:00
|
|
|
walletInfo: credentials.walletInfo!,
|
2021-12-24 12:52:08 +00:00
|
|
|
unspentCoinsInfo: unspentCoinsInfoSource);
|
2023-08-25 15:12:07 +00:00
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
await wallet.save();
|
|
|
|
await wallet.init();
|
|
|
|
return wallet;
|
|
|
|
}
|
2023-08-18 14:17:35 +00:00
|
|
|
|
2023-08-23 12:37:36 +00:00
|
|
|
static Future<dynamic> getInfoFromSeed({required String seed, required Node node}) async {
|
2023-08-18 14:17:35 +00:00
|
|
|
throw UnimplementedError();
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|