2024-01-14 19:03:07 +00:00
|
|
|
import 'dart:async';
|
2023-11-07 18:19:42 +00:00
|
|
|
import 'dart:math';
|
2024-04-15 21:48:55 +00:00
|
|
|
import 'dart:typed_data';
|
2023-09-18 21:28:31 +00:00
|
|
|
|
2023-11-07 18:19:42 +00:00
|
|
|
import 'package:coinlib_flutter/coinlib_flutter.dart' as coinlib;
|
2023-11-03 19:46:55 +00:00
|
|
|
import 'package:isar/isar.dart';
|
2023-11-14 20:31:53 +00:00
|
|
|
import 'package:stackwallet/electrumx_rpc/cached_electrumx_client.dart';
|
2024-04-18 23:17:45 +00:00
|
|
|
import 'package:stackwallet/electrumx_rpc/client_manager.dart';
|
2023-11-14 20:31:53 +00:00
|
|
|
import 'package:stackwallet/electrumx_rpc/electrumx_client.dart';
|
2024-01-05 18:59:01 +00:00
|
|
|
import 'package:stackwallet/models/isar/models/blockchain_data/v2/input_v2.dart';
|
|
|
|
import 'package:stackwallet/models/isar/models/blockchain_data/v2/output_v2.dart';
|
|
|
|
import 'package:stackwallet/models/isar/models/blockchain_data/v2/transaction_v2.dart';
|
2023-10-30 22:58:15 +00:00
|
|
|
import 'package:stackwallet/models/isar/models/isar_models.dart';
|
2023-11-03 19:46:55 +00:00
|
|
|
import 'package:stackwallet/models/paymint/fee_object_model.dart';
|
2023-11-08 19:57:38 +00:00
|
|
|
import 'package:stackwallet/models/signing_data.dart';
|
2023-09-18 21:28:31 +00:00
|
|
|
import 'package:stackwallet/utilities/amount/amount.dart';
|
|
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
2023-11-07 18:19:42 +00:00
|
|
|
import 'package:stackwallet/utilities/enums/derive_path_type_enum.dart';
|
2023-11-08 19:57:38 +00:00
|
|
|
import 'package:stackwallet/utilities/enums/fee_rate_type_enum.dart';
|
2024-04-18 17:33:23 +00:00
|
|
|
import 'package:stackwallet/utilities/extensions/extensions.dart';
|
2023-09-18 21:28:31 +00:00
|
|
|
import 'package:stackwallet/utilities/logger.dart';
|
2024-01-14 19:03:07 +00:00
|
|
|
import 'package:stackwallet/utilities/paynym_is_api.dart';
|
2023-11-27 14:42:09 +00:00
|
|
|
import 'package:stackwallet/wallets/crypto_currency/coins/firo.dart';
|
2024-01-13 21:49:29 +00:00
|
|
|
import 'package:stackwallet/wallets/crypto_currency/intermediate/bip39_hd_currency.dart';
|
2023-11-08 19:57:38 +00:00
|
|
|
import 'package:stackwallet/wallets/models/tx_data.dart';
|
2024-01-14 19:03:07 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/bitcoin_wallet.dart';
|
2023-11-04 01:18:22 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/intermediate/bip39_hd_wallet.dart';
|
2023-11-16 22:25:20 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/wallet_mixin_interfaces/paynym_interface.dart';
|
2023-09-18 21:28:31 +00:00
|
|
|
|
2024-01-13 21:49:29 +00:00
|
|
|
mixin ElectrumXInterface<T extends Bip39HDCurrency> on Bip39HDWallet<T> {
|
2023-11-14 20:31:53 +00:00
|
|
|
late ElectrumXClient electrumXClient;
|
|
|
|
late CachedElectrumXClient electrumXCachedClient;
|
2023-09-18 21:28:31 +00:00
|
|
|
|
2024-01-17 17:12:36 +00:00
|
|
|
int? get maximumFeerate => null;
|
|
|
|
|
2024-01-14 17:26:52 +00:00
|
|
|
static const _kServerBatchCutoffVersion = [1, 6];
|
|
|
|
List<int>? _serverVersion;
|
|
|
|
bool get serverCanBatch {
|
|
|
|
// Firo server added batching without incrementing version number...
|
|
|
|
if (cryptoCurrency is Firo) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (_serverVersion != null && _serverVersion!.length > 2) {
|
|
|
|
if (_serverVersion![0] > _kServerBatchCutoffVersion[0]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (_serverVersion![1] > _kServerBatchCutoffVersion[1]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2023-11-14 19:21:21 +00:00
|
|
|
|
2024-01-05 19:45:42 +00:00
|
|
|
Future<List<({String address, Amount amount, bool isChange})>>
|
|
|
|
_helperRecipientsConvert(List<String> addrs, List<int> satValues) async {
|
|
|
|
final List<({String address, Amount amount, bool isChange})> results = [];
|
2023-11-08 19:57:38 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < addrs.length; i++) {
|
2024-01-05 19:45:42 +00:00
|
|
|
results.add(
|
|
|
|
(
|
|
|
|
address: addrs[i],
|
|
|
|
amount: Amount(
|
|
|
|
rawValue: BigInt.from(satValues[i]),
|
|
|
|
fractionDigits: cryptoCurrency.fractionDigits,
|
|
|
|
),
|
|
|
|
isChange: (await mainDB.isar.addresses
|
|
|
|
.where()
|
|
|
|
.walletIdEqualTo(walletId)
|
|
|
|
.filter()
|
|
|
|
.subTypeEqualTo(AddressSubType.change)
|
|
|
|
.and()
|
|
|
|
.valueEqualTo(addrs[i])
|
|
|
|
.valueProperty()
|
|
|
|
.findFirst()) !=
|
|
|
|
null
|
2023-11-08 19:57:38 +00:00
|
|
|
),
|
2024-01-05 19:45:42 +00:00
|
|
|
);
|
2023-11-08 19:57:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<TxData> coinSelection({
|
|
|
|
required TxData txData,
|
|
|
|
required bool coinControl,
|
|
|
|
required bool isSendAll,
|
|
|
|
int additionalOutputs = 0,
|
|
|
|
List<UTXO>? utxos,
|
|
|
|
}) async {
|
|
|
|
Logging.instance
|
|
|
|
.log("Starting coinSelection ----------", level: LogLevel.Info);
|
|
|
|
|
|
|
|
// TODO: multiple recipients one day
|
|
|
|
assert(txData.recipients!.length == 1);
|
|
|
|
|
|
|
|
final recipientAddress = txData.recipients!.first.address;
|
|
|
|
final satoshiAmountToSend = txData.amount!.raw.toInt();
|
|
|
|
final int? satsPerVByte = txData.satsPerVByte;
|
|
|
|
final selectedTxFeeRate = txData.feeRateAmount!;
|
|
|
|
|
|
|
|
final List<UTXO> availableOutputs =
|
|
|
|
utxos ?? await mainDB.getUTXOs(walletId).findAll();
|
|
|
|
final currentChainHeight = await chainHeight;
|
|
|
|
final List<UTXO> spendableOutputs = [];
|
|
|
|
int spendableSatoshiValue = 0;
|
|
|
|
|
|
|
|
// Build list of spendable outputs and totaling their satoshi amount
|
|
|
|
for (final utxo in availableOutputs) {
|
|
|
|
if (utxo.isBlocked == false &&
|
|
|
|
utxo.isConfirmed(currentChainHeight, cryptoCurrency.minConfirms) &&
|
|
|
|
utxo.used != true) {
|
|
|
|
spendableOutputs.add(utxo);
|
|
|
|
spendableSatoshiValue += utxo.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (coinControl) {
|
|
|
|
if (spendableOutputs.length < availableOutputs.length) {
|
|
|
|
throw ArgumentError("Attempted to use an unavailable utxo");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// don't care about sorting if using all utxos
|
|
|
|
if (!coinControl) {
|
|
|
|
// sort spendable by age (oldest first)
|
2024-02-05 17:31:07 +00:00
|
|
|
spendableOutputs.sort((a, b) => (b.blockTime ?? currentChainHeight)
|
|
|
|
.compareTo((a.blockTime ?? currentChainHeight)));
|
|
|
|
// Null check operator changed to null assignment in order to resolve a
|
|
|
|
// `Null check operator used on a null value` error. currentChainHeight
|
|
|
|
// used in order to sort these unconfirmed outputs as the youngest, but we
|
|
|
|
// could just as well use currentChainHeight + 1.
|
2023-11-08 19:57:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Logging.instance.log("spendableOutputs.length: ${spendableOutputs.length}",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance.log("availableOutputs.length: ${availableOutputs.length}",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log("spendableOutputs: $spendableOutputs", level: LogLevel.Info);
|
|
|
|
Logging.instance.log("spendableSatoshiValue: $spendableSatoshiValue",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log("satoshiAmountToSend: $satoshiAmountToSend", level: LogLevel.Info);
|
|
|
|
// If the amount the user is trying to send is smaller than the amount that they have spendable,
|
|
|
|
// then return 1, which indicates that they have an insufficient balance.
|
|
|
|
if (spendableSatoshiValue < satoshiAmountToSend) {
|
|
|
|
// return 1;
|
|
|
|
throw Exception("Insufficient balance");
|
|
|
|
// If the amount the user wants to send is exactly equal to the amount they can spend, then return
|
|
|
|
// 2, which indicates that they are not leaving enough over to pay the transaction fee
|
|
|
|
} else if (spendableSatoshiValue == satoshiAmountToSend && !isSendAll) {
|
|
|
|
throw Exception("Insufficient balance to pay transaction fee");
|
|
|
|
// return 2;
|
|
|
|
}
|
|
|
|
// If neither of these statements pass, we assume that the user has a spendable balance greater
|
|
|
|
// than the amount they're attempting to send. Note that this value still does not account for
|
|
|
|
// the added transaction fee, which may require an extra input and will need to be checked for
|
|
|
|
// later on.
|
|
|
|
|
|
|
|
// Possible situation right here
|
|
|
|
int satoshisBeingUsed = 0;
|
|
|
|
int inputsBeingConsumed = 0;
|
|
|
|
List<UTXO> utxoObjectsToUse = [];
|
|
|
|
|
|
|
|
if (!coinControl) {
|
|
|
|
for (var i = 0;
|
|
|
|
satoshisBeingUsed < satoshiAmountToSend &&
|
|
|
|
i < spendableOutputs.length;
|
|
|
|
i++) {
|
|
|
|
utxoObjectsToUse.add(spendableOutputs[i]);
|
|
|
|
satoshisBeingUsed += spendableOutputs[i].value;
|
|
|
|
inputsBeingConsumed += 1;
|
|
|
|
}
|
|
|
|
for (int i = 0;
|
|
|
|
i < additionalOutputs &&
|
|
|
|
inputsBeingConsumed < spendableOutputs.length;
|
|
|
|
i++) {
|
|
|
|
utxoObjectsToUse.add(spendableOutputs[inputsBeingConsumed]);
|
|
|
|
satoshisBeingUsed += spendableOutputs[inputsBeingConsumed].value;
|
|
|
|
inputsBeingConsumed += 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
satoshisBeingUsed = spendableSatoshiValue;
|
|
|
|
utxoObjectsToUse = spendableOutputs;
|
|
|
|
inputsBeingConsumed = spendableOutputs.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
Logging.instance
|
|
|
|
.log("satoshisBeingUsed: $satoshisBeingUsed", level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log("inputsBeingConsumed: $inputsBeingConsumed", level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log('utxoObjectsToUse: $utxoObjectsToUse', level: LogLevel.Info);
|
|
|
|
|
|
|
|
// numberOfOutputs' length must always be equal to that of recipientsArray and recipientsAmtArray
|
|
|
|
List<String> recipientsArray = [recipientAddress];
|
|
|
|
List<int> recipientsAmtArray = [satoshiAmountToSend];
|
|
|
|
|
|
|
|
// gather required signing data
|
|
|
|
final utxoSigningData = await fetchBuildTxData(utxoObjectsToUse);
|
|
|
|
|
|
|
|
if (isSendAll) {
|
|
|
|
Logging.instance
|
|
|
|
.log("Attempting to send all $cryptoCurrency", level: LogLevel.Info);
|
2023-11-09 21:31:23 +00:00
|
|
|
if (txData.recipients!.length != 1) {
|
|
|
|
throw Exception(
|
|
|
|
"Send all to more than one recipient not yet supported",
|
|
|
|
);
|
|
|
|
}
|
2023-11-08 19:57:38 +00:00
|
|
|
|
2024-01-05 18:59:01 +00:00
|
|
|
final int vSizeForOneOutput = (await buildTransaction(
|
2023-11-08 19:57:38 +00:00
|
|
|
utxoSigningData: utxoSigningData,
|
|
|
|
txData: txData.copyWith(
|
2024-01-05 19:45:42 +00:00
|
|
|
recipients: await _helperRecipientsConvert(
|
2023-11-08 19:57:38 +00:00
|
|
|
[recipientAddress],
|
|
|
|
[satoshisBeingUsed - 1],
|
|
|
|
),
|
|
|
|
),
|
2024-01-05 18:59:01 +00:00
|
|
|
))
|
|
|
|
.vSize!;
|
2023-11-08 19:57:38 +00:00
|
|
|
int feeForOneOutput = satsPerVByte != null
|
|
|
|
? (satsPerVByte * vSizeForOneOutput)
|
|
|
|
: estimateTxFee(
|
|
|
|
vSize: vSizeForOneOutput,
|
|
|
|
feeRatePerKB: selectedTxFeeRate,
|
|
|
|
);
|
|
|
|
|
|
|
|
if (satsPerVByte == null) {
|
|
|
|
final int roughEstimate = roughFeeEstimate(
|
|
|
|
spendableOutputs.length,
|
|
|
|
1,
|
|
|
|
selectedTxFeeRate,
|
|
|
|
).raw.toInt();
|
|
|
|
if (feeForOneOutput < roughEstimate) {
|
|
|
|
feeForOneOutput = roughEstimate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
final int amount = satoshiAmountToSend - feeForOneOutput;
|
2024-01-05 18:59:01 +00:00
|
|
|
final data = await buildTransaction(
|
2023-11-09 21:31:23 +00:00
|
|
|
txData: txData.copyWith(
|
2024-01-05 19:45:42 +00:00
|
|
|
recipients: await _helperRecipientsConvert(
|
2023-11-09 21:31:23 +00:00
|
|
|
[recipientAddress],
|
|
|
|
[amount],
|
|
|
|
),
|
|
|
|
),
|
2023-11-08 19:57:38 +00:00
|
|
|
utxoSigningData: utxoSigningData,
|
|
|
|
);
|
|
|
|
|
|
|
|
return data.copyWith(
|
|
|
|
fee: Amount(
|
|
|
|
rawValue: BigInt.from(feeForOneOutput),
|
|
|
|
fractionDigits: cryptoCurrency.fractionDigits,
|
|
|
|
),
|
|
|
|
usedUTXOs: utxoSigningData.map((e) => e.utxo).toList(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
final int vSizeForOneOutput;
|
|
|
|
try {
|
2024-01-05 18:59:01 +00:00
|
|
|
vSizeForOneOutput = (await buildTransaction(
|
2023-11-08 19:57:38 +00:00
|
|
|
utxoSigningData: utxoSigningData,
|
|
|
|
txData: txData.copyWith(
|
2024-01-05 19:45:42 +00:00
|
|
|
recipients: await _helperRecipientsConvert(
|
2023-11-08 19:57:38 +00:00
|
|
|
[recipientAddress],
|
|
|
|
[satoshisBeingUsed - 1],
|
|
|
|
),
|
|
|
|
),
|
2024-01-05 18:59:01 +00:00
|
|
|
))
|
|
|
|
.vSize!;
|
2023-11-08 19:57:38 +00:00
|
|
|
} catch (e) {
|
|
|
|
Logging.instance.log("vSizeForOneOutput: $e", level: LogLevel.Error);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
|
|
|
|
final int vSizeForTwoOutPuts;
|
|
|
|
try {
|
2024-01-05 18:59:01 +00:00
|
|
|
vSizeForTwoOutPuts = (await buildTransaction(
|
2023-11-08 19:57:38 +00:00
|
|
|
utxoSigningData: utxoSigningData,
|
|
|
|
txData: txData.copyWith(
|
2024-01-05 19:45:42 +00:00
|
|
|
recipients: await _helperRecipientsConvert(
|
2023-11-08 19:57:38 +00:00
|
|
|
[recipientAddress, (await getCurrentChangeAddress())!.value],
|
|
|
|
[
|
|
|
|
satoshiAmountToSend,
|
|
|
|
max(0, satoshisBeingUsed - satoshiAmountToSend - 1)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2024-01-05 18:59:01 +00:00
|
|
|
))
|
|
|
|
.vSize!;
|
2023-11-08 19:57:38 +00:00
|
|
|
} catch (e) {
|
|
|
|
Logging.instance.log("vSizeForTwoOutPuts: $e", level: LogLevel.Error);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assume 1 output, only for recipient and no change
|
|
|
|
final feeForOneOutput = satsPerVByte != null
|
|
|
|
? (satsPerVByte * vSizeForOneOutput)
|
|
|
|
: estimateTxFee(
|
|
|
|
vSize: vSizeForOneOutput,
|
|
|
|
feeRatePerKB: selectedTxFeeRate,
|
|
|
|
);
|
|
|
|
// Assume 2 outputs, one for recipient and one for change
|
|
|
|
final feeForTwoOutputs = satsPerVByte != null
|
|
|
|
? (satsPerVByte * vSizeForTwoOutPuts)
|
|
|
|
: estimateTxFee(
|
|
|
|
vSize: vSizeForTwoOutPuts,
|
|
|
|
feeRatePerKB: selectedTxFeeRate,
|
|
|
|
);
|
|
|
|
|
|
|
|
Logging.instance
|
|
|
|
.log("feeForTwoOutputs: $feeForTwoOutputs", level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log("feeForOneOutput: $feeForOneOutput", level: LogLevel.Info);
|
|
|
|
|
|
|
|
if (satoshisBeingUsed - satoshiAmountToSend > feeForOneOutput) {
|
|
|
|
if (satoshisBeingUsed - satoshiAmountToSend >
|
|
|
|
feeForOneOutput + cryptoCurrency.dustLimit.raw.toInt()) {
|
|
|
|
// Here, we know that theoretically, we may be able to include another output(change) but we first need to
|
|
|
|
// factor in the value of this output in satoshis.
|
|
|
|
int changeOutputSize =
|
|
|
|
satoshisBeingUsed - satoshiAmountToSend - feeForTwoOutputs;
|
|
|
|
// We check to see if the user can pay for the new transaction with 2 outputs instead of one. If they can and
|
|
|
|
// the second output's size > cryptoCurrency.dustLimit satoshis, we perform the mechanics required to properly generate and use a new
|
|
|
|
// change address.
|
|
|
|
if (changeOutputSize > cryptoCurrency.dustLimit.raw.toInt() &&
|
|
|
|
satoshisBeingUsed - satoshiAmountToSend - changeOutputSize ==
|
|
|
|
feeForTwoOutputs) {
|
|
|
|
// generate new change address if current change address has been used
|
|
|
|
await checkChangeAddressForTransactions();
|
|
|
|
final String newChangeAddress =
|
|
|
|
(await getCurrentChangeAddress())!.value;
|
|
|
|
|
|
|
|
int feeBeingPaid =
|
|
|
|
satoshisBeingUsed - satoshiAmountToSend - changeOutputSize;
|
|
|
|
|
|
|
|
recipientsArray.add(newChangeAddress);
|
|
|
|
recipientsAmtArray.add(changeOutputSize);
|
|
|
|
// At this point, we have the outputs we're going to use, the amounts to send along with which addresses
|
|
|
|
// we intend to send these amounts to. We have enough to send instructions to build the transaction.
|
|
|
|
Logging.instance.log('2 outputs in tx', level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log('Input size: $satoshisBeingUsed', level: LogLevel.Info);
|
|
|
|
Logging.instance.log('Recipient output size: $satoshiAmountToSend',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance.log('Change Output Size: $changeOutputSize',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance.log(
|
|
|
|
'Difference (fee being paid): $feeBeingPaid sats',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log('Estimated fee: $feeForTwoOutputs', level: LogLevel.Info);
|
|
|
|
|
2024-01-05 18:59:01 +00:00
|
|
|
var txn = await buildTransaction(
|
2023-11-08 19:57:38 +00:00
|
|
|
utxoSigningData: utxoSigningData,
|
|
|
|
txData: txData.copyWith(
|
2024-01-05 19:45:42 +00:00
|
|
|
recipients: await _helperRecipientsConvert(
|
2023-11-08 19:57:38 +00:00
|
|
|
recipientsArray,
|
|
|
|
recipientsAmtArray,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
// make sure minimum fee is accurate if that is being used
|
|
|
|
if (txn.vSize! - feeBeingPaid == 1) {
|
|
|
|
int changeOutputSize =
|
|
|
|
satoshisBeingUsed - satoshiAmountToSend - txn.vSize!;
|
|
|
|
feeBeingPaid =
|
|
|
|
satoshisBeingUsed - satoshiAmountToSend - changeOutputSize;
|
|
|
|
recipientsAmtArray.removeLast();
|
|
|
|
recipientsAmtArray.add(changeOutputSize);
|
|
|
|
Logging.instance.log('Adjusted Input size: $satoshisBeingUsed',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance.log(
|
|
|
|
'Adjusted Recipient output size: $satoshiAmountToSend',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance.log(
|
|
|
|
'Adjusted Change Output Size: $changeOutputSize',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance.log(
|
|
|
|
'Adjusted Difference (fee being paid): $feeBeingPaid sats',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance.log('Adjusted Estimated fee: $feeForTwoOutputs',
|
|
|
|
level: LogLevel.Info);
|
2024-01-05 18:59:01 +00:00
|
|
|
txn = await buildTransaction(
|
2023-11-08 19:57:38 +00:00
|
|
|
utxoSigningData: utxoSigningData,
|
|
|
|
txData: txData.copyWith(
|
2024-01-05 19:45:42 +00:00
|
|
|
recipients: await _helperRecipientsConvert(
|
2023-11-08 19:57:38 +00:00
|
|
|
recipientsArray,
|
|
|
|
recipientsAmtArray,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return txn.copyWith(
|
|
|
|
fee: Amount(
|
|
|
|
rawValue: BigInt.from(feeBeingPaid),
|
|
|
|
fractionDigits: cryptoCurrency.fractionDigits,
|
|
|
|
),
|
|
|
|
usedUTXOs: utxoSigningData.map((e) => e.utxo).toList(),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// Something went wrong here. It either overshot or undershot the estimated fee amount or the changeOutputSize
|
|
|
|
// is smaller than or equal to cryptoCurrency.dustLimit. Revert to single output transaction.
|
|
|
|
Logging.instance.log('1 output in tx', level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log('Input size: $satoshisBeingUsed', level: LogLevel.Info);
|
|
|
|
Logging.instance.log('Recipient output size: $satoshiAmountToSend',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance.log(
|
|
|
|
'Difference (fee being paid): ${satoshisBeingUsed - satoshiAmountToSend} sats',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log('Estimated fee: $feeForOneOutput', level: LogLevel.Info);
|
2024-01-05 18:59:01 +00:00
|
|
|
final txn = await buildTransaction(
|
2023-11-08 19:57:38 +00:00
|
|
|
utxoSigningData: utxoSigningData,
|
|
|
|
txData: txData.copyWith(
|
2024-01-05 19:45:42 +00:00
|
|
|
recipients: await _helperRecipientsConvert(
|
2023-11-08 19:57:38 +00:00
|
|
|
recipientsArray,
|
|
|
|
recipientsAmtArray,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
return txn.copyWith(
|
|
|
|
fee: Amount(
|
|
|
|
rawValue: BigInt.from(satoshisBeingUsed - satoshiAmountToSend),
|
|
|
|
fractionDigits: cryptoCurrency.fractionDigits,
|
|
|
|
),
|
|
|
|
usedUTXOs: utxoSigningData.map((e) => e.utxo).toList(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// No additional outputs needed since adding one would mean that it'd be smaller than cryptoCurrency.dustLimit sats
|
|
|
|
// which makes it uneconomical to add to the transaction. Here, we pass data directly to instruct
|
|
|
|
// the wallet to begin crafting the transaction that the user requested.
|
|
|
|
Logging.instance.log('1 output in tx', level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log('Input size: $satoshisBeingUsed', level: LogLevel.Info);
|
|
|
|
Logging.instance.log('Recipient output size: $satoshiAmountToSend',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance.log(
|
|
|
|
'Difference (fee being paid): ${satoshisBeingUsed - satoshiAmountToSend} sats',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log('Estimated fee: $feeForOneOutput', level: LogLevel.Info);
|
2024-01-05 18:59:01 +00:00
|
|
|
final txn = await buildTransaction(
|
2023-11-08 19:57:38 +00:00
|
|
|
utxoSigningData: utxoSigningData,
|
|
|
|
txData: txData.copyWith(
|
2024-01-05 19:45:42 +00:00
|
|
|
recipients: await _helperRecipientsConvert(
|
2023-11-08 19:57:38 +00:00
|
|
|
recipientsArray,
|
|
|
|
recipientsAmtArray,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
return txn.copyWith(
|
|
|
|
fee: Amount(
|
|
|
|
rawValue: BigInt.from(satoshisBeingUsed - satoshiAmountToSend),
|
|
|
|
fractionDigits: cryptoCurrency.fractionDigits,
|
|
|
|
),
|
|
|
|
usedUTXOs: utxoSigningData.map((e) => e.utxo).toList(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else if (satoshisBeingUsed - satoshiAmountToSend == feeForOneOutput) {
|
|
|
|
// In this scenario, no additional change output is needed since inputs - outputs equal exactly
|
|
|
|
// what we need to pay for fees. Here, we pass data directly to instruct the wallet to begin
|
|
|
|
// crafting the transaction that the user requested.
|
|
|
|
Logging.instance.log('1 output in tx', level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log('Input size: $satoshisBeingUsed', level: LogLevel.Info);
|
|
|
|
Logging.instance.log('Recipient output size: $satoshiAmountToSend',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance.log(
|
|
|
|
'Fee being paid: ${satoshisBeingUsed - satoshiAmountToSend} sats',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
Logging.instance
|
|
|
|
.log('Estimated fee: $feeForOneOutput', level: LogLevel.Info);
|
2024-01-05 18:59:01 +00:00
|
|
|
final txn = await buildTransaction(
|
2023-11-08 19:57:38 +00:00
|
|
|
utxoSigningData: utxoSigningData,
|
|
|
|
txData: txData.copyWith(
|
2024-01-05 19:45:42 +00:00
|
|
|
recipients: await _helperRecipientsConvert(
|
2023-11-08 19:57:38 +00:00
|
|
|
recipientsArray,
|
|
|
|
recipientsAmtArray,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
return txn.copyWith(
|
|
|
|
fee: Amount(
|
|
|
|
rawValue: BigInt.from(feeForOneOutput),
|
|
|
|
fractionDigits: cryptoCurrency.fractionDigits,
|
|
|
|
),
|
|
|
|
usedUTXOs: utxoSigningData.map((e) => e.utxo).toList(),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// Remember that returning 2 indicates that the user does not have a sufficient balance to
|
|
|
|
// pay for the transaction fee. Ideally, at this stage, we should check if the user has any
|
|
|
|
// additional outputs they're able to spend and then recalculate fees.
|
|
|
|
Logging.instance.log(
|
|
|
|
'Cannot pay tx fee - checking for more outputs and trying again',
|
|
|
|
level: LogLevel.Warning);
|
|
|
|
// try adding more outputs
|
|
|
|
if (spendableOutputs.length > inputsBeingConsumed) {
|
|
|
|
return coinSelection(
|
|
|
|
txData: txData,
|
|
|
|
isSendAll: isSendAll,
|
|
|
|
additionalOutputs: additionalOutputs + 1,
|
|
|
|
utxos: utxos,
|
|
|
|
coinControl: coinControl,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
throw Exception("Insufficient balance to pay transaction fee");
|
|
|
|
// return 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<List<SigningData>> fetchBuildTxData(
|
|
|
|
List<UTXO> utxosToUse,
|
|
|
|
) async {
|
|
|
|
// return data
|
|
|
|
List<SigningData> signingData = [];
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Populating the addresses to check
|
|
|
|
for (var i = 0; i < utxosToUse.length; i++) {
|
|
|
|
final derivePathType =
|
|
|
|
cryptoCurrency.addressType(address: utxosToUse[i].address!);
|
|
|
|
|
|
|
|
signingData.add(
|
|
|
|
SigningData(
|
|
|
|
derivePathType: derivePathType,
|
|
|
|
utxo: utxosToUse[i],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
final root = await getRootHDNode();
|
|
|
|
|
|
|
|
for (final sd in signingData) {
|
|
|
|
coinlib.HDPrivateKey? keys;
|
|
|
|
final address = await mainDB.getAddress(walletId, sd.utxo.address!);
|
|
|
|
if (address?.derivationPath != null) {
|
|
|
|
if (address!.subType == AddressSubType.paynymReceive) {
|
2024-01-13 21:49:29 +00:00
|
|
|
if (this is PaynymInterface) {
|
|
|
|
final code = await (this as PaynymInterface)
|
|
|
|
.paymentCodeStringByKey(address.otherData!);
|
|
|
|
|
|
|
|
final bip47base =
|
|
|
|
await (this as PaynymInterface).getBip47BaseNode();
|
|
|
|
|
|
|
|
final privateKey = await (this as PaynymInterface)
|
|
|
|
.getPrivateKeyForPaynymReceivingAddress(
|
|
|
|
paymentCodeString: code!,
|
|
|
|
index: address.derivationIndex,
|
|
|
|
);
|
|
|
|
|
|
|
|
keys = coinlib.HDPrivateKey.fromKeyAndChainCode(
|
|
|
|
coinlib.ECPrivateKey.fromHex(privateKey.toHex),
|
|
|
|
bip47base.chainCode,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
throw Exception(
|
|
|
|
"$runtimeType tried to fetchBuildTxData for a paynym address"
|
|
|
|
" in a non PaynymInterface wallet",
|
|
|
|
);
|
|
|
|
}
|
2023-11-08 19:57:38 +00:00
|
|
|
} else {
|
|
|
|
keys = root.derivePath(address.derivationPath!.value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keys == null) {
|
|
|
|
throw Exception(
|
|
|
|
"Failed to fetch signing data. Local db corrupt. Rescan wallet.");
|
|
|
|
}
|
|
|
|
|
2024-04-18 17:33:23 +00:00
|
|
|
sd.keyPair = keys;
|
2023-11-08 19:57:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return signingData;
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance
|
|
|
|
.log("fetchBuildTxData() threw: $e,\n$s", level: LogLevel.Error);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Builds and signs a transaction
|
2024-01-05 18:59:01 +00:00
|
|
|
Future<TxData> buildTransaction({
|
2023-11-08 19:57:38 +00:00
|
|
|
required TxData txData,
|
|
|
|
required List<SigningData> utxoSigningData,
|
2024-01-05 18:59:01 +00:00
|
|
|
}) async {
|
2023-11-08 19:57:38 +00:00
|
|
|
Logging.instance
|
|
|
|
.log("Starting buildTransaction ----------", level: LogLevel.Info);
|
|
|
|
|
2024-01-05 18:59:01 +00:00
|
|
|
// temp tx data to show in gui while waiting for real data from server
|
|
|
|
final List<InputV2> tempInputs = [];
|
|
|
|
final List<OutputV2> tempOutputs = [];
|
2023-11-08 19:57:38 +00:00
|
|
|
|
2024-04-15 21:48:55 +00:00
|
|
|
final List<coinlib.Output> prevOuts = [];
|
|
|
|
|
|
|
|
coinlib.Transaction clTx = coinlib.Transaction(
|
|
|
|
version: 1, // TODO: check if we can use 3 (as is default in coinlib)
|
|
|
|
inputs: [],
|
|
|
|
outputs: [],
|
|
|
|
);
|
|
|
|
|
2023-11-08 19:57:38 +00:00
|
|
|
// Add transaction inputs
|
|
|
|
for (var i = 0; i < utxoSigningData.length; i++) {
|
|
|
|
final txid = utxoSigningData[i].utxo.txid;
|
2024-04-15 21:48:55 +00:00
|
|
|
|
2024-04-18 17:33:23 +00:00
|
|
|
final hash = Uint8List.fromList(
|
|
|
|
txid.toUint8ListFromHex.reversed.toList(),
|
|
|
|
);
|
2024-04-15 21:48:55 +00:00
|
|
|
|
|
|
|
final prevOutpoint = coinlib.OutPoint(
|
|
|
|
hash,
|
2023-11-08 19:57:38 +00:00
|
|
|
utxoSigningData[i].utxo.vout,
|
|
|
|
);
|
2024-01-05 18:59:01 +00:00
|
|
|
|
2024-04-15 21:48:55 +00:00
|
|
|
final prevOutput = coinlib.Output.fromAddress(
|
|
|
|
BigInt.from(utxoSigningData[i].utxo.value),
|
|
|
|
coinlib.Address.fromString(
|
|
|
|
utxoSigningData[i].utxo.address!,
|
|
|
|
cryptoCurrency.networkParams,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
prevOuts.add(prevOutput);
|
|
|
|
|
|
|
|
final coinlib.Input input;
|
|
|
|
|
|
|
|
switch (utxoSigningData[i].derivePathType) {
|
|
|
|
case DerivePathType.bip44:
|
|
|
|
case DerivePathType.bch44:
|
|
|
|
input = coinlib.P2PKHInput(
|
|
|
|
prevOut: prevOutpoint,
|
2024-04-18 17:33:23 +00:00
|
|
|
publicKey: utxoSigningData[i].keyPair!.publicKey,
|
2024-04-15 21:48:55 +00:00
|
|
|
sequence: 0xffffffff - 1,
|
|
|
|
);
|
|
|
|
|
|
|
|
// TODO: fix this as it is (probably) wrong!
|
|
|
|
case DerivePathType.bip49:
|
2024-04-18 17:33:23 +00:00
|
|
|
throw Exception("TODO p2sh");
|
|
|
|
// input = coinlib.P2SHMultisigInput(
|
|
|
|
// prevOut: prevOutpoint,
|
|
|
|
// program: coinlib.MultisigProgram.decompile(
|
|
|
|
// utxoSigningData[i].redeemScript!,
|
|
|
|
// ),
|
|
|
|
// sequence: 0xffffffff - 1,
|
|
|
|
// );
|
2024-04-15 21:48:55 +00:00
|
|
|
|
|
|
|
case DerivePathType.bip84:
|
|
|
|
input = coinlib.P2WPKHInput(
|
|
|
|
prevOut: prevOutpoint,
|
2024-04-18 17:33:23 +00:00
|
|
|
publicKey: utxoSigningData[i].keyPair!.publicKey,
|
2024-04-15 21:48:55 +00:00
|
|
|
sequence: 0xffffffff - 1,
|
|
|
|
);
|
|
|
|
|
|
|
|
case DerivePathType.bip86:
|
|
|
|
input = coinlib.TaprootKeyInput(prevOut: prevOutpoint);
|
|
|
|
|
|
|
|
default:
|
|
|
|
throw UnsupportedError(
|
|
|
|
"Unknown derivation path type found: ${utxoSigningData[i].derivePathType}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
clTx = clTx.addInput(input);
|
|
|
|
|
2024-01-05 18:59:01 +00:00
|
|
|
tempInputs.add(
|
|
|
|
InputV2.isarCantDoRequiredInDefaultConstructor(
|
2024-04-15 21:48:55 +00:00
|
|
|
scriptSigHex: input.scriptSig.toHex,
|
2024-01-14 17:26:04 +00:00
|
|
|
scriptSigAsm: null,
|
2024-01-05 18:59:01 +00:00
|
|
|
sequence: 0xffffffff - 1,
|
|
|
|
outpoint: OutpointV2.isarCantDoRequiredInDefaultConstructor(
|
|
|
|
txid: utxoSigningData[i].utxo.txid,
|
|
|
|
vout: utxoSigningData[i].utxo.vout,
|
|
|
|
),
|
|
|
|
addresses: utxoSigningData[i].utxo.address == null
|
|
|
|
? []
|
|
|
|
: [utxoSigningData[i].utxo.address!],
|
|
|
|
valueStringSats: utxoSigningData[i].utxo.value.toString(),
|
|
|
|
witness: null,
|
|
|
|
innerRedeemScriptAsm: null,
|
|
|
|
coinbase: null,
|
|
|
|
walletOwns: true,
|
|
|
|
),
|
|
|
|
);
|
2023-11-08 19:57:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add transaction output
|
|
|
|
for (var i = 0; i < txData.recipients!.length; i++) {
|
2024-04-15 21:48:55 +00:00
|
|
|
final address = coinlib.Address.fromString(
|
2024-01-12 20:49:05 +00:00
|
|
|
normalizeAddress(txData.recipients![i].address),
|
2024-04-15 21:48:55 +00:00
|
|
|
cryptoCurrency.networkParams,
|
|
|
|
);
|
|
|
|
|
|
|
|
final output = coinlib.Output.fromAddress(
|
|
|
|
txData.recipients![i].amount.raw,
|
|
|
|
address,
|
2023-11-08 19:57:38 +00:00
|
|
|
);
|
2024-01-05 18:59:01 +00:00
|
|
|
|
2024-04-15 21:48:55 +00:00
|
|
|
clTx = clTx.addOutput(output);
|
|
|
|
|
2024-01-05 18:59:01 +00:00
|
|
|
tempOutputs.add(
|
|
|
|
OutputV2.isarCantDoRequiredInDefaultConstructor(
|
|
|
|
scriptPubKeyHex: "000000",
|
|
|
|
valueStringSats: txData.recipients![i].amount.raw.toString(),
|
|
|
|
addresses: [
|
|
|
|
txData.recipients![i].address.toString(),
|
|
|
|
],
|
|
|
|
walletOwns: (await mainDB.isar.addresses
|
|
|
|
.where()
|
|
|
|
.walletIdEqualTo(walletId)
|
|
|
|
.filter()
|
|
|
|
.valueEqualTo(txData.recipients![i].address)
|
|
|
|
.valueProperty()
|
|
|
|
.findFirst()) !=
|
|
|
|
null,
|
|
|
|
),
|
|
|
|
);
|
2023-11-08 19:57:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Sign the transaction accordingly
|
|
|
|
for (var i = 0; i < utxoSigningData.length; i++) {
|
2024-04-15 21:48:55 +00:00
|
|
|
final value = BigInt.from(utxoSigningData[i].utxo.value);
|
2024-04-18 17:33:23 +00:00
|
|
|
coinlib.ECPrivateKey key = utxoSigningData[i].keyPair!.privateKey;
|
2024-04-15 21:48:55 +00:00
|
|
|
|
|
|
|
if (clTx.inputs[i] is coinlib.TaprootKeyInput) {
|
|
|
|
final taproot = coinlib.Taproot(
|
2024-04-18 17:33:23 +00:00
|
|
|
internalKey: utxoSigningData[i].keyPair!.publicKey,
|
2024-04-15 21:48:55 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
key = taproot.tweakPrivateKey(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
clTx = clTx.sign(
|
|
|
|
inputN: i,
|
|
|
|
value: value,
|
|
|
|
key: key,
|
|
|
|
prevOuts: prevOuts,
|
2023-11-08 19:57:38 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log("Caught exception while signing transaction: $e\n$s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
|
|
|
|
return txData.copyWith(
|
2024-04-15 21:48:55 +00:00
|
|
|
raw: clTx.toHex(),
|
|
|
|
vSize: clTx.size,
|
2024-01-05 18:59:01 +00:00
|
|
|
tempTx: TransactionV2(
|
|
|
|
walletId: walletId,
|
|
|
|
blockHash: null,
|
2024-04-15 21:48:55 +00:00
|
|
|
hash: clTx.hashHex,
|
|
|
|
txid: clTx.txid,
|
2024-01-05 18:59:01 +00:00
|
|
|
height: null,
|
|
|
|
timestamp: DateTime.timestamp().millisecondsSinceEpoch ~/ 1000,
|
|
|
|
inputs: List.unmodifiable(tempInputs),
|
|
|
|
outputs: List.unmodifiable(tempOutputs),
|
2024-04-15 21:48:55 +00:00
|
|
|
version: clTx.version,
|
2024-01-14 17:26:04 +00:00
|
|
|
type:
|
|
|
|
tempOutputs.map((e) => e.walletOwns).fold(true, (p, e) => p &= e) &&
|
|
|
|
txData.paynymAccountLite == null
|
|
|
|
? TransactionType.sentToSelf
|
|
|
|
: TransactionType.outgoing,
|
2024-01-05 18:59:01 +00:00
|
|
|
subType: TransactionSubType.none,
|
|
|
|
otherData: null,
|
|
|
|
),
|
2023-11-08 19:57:38 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-09-18 21:28:31 +00:00
|
|
|
Future<int> fetchChainHeight() async {
|
|
|
|
try {
|
2024-04-18 23:17:45 +00:00
|
|
|
return await ClientManager.sharedInstance.getChainHeightFor(
|
|
|
|
cryptoCurrency,
|
2024-02-17 08:47:53 +00:00
|
|
|
);
|
2024-02-16 06:32:06 +00:00
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"Exception rethrown in fetchChainHeight\nError: $e\nStack trace: $s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
// completer.completeError(e, s);
|
|
|
|
// return Future.error(e, s);
|
2023-09-18 21:28:31 +00:00
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-06 23:10:07 +00:00
|
|
|
Future<int> fetchTxCount({required String addressScriptHash}) async {
|
|
|
|
final transactions =
|
2023-11-14 20:31:53 +00:00
|
|
|
await electrumXClient.getHistory(scripthash: addressScriptHash);
|
2023-11-06 23:10:07 +00:00
|
|
|
return transactions.length;
|
|
|
|
}
|
|
|
|
|
2024-02-22 05:16:53 +00:00
|
|
|
/// Should return a list of tx counts matching the list of addresses given
|
|
|
|
Future<List<int>> fetchTxCountBatched({
|
|
|
|
required List<String> addresses,
|
2023-11-07 18:19:42 +00:00
|
|
|
}) async {
|
|
|
|
try {
|
2024-02-22 05:16:53 +00:00
|
|
|
final response = await electrumXClient.getBatchHistory(
|
|
|
|
args: addresses
|
|
|
|
.map((e) => [cryptoCurrency.addressToScriptHash(address: e)])
|
|
|
|
.toList(growable: false));
|
|
|
|
|
|
|
|
final List<int> result = [];
|
|
|
|
for (final entry in response) {
|
|
|
|
result.add(entry.length);
|
2023-11-07 18:19:42 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"Exception rethrown in _getBatchTxCount(address: $addresses: $e\n$s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-18 23:47:06 +00:00
|
|
|
Future<ElectrumXNode> _getCurrentElectrumXNode() async {
|
2023-11-06 21:37:44 +00:00
|
|
|
final node = getCurrentNode();
|
2023-09-18 21:28:31 +00:00
|
|
|
|
|
|
|
return ElectrumXNode(
|
|
|
|
address: node.host,
|
|
|
|
port: node.port,
|
|
|
|
name: node.name,
|
|
|
|
useSSL: node.useSSL,
|
|
|
|
id: node.id,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-01-18 23:47:06 +00:00
|
|
|
Future<void> updateElectrumX() async {
|
2023-09-18 21:28:31 +00:00
|
|
|
final failovers = nodeService
|
|
|
|
.failoverNodesFor(coin: cryptoCurrency.coin)
|
|
|
|
.map((e) => ElectrumXNode(
|
|
|
|
address: e.host,
|
|
|
|
port: e.port,
|
|
|
|
name: e.name,
|
|
|
|
id: e.id,
|
|
|
|
useSSL: e.useSSL,
|
|
|
|
))
|
|
|
|
.toList();
|
|
|
|
|
2024-01-18 23:47:06 +00:00
|
|
|
final newNode = await _getCurrentElectrumXNode();
|
2024-02-16 22:33:51 +00:00
|
|
|
try {
|
2024-04-18 23:17:45 +00:00
|
|
|
await electrumXClient.closeAdapter();
|
2024-04-15 16:31:57 +00:00
|
|
|
} catch (e) {
|
2024-02-16 22:33:51 +00:00
|
|
|
if (e.toString().contains("initialized")) {
|
|
|
|
// Ignore. This should happen every first time the wallet is opened.
|
|
|
|
} else {
|
|
|
|
Logging.instance
|
|
|
|
.log("Error closing electrumXClient: $e", level: LogLevel.Error);
|
|
|
|
}
|
|
|
|
}
|
2023-11-14 20:31:53 +00:00
|
|
|
electrumXClient = ElectrumXClient.from(
|
2023-09-18 21:28:31 +00:00
|
|
|
node: newNode,
|
|
|
|
prefs: prefs,
|
|
|
|
failovers: failovers,
|
2024-04-18 23:17:45 +00:00
|
|
|
cryptoCurrency: cryptoCurrency,
|
2023-09-18 21:28:31 +00:00
|
|
|
);
|
2023-11-14 20:31:53 +00:00
|
|
|
electrumXCachedClient = CachedElectrumXClient.from(
|
|
|
|
electrumXClient: electrumXClient,
|
2023-09-18 21:28:31 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
2023-11-14 19:21:21 +00:00
|
|
|
Future<({List<Address> addresses, int index})> checkGapsBatched(
|
2023-11-07 18:19:42 +00:00
|
|
|
int txCountBatchSize,
|
|
|
|
coinlib.HDPrivateKey root,
|
|
|
|
DerivePathType type,
|
|
|
|
int chain,
|
|
|
|
) async {
|
|
|
|
List<Address> addressArray = [];
|
|
|
|
int gapCounter = 0;
|
|
|
|
int highestIndexWithHistory = 0;
|
|
|
|
|
|
|
|
for (int index = 0;
|
|
|
|
index < cryptoCurrency.maxNumberOfIndexesToCheck &&
|
|
|
|
gapCounter < cryptoCurrency.maxUnusedAddressGap;
|
|
|
|
index += txCountBatchSize) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"index: $index, \t GapCounter $chain ${type.name}: $gapCounter",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
|
2024-02-22 05:16:53 +00:00
|
|
|
List<String> txCountCallArgs = [];
|
2023-11-07 18:19:42 +00:00
|
|
|
|
|
|
|
for (int j = 0; j < txCountBatchSize; j++) {
|
|
|
|
final derivePath = cryptoCurrency.constructDerivePath(
|
|
|
|
derivePathType: type,
|
|
|
|
chain: chain,
|
|
|
|
index: index + j,
|
|
|
|
);
|
|
|
|
|
|
|
|
final keys = root.derivePath(derivePath);
|
|
|
|
|
|
|
|
final addressData = cryptoCurrency.getAddressForPublicKey(
|
|
|
|
publicKey: keys.publicKey,
|
|
|
|
derivePathType: type,
|
|
|
|
);
|
|
|
|
|
2023-11-14 20:01:47 +00:00
|
|
|
final addressString = convertAddressString(
|
|
|
|
addressData.address.toString(),
|
|
|
|
);
|
|
|
|
|
2023-11-07 18:19:42 +00:00
|
|
|
final address = Address(
|
|
|
|
walletId: walletId,
|
2023-11-14 20:01:47 +00:00
|
|
|
value: addressString,
|
2023-11-07 18:19:42 +00:00
|
|
|
publicKey: keys.publicKey.data,
|
|
|
|
type: addressData.addressType,
|
|
|
|
derivationIndex: index + j,
|
|
|
|
derivationPath: DerivationPath()..value = derivePath,
|
|
|
|
subType:
|
|
|
|
chain == 0 ? AddressSubType.receiving : AddressSubType.change,
|
|
|
|
);
|
|
|
|
|
|
|
|
addressArray.add(address);
|
|
|
|
|
2024-02-22 05:16:53 +00:00
|
|
|
txCountCallArgs.add(
|
|
|
|
addressString,
|
|
|
|
);
|
2023-11-07 18:19:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// get address tx counts
|
|
|
|
final counts = await fetchTxCountBatched(addresses: txCountCallArgs);
|
|
|
|
|
|
|
|
// check and add appropriate addresses
|
|
|
|
for (int k = 0; k < txCountBatchSize; k++) {
|
2024-02-22 05:16:53 +00:00
|
|
|
final count = counts[k];
|
2023-11-07 18:19:42 +00:00
|
|
|
|
|
|
|
if (count > 0) {
|
|
|
|
// update highest
|
|
|
|
highestIndexWithHistory = index + k;
|
|
|
|
|
|
|
|
// reset counter
|
|
|
|
gapCounter = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// increase counter when no tx history found
|
|
|
|
if (count == 0) {
|
|
|
|
gapCounter++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// // cache all the transactions while waiting for the current function to finish.
|
|
|
|
// unawaited(getTransactionCacheEarly(addressArray));
|
|
|
|
}
|
|
|
|
return (index: highestIndexWithHistory, addresses: addressArray);
|
|
|
|
}
|
|
|
|
|
2023-11-14 19:21:21 +00:00
|
|
|
Future<({List<Address> addresses, int index})> checkGapsLinearly(
|
|
|
|
coinlib.HDPrivateKey root,
|
|
|
|
DerivePathType type,
|
|
|
|
int chain,
|
|
|
|
) async {
|
|
|
|
List<Address> addressArray = [];
|
|
|
|
int gapCounter = 0;
|
|
|
|
int index = 0;
|
|
|
|
for (;
|
|
|
|
index < cryptoCurrency.maxNumberOfIndexesToCheck &&
|
|
|
|
gapCounter < cryptoCurrency.maxUnusedAddressGap;
|
|
|
|
index++) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"index: $index, \t GapCounter chain=$chain ${type.name}: $gapCounter",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
|
|
|
|
final derivePath = cryptoCurrency.constructDerivePath(
|
|
|
|
derivePathType: type,
|
|
|
|
chain: chain,
|
|
|
|
index: index,
|
|
|
|
);
|
|
|
|
final keys = root.derivePath(derivePath);
|
|
|
|
final addressData = cryptoCurrency.getAddressForPublicKey(
|
|
|
|
publicKey: keys.publicKey,
|
|
|
|
derivePathType: type,
|
|
|
|
);
|
|
|
|
|
2023-11-14 20:01:47 +00:00
|
|
|
final addressString = convertAddressString(
|
|
|
|
addressData.address.toString(),
|
|
|
|
);
|
2023-11-14 19:21:21 +00:00
|
|
|
|
|
|
|
final address = Address(
|
|
|
|
walletId: walletId,
|
|
|
|
value: addressString,
|
|
|
|
publicKey: keys.publicKey.data,
|
|
|
|
type: addressData.addressType,
|
|
|
|
derivationIndex: index,
|
|
|
|
derivationPath: DerivationPath()..value = derivePath,
|
|
|
|
subType: chain == 0 ? AddressSubType.receiving : AddressSubType.change,
|
|
|
|
);
|
|
|
|
|
|
|
|
// get address tx count
|
|
|
|
final count = await fetchTxCount(
|
|
|
|
addressScriptHash: cryptoCurrency.addressToScriptHash(
|
|
|
|
address: address.value,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
// check and add appropriate addresses
|
|
|
|
if (count > 0) {
|
|
|
|
// add address to array
|
|
|
|
addressArray.add(address);
|
|
|
|
// reset counter
|
|
|
|
gapCounter = 0;
|
|
|
|
// add info to derivations
|
|
|
|
} else {
|
|
|
|
// increase counter when no tx history found
|
|
|
|
gapCounter++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (addresses: addressArray, index: index);
|
|
|
|
}
|
|
|
|
|
2023-10-30 22:58:15 +00:00
|
|
|
Future<List<Map<String, dynamic>>> fetchHistory(
|
|
|
|
Iterable<String> allAddresses,
|
2023-09-18 21:28:31 +00:00
|
|
|
) async {
|
|
|
|
try {
|
|
|
|
List<Map<String, dynamic>> allTxHashes = [];
|
|
|
|
|
2023-11-14 19:21:21 +00:00
|
|
|
if (serverCanBatch) {
|
2024-02-22 05:16:53 +00:00
|
|
|
final Map<int, List<List<dynamic>>> batches = {};
|
|
|
|
final Map<int, List<String>> batchIndexToAddressListMap = {};
|
2023-11-14 19:21:21 +00:00
|
|
|
const batchSizeMax = 100;
|
|
|
|
int batchNumber = 0;
|
|
|
|
for (int i = 0; i < allAddresses.length; i++) {
|
2024-02-22 05:16:53 +00:00
|
|
|
batches[batchNumber] ??= [];
|
|
|
|
batchIndexToAddressListMap[batchNumber] ??= [];
|
|
|
|
|
|
|
|
final address = allAddresses.elementAt(i);
|
2023-11-14 19:21:21 +00:00
|
|
|
final scriptHash = cryptoCurrency.addressToScriptHash(
|
2024-02-22 05:16:53 +00:00
|
|
|
address: address,
|
2023-11-14 19:21:21 +00:00
|
|
|
);
|
2024-02-22 05:16:53 +00:00
|
|
|
batches[batchNumber]!.add([scriptHash]);
|
|
|
|
batchIndexToAddressListMap[batchNumber]!.add(address);
|
2023-11-14 19:21:21 +00:00
|
|
|
if (i % batchSizeMax == batchSizeMax - 1) {
|
|
|
|
batchNumber++;
|
|
|
|
}
|
2023-09-18 21:28:31 +00:00
|
|
|
}
|
2023-11-14 19:21:21 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < batches.length; i++) {
|
2023-11-14 20:31:53 +00:00
|
|
|
final response =
|
|
|
|
await electrumXClient.getBatchHistory(args: batches[i]!);
|
2024-02-22 05:16:53 +00:00
|
|
|
for (int j = 0; j < response.length; j++) {
|
|
|
|
final entry = response[j];
|
|
|
|
for (int k = 0; k < entry.length; k++) {
|
|
|
|
entry[k]["address"] = batchIndexToAddressListMap[i]![j];
|
|
|
|
// if (!allTxHashes.contains(entry[j])) {
|
|
|
|
allTxHashes.add(entry[k]);
|
|
|
|
// }
|
2023-11-14 19:21:21 +00:00
|
|
|
}
|
|
|
|
}
|
2023-09-18 21:28:31 +00:00
|
|
|
}
|
2023-11-14 19:21:21 +00:00
|
|
|
} else {
|
|
|
|
for (int i = 0; i < allAddresses.length; i++) {
|
2024-01-11 19:51:27 +00:00
|
|
|
final addressString = allAddresses.elementAt(i);
|
2023-11-14 19:21:21 +00:00
|
|
|
final scriptHash = cryptoCurrency.addressToScriptHash(
|
2024-01-11 19:51:27 +00:00
|
|
|
address: addressString,
|
2023-11-14 19:21:21 +00:00
|
|
|
);
|
|
|
|
|
2023-11-14 20:31:53 +00:00
|
|
|
final response = await electrumXClient.getHistory(
|
2023-11-14 19:21:21 +00:00
|
|
|
scripthash: scriptHash,
|
|
|
|
);
|
2023-09-18 21:28:31 +00:00
|
|
|
|
2023-11-14 19:21:21 +00:00
|
|
|
for (int j = 0; j < response.length; j++) {
|
2024-01-11 19:51:27 +00:00
|
|
|
response[j]["address"] = addressString;
|
2023-11-14 19:21:21 +00:00
|
|
|
if (!allTxHashes.contains(response[j])) {
|
|
|
|
allTxHashes.add(response[j]);
|
2023-09-18 21:28:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return allTxHashes;
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log("_fetchHistory: $e\n$s", level: LogLevel.Error);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-06 23:10:07 +00:00
|
|
|
/// The optional (nullable) param [checkBlock] is a callback that can be used
|
|
|
|
/// to check if a utxo should be marked as blocked
|
2023-10-30 22:58:15 +00:00
|
|
|
Future<UTXO> parseUTXO({
|
|
|
|
required Map<String, dynamic> jsonUTXO,
|
|
|
|
}) async {
|
2023-11-14 20:31:53 +00:00
|
|
|
final txn = await electrumXCachedClient.getTransaction(
|
2023-10-30 22:58:15 +00:00
|
|
|
txHash: jsonUTXO["tx_hash"] as String,
|
|
|
|
verbose: true,
|
|
|
|
coin: cryptoCurrency.coin,
|
|
|
|
);
|
|
|
|
|
|
|
|
final vout = jsonUTXO["tx_pos"] as int;
|
|
|
|
|
|
|
|
final outputs = txn["vout"] as List;
|
|
|
|
|
|
|
|
String? scriptPubKey;
|
|
|
|
String? utxoOwnerAddress;
|
|
|
|
// get UTXO owner address
|
|
|
|
for (final output in outputs) {
|
|
|
|
if (output["n"] == vout) {
|
|
|
|
scriptPubKey = output["scriptPubKey"]?["hex"] as String?;
|
|
|
|
utxoOwnerAddress =
|
|
|
|
output["scriptPubKey"]?["addresses"]?[0] as String? ??
|
|
|
|
output["scriptPubKey"]?["address"] as String?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-05 00:37:46 +00:00
|
|
|
final checkBlockResult = await checkBlockUTXO(
|
|
|
|
jsonUTXO,
|
|
|
|
scriptPubKey,
|
|
|
|
txn,
|
|
|
|
utxoOwnerAddress,
|
|
|
|
);
|
2023-10-30 22:58:15 +00:00
|
|
|
|
|
|
|
final utxo = UTXO(
|
|
|
|
walletId: walletId,
|
|
|
|
txid: txn["txid"] as String,
|
|
|
|
vout: vout,
|
|
|
|
value: jsonUTXO["value"] as int,
|
2024-01-05 00:37:46 +00:00
|
|
|
name: checkBlockResult.utxoLabel ?? "",
|
2023-11-06 23:10:07 +00:00
|
|
|
isBlocked: checkBlockResult.blocked,
|
|
|
|
blockedReason: checkBlockResult.blockedReason,
|
2023-10-30 22:58:15 +00:00
|
|
|
isCoinbase: txn["is_coinbase"] as bool? ?? false,
|
|
|
|
blockHash: txn["blockhash"] as String?,
|
|
|
|
blockHeight: jsonUTXO["height"] as int?,
|
|
|
|
blockTime: txn["blocktime"] as int?,
|
|
|
|
address: utxoOwnerAddress,
|
|
|
|
);
|
|
|
|
|
|
|
|
return utxo;
|
|
|
|
}
|
|
|
|
|
2023-09-18 21:28:31 +00:00
|
|
|
//============================================================================
|
|
|
|
|
2023-11-06 23:10:07 +00:00
|
|
|
@override
|
|
|
|
Future<void> updateChainHeight() async {
|
|
|
|
final height = await fetchChainHeight();
|
|
|
|
await info.updateCachedChainHeight(
|
|
|
|
newHeight: height,
|
|
|
|
isar: mainDB.isar,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<bool> pingCheck() async {
|
|
|
|
try {
|
2023-11-14 20:31:53 +00:00
|
|
|
final result = await electrumXClient.ping();
|
2023-11-06 23:10:07 +00:00
|
|
|
return result;
|
|
|
|
} catch (_) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-18 21:28:31 +00:00
|
|
|
@override
|
|
|
|
Future<void> updateNode() async {
|
2024-01-18 23:47:06 +00:00
|
|
|
await updateElectrumX();
|
2023-09-18 21:28:31 +00:00
|
|
|
}
|
2023-11-03 19:46:55 +00:00
|
|
|
|
|
|
|
FeeObject? _cachedFees;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<FeeObject> get fees async {
|
|
|
|
try {
|
|
|
|
const int f = 1, m = 5, s = 20;
|
|
|
|
|
2023-11-14 20:31:53 +00:00
|
|
|
final fast = await electrumXClient.estimateFee(blocks: f);
|
|
|
|
final medium = await electrumXClient.estimateFee(blocks: m);
|
|
|
|
final slow = await electrumXClient.estimateFee(blocks: s);
|
2023-11-03 19:46:55 +00:00
|
|
|
|
|
|
|
final feeObject = FeeObject(
|
|
|
|
numberOfBlocksFast: f,
|
|
|
|
numberOfBlocksAverage: m,
|
|
|
|
numberOfBlocksSlow: s,
|
|
|
|
fast: Amount.fromDecimal(
|
|
|
|
fast,
|
|
|
|
fractionDigits: info.coin.decimals,
|
|
|
|
).raw.toInt(),
|
|
|
|
medium: Amount.fromDecimal(
|
|
|
|
medium,
|
|
|
|
fractionDigits: info.coin.decimals,
|
|
|
|
).raw.toInt(),
|
|
|
|
slow: Amount.fromDecimal(
|
|
|
|
slow,
|
|
|
|
fractionDigits: info.coin.decimals,
|
|
|
|
).raw.toInt(),
|
|
|
|
);
|
|
|
|
|
|
|
|
Logging.instance.log("fetched fees: $feeObject", level: LogLevel.Info);
|
|
|
|
_cachedFees = feeObject;
|
|
|
|
return _cachedFees!;
|
2024-02-06 04:40:39 +00:00
|
|
|
} catch (e, s) {
|
2023-11-03 19:46:55 +00:00
|
|
|
Logging.instance.log(
|
2024-02-06 04:40:39 +00:00
|
|
|
"Exception rethrown from _getFees(): $e\nStack trace: $s",
|
2023-11-03 19:46:55 +00:00
|
|
|
level: LogLevel.Error,
|
|
|
|
);
|
|
|
|
if (_cachedFees == null) {
|
|
|
|
rethrow;
|
|
|
|
} else {
|
|
|
|
return _cachedFees!;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<Amount> estimateFeeFor(Amount amount, int feeRate) async {
|
|
|
|
final available = info.cachedBalance.spendable;
|
|
|
|
final utxos = _spendableUTXOs(await mainDB.getUTXOs(walletId).findAll());
|
|
|
|
|
|
|
|
if (available == amount) {
|
|
|
|
return amount - (await _sweepAllEstimate(feeRate, utxos));
|
|
|
|
} else if (amount <= Amount.zero || amount > available) {
|
|
|
|
return roughFeeEstimate(1, 2, feeRate);
|
|
|
|
}
|
|
|
|
|
|
|
|
Amount runningBalance = Amount(
|
|
|
|
rawValue: BigInt.zero,
|
|
|
|
fractionDigits: info.coin.decimals,
|
|
|
|
);
|
|
|
|
int inputCount = 0;
|
|
|
|
for (final output in utxos) {
|
|
|
|
if (!output.isBlocked) {
|
|
|
|
runningBalance += Amount(
|
|
|
|
rawValue: BigInt.from(output.value),
|
|
|
|
fractionDigits: info.coin.decimals,
|
|
|
|
);
|
|
|
|
inputCount++;
|
|
|
|
if (runningBalance > amount) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
final oneOutPutFee = roughFeeEstimate(inputCount, 1, feeRate);
|
|
|
|
final twoOutPutFee = roughFeeEstimate(inputCount, 2, feeRate);
|
|
|
|
|
|
|
|
if (runningBalance - amount > oneOutPutFee) {
|
|
|
|
if (runningBalance - amount > oneOutPutFee + cryptoCurrency.dustLimit) {
|
|
|
|
final change = runningBalance - amount - twoOutPutFee;
|
|
|
|
if (change > cryptoCurrency.dustLimit &&
|
|
|
|
runningBalance - amount - change == twoOutPutFee) {
|
|
|
|
return runningBalance - amount - change;
|
|
|
|
} else {
|
|
|
|
return runningBalance - amount;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return runningBalance - amount;
|
|
|
|
}
|
|
|
|
} else if (runningBalance - amount == oneOutPutFee) {
|
|
|
|
return oneOutPutFee;
|
|
|
|
} else {
|
|
|
|
return twoOutPutFee;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-06 23:10:07 +00:00
|
|
|
@override
|
|
|
|
Future<void> checkReceivingAddressForTransactions() async {
|
|
|
|
try {
|
|
|
|
final currentReceiving = await getCurrentReceivingAddress();
|
|
|
|
|
|
|
|
final bool needsGenerate;
|
|
|
|
if (currentReceiving == null) {
|
|
|
|
// no addresses in db yet for some reason.
|
|
|
|
// Should not happen at this point...
|
|
|
|
|
|
|
|
needsGenerate = true;
|
|
|
|
} else {
|
|
|
|
final txCount = await fetchTxCount(
|
2023-11-08 19:57:38 +00:00
|
|
|
addressScriptHash: cryptoCurrency.addressToScriptHash(
|
|
|
|
address: currentReceiving.value,
|
|
|
|
),
|
2023-11-06 23:10:07 +00:00
|
|
|
);
|
|
|
|
needsGenerate = txCount > 0 || currentReceiving.derivationIndex < 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (needsGenerate) {
|
|
|
|
await generateNewReceivingAddress();
|
|
|
|
|
|
|
|
// TODO: get rid of this? Could cause problems (long loading/infinite loop or something)
|
|
|
|
// keep checking until address with no tx history is set as current
|
|
|
|
await checkReceivingAddressForTransactions();
|
|
|
|
}
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"Exception rethrown from _checkReceivingAddressForTransactions"
|
|
|
|
"($cryptoCurrency): $e\n$s",
|
|
|
|
level: LogLevel.Error,
|
|
|
|
);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-07 16:25:04 +00:00
|
|
|
@override
|
|
|
|
Future<void> checkChangeAddressForTransactions() async {
|
|
|
|
try {
|
|
|
|
final currentChange = await getCurrentChangeAddress();
|
|
|
|
|
|
|
|
final bool needsGenerate;
|
|
|
|
if (currentChange == null) {
|
|
|
|
// no addresses in db yet for some reason.
|
|
|
|
// Should not happen at this point...
|
|
|
|
|
|
|
|
needsGenerate = true;
|
|
|
|
} else {
|
|
|
|
final txCount = await fetchTxCount(
|
2023-11-08 19:57:38 +00:00
|
|
|
addressScriptHash: cryptoCurrency.addressToScriptHash(
|
|
|
|
address: currentChange.value,
|
|
|
|
),
|
2023-11-07 16:25:04 +00:00
|
|
|
);
|
|
|
|
needsGenerate = txCount > 0 || currentChange.derivationIndex < 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (needsGenerate) {
|
|
|
|
await generateNewChangeAddress();
|
|
|
|
|
|
|
|
// TODO: get rid of this? Could cause problems (long loading/infinite loop or something)
|
|
|
|
// keep checking until address with no tx history is set as current
|
|
|
|
await checkChangeAddressForTransactions();
|
|
|
|
}
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
2023-11-08 19:57:38 +00:00
|
|
|
"Exception rethrown from _checkChangeAddressForTransactions"
|
2023-11-07 18:19:42 +00:00
|
|
|
"($cryptoCurrency): $e\n$s",
|
2023-11-07 16:25:04 +00:00
|
|
|
level: LogLevel.Error,
|
|
|
|
);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-07 18:19:42 +00:00
|
|
|
@override
|
|
|
|
Future<void> recover({required bool isRescan}) async {
|
|
|
|
final root = await getRootHDNode();
|
|
|
|
|
|
|
|
final List<Future<({int index, List<Address> addresses})>> receiveFutures =
|
|
|
|
[];
|
|
|
|
final List<Future<({int index, List<Address> addresses})>> changeFutures =
|
|
|
|
[];
|
|
|
|
|
|
|
|
const receiveChain = 0;
|
|
|
|
const changeChain = 1;
|
|
|
|
|
|
|
|
const txCountBatchSize = 12;
|
|
|
|
|
|
|
|
try {
|
|
|
|
await refreshMutex.protect(() async {
|
|
|
|
if (isRescan) {
|
|
|
|
// clear cache
|
2023-11-14 20:31:53 +00:00
|
|
|
await electrumXCachedClient.clearSharedTransactionCache(
|
|
|
|
coin: info.coin);
|
2023-11-07 18:19:42 +00:00
|
|
|
// clear blockchain info
|
|
|
|
await mainDB.deleteWalletBlockchainData(walletId);
|
|
|
|
}
|
|
|
|
|
|
|
|
// receiving addresses
|
|
|
|
Logging.instance.log(
|
|
|
|
"checking receiving addresses...",
|
|
|
|
level: LogLevel.Info,
|
|
|
|
);
|
|
|
|
|
|
|
|
for (final type in cryptoCurrency.supportedDerivationPathTypes) {
|
|
|
|
receiveFutures.add(
|
2023-11-14 19:21:21 +00:00
|
|
|
serverCanBatch
|
|
|
|
? checkGapsBatched(
|
|
|
|
txCountBatchSize,
|
|
|
|
root,
|
|
|
|
type,
|
|
|
|
receiveChain,
|
|
|
|
)
|
|
|
|
: checkGapsLinearly(
|
|
|
|
root,
|
|
|
|
type,
|
|
|
|
receiveChain,
|
|
|
|
),
|
2023-11-07 18:19:42 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// change addresses
|
|
|
|
Logging.instance.log(
|
|
|
|
"checking change addresses...",
|
|
|
|
level: LogLevel.Info,
|
|
|
|
);
|
|
|
|
for (final type in cryptoCurrency.supportedDerivationPathTypes) {
|
|
|
|
changeFutures.add(
|
2023-11-14 19:21:21 +00:00
|
|
|
serverCanBatch
|
|
|
|
? checkGapsBatched(
|
|
|
|
txCountBatchSize,
|
|
|
|
root,
|
|
|
|
type,
|
|
|
|
changeChain,
|
|
|
|
)
|
|
|
|
: checkGapsLinearly(
|
|
|
|
root,
|
|
|
|
type,
|
|
|
|
changeChain,
|
|
|
|
),
|
2023-11-07 18:19:42 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// io limitations may require running these linearly instead
|
|
|
|
final futuresResult = await Future.wait([
|
|
|
|
Future.wait(receiveFutures),
|
|
|
|
Future.wait(changeFutures),
|
|
|
|
]);
|
|
|
|
|
|
|
|
final receiveResults = futuresResult[0];
|
|
|
|
final changeResults = futuresResult[1];
|
|
|
|
|
|
|
|
final List<Address> addressesToStore = [];
|
|
|
|
|
|
|
|
int highestReceivingIndexWithHistory = 0;
|
|
|
|
|
|
|
|
for (final tuple in receiveResults) {
|
|
|
|
if (tuple.addresses.isEmpty) {
|
|
|
|
await checkReceivingAddressForTransactions();
|
|
|
|
} else {
|
|
|
|
highestReceivingIndexWithHistory = max(
|
|
|
|
tuple.index,
|
|
|
|
highestReceivingIndexWithHistory,
|
|
|
|
);
|
|
|
|
addressesToStore.addAll(tuple.addresses);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int highestChangeIndexWithHistory = 0;
|
|
|
|
// If restoring a wallet that never sent any funds with change, then set changeArray
|
|
|
|
// manually. If we didn't do this, it'd store an empty array.
|
|
|
|
for (final tuple in changeResults) {
|
|
|
|
if (tuple.addresses.isEmpty) {
|
|
|
|
await checkChangeAddressForTransactions();
|
|
|
|
} else {
|
|
|
|
highestChangeIndexWithHistory = max(
|
|
|
|
tuple.index,
|
|
|
|
highestChangeIndexWithHistory,
|
|
|
|
);
|
|
|
|
addressesToStore.addAll(tuple.addresses);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove extra addresses to help minimize risk of creating a large gap
|
|
|
|
addressesToStore.removeWhere((e) =>
|
|
|
|
e.subType == AddressSubType.change &&
|
|
|
|
e.derivationIndex > highestChangeIndexWithHistory);
|
|
|
|
addressesToStore.removeWhere((e) =>
|
|
|
|
e.subType == AddressSubType.receiving &&
|
|
|
|
e.derivationIndex > highestReceivingIndexWithHistory);
|
|
|
|
|
|
|
|
await mainDB.updateOrPutAddresses(addressesToStore);
|
2024-01-14 19:03:07 +00:00
|
|
|
|
|
|
|
if (this is PaynymInterface) {
|
|
|
|
final notificationAddress =
|
|
|
|
await (this as PaynymInterface).getMyNotificationAddress();
|
|
|
|
|
|
|
|
await (this as BitcoinWallet)
|
|
|
|
.updateTransactions(overrideAddresses: [notificationAddress]);
|
|
|
|
|
|
|
|
// get own payment code
|
|
|
|
// isSegwit does not matter here at all
|
|
|
|
final myCode =
|
|
|
|
await (this as PaynymInterface).getPaymentCode(isSegwit: false);
|
|
|
|
|
|
|
|
try {
|
|
|
|
final Set<String> codesToCheck = {};
|
|
|
|
final nym = await PaynymIsApi().nym(myCode.toString());
|
|
|
|
if (nym.value != null) {
|
|
|
|
for (final follower in nym.value!.followers) {
|
|
|
|
codesToCheck.add(follower.code);
|
|
|
|
}
|
|
|
|
for (final following in nym.value!.following) {
|
|
|
|
codesToCheck.add(following.code);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// restore paynym transactions
|
|
|
|
await (this as PaynymInterface).restoreAllHistory(
|
|
|
|
maxUnusedAddressGap: 20,
|
|
|
|
maxNumberOfIndexesToCheck: 10000,
|
|
|
|
paymentCodeStrings: codesToCheck,
|
|
|
|
);
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"Failed to check paynym.is followers/following for history during "
|
|
|
|
"bitcoin wallet ($walletId ${info.name}) "
|
|
|
|
"_recoverWalletFromBIP32SeedPhrase: $e/n$s",
|
|
|
|
level: LogLevel.Error,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2023-11-07 18:19:42 +00:00
|
|
|
});
|
|
|
|
|
2024-01-14 19:03:07 +00:00
|
|
|
unawaited(refresh());
|
2023-11-07 18:19:42 +00:00
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"Exception rethrown from electrumx_mixin recover(): $e\n$s",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-06 23:10:07 +00:00
|
|
|
@override
|
2024-01-05 00:37:46 +00:00
|
|
|
Future<bool> updateUTXOs() async {
|
2023-11-29 15:53:30 +00:00
|
|
|
final allAddresses = await fetchAddressesForElectrumXScan();
|
2023-11-06 23:10:07 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
final fetchedUtxoList = <List<Map<String, dynamic>>>[];
|
|
|
|
|
2023-11-14 19:21:21 +00:00
|
|
|
if (serverCanBatch) {
|
2024-02-22 05:16:53 +00:00
|
|
|
final Map<int, List<List<dynamic>>> batchArgs = {};
|
2023-11-14 19:21:21 +00:00
|
|
|
const batchSizeMax = 10;
|
|
|
|
int batchNumber = 0;
|
|
|
|
for (int i = 0; i < allAddresses.length; i++) {
|
2024-02-22 05:16:53 +00:00
|
|
|
batchArgs[batchNumber] ??= [];
|
2023-11-14 19:21:21 +00:00
|
|
|
final scriptHash = cryptoCurrency.addressToScriptHash(
|
|
|
|
address: allAddresses[i].value,
|
|
|
|
);
|
|
|
|
|
2024-02-22 05:16:53 +00:00
|
|
|
batchArgs[batchNumber]!.add([scriptHash]);
|
2023-11-14 19:21:21 +00:00
|
|
|
if (i % batchSizeMax == batchSizeMax - 1) {
|
|
|
|
batchNumber++;
|
|
|
|
}
|
2023-11-06 23:10:07 +00:00
|
|
|
}
|
|
|
|
|
2024-02-22 05:16:53 +00:00
|
|
|
for (int i = 0; i < batchArgs.length; i++) {
|
2023-11-14 20:31:53 +00:00
|
|
|
final response =
|
2024-02-22 05:16:53 +00:00
|
|
|
await electrumXClient.getBatchUTXOs(args: batchArgs[i]!);
|
|
|
|
for (final entry in response) {
|
|
|
|
if (entry.isNotEmpty) {
|
|
|
|
fetchedUtxoList.add(entry);
|
2023-11-14 19:21:21 +00:00
|
|
|
}
|
|
|
|
}
|
2023-11-06 23:10:07 +00:00
|
|
|
}
|
2023-11-14 19:21:21 +00:00
|
|
|
} else {
|
|
|
|
for (int i = 0; i < allAddresses.length; i++) {
|
|
|
|
final scriptHash = cryptoCurrency.addressToScriptHash(
|
|
|
|
address: allAddresses[i].value,
|
|
|
|
);
|
2023-11-06 23:10:07 +00:00
|
|
|
|
2023-11-14 20:31:53 +00:00
|
|
|
final utxos = await electrumXClient.getUTXOs(scripthash: scriptHash);
|
2023-11-14 19:21:21 +00:00
|
|
|
if (utxos.isNotEmpty) {
|
|
|
|
fetchedUtxoList.add(utxos);
|
2023-11-06 23:10:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
final List<UTXO> outputArray = [];
|
|
|
|
|
|
|
|
for (int i = 0; i < fetchedUtxoList.length; i++) {
|
|
|
|
for (int j = 0; j < fetchedUtxoList[i].length; j++) {
|
|
|
|
final utxo = await parseUTXO(
|
|
|
|
jsonUTXO: fetchedUtxoList[i][j],
|
|
|
|
);
|
|
|
|
|
|
|
|
outputArray.add(utxo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-05 00:37:46 +00:00
|
|
|
return await mainDB.updateUTXOs(walletId, outputArray);
|
2023-11-06 23:10:07 +00:00
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"Output fetch unsuccessful: $e\n$s",
|
|
|
|
level: LogLevel.Error,
|
|
|
|
);
|
2024-01-05 00:37:46 +00:00
|
|
|
return false;
|
2023-11-06 23:10:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-08 19:57:38 +00:00
|
|
|
@override
|
|
|
|
Future<TxData> confirmSend({required TxData txData}) async {
|
|
|
|
try {
|
|
|
|
Logging.instance.log("confirmSend txData: $txData", level: LogLevel.Info);
|
|
|
|
|
2023-11-14 20:31:53 +00:00
|
|
|
final txHash = await electrumXClient.broadcastTransaction(
|
2023-11-08 19:57:38 +00:00
|
|
|
rawTx: txData.raw!,
|
|
|
|
);
|
|
|
|
Logging.instance.log("Sent txHash: $txHash", level: LogLevel.Info);
|
|
|
|
|
|
|
|
txData = txData.copyWith(
|
|
|
|
usedUTXOs:
|
|
|
|
txData.usedUTXOs!.map((e) => e.copyWith(used: true)).toList(),
|
|
|
|
|
|
|
|
// TODO revisit setting these both
|
|
|
|
txHash: txHash,
|
|
|
|
txid: txHash,
|
|
|
|
);
|
|
|
|
// mark utxos as used
|
|
|
|
await mainDB.putUTXOs(txData.usedUTXOs!);
|
|
|
|
|
2024-01-05 18:59:01 +00:00
|
|
|
return await updateSentCachedTxData(txData: txData);
|
2023-11-08 19:57:38 +00:00
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log("Exception rethrown from confirmSend(): $e\n$s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<TxData> prepareSend({required TxData txData}) async {
|
|
|
|
try {
|
|
|
|
final feeRateType = txData.feeRateType;
|
|
|
|
final customSatsPerVByte = txData.satsPerVByte;
|
|
|
|
final feeRateAmount = txData.feeRateAmount;
|
|
|
|
final utxos = txData.utxos;
|
|
|
|
|
|
|
|
if (customSatsPerVByte != null) {
|
|
|
|
// check for send all
|
|
|
|
bool isSendAll = false;
|
|
|
|
if (txData.amount == info.cachedBalance.spendable) {
|
|
|
|
isSendAll = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
final bool coinControl = utxos != null;
|
|
|
|
|
|
|
|
final result = await coinSelection(
|
|
|
|
txData: txData.copyWith(feeRateAmount: -1),
|
|
|
|
isSendAll: isSendAll,
|
|
|
|
utxos: utxos?.toList(),
|
|
|
|
coinControl: coinControl,
|
|
|
|
);
|
|
|
|
|
|
|
|
Logging.instance
|
|
|
|
.log("PREPARE SEND RESULT: $result", level: LogLevel.Info);
|
|
|
|
|
2024-01-15 19:45:50 +00:00
|
|
|
if (result.fee!.raw.toInt() < result.vSize!) {
|
2023-11-08 19:57:38 +00:00
|
|
|
throw Exception(
|
|
|
|
"Error in fee calculation: Transaction fee cannot be less than vSize");
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
} else if (feeRateType is FeeRateType || feeRateAmount is int) {
|
|
|
|
late final int rate;
|
|
|
|
if (feeRateType is FeeRateType) {
|
|
|
|
int fee = 0;
|
|
|
|
final feeObject = await fees;
|
|
|
|
switch (feeRateType) {
|
|
|
|
case FeeRateType.fast:
|
|
|
|
fee = feeObject.fast;
|
|
|
|
break;
|
|
|
|
case FeeRateType.average:
|
|
|
|
fee = feeObject.medium;
|
|
|
|
break;
|
|
|
|
case FeeRateType.slow:
|
|
|
|
fee = feeObject.slow;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw ArgumentError("Invalid use of custom fee");
|
|
|
|
}
|
|
|
|
rate = fee;
|
|
|
|
} else {
|
|
|
|
rate = feeRateAmount as int;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for send all
|
|
|
|
bool isSendAll = false;
|
|
|
|
if (txData.amount == info.cachedBalance.spendable) {
|
|
|
|
isSendAll = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
final bool coinControl = utxos != null;
|
|
|
|
|
|
|
|
final result = await coinSelection(
|
|
|
|
txData: txData.copyWith(
|
|
|
|
feeRateAmount: rate,
|
|
|
|
),
|
|
|
|
isSendAll: isSendAll,
|
|
|
|
utxos: utxos?.toList(),
|
|
|
|
coinControl: coinControl,
|
|
|
|
);
|
|
|
|
|
|
|
|
Logging.instance.log("prepare send: $result", level: LogLevel.Info);
|
2023-11-09 21:31:23 +00:00
|
|
|
if (result.fee!.raw.toInt() < result.vSize!) {
|
2023-11-08 19:57:38 +00:00
|
|
|
throw Exception(
|
2024-02-20 18:33:29 +00:00
|
|
|
"Error in fee calculation: Transaction fee (${result.fee!.raw.toInt()}) cannot "
|
|
|
|
"be less than vSize (${result.vSize})");
|
2023-11-08 19:57:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
} else {
|
|
|
|
throw ArgumentError("Invalid fee rate argument provided!");
|
|
|
|
}
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log("Exception rethrown from prepareSend(): $e\n$s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-16 17:58:16 +00:00
|
|
|
@override
|
|
|
|
Future<void> checkSaveInitialReceivingAddress() async {}
|
|
|
|
|
2023-11-14 19:21:21 +00:00
|
|
|
@override
|
|
|
|
Future<void> init() async {
|
|
|
|
try {
|
2023-11-14 20:31:53 +00:00
|
|
|
final features = await electrumXClient
|
2023-11-14 19:21:21 +00:00
|
|
|
.getServerFeatures()
|
2024-01-29 04:29:07 +00:00
|
|
|
.timeout(const Duration(seconds: 5));
|
2023-11-14 19:21:21 +00:00
|
|
|
|
|
|
|
Logging.instance.log("features: $features", level: LogLevel.Info);
|
|
|
|
|
|
|
|
_serverVersion =
|
|
|
|
_parseServerVersion(features["server_version"] as String);
|
|
|
|
|
|
|
|
if (cryptoCurrency.genesisHash != features['genesis_hash']) {
|
|
|
|
throw Exception("genesis hash does not match!");
|
|
|
|
}
|
|
|
|
} catch (e, s) {
|
2024-01-12 19:56:09 +00:00
|
|
|
// do nothing, still allow user into wallet
|
|
|
|
Logging.instance.log(
|
2024-01-29 04:29:07 +00:00
|
|
|
"$runtimeType init() did not complete: $e\n$s",
|
|
|
|
level: LogLevel.Warning,
|
2024-01-12 19:56:09 +00:00
|
|
|
);
|
2023-11-14 19:21:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
await super.init();
|
|
|
|
}
|
|
|
|
|
2023-11-03 19:46:55 +00:00
|
|
|
// ===========================================================================
|
|
|
|
// ========== Interface functions ============================================
|
|
|
|
|
2023-11-08 19:57:38 +00:00
|
|
|
int estimateTxFee({required int vSize, required int feeRatePerKB});
|
2023-11-03 19:46:55 +00:00
|
|
|
Amount roughFeeEstimate(int inputCount, int outputCount, int feeRatePerKB);
|
|
|
|
|
2023-11-29 15:53:30 +00:00
|
|
|
Future<List<Address>> fetchAddressesForElectrumXScan();
|
2023-11-06 23:10:07 +00:00
|
|
|
|
2023-11-07 16:25:04 +00:00
|
|
|
/// Certain coins need to check if the utxo should be marked
|
2023-11-06 23:10:07 +00:00
|
|
|
/// as blocked as well as give a reason.
|
2024-01-05 00:37:46 +00:00
|
|
|
Future<({String? blockedReason, bool blocked, String? utxoLabel})>
|
|
|
|
checkBlockUTXO(
|
2023-11-06 23:10:07 +00:00
|
|
|
Map<String, dynamic> jsonUTXO,
|
|
|
|
String? scriptPubKeyHex,
|
|
|
|
Map<String, dynamic> jsonTX,
|
2024-01-05 00:37:46 +00:00
|
|
|
String? utxoOwnerAddress,
|
2023-11-06 23:10:07 +00:00
|
|
|
);
|
|
|
|
|
2023-11-03 19:46:55 +00:00
|
|
|
// ===========================================================================
|
|
|
|
// ========== private helpers ================================================
|
|
|
|
|
|
|
|
List<UTXO> _spendableUTXOs(List<UTXO> utxos) {
|
|
|
|
return utxos
|
|
|
|
.where(
|
|
|
|
(e) =>
|
|
|
|
!e.isBlocked &&
|
|
|
|
e.isConfirmed(
|
|
|
|
info.cachedChainHeight,
|
|
|
|
cryptoCurrency.minConfirms,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.toList();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<Amount> _sweepAllEstimate(int feeRate, List<UTXO> usableUTXOs) async {
|
|
|
|
final available = usableUTXOs
|
|
|
|
.map((e) => BigInt.from(e.value))
|
|
|
|
.fold(BigInt.zero, (p, e) => p + e);
|
|
|
|
final inputCount = usableUTXOs.length;
|
|
|
|
|
|
|
|
// transaction will only have 1 output minus the fee
|
|
|
|
final estimatedFee = roughFeeEstimate(inputCount, 1, feeRate);
|
|
|
|
|
|
|
|
return Amount(
|
|
|
|
rawValue: available,
|
|
|
|
fractionDigits: info.coin.decimals,
|
|
|
|
) -
|
|
|
|
estimatedFee;
|
|
|
|
}
|
|
|
|
|
2023-11-14 19:21:21 +00:00
|
|
|
// stupid + fragile
|
2024-01-14 17:26:52 +00:00
|
|
|
List<int>? _parseServerVersion(String version) {
|
|
|
|
List<int>? result;
|
2023-11-14 19:21:21 +00:00
|
|
|
try {
|
|
|
|
final list = version.split(" ");
|
|
|
|
if (list.isNotEmpty) {
|
|
|
|
final numberStrings = list.last.split(".");
|
|
|
|
|
2024-01-14 17:26:52 +00:00
|
|
|
result = numberStrings.map((e) => int.parse(e)).toList();
|
2023-11-14 19:21:21 +00:00
|
|
|
}
|
|
|
|
} catch (_) {}
|
|
|
|
|
|
|
|
Logging.instance.log(
|
|
|
|
"${info.name} _parseServerVersion($version) => $result",
|
|
|
|
level: LogLevel.Info,
|
|
|
|
);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2024-01-12 20:49:05 +00:00
|
|
|
// lolcashaddrs
|
|
|
|
String normalizeAddress(String address) {
|
|
|
|
return address;
|
|
|
|
}
|
|
|
|
|
2023-11-03 19:46:55 +00:00
|
|
|
// ===========================================================================
|
2023-09-18 21:28:31 +00:00
|
|
|
}
|