#[non_exhaustive]pub enum OpTxEnvelope {
Legacy(Signed<TxLegacy>),
Eip2930(Signed<TxEip2930>),
Eip1559(Signed<TxEip1559>),
Eip7702(Signed<TxEip7702>),
Deposit(TxDeposit),
}
Expand description
The Ethereum EIP-2718 Transaction Envelope, modified for OP Stack chains.
§Note:
This enum distinguishes between tagged and untagged legacy transactions, as
the in-protocol merkle tree may commit to EITHER 0-prefixed or raw.
Therefore we must ensure that encoding returns the precise byte-array that
was decoded, preserving the presence or absence of the TransactionType
flag.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Legacy(Signed<TxLegacy>)
An untagged TxLegacy
.
Eip2930(Signed<TxEip2930>)
A TxEip2930
tagged with type 1.
Eip1559(Signed<TxEip1559>)
A TxEip1559
tagged with type 2.
Eip7702(Signed<TxEip7702>)
A TxEip7702
tagged with type 4.
Deposit(TxDeposit)
A TxDeposit
tagged with type 0x7E.
Implementations§
Source§impl OpTxEnvelope
impl OpTxEnvelope
Sourcepub const fn is_eip2930(&self) -> bool
pub const fn is_eip2930(&self) -> bool
Returns true if the transaction is an EIP-2930 transaction.
Sourcepub const fn is_eip1559(&self) -> bool
pub const fn is_eip1559(&self) -> bool
Returns true if the transaction is an EIP-1559 transaction.
Sourcepub const fn is_deposit(&self) -> bool
pub const fn is_deposit(&self) -> bool
Returns true if the transaction is a deposit transaction.
Sourcepub const fn is_system_transaction(&self) -> bool
pub const fn is_system_transaction(&self) -> bool
Returns true if the transaction is a system transaction.
Sourcepub const fn as_legacy(&self) -> Option<&Signed<TxLegacy>>
pub const fn as_legacy(&self) -> Option<&Signed<TxLegacy>>
Returns the TxLegacy
variant if the transaction is a legacy transaction.
Sourcepub const fn as_eip2930(&self) -> Option<&Signed<TxEip2930>>
pub const fn as_eip2930(&self) -> Option<&Signed<TxEip2930>>
Returns the TxEip2930
variant if the transaction is an EIP-2930 transaction.
Sourcepub const fn as_eip1559(&self) -> Option<&Signed<TxEip1559>>
pub const fn as_eip1559(&self) -> Option<&Signed<TxEip1559>>
Returns the TxEip1559
variant if the transaction is an EIP-1559 transaction.
Sourcepub const fn as_deposit(&self) -> Option<&TxDeposit>
pub const fn as_deposit(&self) -> Option<&TxDeposit>
Returns the TxDeposit
variant if the transaction is a deposit transaction.
Sourcepub fn eip2718_encoded_length(&self) -> usize
pub fn eip2718_encoded_length(&self) -> usize
Return the length of the inner txn, including type byte length
Trait Implementations§
Source§impl Clone for OpTxEnvelope
impl Clone for OpTxEnvelope
Source§fn clone(&self) -> OpTxEnvelope
fn clone(&self) -> OpTxEnvelope
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for OpTxEnvelope
impl Debug for OpTxEnvelope
Source§impl Decodable for OpTxEnvelope
impl Decodable for OpTxEnvelope
Source§impl Decodable2718 for OpTxEnvelope
impl Decodable2718 for OpTxEnvelope
Source§fn typed_decode(ty: u8, buf: &mut &[u8]) -> Eip2718Result<Self>
fn typed_decode(ty: u8, buf: &mut &[u8]) -> Eip2718Result<Self>
Source§fn fallback_decode(buf: &mut &[u8]) -> Eip2718Result<Self>
fn fallback_decode(buf: &mut &[u8]) -> Eip2718Result<Self>
Source§fn extract_type_byte(buf: &mut &[u8]) -> Option<u8>
fn extract_type_byte(buf: &mut &[u8]) -> Option<u8>
Source§fn decode_2718(buf: &mut &[u8]) -> Result<Self, Eip2718Error>
fn decode_2718(buf: &mut &[u8]) -> Result<Self, Eip2718Error>
Source§fn network_decode(buf: &mut &[u8]) -> Result<Self, Eip2718Error>
fn network_decode(buf: &mut &[u8]) -> Result<Self, Eip2718Error>
Source§impl Encodable for OpTxEnvelope
impl Encodable for OpTxEnvelope
Source§impl Encodable2718 for OpTxEnvelope
impl Encodable2718 for OpTxEnvelope
Source§fn encode_2718_len(&self) -> usize
fn encode_2718_len(&self) -> usize
Source§fn encode_2718(&self, out: &mut dyn BufMut)
fn encode_2718(&self, out: &mut dyn BufMut)
Source§fn encoded_2718(&self) -> Vec<u8> ⓘ
fn encoded_2718(&self) -> Vec<u8> ⓘ
Source§fn trie_hash(&self) -> FixedBytes<32>
fn trie_hash(&self) -> FixedBytes<32>
Source§fn network_len(&self) -> usize
fn network_len(&self) -> usize
Source§fn network_encode(&self, out: &mut dyn BufMut)
fn network_encode(&self, out: &mut dyn BufMut)
Source§impl From<OpTxEnvelope> for OpTypedTransaction
impl From<OpTxEnvelope> for OpTypedTransaction
Source§fn from(envelope: OpTxEnvelope) -> Self
fn from(envelope: OpTxEnvelope) -> Self
Source§impl From<TxDeposit> for OpTxEnvelope
impl From<TxDeposit> for OpTxEnvelope
Source§impl PartialEq for OpTxEnvelope
impl PartialEq for OpTxEnvelope
Source§impl Transaction for OpTxEnvelope
impl Transaction for OpTxEnvelope
Source§fn max_fee_per_gas(&self) -> u128
fn max_fee_per_gas(&self) -> u128
Source§fn max_priority_fee_per_gas(&self) -> Option<u128>
fn max_priority_fee_per_gas(&self) -> Option<u128>
Source§fn max_fee_per_blob_gas(&self) -> Option<u128>
fn max_fee_per_blob_gas(&self) -> Option<u128>
Source§fn priority_fee_or_price(&self) -> u128
fn priority_fee_or_price(&self) -> u128
Source§fn to(&self) -> Option<Address>
fn to(&self) -> Option<Address>
Source§fn access_list(&self) -> Option<&AccessList>
fn access_list(&self) -> Option<&AccessList>
access_list
for the particular transaction type. Returns None
for
older transaction types.Source§fn blob_versioned_hashes(&self) -> Option<&[B256]>
fn blob_versioned_hashes(&self) -> Option<&[B256]>
None
.SignedAuthorization
list of the transaction. Read moreimpl Eq for OpTxEnvelope
impl StructuralPartialEq for OpTxEnvelope
Auto Trait Implementations§
impl !Freeze for OpTxEnvelope
impl RefUnwindSafe for OpTxEnvelope
impl Send for OpTxEnvelope
impl Sync for OpTxEnvelope
impl Unpin for OpTxEnvelope
impl UnwindSafe for OpTxEnvelope
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
)