#[non_exhaustive]pub enum OpTxEnvelope {
Legacy(Signed<TxLegacy>),
Eip2930(Signed<TxEip2930>),
Eip1559(Signed<TxEip1559>),
Eip4844(Signed<TxEip4844Variant>),
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.
Eip4844(Signed<TxEip4844Variant>)
A TxEip4844 tagged with type 3. An EIP-4844 transaction has two network representations: 1 - The transaction itself, which is a regular RLP-encoded transaction and used to retrieve historical transactions..
2 - The transaction with a sidecar, which is the form used to send transactions to the network.
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 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 inner_length(&self) -> usize
pub fn inner_length(&self) -> usize
Return the length of the inner txn, without a type byte.
sourcefn rlp_payload_length(&self) -> usize
fn rlp_payload_length(&self) -> usize
Return the RLP payload length of the network-serialized wrapper
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>
§fn extract_type_byte(buf: &mut &[u8]) -> Option<u8>
fn extract_type_byte(buf: &mut &[u8]) -> Option<u8>
§fn decode_2718(buf: &mut &[u8]) -> Result<Self, Eip2718Error>
fn decode_2718(buf: &mut &[u8]) -> Result<Self, Eip2718Error>
source§impl<'de> Deserialize<'de> for OpTxEnvelope
impl<'de> Deserialize<'de> for OpTxEnvelope
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 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)
§fn encoded_2718(&self) -> Vec<u8> ⓘ
fn encoded_2718(&self) -> Vec<u8> ⓘ
§fn trie_hash(&self) -> FixedBytes<32>
fn trie_hash(&self) -> FixedBytes<32>
§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<Signed<TxEip1559>> for OpTxEnvelope
impl From<Signed<TxEip1559>> for OpTxEnvelope
source§impl From<Signed<TxEip2930>> for OpTxEnvelope
impl From<Signed<TxEip2930>> for OpTxEnvelope
source§impl From<Signed<TxEip4844>> for OpTxEnvelope
impl From<Signed<TxEip4844>> for OpTxEnvelope
source§impl From<Signed<TxEip4844Variant>> for OpTxEnvelope
impl From<Signed<TxEip4844Variant>> for OpTxEnvelope
source§impl From<Signed<TxEip4844WithSidecar>> for OpTxEnvelope
impl From<Signed<TxEip4844WithSidecar>> for OpTxEnvelope
source§impl From<Signed<TxLegacy>> for OpTxEnvelope
impl From<Signed<TxLegacy>> for OpTxEnvelope
source§impl From<TxDeposit> for OpTxEnvelope
impl From<TxDeposit> for OpTxEnvelope
source§impl PartialEq for OpTxEnvelope
impl PartialEq for OpTxEnvelope
source§impl Serialize for OpTxEnvelope
impl Serialize for OpTxEnvelope
impl 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
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> Eip2718Envelope for Twhere
T: Decodable2718 + Encodable2718,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 400 bytes
Size for each variant:
Legacy
: 256 bytesEip2930
: 272 bytesEip1559
: 288 bytesEip4844
: 400 bytesDeposit
: 192 bytes