Party Protocol

  • Name: Party Protocol
  • URL: https://docs.partydao.org/
  • Category: group-coordination protocol / shared-account governance primitive / crowdfunded acquisition infrastructure / treasury-formation middleware
  • Tags: ethereum-ecosystem
  • Summary: Party Protocol is a shared Ethereum account wrapped in membership NFTs, proposal execution, distributions, and optional rage quit. The useful cut is control surfaces: hosts, execution-engine upgrades, voting-power assignment, and exit policy. Strong organizational primitive, not just another NFT crowdfund.
  • What it does:
    • Lets groups form onchain Parties that function as shared Ethereum accounts with members, inventory, and governance capabilities
    • Uses Party Cards (ERC-721 membership NFTs) to represent membership and explicit voting power inside each Party
    • Supports multiple crowdfund types that can bootstrap a Party for single-NFT purchases, collection purchases, auction bidding, rolling auctions, or simple ETH treasury formation
    • Allows manually seeded Parties as well as crowdfund-created Parties, so the protocol is not limited to one fundraising flow
    • Lets members create, vote on, and execute proposals that perform onchain actions from the Party account
    • Uses a separate ProposalExecutionEngine contract to define which proposal types are executable and whether actions like distributions require a vote
    • Supports pro-rata ETH / ERC-20 distributions to Party members through TokenDistributor, with optional fee recipients
    • Supports rage quit, where members burn Party Cards to withdraw a proportional share of fungible treasury assets when that feature is enabled
  • Key claims:
    • The official docs make the protocol’s core framing unusually explicit: a Party is “the core unit of the protocol” and functions like a “group Ethereum account.” That makes Party Protocol more analytically useful as shared-account middleware than as a generic social DAO product.
    • The two-phase structure matters. Official docs define a crowdfund phase followed by a governance phase, which means treasury formation and treasury control are intentionally separated but natively connected. This is a more specific mechanism than ordinary DAO tooling layered on top of an already-funded multisig.
    • The crowdfund docs show that Party is not one crowdfunding contract but a family of acquisition strategies: specific-NFT buys, collection buys, batch buys, auction bidding, rolling auction participation, and plain ETH treasury bootstrapping. That makes it a useful comparison point for collective-buy protocols and treasury-formation systems rather than only for governance apps.
    • The Party contract itself is doing several jobs that many stacks split apart: it holds ETH / NFTs / tokens, tracks voting power, manages proposal lifecycle, and also serves as the ERC-721 contract for Party Cards. This concentration is analytically important because governance, custody, and membership representation are bundled into one core contract.
    • The docs also make a second, opposite split explicit: proposal execution lives in an external upgradable ProposalExecutionEngine that the Party delegatecalls into. That means proposal semantics are not fully identical to Party membership or asset custody; they sit in a separate upgrade and policy surface.
    • Hosts are a crucial real-governance control plane. Official docs say Hosts can unilaterally veto proposals and configure rage quit. In some crowdfunds they also have privileged operational powers during the acquisition phase. So even when Party looks like member governance, practical authority can still sit with predefined trusted operators.
    • The governance lifecycle is more than simple token voting. Proposals can move through voting, passed, ready, in-progress, complete, or cancelled states; unanimous consent can bypass the execution delay; and only one in-progress proposal may execute at a time. This makes Party a useful comparison point for systems where execution serialization and operator safety matter as much as pass thresholds.
    • Rage quit is especially important because it gives Party a built-in minority-exit primitive that many NFT syndicates and shared-account systems lack. But the docs also note that rage quit must be enabled by a Host, so exit rights are configurable rather than fully unconditional.
    • TokenDistributor adds another analytically useful layer: Parties can turn treasury balances into pro-rata member claims while optionally routing fees to a fee recipient. That means Party is not just about collective purchase or voting; it also packages downstream cash-flow distribution in membership-weighted form.
    • Taken together, Party Protocol belongs in the active corpus because it clarifies a reusable organizational pattern that other systems often flatten together: collective formation, membership issuance, operational trustee powers, executable proposal logic, exit rights, and payout distribution all sit on distinct but composable rails.
  • Whitepaper: No canonical standalone whitepaper surfaced in this pass. The strongest primary materials were the official docs pages and the official protocol repository / README collected in ../whitepapers/party-protocol-primary-sources-2026-05-11.md.
  • Sources:

Internal linkages