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

    Interface TxNotification

    Transaction notification emitted by the Arkade server stream.

    interface TxNotification {
        checkpointTxs?: Record<string, { tx: string; txid: string }>;
        spendableVtxos: Vtxo[];
        spentVtxos: Vtxo[];
        tx: string;
        txid: string;
    }
    Index

    Properties

    checkpointTxs?: Record<string, { tx: string; txid: string }>

    Optional checkpoint transactions associated with the notification.

    spendableVtxos: Vtxo[]

    Virtual outputs made spendable by the transaction.

    spentVtxos: Vtxo[]

    Virtual outputs spent by the transaction.

    tx: string

    Raw transaction payload.

    txid: string

    Transaction id.