2021-12-24 12:52:08 +00:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:convert';
|
2023-07-12 23:20:11 +00:00
|
|
|
import 'dart:io';
|
2023-11-17 00:33:26 +00:00
|
|
|
import 'dart:isolate';
|
2022-01-12 13:20:43 +00:00
|
|
|
import 'dart:math';
|
2023-10-12 22:50:16 +00:00
|
|
|
import 'package:cw_core/pending_transaction.dart';
|
2023-10-06 00:38:39 +00:00
|
|
|
import 'package:cw_core/encryption_file_utils.dart';
|
2021-12-24 12:52:08 +00:00
|
|
|
import 'package:cw_core/unspent_coins_info.dart';
|
|
|
|
import 'package:hive/hive.dart';
|
|
|
|
import 'package:cw_bitcoin/electrum_wallet_addresses.dart';
|
|
|
|
import 'package:mobx/mobx.dart';
|
|
|
|
import 'package:rxdart/subjects.dart';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:bitcoin_flutter/bitcoin_flutter.dart' as bitcoin;
|
|
|
|
import 'package:cw_bitcoin/electrum_transaction_info.dart';
|
|
|
|
import 'package:cw_core/pathForWallet.dart';
|
|
|
|
import 'package:cw_bitcoin/address_to_output_script.dart';
|
|
|
|
import 'package:cw_bitcoin/bitcoin_address_record.dart';
|
|
|
|
import 'package:cw_bitcoin/electrum_balance.dart';
|
|
|
|
import 'package:cw_bitcoin/bitcoin_transaction_credentials.dart';
|
|
|
|
import 'package:cw_bitcoin/electrum_transaction_history.dart';
|
|
|
|
import 'package:cw_bitcoin/bitcoin_transaction_no_inputs_exception.dart';
|
|
|
|
import 'package:cw_bitcoin/bitcoin_transaction_priority.dart';
|
|
|
|
import 'package:cw_bitcoin/bitcoin_transaction_wrong_balance_exception.dart';
|
|
|
|
import 'package:cw_bitcoin/bitcoin_unspent.dart';
|
|
|
|
import 'package:cw_bitcoin/bitcoin_wallet_keys.dart';
|
|
|
|
import 'package:cw_bitcoin/pending_bitcoin_transaction.dart';
|
|
|
|
import 'package:cw_bitcoin/script_hash.dart';
|
|
|
|
import 'package:cw_bitcoin/utils.dart';
|
|
|
|
import 'package:cw_core/wallet_base.dart';
|
|
|
|
import 'package:cw_core/node.dart';
|
|
|
|
import 'package:cw_core/sync_status.dart';
|
|
|
|
import 'package:cw_core/transaction_priority.dart';
|
|
|
|
import 'package:cw_core/wallet_info.dart';
|
|
|
|
import 'package:cw_bitcoin/electrum.dart';
|
2022-01-17 15:33:51 +00:00
|
|
|
import 'package:hex/hex.dart';
|
2022-03-30 15:57:04 +00:00
|
|
|
import 'package:cw_core/crypto_currency.dart';
|
2022-10-12 17:09:57 +00:00
|
|
|
import 'package:collection/collection.dart';
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
part 'electrum_wallet.g.dart';
|
|
|
|
|
|
|
|
class ElectrumWallet = ElectrumWalletBase with _$ElectrumWallet;
|
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
abstract class ElectrumWalletBase
|
|
|
|
extends WalletBase<ElectrumBalance, ElectrumTransactionHistory, ElectrumTransactionInfo>
|
|
|
|
with Store {
|
2021-12-24 12:52:08 +00:00
|
|
|
ElectrumWalletBase(
|
2022-10-12 17:09:57 +00:00
|
|
|
{required String password,
|
2023-11-14 23:17:15 +00:00
|
|
|
required WalletInfo walletInfo,
|
|
|
|
required Box<UnspentCoinsInfo> unspentCoinsInfo,
|
|
|
|
required this.networkType,
|
|
|
|
required this.mnemonic,
|
|
|
|
required Uint8List seedBytes,
|
|
|
|
required this.encryptionFileUtils,
|
|
|
|
List<BitcoinAddressRecord>? initialAddresses,
|
|
|
|
ElectrumClient? electrumClient,
|
|
|
|
ElectrumBalance? initialBalance,
|
|
|
|
CryptoCurrency? currency})
|
2023-10-12 22:50:16 +00:00
|
|
|
: hd = currency == CryptoCurrency.bch
|
2023-11-14 23:17:15 +00:00
|
|
|
? bitcoinCashHDWallet(seedBytes)
|
|
|
|
: bitcoin.HDWallet.fromSeed(seedBytes, network: networkType).derivePath("m/0'/0"),
|
2021-12-24 12:52:08 +00:00
|
|
|
syncStatus = NotConnectedSyncStatus(),
|
|
|
|
_password = password,
|
|
|
|
_feeRates = <int>[],
|
|
|
|
_isTransactionUpdating = false,
|
2022-10-12 17:09:57 +00:00
|
|
|
unspentCoins = [],
|
|
|
|
_scripthashesUpdateSubject = {},
|
2023-10-12 22:50:16 +00:00
|
|
|
balance = ObservableMap<CryptoCurrency, ElectrumBalance>.of(currency != null
|
|
|
|
? {
|
2023-11-14 23:17:15 +00:00
|
|
|
currency:
|
|
|
|
initialBalance ?? const ElectrumBalance(confirmed: 0, unconfirmed: 0, frozen: 0)
|
|
|
|
}
|
2023-10-12 22:50:16 +00:00
|
|
|
: {}),
|
2022-10-12 17:09:57 +00:00
|
|
|
this.unspentCoinsInfo = unspentCoinsInfo,
|
2021-12-24 12:52:08 +00:00
|
|
|
super(walletInfo) {
|
|
|
|
this.electrumClient = electrumClient ?? ElectrumClient();
|
|
|
|
this.walletInfo = walletInfo;
|
2023-11-14 23:17:15 +00:00
|
|
|
transactionHistory = ElectrumTransactionHistory(
|
|
|
|
walletInfo: walletInfo, password: password, encryptionFileUtils: encryptionFileUtils);
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
static bitcoin.HDWallet bitcoinCashHDWallet(Uint8List seedBytes) =>
|
2023-11-14 23:17:15 +00:00
|
|
|
bitcoin.HDWallet.fromSeed(seedBytes).derivePath("m/44'/145'/0'/0");
|
2023-10-12 22:50:16 +00:00
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
static int estimatedTransactionSize(int inputsCount, int outputsCounts) =>
|
|
|
|
inputsCount * 146 + outputsCounts * 33 + 8;
|
|
|
|
|
|
|
|
final bitcoin.HDWallet hd;
|
|
|
|
final String mnemonic;
|
2023-04-10 23:16:13 +00:00
|
|
|
final EncryptionFileUtils encryptionFileUtils;
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
late ElectrumClient electrumClient;
|
2021-12-24 12:52:08 +00:00
|
|
|
Box<UnspentCoinsInfo> unspentCoinsInfo;
|
|
|
|
|
|
|
|
@override
|
2022-10-12 17:09:57 +00:00
|
|
|
late ElectrumWalletAddresses walletAddresses;
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
@observable
|
2022-10-12 17:09:57 +00:00
|
|
|
late ObservableMap<CryptoCurrency, ElectrumBalance> balance;
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
@observable
|
|
|
|
SyncStatus syncStatus;
|
|
|
|
|
|
|
|
List<String> get scriptHashes => walletAddresses.addresses
|
|
|
|
.map((addr) => scriptHash(addr.address, networkType: networkType))
|
|
|
|
.toList();
|
|
|
|
|
|
|
|
List<String> get publicScriptHashes => walletAddresses.addresses
|
2023-10-12 22:50:16 +00:00
|
|
|
.where((addr) => !addr.isHidden)
|
|
|
|
.map((addr) => scriptHash(addr.address, networkType: networkType))
|
|
|
|
.toList();
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
String get xpub => hd.base58!;
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
String get seed => mnemonic;
|
|
|
|
|
2023-03-30 22:33:59 +00:00
|
|
|
@override
|
|
|
|
String get password => _password;
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
bitcoin.NetworkType networkType;
|
|
|
|
|
|
|
|
@override
|
2023-10-12 22:50:16 +00:00
|
|
|
BitcoinWalletKeys get keys =>
|
|
|
|
BitcoinWalletKeys(wif: hd.wif!, privateKey: hd.privKey!, publicKey: hd.pubKey!);
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2022-07-19 14:29:28 +00:00
|
|
|
String _password;
|
2021-12-24 12:52:08 +00:00
|
|
|
List<BitcoinUnspent> unspentCoins;
|
|
|
|
List<int> _feeRates;
|
2022-10-12 17:09:57 +00:00
|
|
|
Map<String, BehaviorSubject<Object>?> _scripthashesUpdateSubject;
|
2023-11-17 00:33:26 +00:00
|
|
|
BehaviorSubject<Object>? _chainTipUpdateSubject;
|
2021-12-24 12:52:08 +00:00
|
|
|
bool _isTransactionUpdating;
|
|
|
|
|
2023-06-16 01:14:01 +00:00
|
|
|
void Function(FlutterErrorDetails)? _onError;
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
Future<void> init() async {
|
|
|
|
await walletAddresses.init();
|
|
|
|
await transactionHistory.init();
|
|
|
|
await save();
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
@override
|
|
|
|
Future<void> startSync() async {
|
|
|
|
try {
|
2023-11-17 00:33:26 +00:00
|
|
|
await _setInitialHeight();
|
|
|
|
} catch (_) {}
|
|
|
|
|
|
|
|
try {
|
|
|
|
rescan(height: walletInfo.restoreHeight);
|
|
|
|
|
2022-01-18 16:27:33 +00:00
|
|
|
await walletAddresses.discoverAddresses();
|
2021-12-24 12:52:08 +00:00
|
|
|
await updateTransactions();
|
|
|
|
_subscribeForUpdates();
|
|
|
|
await updateUnspent();
|
2023-04-20 13:46:41 +00:00
|
|
|
await updateBalance();
|
2021-12-24 12:52:08 +00:00
|
|
|
_feeRates = await electrumClient.feeRates();
|
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
Timer.periodic(
|
|
|
|
const Duration(minutes: 1), (timer) async => _feeRates = await electrumClient.feeRates());
|
2022-10-12 17:09:57 +00:00
|
|
|
} catch (e, stacktrace) {
|
|
|
|
print(stacktrace);
|
2021-12-24 12:52:08 +00:00
|
|
|
print(e.toString());
|
|
|
|
syncStatus = FailedSyncStatus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
@override
|
2022-10-12 17:09:57 +00:00
|
|
|
Future<void> connectToNode({required Node node}) async {
|
2021-12-24 12:52:08 +00:00
|
|
|
try {
|
|
|
|
syncStatus = ConnectingSyncStatus();
|
|
|
|
await electrumClient.connectToUri(node.uri);
|
|
|
|
electrumClient.onConnectionStatusChange = (bool isConnected) {
|
|
|
|
if (!isConnected) {
|
|
|
|
syncStatus = LostConnectionSyncStatus();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
syncStatus = ConnectedSyncStatus();
|
|
|
|
} catch (e) {
|
|
|
|
print(e.toString());
|
|
|
|
syncStatus = FailedSyncStatus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2023-10-12 22:50:16 +00:00
|
|
|
Future<PendingTransaction> createTransaction(Object credentials) async {
|
2021-12-24 12:52:08 +00:00
|
|
|
const minAmount = 546;
|
|
|
|
final transactionCredentials = credentials as BitcoinTransactionCredentials;
|
|
|
|
final inputs = <BitcoinUnspent>[];
|
|
|
|
final outputs = transactionCredentials.outputs;
|
|
|
|
final hasMultiDestination = outputs.length > 1;
|
|
|
|
var allInputsAmount = 0;
|
|
|
|
|
|
|
|
if (unspentCoins.isEmpty) {
|
|
|
|
await updateUnspent();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (final utx in unspentCoins) {
|
|
|
|
if (utx.isSending) {
|
|
|
|
allInputsAmount += utx.value;
|
|
|
|
inputs.add(utx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inputs.isEmpty) {
|
|
|
|
throw BitcoinTransactionNoInputsException();
|
|
|
|
}
|
|
|
|
|
2023-11-14 23:17:15 +00:00
|
|
|
final allAmountFee = 222;
|
2022-12-16 17:21:40 +00:00
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
final allAmount = allInputsAmount - allAmountFee;
|
|
|
|
|
|
|
|
var credentialsAmount = 0;
|
|
|
|
var amount = 0;
|
|
|
|
var fee = 0;
|
|
|
|
|
|
|
|
if (hasMultiDestination) {
|
2023-10-12 22:50:16 +00:00
|
|
|
if (outputs.any((item) => item.sendAll || item.formattedCryptoAmount! <= 0)) {
|
2021-12-24 12:52:08 +00:00
|
|
|
throw BitcoinTransactionWrongBalanceException(currency);
|
|
|
|
}
|
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
credentialsAmount = outputs.fold(0, (acc, value) => acc + value.formattedCryptoAmount!);
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
if (allAmount - credentialsAmount < minAmount) {
|
|
|
|
throw BitcoinTransactionWrongBalanceException(currency);
|
|
|
|
}
|
|
|
|
|
|
|
|
amount = credentialsAmount;
|
2022-07-28 17:03:16 +00:00
|
|
|
|
|
|
|
if (transactionCredentials.feeRate != null) {
|
2022-10-12 17:09:57 +00:00
|
|
|
fee = calculateEstimatedFeeWithFeeRate(transactionCredentials.feeRate!, amount,
|
2022-07-28 17:03:16 +00:00
|
|
|
outputsCount: outputs.length + 1);
|
|
|
|
} else {
|
|
|
|
fee = calculateEstimatedFee(transactionCredentials.priority, amount,
|
|
|
|
outputsCount: outputs.length + 1);
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
} else {
|
|
|
|
final output = outputs.first;
|
2023-10-12 22:50:16 +00:00
|
|
|
credentialsAmount = !output.sendAll ? output.formattedCryptoAmount! : 0;
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
if (credentialsAmount > allAmount) {
|
|
|
|
throw BitcoinTransactionWrongBalanceException(currency);
|
|
|
|
}
|
|
|
|
|
|
|
|
amount = output.sendAll || allAmount - credentialsAmount < minAmount
|
|
|
|
? allAmount
|
|
|
|
: credentialsAmount;
|
2022-07-28 17:03:16 +00:00
|
|
|
|
|
|
|
if (output.sendAll || amount == allAmount) {
|
|
|
|
fee = allAmountFee;
|
|
|
|
} else if (transactionCredentials.feeRate != null) {
|
2022-10-12 17:09:57 +00:00
|
|
|
fee = calculateEstimatedFeeWithFeeRate(transactionCredentials.feeRate!, amount);
|
2022-07-28 17:03:16 +00:00
|
|
|
} else {
|
|
|
|
fee = calculateEstimatedFee(transactionCredentials.priority, amount);
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
2023-11-14 23:17:15 +00:00
|
|
|
if (fee == 0 && networkType == bitcoin.bitcoin) {
|
|
|
|
// throw BitcoinTransactionWrongBalanceException(currency);
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
final totalAmount = amount + fee;
|
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
if (totalAmount > balance[currency]!.confirmed || totalAmount > allInputsAmount) {
|
2023-11-14 23:17:15 +00:00
|
|
|
// throw BitcoinTransactionWrongBalanceException(currency);
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
final txb = bitcoin.TransactionBuilder(network: networkType);
|
2022-01-18 16:27:33 +00:00
|
|
|
final changeAddress = await walletAddresses.getChangeAddress();
|
2021-12-24 12:52:08 +00:00
|
|
|
var leftAmount = totalAmount;
|
|
|
|
var totalInputAmount = 0;
|
|
|
|
|
|
|
|
inputs.clear();
|
|
|
|
|
|
|
|
for (final utx in unspentCoins) {
|
|
|
|
if (utx.isSending) {
|
|
|
|
leftAmount = leftAmount - utx.value;
|
|
|
|
totalInputAmount += utx.value;
|
|
|
|
inputs.add(utx);
|
|
|
|
|
|
|
|
if (leftAmount <= 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inputs.isEmpty) {
|
|
|
|
throw BitcoinTransactionNoInputsException();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (amount <= 0 || totalInputAmount < totalAmount) {
|
2023-11-14 23:17:15 +00:00
|
|
|
// throw BitcoinTransactionWrongBalanceException(currency);
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
txb.setVersion(1);
|
2023-11-14 23:17:15 +00:00
|
|
|
List<bitcoin.PrivateKeyInfo> inputPrivKeys = [];
|
|
|
|
List<bitcoin.Outpoint> outpoints = [];
|
2021-12-24 12:52:08 +00:00
|
|
|
inputs.forEach((input) {
|
2023-11-14 23:17:15 +00:00
|
|
|
inputPrivKeys.add(bitcoin.PrivateKeyInfo(
|
|
|
|
bitcoin.PrivateKey.fromHex(
|
|
|
|
bitcoin.getSecp256k1(),
|
|
|
|
HEX.encode(generateKeyPair(
|
|
|
|
hd: input.bitcoinAddressRecord.isHidden
|
|
|
|
? walletAddresses.sideHd
|
|
|
|
: walletAddresses.mainHd,
|
|
|
|
index: input.bitcoinAddressRecord.index,
|
|
|
|
network: networkType)
|
|
|
|
.privateKey!)),
|
|
|
|
false));
|
|
|
|
outpoints.add(bitcoin.Outpoint(txid: input.hash, index: input.vout));
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
if (input.isP2wpkh) {
|
|
|
|
final p2wpkh = bitcoin
|
|
|
|
.P2WPKH(
|
2023-11-14 23:17:15 +00:00
|
|
|
data: generatePaymentData(
|
|
|
|
hd: input.bitcoinAddressRecord.isHidden
|
|
|
|
? walletAddresses.sideHd
|
|
|
|
: walletAddresses.mainHd,
|
|
|
|
index: input.bitcoinAddressRecord.index),
|
|
|
|
network: networkType)
|
2021-12-24 12:52:08 +00:00
|
|
|
.data;
|
|
|
|
|
|
|
|
txb.addInput(input.hash, input.vout, null, p2wpkh.output);
|
|
|
|
} else {
|
|
|
|
txb.addInput(input.hash, input.vout);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-11-14 23:17:15 +00:00
|
|
|
List<bitcoin.SilentPaymentDestination> silentAddresses = [];
|
2021-12-24 12:52:08 +00:00
|
|
|
outputs.forEach((item) {
|
2023-10-12 22:50:16 +00:00
|
|
|
final outputAmount = hasMultiDestination ? item.formattedCryptoAmount : amount;
|
|
|
|
final outputAddress = item.isParsedAddress ? item.extractedAddress! : item.address;
|
2023-11-14 23:17:15 +00:00
|
|
|
if (outputAddress.startsWith('tsp1')) {
|
|
|
|
silentAddresses
|
|
|
|
.add(bitcoin.SilentPaymentDestination.fromAddress(outputAddress, outputAmount!));
|
|
|
|
} else {
|
|
|
|
txb.addOutput(addressToOutputScript(outputAddress, networkType), outputAmount!);
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
});
|
|
|
|
|
2023-11-14 23:17:15 +00:00
|
|
|
if (silentAddresses.isNotEmpty) {
|
|
|
|
final outpointsHash = bitcoin.SilentPayment.hashOutpoints(outpoints);
|
2022-07-28 17:03:16 +00:00
|
|
|
|
2023-11-14 23:17:15 +00:00
|
|
|
final aSum = bitcoin.SilentPayment.getSumInputPrivKeys(inputPrivKeys);
|
|
|
|
|
|
|
|
final generatedOutputs = bitcoin.SilentPayment.generateMultipleRecipientPubkeys(
|
|
|
|
aSum, outpointsHash, silentAddresses);
|
|
|
|
|
|
|
|
generatedOutputs.forEach((recipientSilentAddress, generatedOutput) {
|
|
|
|
generatedOutput.forEach((output) {
|
2023-11-15 21:01:18 +00:00
|
|
|
final generatedPubkey = output.$1.toHex();
|
|
|
|
// TODO: pubkeyToOutputScript (?)
|
|
|
|
final point = bitcoin.ECPublic.fromHex(generatedPubkey).toTapPoint();
|
|
|
|
final p2tr = bitcoin.P2trAddress(program: point);
|
|
|
|
txb.addOutput(p2tr.toScriptPubKey().toBytes(), amount);
|
2023-11-14 23:17:15 +00:00
|
|
|
});
|
|
|
|
});
|
2022-07-28 17:03:16 +00:00
|
|
|
}
|
2023-06-16 01:14:01 +00:00
|
|
|
|
2023-11-14 23:17:15 +00:00
|
|
|
final estimatedSize = estimatedTransactionSize(inputs.length, outputs.length + 1);
|
|
|
|
var feeAmount = 222;
|
|
|
|
|
|
|
|
// if (transactionCredentials.feeRate != null) {
|
|
|
|
// feeAmount = transactionCredentials.feeRate! * estimatedSize;
|
|
|
|
// } else {
|
|
|
|
// feeAmount = feeRate(transactionCredentials.priority!) * estimatedSize;
|
|
|
|
// }
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
final changeValue = totalInputAmount - amount - feeAmount;
|
|
|
|
|
|
|
|
if (changeValue > minAmount) {
|
|
|
|
txb.addOutput(changeAddress, changeValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (var i = 0; i < inputs.length; i++) {
|
|
|
|
final input = inputs[i];
|
|
|
|
final keyPair = generateKeyPair(
|
2023-10-12 22:50:16 +00:00
|
|
|
hd: input.bitcoinAddressRecord.isHidden ? walletAddresses.sideHd : walletAddresses.mainHd,
|
|
|
|
index: input.bitcoinAddressRecord.index,
|
2022-01-14 11:15:20 +00:00
|
|
|
network: networkType);
|
2021-12-24 12:52:08 +00:00
|
|
|
final witnessValue = input.isP2wpkh ? input.value : null;
|
|
|
|
|
|
|
|
txb.sign(vin: i, keyPair: keyPair, witnessValue: witnessValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
return PendingBitcoinTransaction(txb.build(), type,
|
|
|
|
electrumClient: electrumClient, amount: amount, fee: fee)
|
|
|
|
..addListener((transaction) async {
|
|
|
|
transactionHistory.addOne(transaction);
|
2023-04-20 13:46:41 +00:00
|
|
|
await updateBalance();
|
2021-12-24 12:52:08 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
String toJSON() => json.encode({
|
2023-11-14 23:17:15 +00:00
|
|
|
'mnemonic': mnemonic,
|
|
|
|
'account_index': walletAddresses.currentReceiveAddressIndex.toString(),
|
|
|
|
'change_address_index': walletAddresses.currentChangeAddressIndex.toString(),
|
|
|
|
'addresses': walletAddresses.addresses.map((addr) => addr.toJSON()).toList(),
|
|
|
|
'balance': balance[currency]?.toJSON(),
|
|
|
|
'network_type': networkType.toString()
|
|
|
|
});
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
int feeRate(TransactionPriority priority) {
|
2022-01-13 14:48:42 +00:00
|
|
|
try {
|
|
|
|
if (priority is BitcoinTransactionPriority) {
|
|
|
|
return _feeRates[priority.raw];
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2022-01-13 14:48:42 +00:00
|
|
|
return 0;
|
2023-10-12 22:50:16 +00:00
|
|
|
} catch (_) {
|
2022-01-13 14:48:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
int feeAmountForPriority(
|
2023-11-14 23:17:15 +00:00
|
|
|
BitcoinTransactionPriority priority, int inputsCount, int outputsCount) =>
|
2021-12-24 12:52:08 +00:00
|
|
|
feeRate(priority) * estimatedTransactionSize(inputsCount, outputsCount);
|
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
int feeAmountWithFeeRate(int feeRate, int inputsCount, int outputsCount) =>
|
2022-07-28 17:03:16 +00:00
|
|
|
feeRate * estimatedTransactionSize(inputsCount, outputsCount);
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
@override
|
2023-10-12 22:50:16 +00:00
|
|
|
int calculateEstimatedFee(TransactionPriority? priority, int? amount, {int? outputsCount}) {
|
2021-12-24 12:52:08 +00:00
|
|
|
if (priority is BitcoinTransactionPriority) {
|
2023-10-12 22:50:16 +00:00
|
|
|
return calculateEstimatedFeeWithFeeRate(feeRate(priority), amount,
|
|
|
|
outputsCount: outputsCount);
|
2022-07-28 17:03:16 +00:00
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2022-07-28 17:03:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
int calculateEstimatedFeeWithFeeRate(int feeRate, int? amount, {int? outputsCount}) {
|
2022-07-28 17:03:16 +00:00
|
|
|
int inputsCount = 0;
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2022-07-28 17:03:16 +00:00
|
|
|
if (amount != null) {
|
|
|
|
int totalValue = 0;
|
|
|
|
|
|
|
|
for (final input in unspentCoins) {
|
|
|
|
if (totalValue >= amount) {
|
|
|
|
break;
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
2022-07-28 17:03:16 +00:00
|
|
|
if (input.isSending) {
|
|
|
|
totalValue += input.value;
|
|
|
|
inputsCount += 1;
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-28 17:03:16 +00:00
|
|
|
if (totalValue < amount) return 0;
|
|
|
|
} else {
|
|
|
|
for (final input in unspentCoins) {
|
|
|
|
if (input.isSending) {
|
|
|
|
inputsCount += 1;
|
|
|
|
}
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
2022-07-28 17:03:16 +00:00
|
|
|
// If send all, then we have no change value
|
|
|
|
final _outputsCount = outputsCount ?? (amount != null ? 2 : 1);
|
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
return feeAmountWithFeeRate(feeRate, inputsCount, _outputsCount);
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> save() async {
|
|
|
|
final path = await makePath();
|
2023-04-10 23:16:13 +00:00
|
|
|
await encryptionFileUtils.write(path: path, password: _password, data: toJSON());
|
2021-12-24 12:52:08 +00:00
|
|
|
await transactionHistory.save();
|
|
|
|
}
|
|
|
|
|
2023-08-04 17:01:49 +00:00
|
|
|
@override
|
2023-07-12 23:20:11 +00:00
|
|
|
Future<void> renameWalletFiles(String newWalletName) async {
|
|
|
|
final currentWalletPath = await pathForWallet(name: walletInfo.name, type: type);
|
|
|
|
final currentWalletFile = File(currentWalletPath);
|
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
final currentDirPath = await pathForWalletDir(name: walletInfo.name, type: type);
|
2023-07-12 23:20:11 +00:00
|
|
|
final currentTransactionsFile = File('$currentDirPath/$transactionsHistoryFileName');
|
|
|
|
|
|
|
|
// Copies current wallet files into new wallet name's dir and files
|
|
|
|
if (currentWalletFile.existsSync()) {
|
|
|
|
final newWalletPath = await pathForWallet(name: newWalletName, type: type);
|
|
|
|
await currentWalletFile.copy(newWalletPath);
|
|
|
|
}
|
|
|
|
if (currentTransactionsFile.existsSync()) {
|
|
|
|
final newDirPath = await pathForWalletDir(name: newWalletName, type: type);
|
|
|
|
await currentTransactionsFile.copy('$newDirPath/$transactionsHistoryFileName');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete old name's dir and files
|
|
|
|
await Directory(currentDirPath).delete(recursive: true);
|
|
|
|
}
|
|
|
|
|
2022-07-19 14:29:28 +00:00
|
|
|
@override
|
|
|
|
Future<void> changePassword(String password) async {
|
|
|
|
_password = password;
|
|
|
|
await save();
|
|
|
|
await transactionHistory.changePassword(password);
|
|
|
|
}
|
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
bitcoin.ECPair keyPairFor({required int index}) =>
|
2021-12-24 12:52:08 +00:00
|
|
|
generateKeyPair(hd: hd, index: index, network: networkType);
|
|
|
|
|
|
|
|
@override
|
2023-11-17 00:33:26 +00:00
|
|
|
Future<void> rescan({required int height}) async {
|
|
|
|
syncStatus = AttemptingSyncStatus();
|
|
|
|
|
|
|
|
walletInfo.restoreHeight = height;
|
|
|
|
ReceivePort receivePort = ReceivePort();
|
|
|
|
Isolate.spawn(startRefresh, {
|
|
|
|
"silentAddress": walletAddresses.silentAddress!.toString(),
|
|
|
|
"scanPrivateKeyCompressed": walletAddresses.silentAddress!.scanPrivkey.toCompressedHex(),
|
|
|
|
"spendPubkeyCompressed": walletAddresses.silentAddress!.spendPubkey.toCompressedHex(),
|
|
|
|
"height": walletInfo.restoreHeight.toString(),
|
|
|
|
"node": electrumClient.uri.toString(),
|
|
|
|
"receivePort": receivePort.sendPort,
|
|
|
|
});
|
|
|
|
await for (var unspentScannedCoins in receivePort) {
|
|
|
|
if (unspentScannedCoins is List<BitcoinUnspent>) {
|
|
|
|
if (unspentScannedCoins.isNotEmpty) {
|
|
|
|
print("UNSPENT COIN FOUND!");
|
|
|
|
final myNewAddresses = unspentScannedCoins.map((coin) {
|
|
|
|
return BitcoinAddressRecord(
|
|
|
|
coin.address,
|
|
|
|
index: 0,
|
|
|
|
isHidden: false,
|
|
|
|
isUsed: true,
|
|
|
|
silentAddressLabel: null,
|
|
|
|
silentPaymentTweak: coin.silentPaymentTweak,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
walletAddresses.addAddresses(myNewAddresses);
|
|
|
|
await updateTransactions();
|
|
|
|
_subscribeForUpdates();
|
|
|
|
await updateUnspent();
|
|
|
|
await updateBalance();
|
|
|
|
}
|
|
|
|
|
|
|
|
final currentHeight = await electrumClient.getCurrentBlockChainTip();
|
|
|
|
|
|
|
|
if (currentHeight != null && currentHeight > walletInfo.restoreHeight) {
|
|
|
|
walletInfo.restoreHeight = walletInfo.restoreHeight + 1;
|
|
|
|
await save();
|
|
|
|
// recursive, scan next block again until at the current tip
|
|
|
|
rescan(height: walletInfo.restoreHeight);
|
|
|
|
} else {
|
|
|
|
syncStatus = SyncedSyncStatus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> close() async {
|
|
|
|
try {
|
2022-10-12 17:09:57 +00:00
|
|
|
await electrumClient.close();
|
2021-12-24 12:52:08 +00:00
|
|
|
} catch (_) {}
|
|
|
|
}
|
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
Future<String> makePath() async => pathForWallet(name: walletInfo.name, type: walletInfo.type);
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
Future<void> updateUnspent() async {
|
2023-11-14 23:17:15 +00:00
|
|
|
final unspent = await Future.wait(walletAddresses.addresses.map((address) => electrumClient
|
2021-12-24 12:52:08 +00:00
|
|
|
.getListUnspentWithAddress(address.address, networkType)
|
2023-11-14 23:17:15 +00:00
|
|
|
.then((unspent) => unspent.map((unspent) {
|
|
|
|
try {
|
|
|
|
return BitcoinUnspent.fromJSON(address, unspent);
|
|
|
|
} catch (_) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}).whereNotNull())));
|
2023-11-17 00:33:26 +00:00
|
|
|
unspentCoins.addAll(unspent.expand((e) => e).toList());
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
if (unspentCoinsInfo.isEmpty) {
|
|
|
|
unspentCoins.forEach((coin) => _addCoinInfo(coin));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unspentCoins.isNotEmpty) {
|
|
|
|
unspentCoins.forEach((coin) {
|
2023-10-12 22:50:16 +00:00
|
|
|
final coinInfoList = unspentCoinsInfo.values
|
|
|
|
.where((element) => element.walletId.contains(id) && element.hash.contains(coin.hash));
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
if (coinInfoList.isNotEmpty) {
|
|
|
|
final coinInfo = coinInfoList.first;
|
|
|
|
|
|
|
|
coin.isFrozen = coinInfo.isFrozen;
|
|
|
|
coin.isSending = coinInfo.isSending;
|
|
|
|
coin.note = coinInfo.note;
|
|
|
|
} else {
|
|
|
|
_addCoinInfo(coin);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
await _refreshUnspentCoinsInfo();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _addCoinInfo(BitcoinUnspent coin) async {
|
|
|
|
final newInfo = UnspentCoinsInfo(
|
2023-10-12 22:50:16 +00:00
|
|
|
walletId: id,
|
|
|
|
hash: coin.hash,
|
|
|
|
isFrozen: coin.isFrozen,
|
|
|
|
isSending: coin.isSending,
|
|
|
|
noteRaw: coin.note,
|
|
|
|
address: coin.bitcoinAddressRecord.address,
|
|
|
|
value: coin.value,
|
|
|
|
vout: coin.vout,
|
2021-12-24 12:52:08 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
await unspentCoinsInfo.add(newInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _refreshUnspentCoinsInfo() async {
|
|
|
|
try {
|
|
|
|
final List<dynamic> keys = <dynamic>[];
|
2023-10-12 22:50:16 +00:00
|
|
|
final currentWalletUnspentCoins =
|
2023-11-14 23:17:15 +00:00
|
|
|
unspentCoinsInfo.values.where((element) => element.walletId.contains(id));
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
if (currentWalletUnspentCoins.isNotEmpty) {
|
|
|
|
currentWalletUnspentCoins.forEach((element) {
|
2022-10-12 17:09:57 +00:00
|
|
|
final existUnspentCoins = unspentCoins.where((coin) => element.hash.contains(coin.hash));
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
if (existUnspentCoins.isEmpty) {
|
2021-12-24 12:52:08 +00:00
|
|
|
keys.add(element.key);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keys.isNotEmpty) {
|
|
|
|
await unspentCoinsInfo.deleteAll(keys);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
print(e.toString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<Map<String, ElectrumTransactionInfo>> fetchTransactions() async {
|
2022-01-24 12:04:23 +00:00
|
|
|
final addressHashes = <String, BitcoinAddressRecord>{};
|
|
|
|
final normalizedHistories = <Map<String, dynamic>>[];
|
|
|
|
walletAddresses.addresses.forEach((addressRecord) {
|
|
|
|
final sh = scriptHash(addressRecord.address, networkType: networkType);
|
|
|
|
addressHashes[sh] = addressRecord;
|
|
|
|
});
|
2023-10-12 22:50:16 +00:00
|
|
|
final histories = addressHashes.keys.map((scriptHash) =>
|
|
|
|
electrumClient.getHistory(scriptHash).then((history) => {scriptHash: history}));
|
2022-01-24 12:04:23 +00:00
|
|
|
final historyResults = await Future.wait(histories);
|
|
|
|
historyResults.forEach((history) {
|
|
|
|
history.entries.forEach((historyItem) {
|
|
|
|
if (historyItem.value.isNotEmpty) {
|
|
|
|
final address = addressHashes[historyItem.key];
|
2022-10-12 17:09:57 +00:00
|
|
|
address?.setAsUsed();
|
2022-01-24 12:04:23 +00:00
|
|
|
normalizedHistories.addAll(historyItem.value);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2023-10-12 22:50:16 +00:00
|
|
|
final historiesWithDetails = await Future.wait(normalizedHistories.map((transaction) {
|
|
|
|
try {
|
|
|
|
return fetchTransactionInfo(
|
2023-11-17 00:33:26 +00:00
|
|
|
hash: transaction['tx_hash'] as String,
|
|
|
|
height: transaction['height'] as int,
|
|
|
|
electrumClient: electrumClient,
|
|
|
|
addressRecords: walletAddresses.addresses,
|
|
|
|
walletInfo: walletInfo,
|
|
|
|
networkType: networkType);
|
2023-10-12 22:50:16 +00:00
|
|
|
} catch (_) {
|
|
|
|
return Future.value(null);
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
return historiesWithDetails
|
|
|
|
.fold<Map<String, ElectrumTransactionInfo>>(<String, ElectrumTransactionInfo>{}, (acc, tx) {
|
2022-10-17 20:55:41 +00:00
|
|
|
if (tx == null) {
|
|
|
|
return acc;
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
acc[tx.id] = acc[tx.id]?.updated(tx) ?? tx;
|
|
|
|
return acc;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> updateTransactions() async {
|
|
|
|
try {
|
|
|
|
if (_isTransactionUpdating) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_isTransactionUpdating = true;
|
|
|
|
final transactions = await fetchTransactions();
|
|
|
|
transactionHistory.addMany(transactions);
|
2022-01-24 12:04:23 +00:00
|
|
|
walletAddresses.updateReceiveAddresses();
|
2021-12-24 12:52:08 +00:00
|
|
|
await transactionHistory.save();
|
|
|
|
_isTransactionUpdating = false;
|
2022-10-17 20:55:41 +00:00
|
|
|
} catch (e, stacktrace) {
|
|
|
|
print(stacktrace);
|
2021-12-24 12:52:08 +00:00
|
|
|
print(e);
|
|
|
|
_isTransactionUpdating = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-17 00:33:26 +00:00
|
|
|
void _subscribeForUpdates() async {
|
2021-12-24 12:52:08 +00:00
|
|
|
scriptHashes.forEach((sh) async {
|
|
|
|
await _scripthashesUpdateSubject[sh]?.close();
|
|
|
|
_scripthashesUpdateSubject[sh] = electrumClient.scripthashUpdate(sh);
|
2022-01-17 15:33:51 +00:00
|
|
|
_scripthashesUpdateSubject[sh]?.listen((event) async {
|
2021-12-24 12:52:08 +00:00
|
|
|
try {
|
|
|
|
await updateUnspent();
|
2023-04-20 13:46:41 +00:00
|
|
|
await updateBalance();
|
2021-12-24 12:52:08 +00:00
|
|
|
await updateTransactions();
|
2023-06-16 01:14:01 +00:00
|
|
|
} catch (e, s) {
|
2021-12-24 12:52:08 +00:00
|
|
|
print(e.toString());
|
2023-06-16 01:14:01 +00:00
|
|
|
_onError?.call(FlutterErrorDetails(
|
|
|
|
exception: e,
|
|
|
|
stack: s,
|
|
|
|
library: this.runtimeType.toString(),
|
|
|
|
));
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2023-11-17 00:33:26 +00:00
|
|
|
await _chainTipUpdateSubject?.close();
|
|
|
|
_chainTipUpdateSubject = electrumClient.chainTipUpdate();
|
|
|
|
_chainTipUpdateSubject?.listen((event) async {
|
|
|
|
try {
|
|
|
|
final currentHeight = await electrumClient.getCurrentBlockChainTip();
|
|
|
|
if (currentHeight != null) walletInfo.restoreHeight = currentHeight;
|
|
|
|
rescan(height: walletInfo.restoreHeight);
|
|
|
|
} catch (e, s) {
|
|
|
|
print(e.toString());
|
|
|
|
_onError?.call(FlutterErrorDetails(
|
|
|
|
exception: e,
|
|
|
|
stack: s,
|
|
|
|
library: this.runtimeType.toString(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
});
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Future<ElectrumBalance> _fetchBalances() async {
|
2022-01-18 16:27:33 +00:00
|
|
|
final addresses = walletAddresses.addresses.toList();
|
|
|
|
final balanceFutures = <Future<Map<String, dynamic>>>[];
|
|
|
|
for (var i = 0; i < addresses.length; i++) {
|
2023-11-14 23:17:15 +00:00
|
|
|
final addressRecord = addresses[i];
|
2022-01-18 16:27:33 +00:00
|
|
|
final sh = scriptHash(addressRecord.address, networkType: networkType);
|
|
|
|
final balanceFuture = electrumClient.getBalance(sh);
|
|
|
|
balanceFutures.add(balanceFuture);
|
2023-04-20 13:46:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var totalFrozen = 0;
|
|
|
|
unspentCoinsInfo.values.forEach((info) {
|
|
|
|
unspentCoins.forEach((element) {
|
2023-10-12 22:50:16 +00:00
|
|
|
if (element.hash == info.hash &&
|
|
|
|
info.isFrozen &&
|
|
|
|
element.bitcoinAddressRecord.address == info.address &&
|
|
|
|
element.value == info.value) {
|
2023-04-20 13:46:41 +00:00
|
|
|
totalFrozen += element.value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2022-01-18 16:27:33 +00:00
|
|
|
|
|
|
|
final balances = await Future.wait(balanceFutures);
|
|
|
|
var totalConfirmed = 0;
|
|
|
|
var totalUnconfirmed = 0;
|
|
|
|
|
|
|
|
for (var i = 0; i < balances.length; i++) {
|
|
|
|
final addressRecord = addresses[i];
|
|
|
|
final balance = balances[i];
|
2022-10-12 17:09:57 +00:00
|
|
|
final confirmed = balance['confirmed'] as int? ?? 0;
|
|
|
|
final unconfirmed = balance['unconfirmed'] as int? ?? 0;
|
2022-01-18 16:27:33 +00:00
|
|
|
totalConfirmed += confirmed;
|
|
|
|
totalUnconfirmed += unconfirmed;
|
|
|
|
|
|
|
|
if (confirmed > 0 || unconfirmed > 0) {
|
|
|
|
addressRecord.setAsUsed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
return ElectrumBalance(
|
|
|
|
confirmed: totalConfirmed, unconfirmed: totalUnconfirmed, frozen: totalFrozen);
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
2023-04-20 13:46:41 +00:00
|
|
|
Future<void> updateBalance() async {
|
2022-03-30 15:57:04 +00:00
|
|
|
balance[currency] = await _fetchBalances();
|
2021-12-24 12:52:08 +00:00
|
|
|
await save();
|
|
|
|
}
|
2022-01-12 13:20:43 +00:00
|
|
|
|
|
|
|
String getChangeAddress() {
|
|
|
|
const minCountOfHiddenAddresses = 5;
|
|
|
|
final random = Random();
|
2023-10-12 22:50:16 +00:00
|
|
|
var addresses = walletAddresses.addresses.where((addr) => addr.isHidden).toList();
|
2022-01-12 13:20:43 +00:00
|
|
|
|
|
|
|
if (addresses.length < minCountOfHiddenAddresses) {
|
|
|
|
addresses = walletAddresses.addresses.toList();
|
|
|
|
}
|
|
|
|
|
|
|
|
return addresses[random.nextInt(addresses.length)].address;
|
|
|
|
}
|
2023-06-16 01:14:01 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
void setExceptionHandler(void Function(FlutterErrorDetails) onError) => _onError = onError;
|
2023-09-14 19:14:49 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
String signMessage(String message, {String? address = null}) {
|
|
|
|
final index = address != null
|
|
|
|
? walletAddresses.addresses.firstWhere((element) => element.address == address).index
|
|
|
|
: null;
|
|
|
|
return index == null
|
|
|
|
? base64Encode(hd.sign(message))
|
|
|
|
: base64Encode(hd.derive(index).sign(message));
|
|
|
|
}
|
2023-11-14 23:17:15 +00:00
|
|
|
|
2023-11-17 00:33:26 +00:00
|
|
|
Future<void> _setInitialHeight() async {
|
|
|
|
if (walletInfo.isRecovery || walletInfo.restoreHeight != 0) {
|
2023-11-14 23:17:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-11-17 00:33:26 +00:00
|
|
|
// final currentHeight = 2538835;
|
2023-11-14 23:17:15 +00:00
|
|
|
final currentHeight = await electrumClient.getCurrentBlockChainTip();
|
2023-11-17 00:33:26 +00:00
|
|
|
if (currentHeight != null) walletInfo.restoreHeight = currentHeight;
|
|
|
|
}
|
|
|
|
}
|
2023-11-14 23:17:15 +00:00
|
|
|
|
2023-11-17 00:33:26 +00:00
|
|
|
Future<ElectrumTransactionInfo?> fetchTransactionInfo(
|
|
|
|
{required String hash,
|
|
|
|
required int height,
|
|
|
|
required ElectrumClient electrumClient,
|
|
|
|
required Iterable<BitcoinAddressRecord> addressRecords,
|
|
|
|
required WalletInfo walletInfo,
|
|
|
|
required bitcoin.NetworkType networkType}) async {
|
|
|
|
try {
|
|
|
|
final tx = await getTransactionExpanded(
|
|
|
|
hash: hash, height: height, electrumClient: electrumClient, networkType: networkType);
|
|
|
|
final addresses = addressRecords.map((addr) => addr.address).toSet();
|
|
|
|
return ElectrumTransactionInfo.fromElectrumBundle(tx, walletInfo.type, networkType,
|
|
|
|
addresses: addresses, height: height);
|
|
|
|
} catch (_) {
|
|
|
|
return null;
|
2023-11-14 23:17:15 +00:00
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
2023-11-15 21:01:18 +00:00
|
|
|
|
2023-11-17 00:33:26 +00:00
|
|
|
Future<ElectrumTransactionBundle> getTransactionExpanded(
|
|
|
|
{required String hash,
|
|
|
|
required int height,
|
|
|
|
required ElectrumClient electrumClient,
|
|
|
|
required bitcoin.NetworkType networkType}) async {
|
|
|
|
final verboseTransaction =
|
|
|
|
await electrumClient.getTransactionRaw(hash: hash, networkType: networkType);
|
|
|
|
|
|
|
|
String transactionHex;
|
|
|
|
int? time;
|
|
|
|
int confirmations = 0;
|
|
|
|
if (networkType == bitcoin.testnet) {
|
|
|
|
transactionHex = verboseTransaction as String;
|
|
|
|
confirmations = 1;
|
|
|
|
} else {
|
|
|
|
transactionHex = verboseTransaction['hex'] as String;
|
|
|
|
time = verboseTransaction['time'] as int?;
|
|
|
|
confirmations = verboseTransaction['confirmations'] as int? ?? 0;
|
|
|
|
}
|
2023-11-15 21:01:18 +00:00
|
|
|
|
2023-11-17 00:33:26 +00:00
|
|
|
final original = bitcoin.Transaction.fromHex(transactionHex);
|
|
|
|
final ins = <bitcoin.Transaction>[];
|
2023-11-15 21:01:18 +00:00
|
|
|
|
2023-11-17 00:33:26 +00:00
|
|
|
for (final vin in original.ins) {
|
|
|
|
final id = HEX.encode(vin.hash!.reversed.toList());
|
|
|
|
final txHex = await electrumClient.getTransactionHex(hash: id);
|
|
|
|
final tx = bitcoin.Transaction.fromHex(txHex);
|
|
|
|
ins.add(tx);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ElectrumTransactionBundle(original, ins: ins, time: time, confirmations: confirmations);
|
|
|
|
}
|
2023-11-15 21:01:18 +00:00
|
|
|
|
2023-11-17 00:33:26 +00:00
|
|
|
Future<void> startRefresh(Map<String, dynamic> data) async {
|
|
|
|
final sendPort = data["receivePort"] as SendPort;
|
|
|
|
String? checkpointTx = data["checkpoint_tx"] as String?;
|
2023-11-15 21:01:18 +00:00
|
|
|
|
2023-11-17 00:33:26 +00:00
|
|
|
try {
|
|
|
|
final height = int.parse(data["height"] as String);
|
|
|
|
// final height = 2538835;
|
2023-11-15 21:01:18 +00:00
|
|
|
|
2023-11-17 00:33:26 +00:00
|
|
|
final node = data["node"] as String;
|
|
|
|
final electrumClient = ElectrumClient();
|
|
|
|
await electrumClient.connectToUri(Uri.parse(node));
|
|
|
|
|
|
|
|
print(["HEIGHT:", height]);
|
|
|
|
|
|
|
|
List<String> txids = [];
|
|
|
|
int pos = 0;
|
|
|
|
while (true) {
|
|
|
|
try {
|
|
|
|
var txid = await electrumClient.getTxidFromPos(height: height, pos: pos);
|
|
|
|
txids.add(txid);
|
|
|
|
pos++;
|
|
|
|
} catch (_) {
|
|
|
|
// no more txs
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (checkpointTx != null && checkpointTx.isNotEmpty) {
|
|
|
|
txids = txids.sublist(txids.indexOf(checkpointTx) + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
List<BitcoinUnspent> unspentCoins = [];
|
|
|
|
|
|
|
|
for (var txid in txids) {
|
|
|
|
checkpointTx = txid.toString();
|
|
|
|
|
|
|
|
List<String> pubkeys = [];
|
|
|
|
List<bitcoin.Outpoint> outpoints = [];
|
|
|
|
Map<String, bitcoin.Outpoint> outpointsByP2TRpubkey = {};
|
|
|
|
|
|
|
|
try {
|
|
|
|
// TODO: networkType
|
|
|
|
final txBundle = await getTransactionExpanded(
|
|
|
|
hash: txid,
|
|
|
|
height: height,
|
|
|
|
electrumClient: electrumClient,
|
|
|
|
networkType: bitcoin.testnet);
|
|
|
|
|
|
|
|
bool skip = false;
|
|
|
|
txBundle.originalTransaction.ins.forEach((input) {
|
|
|
|
if (input.witness == null) {
|
|
|
|
skip = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (input.witness!.length != 2) {
|
|
|
|
skip = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
final pubkey = input.witness![1].hex;
|
|
|
|
pubkeys.add(pubkey);
|
|
|
|
outpoints.add(bitcoin.Outpoint(
|
|
|
|
txid: HEX.encode(input.hash!.reversed.toList()), index: input.index!));
|
|
|
|
});
|
|
|
|
|
|
|
|
if (skip) continue;
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
txBundle.originalTransaction.outs.forEach((output) {
|
|
|
|
if (bitcoin.classifyOutput(output.script!) != "taproot") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
print(bitcoin.P2trAddress(program: output.script!.sublist(2).hex)
|
|
|
|
.toAddress(bitcoin.NetworkInfo.TESTNET));
|
|
|
|
outpointsByP2TRpubkey[bitcoin.P2trAddress(program: output.script!.sublist(2).hex)
|
|
|
|
.toAddress(bitcoin.NetworkInfo.TESTNET)] =
|
|
|
|
bitcoin.Outpoint(txid: txid, index: i, value: output.value!);
|
|
|
|
|
|
|
|
i++;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (pubkeys.isEmpty && outpoints.isEmpty && outpointsByP2TRpubkey.isEmpty) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Uint8List sumOfInputPublicKeys =
|
|
|
|
bitcoin.getSumInputPubKeys(pubkeys).toCompressedHex().fromHex;
|
|
|
|
final outpointHash = bitcoin.SilentPayment.hashOutpoints(outpoints);
|
|
|
|
|
|
|
|
final result = bitcoin.scanOutputs(
|
|
|
|
(data["scanPrivateKeyCompressed"] as String).fromHex,
|
|
|
|
(data["spendPubkeyCompressed"] as String).fromHex,
|
|
|
|
sumOfInputPublicKeys,
|
|
|
|
outpointHash,
|
|
|
|
outpointsByP2TRpubkey.keys.toList());
|
|
|
|
|
|
|
|
if (result.isEmpty) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
result.forEach((key, value) {
|
|
|
|
final outpoint = outpointsByP2TRpubkey[key];
|
|
|
|
|
|
|
|
if (outpoint == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
unspentCoins.add(BitcoinUnspent(
|
|
|
|
BitcoinAddressRecord(key, index: 0),
|
|
|
|
outpoint.txid,
|
|
|
|
outpoint.value!,
|
|
|
|
outpoint.index,
|
|
|
|
silentPaymentTweak: value.hex,
|
|
|
|
));
|
|
|
|
});
|
|
|
|
} catch (_) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
sendPort.send(unspentCoins);
|
|
|
|
} catch (e, stacktrace) {
|
|
|
|
print(stacktrace);
|
|
|
|
print(e.toString());
|
|
|
|
// timeout, wait 30sec
|
|
|
|
sendPort.send(Future.delayed(const Duration(seconds: 30),
|
|
|
|
() => startRefresh({...data, "checkpoint_tx": checkpointTx ?? ""})));
|
|
|
|
}
|
2023-11-15 21:01:18 +00:00
|
|
|
}
|