Fixes for litecoin transactions. Change fixed rate mode for exchange.

This commit is contained in:
M 2022-01-27 11:20:51 +02:00
parent 18a1f60433
commit 989ef442ac
5 changed files with 45 additions and 77 deletions

View file

@ -0,0 +1,23 @@
import 'dart:typed_data';
import 'package:bitcoin_flutter/bitcoin_flutter.dart' as bitcoin;
import 'package:bitcoin_flutter/src/payments/index.dart' show PaymentData;
String addressFromOutput(Uint8List script, bitcoin.NetworkType networkType) {
try {
return bitcoin.P2PKH(
data: PaymentData(output: script),
network: networkType)
.data
.address;
} catch (_) {}
try {
return bitcoin.P2WPKH(
data: PaymentData(output: script),
network: networkType)
.data
.address;
} catch(_) {}
return null;
}