-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: multichain key generation and resharing #313
Conversation
Terraform Feature Environment (dev-313)Terraform Initialization ⚙️
|
cb8ddbf
to
dd6ad3a
Compare
dd6ad3a
to
ad1eeb6
Compare
95e45d5
to
bb3e0e0
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's merge this and iterate. Awesome work @itegulov!
904994c
to
7b33260
Compare
Terraform Feature Environment Destroy (dev-313)Terraform Initialization ⚙️
|
This PR creates a separate crate that implement key generation and resharing based on cait-sith.
High-level overview
contract
crate:node
crate:web
module is the communication API between nodes (to be replaced by a full connectivity mesh over TCP in the future)protocol
module is the meat of potatoes of the PR containing the consensus + cryptographic layerstate
contains models representing all the possible states of the nodecryptography
contains a trait regulating how state can progress its cryptographic protocol (cait-sith)consensus
contains a trait regulating how state should advance according to the consensus state (fetched from the contract)message
is a way to consume and store p2p messages until they are needed forcryptography
layer