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

    Interface VirtualTx

    A single virtual transaction in the VTXO tree.

    interface VirtualTx {
        expiresAt: number | null;
        psbt: string | null;
        txid: string;
        type: ChainedTxType;
    }
    Index

    Properties

    Properties

    expiresAt: number | null

    Operator pre-signature expiry, ms epoch; null if not applicable.

    psbt: string | null

    Base64-encoded PSBT body; null when only metadata has been cached.

    txid: string

    Transaction id (hex). Primary key.

    Tx type as reported by arkd's chain indexer.