sendDkgAcks abstract method
Send a signed acknowledgement of a DKG.
When the DKG process has completed, each participant should send their own SignedDkgAck.
If the server sends a DkgAckRequestEvent, then the participant can send SignedDkgAcks that is owns for any participant.
The server will send a DkgAckEvent for ACKs it doesn't already own to participants except for the caller and the signer participant.
Implementation
Future<void> sendDkgAcks({
required SessionID sid,
required Set<SignedDkgAck> acks,
});