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 is_eip4844(&self) -> bool
pub const fn is_eip4844(&self) -> bool
Returns true if this is a BlobTransactionSidecarVariant::Eip4844
.
Sourcepub const fn is_eip7594(&self) -> bool
pub const fn is_eip7594(&self) -> bool
Returns true if this is a BlobTransactionSidecarVariant::Eip7594
.
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-7594 sidecar if it is Self::Eip7594
.
Sourcepub fn into_eip4844(self) -> Option<BlobTransactionSidecar>
pub fn into_eip4844(self) -> Option<BlobTransactionSidecar>
Converts into EIP-4844 sidecar if it is Self::Eip4844
.
Sourcepub fn into_eip7594(self) -> Option<BlobTransactionSidecarEip7594>
pub fn into_eip7594(self) -> Option<BlobTransactionSidecarEip7594>
Converts the EIP-7594 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 commitments(&self) -> &[Bytes48]
pub fn commitments(&self) -> &[Bytes48]
Returns the commitments of the sidecar.
Sourcepub fn versioned_hashes(&self) -> VersionedHashIter<'_> ⓘ
pub fn versioned_hashes(&self) -> VersionedHashIter<'_> ⓘ
Returns an iterator over the versioned hashes of the commitments.
Sourcepub fn versioned_hash_index(&self, hash: &B256) -> Option<usize>
pub fn versioned_hash_index(&self, hash: &B256) -> Option<usize>
Returns the index of the versioned hash in the commitments vector.
Sourcepub fn blob_by_versioned_hash(&self, hash: &B256) -> Option<&Blob>
pub fn blob_by_versioned_hash(&self, hash: &B256) -> Option<&Blob>
Returns the blob corresponding to the versioned hash, if it exists.
Trait Implementations§
Source§impl Clone for BlobTransactionSidecarVariant
impl Clone for BlobTransactionSidecarVariant
Source§fn clone(&self) -> BlobTransactionSidecarVariant
fn clone(&self) -> BlobTransactionSidecarVariant
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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>,
Source§impl Encodable7594 for BlobTransactionSidecarVariant
impl Encodable7594 for BlobTransactionSidecarVariant
Source§fn encode_7594_len(&self) -> usize
fn encode_7594_len(&self) -> usize
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
Source§impl From<BlobTransactionSidecarEip7594> for BlobTransactionSidecarVariant
impl From<BlobTransactionSidecarEip7594> for BlobTransactionSidecarVariant
Source§fn from(value: BlobTransactionSidecarEip7594) -> Self
fn from(value: BlobTransactionSidecarEip7594) -> Self
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
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
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
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>
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