mithril_aggregator/services/signer_registration/
api.rs1use async_trait::async_trait;
2
3use mithril_common::{
4 entities::{Epoch, Signer, SignerWithStake, StakeDistribution},
5 StdResult,
6};
7
8use super::SignerRegistrationError;
9
10#[derive(Debug, Clone, PartialEq, Eq)]
12pub struct SignerRegistrationRound {
13 pub epoch: Epoch,
15
16 pub(super) stake_distribution: StakeDistribution,
18}
19
20#[cfg(test)]
21impl SignerRegistrationRound {
22 pub(crate) fn dummy(epoch: Epoch, stake_distribution: StakeDistribution) -> Self {
23 Self {
24 epoch,
25 stake_distribution,
26 }
27 }
28}
29
30#[cfg_attr(test, mockall::automock)]
32#[async_trait]
33pub trait SignerRegisterer: Sync + Send {
34 async fn register_signer(
36 &self,
37 epoch: Epoch,
38 signer: &Signer,
39 ) -> Result<SignerWithStake, SignerRegistrationError>;
40
41 async fn get_current_round(&self) -> Option<SignerRegistrationRound>;
43}
44
45#[cfg_attr(test, mockall::automock)]
47#[async_trait]
48pub trait SignerSynchronizer: Sync + Send {
49 async fn can_synchronize_signers(&self, epoch: Epoch) -> Result<bool, SignerRegistrationError>;
51
52 async fn synchronize_all_signers(&self) -> Result<(), SignerRegistrationError>;
54}
55
56#[cfg_attr(test, mockall::automock)]
58#[async_trait]
59pub trait SignerRegistrationRoundOpener: Sync + Send {
60 async fn open_registration_round(
62 &self,
63 registration_epoch: Epoch,
64 stake_distribution: StakeDistribution,
65 ) -> StdResult<()>;
66
67 async fn close_registration_round(&self) -> StdResult<()>;
69}
70
71#[cfg_attr(test, mockall::automock)]
73#[async_trait]
74pub trait SignerRecorder: Sync + Send {
75 async fn record_signer_registration(&self, signer_id: String) -> StdResult<()>;
77}
78
79#[cfg_attr(test, mockall::automock)]
81#[async_trait]
82pub trait SignerRegistrationVerifier: Send + Sync {
83 async fn verify(
85 &self,
86 signer: &Signer,
87 stake_distribution: &StakeDistribution,
88 ) -> StdResult<SignerWithStake>;
89}