Event interface representing event data.

interface Event {
    address: string;
    data: string;
    topics: string[];
}

Hierarchy (view full)

Properties

Properties

address: string

The address related to the event.

data: string

Event data.

topics: string[]

Event topics or categories.