pub trait FrostCoordinator {
    fn run_dkg_round(&mut self) -> PublicKey;
    fn sign_message(&mut self, message: &str) -> Signature;
}

Required Methods§

Implementors§