EthGetLogs
Definition
Section titled “Definition”struct EthGetLogs { /// The address of the log's emitter. address emitter; /// The topics of the log, including the signature, if any. bytes32[] topics; /// The raw data of the log. bytes data; /// The block hash. bytes32 blockHash; /// The block number. uint64 blockNumber; /// The transaction hash. bytes32 transactionHash; /// The transaction index in the block. uint64 transactionIndex; /// The log index. uint256 logIndex; /// Whether the log was removed. bool removed;}Description
Section titled “Description”An RPC log object. Returned by eth_getLogs.