The return type of transaction receipt logs according to the Ethereum RPC standard.

interface TransactionReceiptLogsRPC {
    address: string;
    blockHash: string;
    blockNumber: string;
    data: string;
    logIndex: string;
    removed: false;
    topics: string[];
    transactionHash: string;
    transactionIndex: string;
}

Properties

address: string

The address from which this log was generated

blockHash: string

The hash of the block where this log was in

blockNumber: string

The block number where this log was in

data: string

The 32 byte non-indexed argument of the log

logIndex: string

The integer of log index position in the block encoded as hexadecimal. null if the log is pending

removed

It is true if log was removed, due to a chain reorganization and false if it's a valid log

topics: string[]

An array of zero to four 32 Bytes DATA of indexed log arguments. In Solidity, the first topic is the hash of the signature of the event (e.g. Deposit(address, bytes32, uint256)), except you declare the event with the anonymous specifier

transactionHash: string

The hash of the transaction from which this log was created from. null if the log is pending

transactionIndex: string

The transactions index position from which this log was created from. null if the log is pending