@xo-cash/state
    Preparing search index...

    Type Alias UnspentOutputData

    Data structure for storing unspent output information in the storage.

    type UnspentOutputData = {
        minedAtHeight?: number;
        outpointIndex: number;
        outpointTransactionHash: string;
        outputIdentifier: string;
        privacy: boolean;
        reservedBy?: string;
        scriptHash: string;
        selectable: boolean;
        status: UnspentOutputStatus;
        templateIdentifier: string;
        valueSatoshis: number;
    }
    Index

    Properties

    minedAtHeight?: number

    The block height of the block that included the transaction containing this output. Omitted when that height is unknown. The transaction may be unconfirmed, or it may already be mined in a block which is not discovered yet.

    outpointIndex: number

    The output index in the transaction

    outpointTransactionHash: string

    The transaction hash containing this output

    outputIdentifier: string

    The output identifier from the template

    privacy: boolean

    Privacy flag

    reservedBy?: string

    The invitation identifier that holds the reservation on this output. Omitted means the output is not reserved.

    scriptHash: string

    The script hash for this output

    selectable: boolean

    Whether this output is selectable for spending

    The status of the unspent output

    templateIdentifier: string

    The template identifier

    valueSatoshis: number

    The value in satoshis