EventCriteria interface for filtering event logs.

interface EventCriteria {
    address?: string;
    topic0?: string;
    topic1?: string;
    topic2?: string;
    topic3?: string;
    topic4?: string;
}

Properties

address?: string

Address filter for event criteria.

topic0?: string

Event topics filter.

topic1?: string
topic2?: string
topic3?: string
topic4?: string