@bitcoinerlab/discovery - v1.5.3
    Preparing search index...

    Type Alias OutputCriteria

    type OutputCriteria = {
        descriptor?: Descriptor;
        index?: number;
        descriptors?: Descriptor[];
        txStatus?: TxStatus;
    }
    Index

    Properties

    descriptor?: Descriptor

    Descriptor expression representing one or potentially multiple outputs if ranged. Use either descriptor or descriptors, but not both simultaneously.

    index?: number

    An optional index associated with a ranged descriptor. Not applicable when using the descriptors array, even if its elements are ranged.

    descriptors?: Descriptor[]

    Array of descriptor expressions. Use either descriptors or descriptor, but not both simultaneously.

    txStatus?: TxStatus

    Specifies the filtering criteria based on transaction status: TxStatus.ALL, TxStatus.IRREVERSIBLE, or TxStatus.CONFIRMED.

    TxStatus.ALL