@arkade-os/sdk Documentation - v0.4.54
    Preparing search index...

    Type Alias ExplorerTransaction

    type ExplorerTransaction = {
        status: { block_time: number; confirmed: boolean };
        txid: string;
        vin?: { txid: string; vout: number }[];
        vout: { scriptpubkey_address: string; value: string }[];
    }
    Index

    Properties

    Properties

    status: { block_time: number; confirmed: boolean }
    txid: string
    vin?: { txid: string; vout: number }[]

    Inputs as returned by Esplora's /address/:addr/txs, each carrying the outpoint it spends (txid:vout). Optional: not every provider populates it (the electrum provider omits inputs), so consumers that correlate spenders must tolerate its absence. Used to recover a boarding output's spending (commitment) tx when /outspends omits the spender txid.

    vout: { scriptpubkey_address: string; value: string }[]