class Log
(source)
A log entry is a tuple of a logger’s address (the address of the contract that added the logs), a series of 32-bytes log topics, and some number of bytes of data.
Log(logger: Address, data: Bytes, topics: MutableList<Bytes32>) |
fun data(): Bytes |
|
fun equals(other: Any?): Boolean |
|
fun hashCode(): Int |
|
fun logger(): Address |
|
static fun readFrom(in: RLPReader): Log
Reads the log entry from the provided RLP input. |
|
fun toString(): String |
|
fun topics(): MutableList<Bytes32> |
|
fun writeTo(writer: RLPWriter): Unit
Writes the log entry to the provided RLP output. |