Interface ITransactionInput

Interface defines the structure of a transaction input.

interface ITransactionInput {
    previousOutpoint: ITransactionOutpoint;
    sequence: bigint;
    sigOpCount: number;
    signatureScript?: string;
    utxo?: UtxoEntryReference;
    verboseData?: ITransactionInputVerboseData;
}

Properties

previousOutpoint: ITransactionOutpoint
sequence: bigint
sigOpCount: number
signatureScript?: string

Optional verbose data provided by RPC

Generated using TypeDoc