@did-btc1/method
    Preparing search index...

    Interface TxInExt

    interface TxInExt {
        coinbase?: string;
        prevout: {
            generated: boolean;
            height: number;
            scriptPubKey?: {
                address?: string;
                asm: string;
                desc: string;
                hex: string;
                type: string;
            };
            value: number;
        };
        scriptSig?: { asm: string; hex: string };
        sequence: number;
        txid?: string;
        txinwitness?: string[];
        vout?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    coinbase?: string
    prevout: {
        generated: boolean;
        height: number;
        scriptPubKey?: {
            address?: string;
            asm: string;
            desc: string;
            hex: string;
            type: string;
        };
        value: number;
    }
    scriptSig?: { asm: string; hex: string }
    sequence: number
    txid?: string
    txinwitness?: string[]
    vout?: number