[][src]Struct wagyu_ethereum::transaction::EthereumTransactionParameters

pub struct EthereumTransactionParameters {
    pub receiver: EthereumAddress,
    pub amount: EthereumAmount,
    pub gas: U256,
    pub gas_price: EthereumAmount,
    pub nonce: U256,
    pub data: Vec<u8>,
}

Represents the parameters for an Ethereum transaction

Fields

receiver: EthereumAddress

The address of the receiver

amount: EthereumAmount

The amount (in wei)

gas: U256

The transaction gas limit

gas_price: EthereumAmount

The transaction gas price in wei

nonce: U256

The nonce of the Ethereum account

data: Vec<u8>

The transaction data

Trait Implementations

impl Clone for EthereumTransactionParameters[src]

impl Debug for EthereumTransactionParameters[src]

impl Eq for EthereumTransactionParameters[src]

impl Hash for EthereumTransactionParameters[src]

impl Ord for EthereumTransactionParameters[src]

impl PartialEq<EthereumTransactionParameters> for EthereumTransactionParameters[src]

impl PartialOrd<EthereumTransactionParameters> for EthereumTransactionParameters[src]

impl StructuralEq for EthereumTransactionParameters[src]

impl StructuralPartialEq for EthereumTransactionParameters[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,