btcutil-js - v0.2.0
    Preparing search index...

    Interface TxInputDecoded

    TxInput as returned by tx.decode: byte fields are concrete Uint8Array.

    interface TxInputDecoded {
        scriptSig: Uint8Array;
        sequence: number;
        txid: string;
        vout: number;
        witness: Uint8Array<ArrayBufferLike>[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    scriptSig: Uint8Array

    scriptSig — required slot, may be empty. Accepts hex string or bytes.

    sequence: number
    txid: string

    Previous outpoint txid (display form, big-endian hex).

    vout: number
    witness: Uint8Array<ArrayBufferLike>[]