BlockaidScanEVMTransactionData

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

Transaction data for EVM transaction scanning.

Parameters

from

Sender address

to

Recipient address (null for contract creation)

data

Transaction input data

value

Transaction value in wei (hex string)

gas

Gas limit

gasPrice

Gas price in wei

Constructors

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

Properties

Link copied to clipboard
val data: String? = null
Link copied to clipboard
Link copied to clipboard
val gas: String? = null
Link copied to clipboard
@SerializedName(value = "gas_price")
val gasPrice: String? = null
Link copied to clipboard
val to: String? = null
Link copied to clipboard
val value: String? = null