Finalized Input Without Utxo
data class FinalizedInputWithoutUtxo( val scriptWitness: ScriptWitness?, val scriptSig: List<ScriptElt>?, val ripemd160: Set<ByteVector>, val sha256: Set<ByteVector>, val hash160: Set<ByteVector>, val hash256: Set<ByteVector>, val unknown: List<DataEntry>) : Input
Content copied to clipboard
A fully signed input without details about the utxo. Input finalizers should keep the utxo to allow transaction extractors to verify the final network serialized transaction, but it's not mandatory, so we may not have it available when parsing psbt inputs.
Constructors
Link copied to clipboard
fun FinalizedInputWithoutUtxo( scriptWitness: ScriptWitness?, scriptSig: List<ScriptElt>?, ripemd160: Set<ByteVector>, sha256: Set<ByteVector>, hash160: Set<ByteVector>, hash256: Set<ByteVector>, unknown: List<DataEntry>)
Content copied to clipboard