Interface EventData

Data that gets sent with each EventType

interface EventData {
    accountAddress?: string;
    amount?: BigNumberish;
    error?: unknown;
    event?: EventType;
    orderV2?: OrderV2;
    transactionHash?: string;
}

Properties

accountAddress?: string

Wallet address of the user who initiated the event.

amount?: BigNumberish

Amount of ETH sent when wrapping or unwrapping.

error?: unknown

Error which occurred when transaction was denied or failed.

event?: EventType

The EventType of the event.

orderV2?: OrderV2

The OrderV2 object.

transactionHash?: string

The transaction hash of the event.