RpcTransaction

@Serializable
data class RpcTransaction(val hash: String, val nonce: String, val blockHash: String? = null, val blockNumber: String? = null, val transactionIndex: String? = null, val from: String, val to: String? = null, val value: String, val gas: String, val gasPrice: String? = null, val maxFeePerGas: String? = null, val maxPriorityFeePerGas: String? = null, val input: String, val type: String? = null)

Transaction data from eth_getTransactionByHash.

Constructors

Link copied to clipboard
constructor(hash: String, nonce: String, blockHash: String? = null, blockNumber: String? = null, transactionIndex: String? = null, from: String, to: String? = null, value: String, gas: String, gasPrice: String? = null, maxFeePerGas: String? = null, maxPriorityFeePerGas: String? = null, input: String, type: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val gas: String
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
val type: String?
Link copied to clipboard