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

    Interface Status

    Onchain output status

    interface Status {
        block_hash?: string;
        block_height?: number;
        block_time?: number;
        confirmed: boolean;
        isLeaf?: boolean;
    }
    Index

    Properties

    block_hash?: string

    Block hash where the output was confirmed, when known.

    block_height?: number

    Block height where the output was confirmed, when known.

    block_time?: number

    Block time where the output was confirmed, when known.

    confirmed: boolean

    Whether the output is confirmed

    isLeaf?: boolean

    Whether the output exists as a finalized batch leaf. In the current mapping this is true for settled and swept virtual outputs, and false for preconfirmed virtual outputs.

    isLeaf is currently derived from !isPreconfirmed in the indexer mapping. It is used primarily by transaction history classification to distinguish finalized batch outputs from preconfirmed offchain outputs.