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

Properties

Properties

address: string

The address of the contract that emitted the event.

data: string

The data associated with the event.

topics: string[]

Topics are indexed parameters to an event. The first topic is always the event signature.