Interface IEventFilter

Allows you to filter events by their properties.

See

  • start of type ISlot represents the start of the time interval (can be null).
  • end of type ISlot represents the end of the time interval (can be null).
  • emitter_address of type string represents the address that emitted the event (can be null) or the MNS domain associated.
  • original_caller_address of type string represents the operation id that generated the event (can be null) or the MNS domain associated.
  • is_final of type boolean to filter final events (true), candidate events (false) or both (null).
interface IEventFilter {
    emitter_address: string;
    end: ISlot;
    is_final: boolean;
    original_caller_address: string;
    original_operation_id: string;
    start: ISlot;
}

Hierarchy (view full)

Properties

emitter_address: string
end: ISlot
is_final: boolean
original_caller_address: string
original_operation_id: string
start: ISlot

Generated using TypeDoc