Type alias StreamFilters

StreamFilters: {
    isPrepaid?: boolean;
    mint?: web3.PublicKey;
    sender?: web3.PublicKey;
    recipient?: web3.PublicKey;
    isCancelled?: boolean;
    isCancelledBeforeStart?: boolean;
    isCancelledBySender?: boolean;
    isPaused?: boolean;
    isPausedBySender?: boolean;
    name?: string;
}

Stream filters that can be used to filter streams when fetching all streams.

Type declaration

  • Optional isPrepaid?: boolean

    Filter by stream type - prepaid or unbounded.

  • Optional mint?: web3.PublicKey

    Filter by the stream mint.

  • Optional sender?: web3.PublicKey

    Filter by the stream sender.

  • Optional recipient?: web3.PublicKey

    Filter by the stream recipient.

  • Optional isCancelled?: boolean

    Filter by the stream cancellation status.

  • Optional isCancelledBeforeStart?: boolean

    Filter by the stream cancellation before start status.

  • Optional isCancelledBySender?: boolean

    Filter by the stream cancellation by sender status.

  • Optional isPaused?: boolean

    Filter by the stream paused status.

  • Optional isPausedBySender?: boolean

    Filter by the stream paused by sender status.

  • Optional name?: string

    Filter by the stream name.

Generated using TypeDoc