pub struct TransactionReceipt<T = ReceiptEnvelope<Log>> {Show 13 fields
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: 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>>,
}
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: 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.
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
impl TransactionReceipt
Sourcepub const fn transaction_type(&self) -> TxType
pub const fn transaction_type(&self) -> TxType
Returns the transaction type.
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), or if
the from
field is not set.
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.
Trait Implementations§
Source§impl<'arbitrary, T: Arbitrary<'arbitrary>> Arbitrary<'arbitrary> for TransactionReceipt<T>
impl<'arbitrary, T: Arbitrary<'arbitrary>> Arbitrary<'arbitrary> for TransactionReceipt<T>
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Self
from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Self
from the entirety of the given
unstructured data. Read moreSource§fn size_hint(depth: usize) -> (usize, Option<usize>)
fn size_hint(depth: usize) -> (usize, Option<usize>)
Unstructured
this type
needs to construct itself. Read moreSource§fn try_size_hint(
depth: usize,
) -> Result<(usize, Option<usize>), MaxRecursionReached>
fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>
Unstructured
this type
needs to construct itself. Read moreSource§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<T: PartialEq> PartialEq for TransactionReceipt<T>
impl<T: PartialEq> PartialEq for TransactionReceipt<T>
Source§impl<T: TxReceipt<Log>> ReceiptResponse for TransactionReceipt<T>
impl<T: TxReceipt<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<u128>
fn blob_gas_used(&self) -> Option<u128>
Source§fn blob_gas_price(&self) -> Option<u128>
fn blob_gas_price(&self) -> Option<u128>
Source§fn cumulative_gas_used(&self) -> u128
fn cumulative_gas_used(&self) -> u128
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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