cake_wallet/cw_bitcoin/lib/bitcoin_wallet_service.dart

209 lines
6.9 KiB
Dart
Raw Normal View History

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';
2023-08-24 03:02:33 +00:00
import 'package:cw_bitcoin/electrum.dart';
import 'package:cw_bitcoin/script_hash.dart';
2023-08-18 14:17:35 +00:00
import 'package:cw_core/node.dart';
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';
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-08-18 14:17:35 +00:00
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 {
2023-08-24 03:02:33 +00:00
// default derivation type/path for bitcoin wallets:
// TODO: figure out what the default derivation type is
// credentials.walletInfo!.derivationType = DerivationType.bip39;
credentials.walletInfo!.derivationPath = "m/0'/1";
2022-10-12 17:09:57 +00:00
final wallet = await BitcoinWalletBase.create(
mnemonic: await generateMnemonic(),
2022-10-12 17:09:57 +00:00
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 {
2023-08-18 14:17:35 +00:00
final walletInfo = walletInfoSource.values
.firstWhereOrNull((info) => info.id == WalletBase.idFor(name, getType()))!;
final wallet = await BitcoinWalletBase.open(
2023-08-18 14:17:35 +00:00
password: password,
name: name,
walletInfo: walletInfo,
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);
}
@override
2023-08-18 14:17:35 +00:00
Future<BitcoinWallet> restoreFromKeys(BitcoinRestoreWalletFromWIFCredentials credentials) async =>
throw UnimplementedError();
@override
2023-08-18 14:17:35 +00:00
Future<BitcoinWallet> restoreFromSeed(BitcoinRestoreWalletFromSeedCredentials credentials) async {
if (!validateMnemonic(credentials.mnemonic)) {
throw BitcoinMnemonicIsIncorrectException();
}
2022-10-12 17:09:57 +00:00
final wallet = await BitcoinWalletBase.create(
password: credentials.password!,
mnemonic: credentials.mnemonic,
2022-10-12 17:09:57 +00:00
walletInfo: credentials.walletInfo!,
unspentCoinsInfo: unspentCoinsInfoSource);
await wallet.save();
await wallet.init();
return wallet;
}
2023-08-18 14:17:35 +00:00
static Future<List<DerivationType>> compareDerivationMethods(
{required mnemonic, required Node node}) async {
2023-08-24 15:20:04 +00:00
return [DerivationType.bip39];
2023-08-18 14:17:35 +00:00
}
2023-08-23 12:37:36 +00:00
static Future<List<DerivationInfo>> getDerivationsFromMnemonic(
{required String mnemonic, required Node node}) async {
var list = [];
2023-08-24 15:20:04 +00:00
2023-08-24 03:02:33 +00:00
final electrumClient = ElectrumClient();
await electrumClient.connectToUri(node.uri);
2023-08-23 12:37:36 +00:00
2023-08-24 15:20:04 +00:00
print("@@@@@@@@@@@@@@");
for (DerivationType dType in bitcoin_derivations.keys) {
if (dType == DerivationType.bip39) {
for (DerivationInfo dInfo in bitcoin_derivations[dType]!) {
try {
print("${dInfo.derivationType.toString()} : ${dInfo.derivationPath}");
var wallet = bitcoin.HDWallet.fromSeed(await mnemonicToSeedBytes(mnemonic),
network: bitcoin.bitcoin)
.derivePath("m/0'/1");
// get addresses:
final sh = scriptHash(wallet.address!, networkType: bitcoin.bitcoin);
final balance = await electrumClient.getBalance(sh);
final history = await electrumClient.getHistory(sh);
print("history:");
print(history);
print(history.length);
dInfo.balance = balance.entries.first.value.toString();
dInfo.address = wallet.address ?? "";
dInfo.height = history.length;
list.add(dInfo);
} catch (e) {
print(e);
}
}
}
}
2023-08-23 12:37:36 +00:00
// default derivation path:
var wallet =
bitcoin.HDWallet.fromSeed(await mnemonicToSeedBytes(mnemonic), network: bitcoin.bitcoin)
.derivePath("m/0'/1");
2023-08-24 03:02:33 +00:00
// get addresses:
final sh = scriptHash(wallet.address!, networkType: bitcoin.bitcoin);
final balance = await electrumClient.getBalance(sh);
2023-08-24 15:20:04 +00:00
wallet.derive(0);
2023-08-23 12:37:36 +00:00
print(wallet.address);
2023-08-24 03:02:33 +00:00
print(balance.entries);
2023-08-23 12:37:36 +00:00
print("@@@@@@@@@@@@@");
// final wallet = await BitcoinWalletBase.create(
// password: "password",
// mnemonic: mnemonic,
// walletInfo: WalletInfo(
// "id",
// "test",
// WalletType.bitcoin,
// false,
// 0,
// 0,
// "dirPath",
// "path",
// "",
// null,
// "yatLastUsedAddressRaw",
// false,
// DerivationType.bip39,
// "derivationPath",
// ),
// unspentCoinsInfo: unspentCoinsInfoSource);
list.add(DerivationInfo(
2023-08-24 15:20:04 +00:00
derivationType: DerivationType.bip39,
balance: "0.00000",
address: "address",
height: 0,
2023-08-23 12:37:36 +00:00
));
return [];
}
static Future<dynamic> getInfoFromSeed({required String seed, required Node node}) async {
2023-08-18 14:17:35 +00:00
throw UnimplementedError();
}
}