A log emitted from an onchain transaction.

Export

TransactionLog

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

Properties

Properties

address: string

An onchain address of a contract.

Memberof

TransactionLog

data: string

The data included in this log.

Memberof

TransactionLog

topics: string[]

Memberof

TransactionLog