mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 09:17:35 +00:00
68926c0a33
Some checks are pending
Cache Dependencies / test (push) Waiting to run
* Add Litecoin Hardware Wallet Creation * Add Litecoin Hardware Wallet Creation * Fix Bitcoin not sending on Ledger * Fixes to sending LTC using Ledger * CW-679 Fix merge conflicts * CW-679 Fix merge conflicts * CW-679 Minor fixes * CW-679 Add derivation Path of change address * ledger flutter plus refactoring * ledger flutter plus refactoring * ledger flutter plus refactoring * Ups :| * Ups :| I forgot USB * Handle BT Off * Fix Issue with A14 and USB * Small Ledger Quality of life improvements * Small Ledger Quality of life improvements * Small Ledger Quality of life improvements * Small Ledger Quality of life improvements * Small Ledger Quality of life improvements * Small Ledger Quality of life improvements * Small Ledger Quality of life improvements * Pls work * Pls work * Pls work * Pls work * Fix overpopulation * Fix ble device detection and support for Stax and Flex * clean up pubspec * clean up * MWeb merge fix * MWeb merge fix * Fix Merge conflicts * Fix Requested changes
92 lines
3.3 KiB
Dart
92 lines
3.3 KiB
Dart
import 'dart:typed_data';
|
|
|
|
import 'package:bitcoin_base/bitcoin_base.dart';
|
|
import 'package:convert/convert.dart';
|
|
import 'package:ledger_bitcoin/psbt.dart';
|
|
|
|
class PSBTTransactionBuild {
|
|
final PsbtV2 psbt = PsbtV2();
|
|
|
|
PSBTTransactionBuild(
|
|
{required List<PSBTReadyUtxoWithAddress> inputs, required List<BitcoinBaseOutput> outputs, bool enableRBF = true}) {
|
|
psbt.setGlobalTxVersion(2);
|
|
psbt.setGlobalInputCount(inputs.length);
|
|
psbt.setGlobalOutputCount(outputs.length);
|
|
|
|
for (var i = 0; i < inputs.length; i++) {
|
|
final input = inputs[i];
|
|
|
|
psbt.setInputPreviousTxId(i, Uint8List.fromList(hex.decode(input.utxo.txHash).reversed.toList()));
|
|
psbt.setInputOutputIndex(i, input.utxo.vout);
|
|
psbt.setInputSequence(i, enableRBF ? 0x1 : 0xffffffff);
|
|
|
|
|
|
if (input.utxo.isSegwit()) {
|
|
setInputSegwit(i, input);
|
|
} else if (input.utxo.isP2shSegwit()) {
|
|
setInputP2shSegwit(i, input);
|
|
} else if (input.utxo.isP2tr()) {
|
|
// ToDo: (Konsti) Handle Taproot Inputs
|
|
} else {
|
|
setInputP2pkh(i, input);
|
|
}
|
|
}
|
|
|
|
for (var i = 0; i < outputs.length; i++) {
|
|
final output = outputs[i];
|
|
|
|
if (output is BitcoinOutput) {
|
|
psbt.setOutputScript(i, Uint8List.fromList(output.address.toScriptPubKey().toBytes()));
|
|
psbt.setOutputAmount(i, output.value.toInt());
|
|
}
|
|
}
|
|
}
|
|
|
|
void setInputP2pkh(int i, PSBTReadyUtxoWithAddress input) {
|
|
psbt.setInputNonWitnessUtxo(i, Uint8List.fromList(hex.decode(input.rawTx)));
|
|
psbt.setInputBip32Derivation(
|
|
i,
|
|
Uint8List.fromList(hex.decode(input.ownerPublicKey)),
|
|
input.ownerMasterFingerprint,
|
|
BIPPath.fromString(input.ownerDerivationPath).toPathArray());
|
|
}
|
|
|
|
void setInputSegwit(int i, PSBTReadyUtxoWithAddress input) {
|
|
psbt.setInputNonWitnessUtxo(i, Uint8List.fromList(hex.decode(input.rawTx)));
|
|
psbt.setInputBip32Derivation(
|
|
i,
|
|
Uint8List.fromList(hex.decode(input.ownerPublicKey)),
|
|
input.ownerMasterFingerprint,
|
|
BIPPath.fromString(input.ownerDerivationPath).toPathArray());
|
|
|
|
psbt.setInputWitnessUtxo(i, Uint8List.fromList(bigIntToUint64LE(input.utxo.value)),
|
|
Uint8List.fromList(input.ownerDetails.address.toScriptPubKey().toBytes()));
|
|
}
|
|
|
|
void setInputP2shSegwit(int i, PSBTReadyUtxoWithAddress input) {
|
|
psbt.setInputNonWitnessUtxo(i, Uint8List.fromList(hex.decode(input.rawTx)));
|
|
psbt.setInputBip32Derivation(i, Uint8List.fromList(hex.decode(input.ownerPublicKey)),
|
|
input.ownerMasterFingerprint, BIPPath.fromString(input.ownerDerivationPath).toPathArray());
|
|
|
|
psbt.setInputRedeemScript(
|
|
i, Uint8List.fromList(input.ownerDetails.address.toScriptPubKey().toBytes()));
|
|
psbt.setInputWitnessUtxo(i, Uint8List.fromList(bigIntToUint64LE(input.utxo.value)),
|
|
Uint8List.fromList(input.ownerDetails.address.toScriptPubKey().toBytes()));
|
|
}
|
|
}
|
|
|
|
class PSBTReadyUtxoWithAddress extends UtxoWithAddress {
|
|
final String rawTx;
|
|
final String ownerDerivationPath;
|
|
final Uint8List ownerMasterFingerprint;
|
|
final String ownerPublicKey;
|
|
|
|
PSBTReadyUtxoWithAddress({
|
|
required super.utxo,
|
|
required this.rawTx,
|
|
required super.ownerDetails,
|
|
required this.ownerDerivationPath,
|
|
required this.ownerMasterFingerprint,
|
|
required this.ownerPublicKey,
|
|
});
|
|
}
|