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

    Interface Utxo

    A spendable coin (VTXO) — outpoint + value.

    interface Utxo {
        sourceTx?: Uint8Array<ArrayBufferLike>;
        txid: string;
        value: number;
        vout: number;
    }
    Index

    Properties

    sourceTx?: Uint8Array<ArrayBufferLike>

    The ark transaction that created this VTXO. Required only by continuation /recursive covenants that inspect the input's provenance; when set, the SDK attaches it as the PrevArkTx field.

    txid: string
    value: number
    vout: number