pub struct SignedBidSubmissionV4 {
pub message: BidTrace,
pub execution_payload: ExecutionPayloadV3,
pub blobs_bundle: BlobsBundleV1,
pub execution_requests: Vec<Bytes>,
pub signature: BlsSignature,
}
Expand description
Submission for the /relay/v1/builder/blocks
endpoint (Electra).
Fields§
§message: BidTrace
The BidTrace
message associated with the submission.
execution_payload: ExecutionPayloadV3
The execution payload for the submission.
blobs_bundle: BlobsBundleV1
The Electra block bundle for this bid.
execution_requests: Vec<Bytes>
The Pectra execution requests for this bid.
signature: BlsSignature
The signature associated with the submission.
Trait Implementations§
Source§impl Clone for SignedBidSubmissionV4
impl Clone for SignedBidSubmissionV4
Source§fn clone(&self) -> SignedBidSubmissionV4
fn clone(&self) -> SignedBidSubmissionV4
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 Debug for SignedBidSubmissionV4
impl Debug for SignedBidSubmissionV4
Source§impl Decode for SignedBidSubmissionV4
impl Decode for SignedBidSubmissionV4
Source§fn is_ssz_fixed_len() -> bool
fn is_ssz_fixed_len() -> bool
Returns
true
if this object has a fixed-length. Read moreSource§fn ssz_fixed_len() -> usize
fn ssz_fixed_len() -> usize
The number of bytes this object occupies in the fixed-length portion of the SSZ bytes. Read more
Source§fn from_ssz_bytes(bytes: &[u8]) -> Result<Self, DecodeError>
fn from_ssz_bytes(bytes: &[u8]) -> Result<Self, DecodeError>
Source§impl<'de> Deserialize<'de> for SignedBidSubmissionV4
impl<'de> Deserialize<'de> for SignedBidSubmissionV4
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 Encode for SignedBidSubmissionV4
impl Encode for SignedBidSubmissionV4
Source§fn is_ssz_fixed_len() -> bool
fn is_ssz_fixed_len() -> bool
Returns
true
if this object has a fixed-length. Read moreSource§fn ssz_fixed_len() -> usize
fn ssz_fixed_len() -> usize
The number of bytes this object occupies in the fixed-length portion of the SSZ bytes. Read more
Source§fn ssz_bytes_len(&self) -> usize
fn ssz_bytes_len(&self) -> usize
Returns the size (in bytes) when
self
is serialized. Read moreSource§impl PartialEq for SignedBidSubmissionV4
impl PartialEq for SignedBidSubmissionV4
Source§impl Serialize for SignedBidSubmissionV4
impl Serialize for SignedBidSubmissionV4
impl Eq for SignedBidSubmissionV4
impl StructuralPartialEq for SignedBidSubmissionV4
Auto Trait Implementations§
impl !Freeze for SignedBidSubmissionV4
impl RefUnwindSafe for SignedBidSubmissionV4
impl Send for SignedBidSubmissionV4
impl Sync for SignedBidSubmissionV4
impl Unpin for SignedBidSubmissionV4
impl UnwindSafe for SignedBidSubmissionV4
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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