ConstructedEipTransaction

data class ConstructedEipTransaction(val from: String, val to: String, val data: String? = null, val value: String? = null)

Represents a constructed EIP-155 transaction returned by delegation endpoints.

Used for EVM chains in approve, revoke, and transferFrom responses. The transaction must be signed and sent via eth_sendTransaction.

Parameters

from

The sender address.

to

The recipient/contract address.

data

Optional calldata for the transaction.

value

Optional value in wei (hex string).

Constructors

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

Properties

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