pub struct CheckpointSubmission {
pub checkpoint: Checkpoint,
pub signer_bitmap: SignerBitmap,
pub aggregate_signature: Signature,
pub aggregate_pubkey: PublicKey,
pub score: u64,
pub submitter: u32,
pub submission_height: Option<u32>,
pub submission_coin: Option<BytesImpl<32>>,
}Expand description
Signed checkpoint submission: epoch summary plus validator attestation material (SPEC §2.7, CKP-002).
§Field semantics
checkpoint: TheCheckpointbeing proposed for L1 anchoring (CKP-001).signer_bitmap/aggregate_signature/aggregate_pubkey: Who attested and the aggregated BLS proof over the checkpoint preimage (exact signing protocol is outside this crate; types match ATT-001 / ATT-004 patterns).score: Competition score, often populated fromCheckpoint::compute_score(CKP-004).submitter: Validator index in the epoch set who published this submission (CKP-002 implementation notes).submission_height/submission_coin: L1 observation metadata;Noneuntilrecord_submission.
Serialization: Serialize / Deserialize for bincode (SER-001).
Fields§
§checkpoint: CheckpointEpoch summary being submitted.
signer_bitmap: SignerBitmapWhich validators signed this submission (SignerBitmap, ATT-004).
aggregate_signature: SignatureAggregated BLS signature over the checkpoint commitment.
aggregate_pubkey: PublicKeyAggregated BLS public key corresponding to aggregate_signature.
score: u64Off-chain / protocol score used to compare competing submissions (CKP-004).
submitter: u32Index of the validator who broadcast this submission.
submission_height: Option<u32>L1 block height where the submission transaction was observed, once recorded (CKP-005).
submission_coin: Option<BytesImpl<32>>L1 coin ID for the submission transaction, once recorded (CKP-005).
Implementations§
Source§impl CheckpointSubmission
impl CheckpointSubmission
Sourcepub fn new(
checkpoint: Checkpoint,
signer_bitmap: SignerBitmap,
aggregate_signature: Signature,
aggregate_pubkey: PublicKey,
score: u64,
submitter: u32,
) -> CheckpointSubmission
pub fn new( checkpoint: Checkpoint, signer_bitmap: SignerBitmap, aggregate_signature: Signature, aggregate_pubkey: PublicKey, score: u64, submitter: u32, ) -> CheckpointSubmission
Build a submission with attestation material but no L1 inclusion data yet (CKP-002).
submission_height / submission_coin: Initialized to None; use Self::record_submission after L1
confirmation (CKP-005).
Sourcepub fn hash(&self) -> BytesImpl<32>
pub fn hash(&self) -> BytesImpl<32>
Delegates to Checkpoint::hash — canonical epoch-summary identity (CKP-005, HSH-002).
Sourcepub fn epoch(&self) -> u64
pub fn epoch(&self) -> u64
Epoch number from the wrapped Checkpoint (CKP-005).
Sourcepub fn signing_percentage(&self) -> u64
pub fn signing_percentage(&self) -> u64
Validator participation as an integer percent 0..=100 — delegates to SignerBitmap::signing_percentage (CKP-005, ATT-004).
Sourcepub fn meets_threshold(&self, threshold_pct: u64) -> bool
pub fn meets_threshold(&self, threshold_pct: u64) -> bool
true iff Self::signing_percentage >= threshold_pct (SignerBitmap::has_threshold, CKP-005).
Sourcepub fn record_submission(&mut self, height: u32, coin_id: BytesImpl<32>)
pub fn record_submission(&mut self, height: u32, coin_id: BytesImpl<32>)
Record L1 inclusion: block height and submission coin id (CKP-005).
Normative: Both fields become Some; Self::is_submitted becomes true because submission_height is set.
Sourcepub fn is_submitted(&self) -> bool
pub fn is_submitted(&self) -> bool
true once submission_height is Some (NORMATIVE § CKP-005).
Sourcepub fn to_bytes(&self) -> Vec<u8> ⓘ
pub fn to_bytes(&self) -> Vec<u8> ⓘ
Serialize submission (checkpoint + attestation material) to bincode bytes (SER-002).
Sourcepub fn from_bytes(bytes: &[u8]) -> Result<CheckpointSubmission, CheckpointError>
pub fn from_bytes(bytes: &[u8]) -> Result<CheckpointSubmission, CheckpointError>
Deserialize a submission from bincode bytes (SER-002).
Trait Implementations§
Source§impl Clone for CheckpointSubmission
impl Clone for CheckpointSubmission
Source§fn clone(&self) -> CheckpointSubmission
fn clone(&self) -> CheckpointSubmission
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for CheckpointSubmission
impl Debug for CheckpointSubmission
Source§impl<'de> Deserialize<'de> for CheckpointSubmission
impl<'de> Deserialize<'de> for CheckpointSubmission
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CheckpointSubmission, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CheckpointSubmission, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for CheckpointSubmission
impl Serialize for CheckpointSubmission
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Auto Trait Implementations§
impl Freeze for CheckpointSubmission
impl RefUnwindSafe for CheckpointSubmission
impl Send for CheckpointSubmission
impl Sync for CheckpointSubmission
impl Unpin for CheckpointSubmission
impl UnsafeUnpin for CheckpointSubmission
impl UnwindSafe for CheckpointSubmission
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<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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§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> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
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.