TransactionCallObject

data class TransactionCallObject(    val from: String,     val to: String,     val gas: String? = null,     val gasPrice: String? = null,     val value: String? = null,     val data: String)

Constructors

Link copied to clipboard
fun TransactionCallObject(    from: String,     to: String,     gas: String? = null,     gasPrice: String? = null,     value: String? = null,     data: String)

Properties

Link copied to clipboard
val data: String
Link copied to clipboard
val from: String
Link copied to clipboard
val gas: String? = null
Link copied to clipboard
val gasPrice: String? = null
Link copied to clipboard
val to: String
Link copied to clipboard
val value: String? = null