alloy_rpc_types

Struct TransactionReceipt

source
pub struct TransactionReceipt<T = ReceiptEnvelope<Log>> {
Show 13 fields pub inner: T, pub transaction_hash: FixedBytes<32>, pub transaction_index: Option<u64>, pub block_hash: Option<FixedBytes<32>>, pub block_number: Option<u64>, pub gas_used: u128, pub effective_gas_price: u128, pub blob_gas_used: Option<u128>, pub blob_gas_price: Option<u128>, pub from: Address, pub to: Option<Address>, pub contract_address: Option<Address>, pub authorization_list: Option<Vec<SignedAuthorization>>,
}
Available on crate feature eth only.
Expand description

Transaction receipt

This type is generic over an inner ReceiptEnvelope which contains consensus data and metadata.

Fields§

§inner: T

The receipt envelope, which contains the consensus receipt data..

§transaction_hash: FixedBytes<32>

Transaction Hash.

§transaction_index: Option<u64>

Index within the block.

§block_hash: Option<FixedBytes<32>>

Hash of the block this transaction was included within.

§block_number: Option<u64>

Number of the block this transaction was included within.

§gas_used: u128

Gas used by this transaction alone.

§effective_gas_price: u128

The price paid post-execution by the transaction (i.e. base fee + priority fee). Both fields in 1559-style transactions are maximums (max fee + max priority fee), the amount that’s actually paid by users can only be determined post-execution

§blob_gas_used: Option<u128>

Blob gas used by the eip-4844 transaction

This is None for non eip-4844 transactions

§blob_gas_price: Option<u128>

The price paid by the eip-4844 transaction per blob gas.

§from: Address

Address of the sender

§to: Option<Address>

Address of the receiver. None when its a contract creation transaction.

§contract_address: Option<Address>

Contract address created, or None if not a deployment.

§authorization_list: Option<Vec<SignedAuthorization>>

The authorization list is a list of tuples that store the address to code which the signer desires to execute in the context of their EOA.

Implementations§

source§

impl TransactionReceipt

source

pub const fn status(&self) -> bool

Returns the status of the transaction.

source

pub const fn transaction_type(&self) -> TxType

Returns the transaction type.

source

pub fn calculate_create_address(&self, nonce: u64) -> Option<Address>

Calculates the address that will be created by the transaction, if any.

Returns None if the transaction is not a contract creation (the to field is set), or if the from field is not set.

source§

impl<T> TransactionReceipt<T>

source

pub fn map_inner<U, F>(self, f: F) -> TransactionReceipt<U>
where F: FnOnce(T) -> U,

Maps the inner receipt value of this receipt.

Trait Implementations§

source§

impl<'arbitrary, T> Arbitrary<'arbitrary> for TransactionReceipt<T>
where T: Arbitrary<'arbitrary>,

source§

fn arbitrary( u: &mut Unstructured<'arbitrary>, ) -> Result<TransactionReceipt<T>, Error>

Generate an arbitrary value of Self from the given unstructured data. Read more
source§

fn arbitrary_take_rest( u: Unstructured<'arbitrary>, ) -> Result<TransactionReceipt<T>, Error>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
source§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
source§

impl AsRef<ReceiptEnvelope<Log>> for TransactionReceipt

source§

fn as_ref(&self) -> &ReceiptEnvelope<Log>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T> Clone for TransactionReceipt<T>
where T: Clone,

source§

fn clone(&self) -> TransactionReceipt<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T> Debug for TransactionReceipt<T>
where T: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'de, T> Deserialize<'de> for TransactionReceipt<T>
where T: Deserialize<'de>,

source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<TransactionReceipt<T>, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T> PartialEq for TransactionReceipt<T>
where T: PartialEq,

source§

fn eq(&self, other: &TransactionReceipt<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> ReceiptResponse for TransactionReceipt<T>
where T: TxReceipt<Log>,

source§

fn contract_address(&self) -> Option<Address>

Address of the created contract, or None if the transaction was not a deployment.
source§

fn status(&self) -> bool

Status of the transaction. Read more
source§

fn block_hash(&self) -> Option<FixedBytes<32>>

Hash of the block this transaction was included within.
source§

fn block_number(&self) -> Option<u64>

Number of the block this transaction was included within.
source§

fn transaction_hash(&self) -> FixedBytes<32>

Transaction Hash.
source§

fn transaction_index(&self) -> Option<u64>

Index within the block.
source§

fn gas_used(&self) -> u128

Gas used by this transaction alone.
source§

fn effective_gas_price(&self) -> u128

Effective gas price.
source§

fn blob_gas_used(&self) -> Option<u128>

Blob gas used by the eip-4844 transaction.
source§

fn blob_gas_price(&self) -> Option<u128>

Blob gas price paid by the eip-4844 transaction.
source§

fn from(&self) -> Address

Address of the sender.
source§

fn to(&self) -> Option<Address>

Address of the receiver.
source§

fn authorization_list(&self) -> Option<&[SignedAuthorization]>

EIP-7702 Authorization list.
source§

fn cumulative_gas_used(&self) -> u128

Returns the cumulative gas used at this receipt.
source§

fn state_root(&self) -> Option<FixedBytes<32>>

The post-transaction state root (pre Byzantium) Read more
source§

impl<T> Serialize for TransactionReceipt<T>
where T: Serialize,

source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<T> Eq for TransactionReceipt<T>
where T: Eq,

source§

impl<T> StructuralPartialEq for TransactionReceipt<T>

Auto Trait Implementations§

§

impl<T> Freeze for TransactionReceipt<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for TransactionReceipt<T>
where T: RefUnwindSafe,

§

impl<T> Send for TransactionReceipt<T>
where T: Send,

§

impl<T> Sync for TransactionReceipt<T>
where T: Sync,

§

impl<T> Unpin for TransactionReceipt<T>
where T: Unpin,

§

impl<T> UnwindSafe for TransactionReceipt<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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

source§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,