[][src]Struct ethers_core::types::Transaction

pub struct Transaction {
    pub hash: H256,
    pub nonce: U256,
    pub block_hash: Option<H256>,
    pub block_number: Option<U64>,
    pub transaction_index: Option<U64>,
    pub from: Address,
    pub to: Option<Address>,
    pub value: U256,
    pub gas_price: U256,
    pub gas: U256,
    pub input: Bytes,
    pub v: U64,
    pub r: U256,
    pub s: U256,
    pub fee_currency: Option<Address>,
    pub gateway_fee_recipient: Option<Address>,
    pub gateway_fee: Option<U256>,
}

Details of a signed transaction

Fields

hash: H256

The transaction's hash

nonce: U256

The transaction's nonce

block_hash: Option<H256>

Block hash. None when pending.

block_number: Option<U64>

Block number. None when pending.

transaction_index: Option<U64>

Transaction Index. None when pending.

from: Address

Sender

to: Option<Address>

Recipient (None when contract creation)

value: U256

Transfered value

gas_price: U256

Gas Price

gas: U256

Gas amount

input: Bytes

Input data

v: U64

ECDSA recovery id

r: U256

ECDSA signature r

s: U256

ECDSA signature s

fee_currency: Option<Address>
This is supported on feature="celo" only.

The currency fees are paid in (None for native currency)

gateway_fee_recipient: Option<Address>
This is supported on feature="celo" only.

Gateway fee recipient (None for no gateway fee paid)

gateway_fee: Option<U256>
This is supported on feature="celo" only.

Gateway fee amount (None for no gateway fee paid)

Implementations

impl Transaction[src]

pub fn hash(&self) -> H256[src]

pub fn rlp(&self) -> Bytes[src]

Trait Implementations

impl Clone for Transaction[src]

impl Debug for Transaction[src]

impl<'de> Deserialize<'de> for Transaction[src]

impl PartialEq<Transaction> for Transaction[src]

impl Serialize for Transaction[src]

impl StructuralPartialEq for Transaction[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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>,