RpcTransactionCall

@Serializable
data class RpcTransactionCall(val from: String? = null, val to: String, val gas: String? = null, val gasPrice: String? = null, val maxFeePerGas: String? = null, val maxPriorityFeePerGas: String? = null, val value: String? = null, val data: String? = null)

Transaction call object for eth_call and eth_estimateGas.

Constructors

Link copied to clipboard
constructor(from: String? = null, to: String, gas: String? = null, gasPrice: String? = null, maxFeePerGas: String? = null, maxPriorityFeePerGas: String? = null, value: String? = null, data: String? = null)

Properties

Link copied to clipboard
val data: String?
Link copied to clipboard
val from: String?
Link copied to clipboard
val gas: String?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val to: String
Link copied to clipboard