2021-12-24 12:52:08 +00:00
|
|
|
import 'package:bitcoin_flutter/bitcoin_flutter.dart' as bitcoin;
|
|
|
|
import 'package:bitcoin_flutter/src/payments/index.dart' show PaymentData;
|
2022-01-27 09:20:51 +00:00
|
|
|
import 'package:cw_bitcoin/address_from_output.dart';
|
2021-12-24 12:52:08 +00:00
|
|
|
import 'package:cw_bitcoin/bitcoin_address_record.dart';
|
|
|
|
import 'package:cw_bitcoin/bitcoin_amount_format.dart';
|
|
|
|
import 'package:cw_core/transaction_direction.dart';
|
|
|
|
import 'package:cw_core/transaction_info.dart';
|
|
|
|
import 'package:cw_core/format_amount.dart';
|
|
|
|
import 'package:cw_core/wallet_type.dart';
|
|
|
|
|
2022-01-17 15:33:51 +00:00
|
|
|
class ElectrumTransactionBundle {
|
2022-10-12 17:09:57 +00:00
|
|
|
ElectrumTransactionBundle(this.originalTransaction,
|
|
|
|
{required this.ins,
|
|
|
|
required this.confirmations,
|
|
|
|
this.time});
|
2022-01-17 15:33:51 +00:00
|
|
|
final bitcoin.Transaction originalTransaction;
|
|
|
|
final List<bitcoin.Transaction> ins;
|
2022-10-12 17:09:57 +00:00
|
|
|
final int? time;
|
2022-01-17 15:33:51 +00:00
|
|
|
final int confirmations;
|
|
|
|
}
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
class ElectrumTransactionInfo extends TransactionInfo {
|
|
|
|
ElectrumTransactionInfo(this.type,
|
2022-10-12 17:09:57 +00:00
|
|
|
{required String id,
|
|
|
|
required int height,
|
|
|
|
required int amount,
|
|
|
|
int? fee,
|
|
|
|
required TransactionDirection direction,
|
|
|
|
required bool isPending,
|
|
|
|
required DateTime date,
|
|
|
|
required int confirmations}) {
|
2021-12-24 12:52:08 +00:00
|
|
|
this.id = id;
|
|
|
|
this.height = height;
|
|
|
|
this.amount = amount;
|
|
|
|
this.fee = fee;
|
|
|
|
this.direction = direction;
|
|
|
|
this.date = date;
|
|
|
|
this.isPending = isPending;
|
|
|
|
this.confirmations = confirmations;
|
|
|
|
}
|
|
|
|
|
|
|
|
factory ElectrumTransactionInfo.fromElectrumVerbose(
|
|
|
|
Map<String, Object> obj, WalletType type,
|
2022-10-12 17:09:57 +00:00
|
|
|
{required List<BitcoinAddressRecord> addresses, required int height}) {
|
2021-12-24 12:52:08 +00:00
|
|
|
final addressesSet = addresses.map((addr) => addr.address).toSet();
|
|
|
|
final id = obj['txid'] as String;
|
2022-10-12 17:09:57 +00:00
|
|
|
final vins = obj['vin'] as List<Object>? ?? [];
|
|
|
|
final vout = (obj['vout'] as List<Object>? ?? []);
|
2021-12-24 12:52:08 +00:00
|
|
|
final date = obj['time'] is int
|
|
|
|
? DateTime.fromMillisecondsSinceEpoch((obj['time'] as int) * 1000)
|
|
|
|
: DateTime.now();
|
2022-10-12 17:09:57 +00:00
|
|
|
final confirmations = obj['confirmations'] as int? ?? 0;
|
2021-12-24 12:52:08 +00:00
|
|
|
var direction = TransactionDirection.incoming;
|
|
|
|
var inputsAmount = 0;
|
|
|
|
var amount = 0;
|
|
|
|
var totalOutAmount = 0;
|
|
|
|
|
|
|
|
for (dynamic vin in vins) {
|
|
|
|
final vout = vin['vout'] as int;
|
|
|
|
final out = vin['tx']['vout'][vout] as Map;
|
|
|
|
final outAddresses =
|
2022-10-12 17:09:57 +00:00
|
|
|
(out['scriptPubKey']['addresses'] as List<Object>?)?.toSet();
|
2021-12-24 12:52:08 +00:00
|
|
|
inputsAmount +=
|
2022-10-12 17:09:57 +00:00
|
|
|
stringDoubleToBitcoinAmount((out['value'] as double? ?? 0).toString());
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
if (outAddresses?.intersection(addressesSet).isNotEmpty ?? false) {
|
2021-12-24 12:52:08 +00:00
|
|
|
direction = TransactionDirection.outgoing;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (dynamic out in vout) {
|
|
|
|
final outAddresses =
|
2022-10-12 17:09:57 +00:00
|
|
|
out['scriptPubKey']['addresses'] as List<Object>? ?? [];
|
2021-12-24 12:52:08 +00:00
|
|
|
final ntrs = outAddresses.toSet().intersection(addressesSet);
|
|
|
|
final value = stringDoubleToBitcoinAmount(
|
2022-10-12 17:09:57 +00:00
|
|
|
(out['value'] as double? ?? 0.0).toString());
|
2021-12-24 12:52:08 +00:00
|
|
|
totalOutAmount += value;
|
|
|
|
|
|
|
|
if ((direction == TransactionDirection.incoming && ntrs.isNotEmpty) ||
|
|
|
|
(direction == TransactionDirection.outgoing && ntrs.isEmpty)) {
|
|
|
|
amount += value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
final fee = inputsAmount - totalOutAmount;
|
|
|
|
|
|
|
|
return ElectrumTransactionInfo(type,
|
|
|
|
id: id,
|
|
|
|
height: height,
|
|
|
|
isPending: false,
|
|
|
|
fee: fee,
|
|
|
|
direction: direction,
|
|
|
|
amount: amount,
|
|
|
|
date: date,
|
|
|
|
confirmations: confirmations);
|
|
|
|
}
|
|
|
|
|
2022-01-17 15:33:51 +00:00
|
|
|
factory ElectrumTransactionInfo.fromElectrumBundle(
|
2022-01-27 09:20:51 +00:00
|
|
|
ElectrumTransactionBundle bundle,
|
|
|
|
WalletType type,
|
|
|
|
bitcoin.NetworkType networkType,
|
2022-10-12 17:09:57 +00:00
|
|
|
{required Set<String> addresses,
|
|
|
|
required int height}) {
|
2022-01-24 12:04:23 +00:00
|
|
|
final date = bundle.time != null
|
2022-10-12 17:09:57 +00:00
|
|
|
? DateTime.fromMillisecondsSinceEpoch(bundle.time! * 1000)
|
2022-01-24 12:04:23 +00:00
|
|
|
: DateTime.now();
|
2022-01-17 15:33:51 +00:00
|
|
|
var direction = TransactionDirection.incoming;
|
|
|
|
var amount = 0;
|
|
|
|
var inputAmount = 0;
|
|
|
|
var totalOutAmount = 0;
|
|
|
|
|
|
|
|
for (var i = 0; i < bundle.originalTransaction.ins.length; i++) {
|
|
|
|
final input = bundle.originalTransaction.ins[i];
|
|
|
|
final inputTransaction = bundle.ins[i];
|
|
|
|
final vout = input.index;
|
2022-10-12 17:09:57 +00:00
|
|
|
final outTransaction = inputTransaction.outs[vout!];
|
|
|
|
final address = addressFromOutput(outTransaction.script!, networkType);
|
|
|
|
inputAmount += outTransaction.value!;
|
2022-01-17 15:33:51 +00:00
|
|
|
if (addresses.contains(address)) {
|
|
|
|
direction = TransactionDirection.outgoing;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (final out in bundle.originalTransaction.outs) {
|
2022-10-12 17:09:57 +00:00
|
|
|
totalOutAmount += out.value!;
|
|
|
|
final address = addressFromOutput(out.script!, networkType);
|
2022-01-17 15:33:51 +00:00
|
|
|
final addressExists = addresses.contains(address);
|
|
|
|
if ((direction == TransactionDirection.incoming && addressExists) ||
|
|
|
|
(direction == TransactionDirection.outgoing && !addressExists)) {
|
2022-10-12 17:09:57 +00:00
|
|
|
amount += out.value!;
|
2022-01-17 15:33:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
final fee = inputAmount - totalOutAmount;
|
|
|
|
return ElectrumTransactionInfo(type,
|
|
|
|
id: bundle.originalTransaction.getId(),
|
|
|
|
height: height,
|
2023-04-20 20:20:37 +00:00
|
|
|
isPending: bundle.confirmations == 0,
|
2022-01-17 15:33:51 +00:00
|
|
|
fee: fee,
|
|
|
|
direction: direction,
|
|
|
|
amount: amount,
|
|
|
|
date: date,
|
|
|
|
confirmations: bundle.confirmations);
|
|
|
|
}
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
factory ElectrumTransactionInfo.fromHexAndHeader(WalletType type, String hex,
|
2022-10-12 17:09:57 +00:00
|
|
|
{List<String>? addresses, required int height, int? timestamp, required int confirmations}) {
|
2021-12-24 12:52:08 +00:00
|
|
|
final tx = bitcoin.Transaction.fromHex(hex);
|
|
|
|
var exist = false;
|
|
|
|
var amount = 0;
|
|
|
|
|
|
|
|
if (addresses != null) {
|
|
|
|
tx.outs.forEach((out) {
|
|
|
|
try {
|
|
|
|
final p2pkh = bitcoin.P2PKH(
|
|
|
|
data: PaymentData(output: out.script), network: bitcoin.bitcoin);
|
|
|
|
exist = addresses.contains(p2pkh.data.address);
|
|
|
|
|
|
|
|
if (exist) {
|
2022-10-12 17:09:57 +00:00
|
|
|
amount += out.value!;
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
} catch (_) {}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
final date = timestamp != null
|
|
|
|
? DateTime.fromMillisecondsSinceEpoch(timestamp * 1000)
|
|
|
|
: DateTime.now();
|
|
|
|
|
|
|
|
return ElectrumTransactionInfo(type,
|
|
|
|
id: tx.getId(),
|
|
|
|
height: height,
|
|
|
|
isPending: false,
|
|
|
|
fee: null,
|
|
|
|
direction: TransactionDirection.incoming,
|
|
|
|
amount: amount,
|
|
|
|
date: date,
|
|
|
|
confirmations: confirmations);
|
|
|
|
}
|
|
|
|
|
|
|
|
factory ElectrumTransactionInfo.fromJson(
|
|
|
|
Map<String, dynamic> data, WalletType type) {
|
|
|
|
return ElectrumTransactionInfo(type,
|
|
|
|
id: data['id'] as String,
|
|
|
|
height: data['height'] as int,
|
|
|
|
amount: data['amount'] as int,
|
|
|
|
fee: data['fee'] as int,
|
|
|
|
direction: parseTransactionDirectionFromInt(data['direction'] as int),
|
|
|
|
date: DateTime.fromMillisecondsSinceEpoch(data['date'] as int),
|
|
|
|
isPending: data['isPending'] as bool,
|
|
|
|
confirmations: data['confirmations'] as int);
|
|
|
|
}
|
|
|
|
|
|
|
|
final WalletType type;
|
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
String? _fiatAmount;
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
String amountFormatted() =>
|
|
|
|
'${formatAmount(bitcoinAmountToString(amount: amount))} ${walletTypeToCryptoCurrency(type).title}';
|
|
|
|
|
|
|
|
@override
|
2022-10-12 17:09:57 +00:00
|
|
|
String? feeFormatted() => fee != null
|
|
|
|
? '${formatAmount(bitcoinAmountToString(amount: fee!))} ${walletTypeToCryptoCurrency(type).title}'
|
2021-12-24 12:52:08 +00:00
|
|
|
: '';
|
|
|
|
|
|
|
|
@override
|
|
|
|
String fiatAmount() => _fiatAmount ?? '';
|
|
|
|
|
|
|
|
@override
|
|
|
|
void changeFiatAmount(String amount) => _fiatAmount = formatAmount(amount);
|
|
|
|
|
|
|
|
ElectrumTransactionInfo updated(ElectrumTransactionInfo info) {
|
|
|
|
return ElectrumTransactionInfo(info.type,
|
|
|
|
id: id,
|
|
|
|
height: info.height,
|
|
|
|
amount: info.amount,
|
|
|
|
fee: info.fee,
|
2023-08-04 17:01:49 +00:00
|
|
|
direction: direction,
|
|
|
|
date: date,
|
|
|
|
isPending: isPending,
|
2021-12-24 12:52:08 +00:00
|
|
|
confirmations: info.confirmations);
|
|
|
|
}
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
final m = <String, dynamic>{};
|
|
|
|
m['id'] = id;
|
|
|
|
m['height'] = height;
|
|
|
|
m['amount'] = amount;
|
2023-01-03 21:59:08 +00:00
|
|
|
m['direction'] = direction.index;
|
2021-12-24 12:52:08 +00:00
|
|
|
m['date'] = date.millisecondsSinceEpoch;
|
|
|
|
m['isPending'] = isPending;
|
|
|
|
m['confirmations'] = confirmations;
|
|
|
|
m['fee'] = fee;
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
}
|