Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface Log

Contains information about a transaction. Most of the fields have been made optional; only those needed by the decoder have been made mandatory.

Intended to work like Web3's Log type.

Hierarchy

Index

Properties

address

address: string

Address of the emitter (as checksummed hex string).

Optional blockHash

blockHash: string | null

The block hash (as hex string). Null if pending.

blockNumber

blockNumber: number | null

The block number. Null if pending.

data

data: string

The log's data section (as hex string).

Optional logIndex

logIndex: number

Index of the log within the block.

topics

topics: string[]

The log's topics; each is a hex string representing 32 bytes.

Optional transactionHash

transactionHash: string

The emitting transaction's hash (as hex string).

Optional transactionIndex

transactionIndex: number | null

Index within the block of the emitting transaction; null if block is pending.

Generated using TypeDoc