pub struct TransactionReceipt<T = ReceiptEnvelope<Log>> {
pub inner: T,
pub transaction_hash: TxHash,
pub transaction_index: Option<u64>,
pub block_hash: Option<BlockHash>,
pub block_number: Option<u64>,
pub gas_used: u64,
pub effective_gas_price: u128,
pub blob_gas_used: Option<u64>,
pub blob_gas_price: Option<u128>,
pub from: Address,
pub to: Option<Address>,
pub contract_address: Option<Address>,
}
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: TxHash
Transaction Hash.
transaction_index: Option<u64>
Index within the block.
block_hash: Option<BlockHash>
Hash of the block this transaction was included within.
block_number: Option<u64>
Number of the block this transaction was included within.
gas_used: u64
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<u64>
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.
Implementations§
Source§impl<T> TransactionReceipt<T>
impl<T> TransactionReceipt<T>
Sourcepub fn map_inner<U, F>(self, f: F) -> TransactionReceipt<U>where
F: FnOnce(T) -> U,
pub fn map_inner<U, F>(self, f: F) -> TransactionReceipt<U>where
F: FnOnce(T) -> U,
Maps the inner receipt value of this receipt.
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes the type and returns the wrapped receipt.
Sourcepub fn calculate_create_address(&self, nonce: u64) -> Option<Address>
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).
Source§impl<L> TransactionReceipt<ReceiptEnvelope<L>>
impl<L> TransactionReceipt<ReceiptEnvelope<L>>
Sourcepub fn map_logs<U>(
self,
f: impl FnMut(L) -> U,
) -> TransactionReceipt<ReceiptEnvelope<U>>
pub fn map_logs<U>( self, f: impl FnMut(L) -> U, ) -> TransactionReceipt<ReceiptEnvelope<U>>
Converts the receipt’s log type by applying a function to each log.
Returns the receipt with the new log type.
Sourcepub fn into_primitives_receipt(self) -> TransactionReceipt<ReceiptEnvelope<Log>>
pub fn into_primitives_receipt(self) -> TransactionReceipt<ReceiptEnvelope<Log>>
Converts the transaction receipt’s ReceiptEnvelope
with a custom log type into a
ReceiptEnvelope
with the primitives alloy_primitives::Log
type by converting the
logs.
Source§impl<T: TxReceipt> TransactionReceipt<T>
impl<T: TxReceipt> TransactionReceipt<T>
Source§impl<T: TxReceipt<Log: AsRef<Log>>> TransactionReceipt<T>
impl<T: TxReceipt<Log: AsRef<Log>>> TransactionReceipt<T>
Sourcepub fn decoded_log<E: SolEvent>(&self) -> Option<Log<E>>
pub fn decoded_log<E: SolEvent>(&self) -> Option<Log<E>>
Attempts to decode the logs to the provided log type.
Returns the first log that decodes successfully.
Returns None, if none of the logs could be decoded to the provided log type or if there are no logs.
Trait Implementations§
Source§impl AsRef<ReceiptEnvelope<Log>> for TransactionReceipt
impl AsRef<ReceiptEnvelope<Log>> for TransactionReceipt
Source§fn as_ref(&self) -> &ReceiptEnvelope<Log>
fn as_ref(&self) -> &ReceiptEnvelope<Log>
Source§impl<T: Clone> Clone for TransactionReceipt<T>
impl<T: Clone> Clone for TransactionReceipt<T>
Source§fn clone(&self) -> TransactionReceipt<T>
fn clone(&self) -> TransactionReceipt<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<T: Debug> Debug for TransactionReceipt<T>
impl<T: Debug> Debug for TransactionReceipt<T>
Source§impl<'de, T> Deserialize<'de> for TransactionReceipt<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for TransactionReceipt<T>where
T: Deserialize<'de>,
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Source§impl From<TransactionReceipt> for TransactionReceipt<ReceiptEnvelope<Log>>
impl From<TransactionReceipt> for TransactionReceipt<ReceiptEnvelope<Log>>
Source§fn from(value: TransactionReceipt) -> Self
fn from(value: TransactionReceipt) -> Self
Source§impl<T: PartialEq> PartialEq for TransactionReceipt<T>
impl<T: PartialEq> PartialEq for TransactionReceipt<T>
Source§impl<T: TxReceipt<Log = Log>> ReceiptResponse for TransactionReceipt<T>
impl<T: TxReceipt<Log = Log>> ReceiptResponse for TransactionReceipt<T>
Source§fn contract_address(&self) -> Option<Address>
fn contract_address(&self) -> Option<Address>
None
if the transaction was not a deployment.Source§fn block_hash(&self) -> Option<BlockHash>
fn block_hash(&self) -> Option<BlockHash>
Source§fn block_number(&self) -> Option<u64>
fn block_number(&self) -> Option<u64>
Source§fn transaction_hash(&self) -> TxHash
fn transaction_hash(&self) -> TxHash
Source§fn transaction_index(&self) -> Option<u64>
fn transaction_index(&self) -> Option<u64>
Source§fn effective_gas_price(&self) -> u128
fn effective_gas_price(&self) -> u128
Source§fn blob_gas_used(&self) -> Option<u64>
fn blob_gas_used(&self) -> Option<u64>
Source§fn blob_gas_price(&self) -> Option<u128>
fn blob_gas_price(&self) -> Option<u128>
Source§fn cumulative_gas_used(&self) -> u64
fn cumulative_gas_used(&self) -> u64
Source§impl<T> Serialize for TransactionReceipt<T>where
T: Serialize,
impl<T> Serialize for TransactionReceipt<T>where
T: Serialize,
impl<T: Eq> Eq for TransactionReceipt<T>
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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