pub enum BlobTransactionSidecarVariant {
Eip4844(BlobTransactionSidecar),
Eip7594(BlobTransactionSidecarEip7594),
}
Expand description
This represents a set of blobs, and its corresponding commitments and proofs. Proof type depends on the sidecar variant.
This type encodes and decodes the fields without an rlp header.
Variants§
Eip4844(BlobTransactionSidecar)
EIP-4844 style blob transaction sidecar.
Eip7594(BlobTransactionSidecarEip7594)
EIP-7594 style blob transaction sidecar with cell proofs.
Implementations§
Source§impl BlobTransactionSidecarVariant
impl BlobTransactionSidecarVariant
Sourcepub const fn as_eip4844(&self) -> Option<&BlobTransactionSidecar>
pub const fn as_eip4844(&self) -> Option<&BlobTransactionSidecar>
Returns the EIP-4844 sidecar if it is Self::Eip4844
.
Sourcepub const fn as_eip7594(&self) -> Option<&BlobTransactionSidecarEip7594>
pub const fn as_eip7594(&self) -> Option<&BlobTransactionSidecarEip7594>
Returns the EIP-4844 sidecar if it is Self::Eip7594
.
Sourcepub fn size(&self) -> usize
pub fn size(&self) -> usize
Calculates a size heuristic for the in-memory size of the BlobTransactionSidecarVariant.
Sourcepub fn versioned_hashes(&self) -> Vec<B256>
pub fn versioned_hashes(&self) -> Vec<B256>
Returns an iterator over the versioned hashes of the commitments.
Trait Implementations§
Source§impl Clone for BlobTransactionSidecarVariant
impl Clone for BlobTransactionSidecarVariant
Source§fn clone(&self) -> BlobTransactionSidecarVariant
fn clone(&self) -> BlobTransactionSidecarVariant
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for BlobTransactionSidecarVariant
impl<'de> Deserialize<'de> for BlobTransactionSidecarVariant
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Encodable7594 for BlobTransactionSidecarVariant
impl Encodable7594 for BlobTransactionSidecarVariant
Source§fn encode_7594_len(&self) -> usize
fn encode_7594_len(&self) -> usize
The length of the 7594 encoded envelope. This is the length of the wrapper
version + the length of the inner encoding.
Source§fn encode_7594(&self, out: &mut dyn BufMut)
fn encode_7594(&self, out: &mut dyn BufMut)
Source§impl From<BlobTransactionSidecar> for BlobTransactionSidecarVariant
impl From<BlobTransactionSidecar> for BlobTransactionSidecarVariant
Source§fn from(value: BlobTransactionSidecar) -> Self
fn from(value: BlobTransactionSidecar) -> Self
Converts to this type from the input type.
Source§impl From<BlobTransactionSidecarEip7594> for BlobTransactionSidecarVariant
impl From<BlobTransactionSidecarEip7594> for BlobTransactionSidecarVariant
Source§fn from(value: BlobTransactionSidecarEip7594) -> Self
fn from(value: BlobTransactionSidecarEip7594) -> Self
Converts to this type from the input type.
Source§impl Hash for BlobTransactionSidecarVariant
impl Hash for BlobTransactionSidecarVariant
Source§impl PartialEq for BlobTransactionSidecarVariant
impl PartialEq for BlobTransactionSidecarVariant
Source§fn eq(&self, other: &BlobTransactionSidecarVariant) -> bool
fn eq(&self, other: &BlobTransactionSidecarVariant) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for BlobTransactionSidecarVariant
impl StructuralPartialEq for BlobTransactionSidecarVariant
Auto Trait Implementations§
impl Freeze for BlobTransactionSidecarVariant
impl RefUnwindSafe for BlobTransactionSidecarVariant
impl Send for BlobTransactionSidecarVariant
impl Sync for BlobTransactionSidecarVariant
impl Unpin for BlobTransactionSidecarVariant
impl UnwindSafe for BlobTransactionSidecarVariant
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
Mutably borrows from an owned value. Read more
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
Compare self to
key
and return true
if they are equal.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>
Converts
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>
Converts
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