pub trait ReceiptResponse {
Show 15 methods
// Required methods
fn contract_address(&self) -> Option<Address>;
fn status(&self) -> bool;
fn block_hash(&self) -> Option<FixedBytes<32>>;
fn block_number(&self) -> Option<u64>;
fn transaction_hash(&self) -> FixedBytes<32>;
fn transaction_index(&self) -> Option<u64>;
fn gas_used(&self) -> u128;
fn effective_gas_price(&self) -> u128;
fn blob_gas_used(&self) -> Option<u128>;
fn blob_gas_price(&self) -> Option<u128>;
fn from(&self) -> Address;
fn to(&self) -> Option<Address>;
fn authorization_list(&self) -> Option<&[SignedAuthorization]>;
fn cumulative_gas_used(&self) -> u128;
fn state_root(&self) -> Option<FixedBytes<32>>;
}
Expand description
Receipt JSON-RPC response.
Required Methods§
Sourcefn contract_address(&self) -> Option<Address>
fn contract_address(&self) -> Option<Address>
Address of the created contract, or None
if the transaction was not a deployment.
Sourcefn status(&self) -> bool
fn status(&self) -> bool
Status of the transaction.
§Note
Caution must be taken when using this method for deep-historical receipts, as it may not accurately reflect the status of the transaction. The transaction status is not knowable from the receipt for transactions before [EIP-658].
Sourcefn block_hash(&self) -> Option<FixedBytes<32>>
fn block_hash(&self) -> Option<FixedBytes<32>>
Hash of the block this transaction was included within.
Sourcefn block_number(&self) -> Option<u64>
fn block_number(&self) -> Option<u64>
Number of the block this transaction was included within.
Sourcefn transaction_hash(&self) -> FixedBytes<32>
fn transaction_hash(&self) -> FixedBytes<32>
Transaction Hash.
Sourcefn transaction_index(&self) -> Option<u64>
fn transaction_index(&self) -> Option<u64>
Index within the block.
Sourcefn effective_gas_price(&self) -> u128
fn effective_gas_price(&self) -> u128
Effective gas price.
Sourcefn blob_gas_used(&self) -> Option<u128>
fn blob_gas_used(&self) -> Option<u128>
Blob gas used by the eip-4844 transaction.
Sourcefn blob_gas_price(&self) -> Option<u128>
fn blob_gas_price(&self) -> Option<u128>
Blob gas price paid by the eip-4844 transaction.
EIP-7702 Authorization list.
Sourcefn cumulative_gas_used(&self) -> u128
fn cumulative_gas_used(&self) -> u128
Returns the cumulative gas used at this receipt.
Sourcefn state_root(&self) -> Option<FixedBytes<32>>
fn state_root(&self) -> Option<FixedBytes<32>>
The post-transaction state root (pre Byzantium)
EIP98 makes this field optional.