RFP-005: Multisig and Coordination - #113
Open
fryorcraken wants to merge 11 commits into
Open
Conversation
fryorcraken
commented
Aug 3, 2026
fryorcraken
added a commit
that referenced
this pull request
Aug 3, 2026
- Fresh code and architecture: drop 'hardens the sample app' framing; the PoC stays as prior art in Resources only - Add value-in-custody figures (Safe US$60B+, Squads US$15B+, 2026-08-03) - Remove unassigned references (A-multisig, LD-private-dao, SA-public-multisig, RD-chat); keep LP-0002 only - Execution requirement specifies the what: run any arbitrary program in the given LEZ - RFP is self-contained: no references to the appendix - Settle decisions: private-by-default with auditability/transparency options (public posture, view-key selective disclosure, zk proof-of-holding soft req); approvals flow through the E2EE room - Revisit quorum-model decision per LEZ shared-private-account (GMS) properties: N-of-N key semantics, no revocation, program/PDA vs group-account vs threshold-crypto vault options - Appendix: cite original sources instead of the research vault; add custody figures, LEZ shared-private-account properties and treasury auditability configurations
fryorcraken
commented
Aug 3, 2026
fryorcraken
added a commit
that referenced
this pull request
Aug 3, 2026
fryorcraken
commented
Aug 3, 2026
fryorcraken
commented
Aug 3, 2026
fryorcraken
commented
Aug 5, 2026
fryorcraken
commented
Aug 5, 2026
fryorcraken
commented
Aug 5, 2026
fryorcraken
commented
Aug 5, 2026
fryorcraken
commented
Aug 5, 2026
fryorcraken
commented
Aug 5, 2026
fryorcraken
added a commit
that referenced
this pull request
Aug 5, 2026
Strip implementation detail from the requirements, keeping them to what is needed rather than how to achieve it. F.3 restored to "any arbitrary program", F.7 and F.8 to the bare requirement, and the mechanism prose removed from F.2, F.4, F.6, R.2 and P.2. Express auditability per use case: a corporate treasury needs a narrow audience, a DAO a wider one, and members joining later need current evidence rather than a setup-time claim. Added ongoing assurance as a requirement and left the disclosure mechanism to the implementer. U.2 is a QML mini-app without forcing a C++ backend. Removed the marclawclaw research reference; it is a data dump rather than a citable source. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Add the Multisig and Coordination RFP and its ecosystem-behaviour appendix, and register RFP-005 in the README index. The appendix (facts and observations only, product angle) leads with a data inventory: the ten distinct data/metadata items a multisig involves, whether each could be private on LEZ, and what existing multisigs (Safe, Squads, ERC-4337, Bitcoin script, FROST) do with it. It then covers the LEE public/private account model, the quorum-privacy spectrum, coordination channels and what each leaks, roles/policies, composition, and hardware support. Sourced from the research-multisig-sovereign vault. The RFP hardens the existing public multisig sample app (logos-co/lez-multisig) into production, adds an end-to-end-encrypted per-multisig coordination room via the Logos chat module, and ends with three A/B/C decisions for review: privacy posture, coordination channel, and quorum-model baseline. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
- Fresh code and architecture: drop 'hardens the sample app' framing; the PoC stays as prior art in Resources only - Add value-in-custody figures (Safe US$60B+, Squads US$15B+, 2026-08-03) - Remove unassigned references (A-multisig, LD-private-dao, SA-public-multisig, RD-chat); keep LP-0002 only - Execution requirement specifies the what: run any arbitrary program in the given LEZ - RFP is self-contained: no references to the appendix - Settle decisions: private-by-default with auditability/transparency options (public posture, view-key selective disclosure, zk proof-of-holding soft req); approvals flow through the E2EE room - Revisit quorum-model decision per LEZ shared-private-account (GMS) properties: N-of-N key semantics, no revocation, program/PDA vs group-account vs threshold-crypto vault options - Appendix: cite original sources instead of the research vault; add custody figures, LEZ shared-private-account properties and treasury auditability configurations
Verified every platform claim against the LEZ codebase and corrected the document where it diverged from reality. Vault architecture: the settled baseline claimed k-of-N enforcement lives at the program layer over a GMS-derived shared account. It does not. A regular GMS-derived account carries no program binding, so any single holder can spend it without the multisig program being invoked; such a multisig would be advisory, not enforcing. The baseline is now a private PDA derived under the multisig program's ID, where the one-way program_owner latch means only that program's verified execution can decrease the balance. What was Option A is now the baseline; the GMS is demoted to coordination and viewing. Corrected against source: - Private throughput is ~4 tx/block, not one; ~220 KiB receipts make block size the binding constraint, and proving costs minutes per transaction client-side. - No clock is readable from the private path. F.2, F.7 and F.8 must be built on timestamp validity windows. - Proof of holding needs a second purpose-built circuit that does not exist; demoted to a soft requirement. - The account nonce is an nsk-keyed hash chain, so R.2 replay binding must live in program account data. - Added the private-account padding ceiling, the pre-initialisation window, and the third PDA binding path needed for vault funding. - F.3 constrained to statically declared call graphs. Resolved the custody contradiction: neither model is unambiguously better, so both now state what they cost. All-members custody forfeits F.6 execute separability; operator custody forfeits the no-trusted-coordinator property. LP-0002 is an open, unclaimed prize to build a private M-of-N multisig, not a delivered capability, and its anonymous-approval design differs from R.1's attributed approvals. Corrected the dependency reason and added it to Resources as design-space reading. Also flagged that the lez-multisig prior art is incompatible with private accounts. Retier to XL to match the sixteen deliverables across five disciplines, and drop the unfilled funding placeholder. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Strip implementation detail from the requirements, keeping them to what is needed rather than how to achieve it. F.3 restored to "any arbitrary program", F.7 and F.8 to the bare requirement, and the mechanism prose removed from F.2, F.4, F.6, R.2 and P.2. Express auditability per use case: a corporate treasury needs a narrow audience, a DAO a wider one, and members joining later need current evidence rather than a setup-time claim. Added ongoing assurance as a requirement and left the disclosure mechanism to the implementer. U.2 is a QML mini-app without forcing a C++ backend. Removed the marclawclaw research reference; it is a data dump rather than a citable source. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
U.6 claimed to be the primary mitigation for the signing-layer attack surface, contradicting the Risks section, which correctly names the Logos module model: the UI is installed and verified once rather than fetched from a remote server on every use. U.6 is a complement to that, not a replacement. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
The section had grown into a description of how LEZ works internally, which does not belong in an RFP. Reduced from 256 lines to a short list of the platform components a proposer must build on. State the components rather than their mechanics: LEZ private accounts, shared private accounts, the Logos chat module, and testnet compatibility. Using the chat module for the coordination room is now explicitly mandatory, and compatibility with Logos testnet 0.3 and 0.4 is stated here and in Supportability. Highlight the shared private account feature as something proposers must study and account for, noting only that it distributes custody rather than dividing it, without describing the derivation. Removed the corresponding internals from Decisions and Resources so the document no longer refers to mechanisms it no longer explains. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
The requirement to use LEZ, the Logos chat module, and to be compatible with Logos testnet 0.3 and 0.4 belongs in FURPS as testable supportability requirements, not in a prose section. Added as S.1 to S.3 and renumbered the rest. Platform Dependencies now carries only what is not a requirement: that no end-to-end multi-party authorisation flow exists on LEZ yet, and that shared private accounts are a feature proposers should study. Removed the Signing-layer trust risk. Its content is already covered by U.6 and the Overview. Also removed references orphaned by the deletion of Decisions for Review: the custody-model qualifier in Why This Matters, the pointer in Timeline Expectations, and the custody wording in F.6. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Also drop references to platform constraints the RFP no longer describes from the phased-proposal note. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Every other RFP gained this note on master. RFP-005 is new on this branch so the rebase did not bring it in; copied verbatim from a sibling RFP. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
fryorcraken
force-pushed
the
rfp/multisig
branch
from
August 5, 2026 05:24
071b7a0 to
c46ea9f
Compare
fryorcraken
marked this pull request as ready for review
August 5, 2026 05:24
The appendix was never run through mdformat, so CI failed on every push to this branch. Reformatting only: table column padding and link reflowing to the 80-column wrap. No content changes. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Collaborator
Author
|
Related: logos-co/ecosystem#121 |
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.
Fixes logos-co/ecosystem#121
Adds RFP-005 — Multisig and Coordination and its ecosystem-behaviour appendix.
What's here
RFPs/RFP-005-multisig-and-coordination.md— the RFP (tier L). Commissions afresh M-of-N multisig program for LEZ, private by default, with an
end-to-end-encrypted per-multisig coordination room built on the Logos chat
module. Deliverables also include an SDK, a QML mini-app, a CLI on the Logos
core headless framework, a SPEL IDL, and a registry for proposal code and
target programs.
appendix/multisig-coordination-ecosystem.md— facts-and-observationsappendix surveying Bitcoin, Ethereum, and Solana multisig behaviour. Leads
with a data inventory: the ten distinct data and metadata items a multisig
involves, whether each could be private on LEZ, and what Safe, Squads,
ERC-4337, Bitcoin script, FROST, and MuSig2 do with each. Supporting context
for reviewers; the RFP is self-contained and does not reference it.
README.md— RFP-005 registered in the index.Design posture
operator-selectable public posture, selective disclosure to a defined
audience, and ongoing assurance for parties joining later. Auditability needs
are framed per use case: a corporate treasury typically needs a narrow
audience, a DAO a wider one.
the collected approvals at execution rather than writing each approval
on-chain.
using private accounts, coordination room on the Logos chat module, and
compatibility with Logos testnet 0.3 and 0.4.
Notes
deliberately avoids describing LEZ internals, so applicants verify current
platform behaviour themselves rather than scoping against claims in this
document that could be wrong or go stale.
logos-co/lez-multisigis referenced as prior art only. Its architecture isincompatible with private accounts, so it is a reference for the public path
and does not drive design decisions here.
LP-0002only. That prize is open and unclaimed,and its anonymous-approval design differs from this RFP's attributed
approvals (R.1), so it is adjacent work rather than a foundation.
appendix as ecosystem context.
🤖 Generated with Claude Code