// Rust Bitcoin Library // Written by // The Rust Bitcoin developers // // To the extent possible under law, the author(s) have dedicated all // copyright and related and neighboring rights to this software to // the public domain worldwide. This software is distributed without // any warranty. // // You should have received a copy of the CC0 Public Domain Dedication // along with this software. // If not, see . // use prelude::*; use io; use secp256k1; use blockdata::script::Script; use blockdata::witness::Witness; use blockdata::transaction::{Transaction, TxOut, NonStandardSigHashType}; use consensus::encode; use hashes::{self, hash160, ripemd160, sha256, sha256d}; use secp256k1::XOnlyPublicKey; use util::bip32::KeySource; use util::psbt; use util::psbt::map::Map; use util::psbt::raw; use util::psbt::serialize::Deserialize; use util::psbt::{Error, error}; use util::taproot::{ControlBlock, LeafVersion, TapLeafHash, TapBranchHash}; use util::sighash; use {EcdsaSigHashType, SchnorrSigHashType, EcdsaSig, SchnorrSig}; /// Type: Non-Witness UTXO PSBT_IN_NON_WITNESS_UTXO = 0x00 const PSBT_IN_NON_WITNESS_UTXO: u8 = 0x00; /// Type: Witness UTXO PSBT_IN_WITNESS_UTXO = 0x01 const PSBT_IN_WITNESS_UTXO: u8 = 0x01; /// Type: Partial Signature PSBT_IN_PARTIAL_SIG = 0x02 const PSBT_IN_PARTIAL_SIG: u8 = 0x02; /// Type: Sighash Type PSBT_IN_SIGHASH_TYPE = 0x03 const PSBT_IN_SIGHASH_TYPE: u8 = 0x03; /// Type: Redeem Script PSBT_IN_REDEEM_SCRIPT = 0x04 const PSBT_IN_REDEEM_SCRIPT: u8 = 0x04; /// Type: Witness Script PSBT_IN_WITNESS_SCRIPT = 0x05 const PSBT_IN_WITNESS_SCRIPT: u8 = 0x05; /// Type: BIP 32 Derivation Path PSBT_IN_BIP32_DERIVATION = 0x06 const PSBT_IN_BIP32_DERIVATION: u8 = 0x06; /// Type: Finalized scriptSig PSBT_IN_FINAL_SCRIPTSIG = 0x07 const PSBT_IN_FINAL_SCRIPTSIG: u8 = 0x07; /// Type: Finalized scriptWitness PSBT_IN_FINAL_SCRIPTWITNESS = 0x08 const PSBT_IN_FINAL_SCRIPTWITNESS: u8 = 0x08; /// Type: RIPEMD160 preimage PSBT_IN_RIPEMD160 = 0x0a const PSBT_IN_RIPEMD160: u8 = 0x0a; /// Type: SHA256 preimage PSBT_IN_SHA256 = 0x0b const PSBT_IN_SHA256: u8 = 0x0b; /// Type: HASH160 preimage PSBT_IN_HASH160 = 0x0c const PSBT_IN_HASH160: u8 = 0x0c; /// Type: HASH256 preimage PSBT_IN_HASH256 = 0x0d const PSBT_IN_HASH256: u8 = 0x0d; /// Type: Schnorr Signature in Key Spend PSBT_IN_TAP_KEY_SIG = 0x13 const PSBT_IN_TAP_KEY_SIG: u8 = 0x13; /// Type: Schnorr Signature in Script Spend PSBT_IN_TAP_SCRIPT_SIG = 0x14 const PSBT_IN_TAP_SCRIPT_SIG: u8 = 0x14; /// Type: Taproot Leaf Script PSBT_IN_TAP_LEAF_SCRIPT = 0x14 const PSBT_IN_TAP_LEAF_SCRIPT: u8 = 0x15; /// Type: Taproot Key BIP 32 Derivation Path PSBT_IN_TAP_BIP32_DERIVATION = 0x16 const PSBT_IN_TAP_BIP32_DERIVATION : u8 = 0x16; /// Type: Taproot Internal Key PSBT_IN_TAP_INTERNAL_KEY = 0x17 const PSBT_IN_TAP_INTERNAL_KEY : u8 = 0x17; /// Type: Taproot Merkle Root PSBT_IN_TAP_MERKLE_ROOT = 0x18 const PSBT_IN_TAP_MERKLE_ROOT : u8 = 0x18; /// Type: Proprietary Use Type PSBT_IN_PROPRIETARY = 0xFC const PSBT_IN_PROPRIETARY: u8 = 0xFC; /// A key-value map for an input of the corresponding index in the unsigned /// transaction. #[derive(Clone, Default, Debug, PartialEq)] #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] pub struct Input { /// The non-witness transaction this input spends from. Should only be /// [std::option::Option::Some] for inputs which spend non-segwit outputs or /// if it is unknown whether an input spends a segwit output. pub non_witness_utxo: Option, /// The transaction output this input spends from. Should only be /// [std::option::Option::Some] for inputs which spend segwit outputs, /// including P2SH embedded ones. pub witness_utxo: Option, /// A map from public keys to their corresponding signature as would be /// pushed to the stack from a scriptSig or witness for a non-taproot inputs. pub partial_sigs: BTreeMap, /// The sighash type to be used for this input. Signatures for this input /// must use the sighash type. pub sighash_type: Option, /// The redeem script for this input. pub redeem_script: Option