-
Notifications
You must be signed in to change notification settings - Fork 92
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
Interface for LocalCosigner #67
Conversation
Interface for threshold-signature
Add files via upload
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.
Great first pass! Creating the LocalThresholdSignatureImplementation (or similar) in a new file and moving the ThresholdEd25519Signature interface method implementations there will help cleanup the LocalCosigner file so that it will be more generic in application to either a "local" threshold ed25519 signature implementation, or a hardware implementation that will be added in the future.
Merge Upstream
Not the best work I have done but always a start :) |
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.
Almost there! Couple of modifications then should be good to go.
Please also remove the .DS_Store
files, would be good to add those to the .gitignore
. Also please add out/
to the .gitignore
Some update regarding mutex
To keep align with upstream main
To keep up with upstream main
Add logs for participating cosigners (strangelove-ventures#111)
Threshold parameter validation (strangelove-ventures#112)
Implementation and some "refactoring" in to have a Threshold interface. Will potentially enable/ease implementation for other LocalCosigners like HSM etc.