mithril_signer/entities/
beacon_to_sign.rs1use chrono::{DateTime, Utc};
2
3use mithril_common::entities::{Epoch, SignedEntityType};
4
5#[derive(Debug, Clone, PartialEq)]
7pub struct BeaconToSign {
8 pub epoch: Epoch,
10
11 pub signed_entity_type: SignedEntityType,
13
14 pub initiated_at: DateTime<Utc>,
16}
17
18impl BeaconToSign {
19 pub fn new(
21 epoch: Epoch,
22 signed_entity_type: SignedEntityType,
23 initiated_at: DateTime<Utc>,
24 ) -> Self {
25 Self {
26 epoch,
27 signed_entity_type,
28 initiated_at,
29 }
30 }
31}