ordspv
    Preparing search index...

    Interface ParsedTx

    interface ParsedTx {
        hasWitness: boolean;
        inputs: TxInput[];
        locktime: number;
        outputs: TxOutput[];
        raw: Uint8Array;
        size: number;
        strippedRaw: Uint8Array;
        txid: string;
        txidLE: Uint8Array;
        version: number;
        wtxid: string;
        wtxidLE: Uint8Array;
    }
    Index
    hasWitness: boolean

    true if the serialization carried the segwit marker+flag

    inputs: TxInput[]
    locktime: number
    outputs: TxOutput[]
    raw: Uint8Array

    the exact bytes this tx was parsed from

    size: number

    total serialized size in bytes

    strippedRaw: Uint8Array

    consensus serialization without witness data (recomputed)

    txid: string

    display-order hex

    txidLE: Uint8Array

    internal byte order

    version: number
    wtxid: string

    display-order hex

    wtxidLE: Uint8Array

    internal byte order; equals txidLE for non-segwit txs