Solution: LP-0002 — Private M-of-N Multisig#87
Open
retraca wants to merge 6 commits into
Open
Conversation
✅ Validation passedA reviewer will assess against the prize criteria. Automated check. See solution template and TERMS. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
RISC0-based private M-of-N multisig primitive for LEZ.
Implementation: https://github.com/retraca/lp-0002-private-multisig
Members register voting commitments (
SHA256("member" || nsk || multisig_id)). Voting generates a RISC0 receipt proving nsk knowledge without revealing which member voted. The on-chain program counts valid receipts and gates execution at threshold M.Key design decisions:
member_set_root = SHA256(c0 || ... || cN)in the journal — proves set membership without identifying the voternullifier = SHA256("multisig/v1/vote" || nsk || proposal_id || multisig_id)— prevents double-voting per proposalinitialize,submit_proposal,vote,execute; error codes 6001–6011See
solutions/LP-0002.mdfor the full write-up, success criteria checklist, FURPS self-assessment, and terms acknowledgment.