Entity
An entity is a Wyoming DAO LLC registered with the Wyoming Secretary of State and operated through Orgs. Every entity has:- A DID (
did:oas:wy:llc:xxxx) — cryptographically anchored, offline-verifiable. - Articles of Organization — filed with Wyoming SOS.
- An EIN — obtained from the IRS.
- A constitution — the YAML governance document.
- An Operating Agreement — the binding contract between members.
- A treasury — USD + on-chain balances with policy enforcement.
- An audit chain — append-only, BLAKE3-hashed, 7-year retention.
Constitution
The constitution is a YAML document that encodes:- Governance parameters: quorum, voting threshold, amendment threshold, dissolution threshold, voting period
- Treasury policy: daily spend limit, reserve minimum, per-counterparty caps, human-gate thresholds
- Members: each with a DID, role (founder, member, algorithmic), and permissions
- Escalation: contact humans for statutorily-reserved actions
Proposal
A proposal is a formal request to change the state of the entity. Kinds:spend— transfer USD or crypto to a recipientmembership— add or remove a memberamend— change the constitutioncustom— arbitrary action recorded in audit trail
draft → voting → approved/rejected → executed. Each state transition writes to the audit chain and is governed by the constitution.
Member
A member is any entity recognized in the constitution. Members can be:- Human — identified by their OAS DID, backed by a personal key
- Algorithmic — an autonomous agent with its own DID and Arsenal Capability Token
- Delegated — a member with proxy-voting authority from another member
Treasury
The treasury is the entity’s financial position: USD balances across bank accounts, on-chain balances across wallets, and fixed-income positions (Treasury bills, for example). Every disbursement from the treasury passes through six gates:- Escalation — constitution read; human gate if required
- Balance — available covers requested
- Daily limit — today’s spend + requested ≤ daily_spend_limit_usd
- Reserve — post-spend ≥ reserve_minimum_usd
- Counterparty — per-recipient cap respected
- Chain confirmation — transaction confirmed before local state updates