fix definitions after changes to ParticipantID

This commit is contained in:
Alfredo Garcia 2021-05-13 09:55:45 -03:00 committed by Deirdre Connolly
parent 6c3e8b3341
commit 63007330af
1 changed files with 5 additions and 3 deletions

View File

@ -11,9 +11,11 @@ Assuming all participants have a FROST library available we need to define messa
## Definitions
- `dealer` - Participant who distributes the initial package to all the other participants. The dealer can also be the aggregator and one of the signers.
- `aggregator` - Participant in charge of collecting all the signatures from the other participants and generating the final group signature. The aggregator can also be the dealer and one of the signers.
- `signer` - Participant that will receive the initial package, sign and send the signature to the aggregator to receive the final group signature. A signer can be also the dealer and the aggregator.
- `dealer` - Participant who distributes the initial package to all the other participants.
- `aggregator` - Participant in charge of collecting all the signatures from the other participants and generating the final group signature.
- `signer` - Participant that will receive the initial package, sign and send the signature to the aggregator to receive the final group signature.
Note: In this RFC we consider the above 3 participants to be different. `dealer` and `aggergator` have specific hard coded `ParticipantId`s so for example a `dealer` can't be a `signer`. This is not a protocol limitation but a specific rule introduced in this document.
## Guide-level explanation