RpcTransactionReceipt

@Serializable
data class RpcTransactionReceipt(val transactionHash: String, val transactionIndex: String, val blockHash: String, val blockNumber: String, val from: String, val to: String? = null, val cumulativeGasUsed: String, val gasUsed: String, val effectiveGasPrice: String, val contractAddress: String? = null, val logs: List<RpcLog>, val logsBloom: String, val status: String, val type: String? = null, val l1Fee: String? = null, val l1GasPrice: String? = null, val l1GasUsed: String? = null)

Transaction receipt from eth_getTransactionReceipt.

Constructors

Link copied to clipboard
constructor(transactionHash: String, transactionIndex: String, blockHash: String, blockNumber: String, from: String, to: String? = null, cumulativeGasUsed: String, gasUsed: String, effectiveGasPrice: String, contractAddress: String? = null, logs: List<RpcLog>, logsBloom: String, status: String, type: String? = null, l1Fee: String? = null, l1GasPrice: String? = null, l1GasUsed: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val to: String?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val type: String?