Type alias OutputCriteria

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

Type declaration

  • Optional descriptor?: Descriptor

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

  • Optional index?: number

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

  • Optional descriptors?: Descriptor[]

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

  • Optional txStatus?: TxStatus

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

    Default Value

    TxStatus.ALL