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 into_blobs(self) -> Vec<Blob> ⓘ
pub fn into_blobs(self) -> Vec<Blob> ⓘ
Consume self and return the blobs
Sourcepub const fn size(&self) -> usize
pub const 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§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.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 moreSource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.