Enum ethers_core::types::transaction::eip2718::TypedTransaction[][src]

pub enum TypedTransaction {
    Legacy(TransactionRequest),
    Eip2930(Eip2930TransactionRequest),
    Eip1559(Eip1559TransactionRequest),
}
Expand description

The TypedTransaction enum represents all Ethereum transaction types.

Its variants correspond to specific allowed transactions:

  1. Legacy (pre-EIP2718) TransactionRequest
  2. EIP2930 (state access lists) Eip2930TransactionRequest
  3. EIP1559 Eip1559TransactionRequest

To support Kovan and other non-London-compatbile networks, please enable the legacy crate feature. This will disable the type flag in the serialized transaction, and cause contract calls and other common actions to default to using the legacy transaction type.

Variants

Tuple Fields of Legacy

0: TransactionRequest

Tuple Fields of Eip2930

0: Eip2930TransactionRequest

Tuple Fields of Eip1559

0: Eip1559TransactionRequest

Implementations

Hashes the transaction’s data with the provided chain id Does not double-RLP encode

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Performs the conversion.

Performs the conversion.

Performs the conversion.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.