Coder Social home page Coder Social logo

2022-09-party's Introduction

Party DAO Contest Details

🚨🚨🚨🚨 The code and docs for this contest are located in a separate [PartyDAO Protocol Repo]. 🚨🚨🚨🚨

Resources

High-level Video Overview of the Protocol

Scoping Intake Details

  • Number of non-library contracts in scope: 46
  • Number of library dependencies: 1
  • Number of structs in scope: 34
  • Number of interfaces in scope: 15
  • Number of external calls: 4+
    • Seaport 1.1, Zora V1, Fractional V1, PartyBid V1 MarketWrappers, user-supplied arbitrary calls, arbitrary ERC20s and ERC721s.
  • Codebase uses mostly inheritance.
  • Total in-scope SLOC: 3995
  • No oracles used.
  • No unique curve logic or math models.
  • It is not an AMM.
  • It is not a fork of a popular project.
  • It does not use rollups.
  • It does not implement an ERC20 token.
  • Some contracts are NFTs (ERC721).
  • It relies on time-based logic.
  • It is not multi-chain.
  • It does not use a side-chain.
  • Preferred communication timezone: EDT or PDT

All-in-one command

Here's an example one-liner to immediately get started with the codebase. It will clone the project, build it, run every test, and display gas reports (except that the TS tests do not have a gas report since they only use waffle).

export FORK_URL='<your_alchemy_mainnet_url_goes_here>' && rm -Rf party-contracts-c4 || true && git clone https://github.com/PartyDAO/party-contracts-c4 && cd party-contracts-c4 && nvm install 16.0 && foundryup && forge install && yarn -D && yarn build:sol && yarn test:ts && yarn test:gas && forge test -m testFork --fork-url $FORK_URL --gas-report

Refer to the code repo README for targeted, individual test commands you can run.

Slither Issue

Note that slither does not seem to be working with the repo as-is 🤷, resulting in an enum type not found error:

slither.solc_parsing.exceptions.ParsingError: Type not found enum Crowdfund.CrowdfundLifecycle

Seems to be related to crytic/slither#1300, which will be included in the 0.8.4 release.

There's mixed success with running slither against individual files.

Code Repo Layout

docs/ # Start here
├── overview.md
├── crowdfund.md
└── governance.md
contracts/
│   # Used during the crowdfund phase
├── crowdfund/
│   ├── AuctionCrowdfund.sol
│   ├── BuyCrowdfund.sol
│   ├── CollectionBuyCrowdfund.sol
│   ├── CrowdfundFactory.sol
│   ├── Crowdfund.sol
│   └── CrowdfundNFT.sol
├── gatekeepers/
│   ├── AllowListGateKeeper.sol
│   └── TokenGateKeeper.sol
├── globals/
│   └── Globals.sol
│   # Used during the governance phase
├── party/
│   ├── Party.sol
│   ├── PartyFactory.sol
│   ├── PartyGovernance.sol
│   └── PartyGovernanceNFT.sol
├── proposals/
│   ├── ProposalExecutionEngine.sol
│   ├── ArbitraryCallsProposal.sol
│   ├── FractionalizeProposal.sol
│   ├── ListOnOpenseaProposal.sol
│   └── ListOnZoraProposal.sol
├── distribution/
│   └── TokenDistributor.sol
|   # Used to render crowdfund and governance NFTs
└── renderers/
    ├── CrowdfundNFTRenderer.sol
    └── PartyGovernanceNFTRenderer.sol
sol-tests/ # Foundry tests
tests/ # TS tests

Contest Scope

Files in scope

File SLOC Coverage
Contracts (20)
contracts/utils/EIP165.sol 11 0.00%
contracts/tokens/ERC1155Receiver.sol 15 0.00%
contracts/tokens/ERC721Receiver.sol 24 50.00%
contracts/utils/Proxy.sol 🖥 💰 👥 26 100.00%
contracts/utils/ReadOnlyDelegateCall.sol 👥 ♻️ 27 100.00%
contracts/party/Party.sol 💰 32 100.00%
contracts/party/PartyFactory.sol 🌀 40 80.00%
contracts/proposals/ProposalStorage.sol 🖥 👥 🧮 46 80.00%
contracts/proposals/FractionalizeProposal.sol 55 100.00%
contracts/globals/Globals.sol 59 35.71%
contracts/crowdfund/BuyCrowdfund.sol 💰 69 100.00%
contracts/crowdfund/CollectionBuyCrowdfund.sol 💰 82 100.00%
contracts/crowdfund/CrowdfundFactory.sol 💰 94 93.33%
contracts/crowdfund/CrowdfundNFT.sol 115 44.00%
contracts/party/PartyGovernanceNFT.sol 129 57.69%
contracts/proposals/ListOnZoraProposal.sol 🧮 ♻️ 151 100.00%
contracts/crowdfund/AuctionCrowdfund.sol 💰 👥 181 87.50%
contracts/proposals/ArbitraryCallsProposal.sol 🖥 🧮 186 96.36%
contracts/proposals/ProposalExecutionEngine.sol 🖥 🧮 192 86.44%
contracts/distribution/TokenDistributor.sol 🖥 💰 326 90.48%
Abstracts (5)
contracts/utils/Implementation.sol 🖥 21 -
contracts/crowdfund/BuyCrowdfundBase.sol 120 79.31%
contracts/proposals/ListOnOpenseaProposal.sol 🖥 282 97.75%
contracts/crowdfund/Crowdfund.sol 🖥 💰 339 77.36%
contracts/party/PartyGovernance.sol 🖥 💰 👥 🧮 783 71.43%
Libraries (6)
contracts/utils/LibAddress.sol 12 0.00%
contracts/utils/LibRawResult.sol 🖥 15 -
contracts/utils/LibSafeERC721.sol 19 0.00%
contracts/utils/LibERC20Compat.sol 🖥 26 0.00%
contracts/proposals/LibProposal.sol 34 0.00%
contracts/utils/LibSafeCast.sol 56 0.00%
Interfaces (15)
contracts/distribution/ITokenDistributorParty.sol 5 -
contracts/proposals/vendor/IOpenseaConduitController.sol 5 -
contracts/gatekeepers/IGateKeeper.sol 8 -
contracts/tokens/IERC721Receiver.sol 9 -
contracts/tokens/IERC20.sol 10 -
contracts/market-wrapper/IMarketWrapper.sol 16 -
contracts/party/IPartyFactory.sol 16 -
contracts/globals/IGlobals.sol 17 -
contracts/proposals/IProposalExecutionEngine.sol 17 -
contracts/tokens/IERC721.sol 17 -
contracts/proposals/vendor/FractionalV1.sol 23 -
contracts/vendor/markets/IZoraAuctionHouse.sol 💰 34 -
contracts/tokens/IERC1155.sol 39 -
contracts/distribution/ITokenDistributor.sol 💰 89 -
contracts/proposals/vendor/IOpenseaExchange.sol 💰 123 -
Total (over 46 files): 3995 76.54%

All other source contracts (not in scope)

File SLOC Coverage
Contracts (9)
contracts/gatekeepers/AllowListGateKeeper.sol 🖥 25 100.00%
contracts/gatekeepers/TokenGateKeeper.sol 32 100.00%
contracts/market-wrapper/FoundationMarketWrapper.sol 56 0.00%
contracts/market-wrapper/ZoraMarketWrapper.sol 74 0.00%
contracts/market-wrapper/NounsMarketWrapper.sol 76 0.00%
contracts/market-wrapper/KoansMarketWrapper.sol 77 0.00%
contracts/utils/PartyHelpers.sol 97 96.55%
contracts/renderers/CrowdfundNFTRenderer.sol 137 65.38%
contracts/renderers/PartyGovernanceNFTRenderer.sol 143 100.00%
Abstracts (4)
contracts/proposals/ZoraHelpers.sol 27 -
contracts/vendor/solmate/ERC20.sol 🧮 🔖 Σ 119 26.92%
contracts/vendor/solmate/ERC721.sol Σ 135 15.79%
contracts/vendor/solmate/ERC1155.sol Σ 162 18.18%
Libraries (3)
contracts/globals/LibGlobals.sol 25 -
contracts/utils/vendor/Base64.sol 🖥 41 100.00%
contracts/utils/vendor/Strings.sol 49 0.00%
Interfaces (4)
contracts/renderers/IERC721Renderer.sol 5 -
contracts/vendor/markets/IFoundationMarket.sol 💰 29 -
contracts/vendor/markets/INounsAuctionHouse.sol 💰 32 -
contracts/vendor/markets/IKoansAuctionHouse.sol 💰 37 -
Total (over 20 files): 1378 40.41%

External imports

Contracts For Further Context

Additional out-of-scope contracts that are either consumed by or referenced by the in-scope business logic:

  • Gatekeepers: Contracts that crowdfunds can optionally use to enforce who can participate in a crowdfund.
  • MarketWrappers: Wrappers to various NFT auction markets to provide a unified interface for the AuctionCrowdfund. Inherited from V1 of the protocol.
  • PartyBidV1: Prior iteration of the protocol. Only featured the crowdfunds phase. Historical and motivational context.

Lifecycle and Diagrams

At a high level, the typical business flow of the key contracts in this protocol goes like:

  1. Someone starts a crowdfund (AuctionCrowdfund, BuyCrowdfund, or CollectionBuyCrowdfund) to acquire an NFT (could be a specific one or any from a collection) and form a party around it.
    1. At creation time they also choose the (fixed) parameters for the governance phase, should they succeed.
    2. At creation time they also choose initial "party hosts" for the crowdfund, which have special powers that carry over to the governance phase.
  2. While the crowdfund is active (not expired or finalized), people can contribute ETH to the crowdfund.
    1. This mints each contributor a soulbound "participation NFT" as well.
    2. Contributors may also preemptively choose whom to delegate their voting power to if the party goes on to the governance phase.
  3. At any time while the crowdfund is active, someone can take an action on the crowdfund (depends on the crowdfund type) to attempt to purchase an NFT.
    1. This could be placing a bid on an auction market or executing arbitrary call data to outright buy a fixed price listing (e.g., on opensea).
  4. If the crowdfund fails to acquire an NFT before it expires, Anyone can burn a contributor's participation NFT to return their contributed ETH. That is the end of the lifecycle for that party. Stop here.
  5. If the crowdfund can successfully acquire the NFT before it expires, it transitions into governance phase.
  6. A "governance party" (Party) is deployed.
    1. The fixed governance parameters chosen when the crowdfund was created are used to initialize the party.
    2. The bought NFT is transferred into this party.
  7. Anyone can burn a contributor's participation NFT to:
    1. Refund any of the contributor's ETH that was not used to purchase the NFT.
    2. Mint voting power for the contributor in the governance party equal to the amount of their ETH that was used.
      1. This voting power is tokenized as a transferrable NFT ("governance NFT").
      2. If an initial delegate was chosen (other then themselves), the voting power will also be delegated at this time.
  8. The governance party now has the purchased NFT (called "precious") and users with effective voting power can make, vote, and execute proposals through governance.
    1. Party hosts (inherited from the crowdfund phase) can unilaterally veto any proposal made.
    2. Snapshots of voting power are taken whenever a user's voting power or delegation is updated to make sure only voting power at the time a proposal is made is used in voting.
  9. When a proposal passes and is executed, the governance party will delegatecall into the ProposalExecutionEngine logic contract which decodes and executes the proposal.
    1. Some proposal types are non-atomic, multi-step, requiring repeated executions. No other proposal may be executed while another proposal is incomplete.
  10. If any ETH or ERC20s accrue in the party, anyone with effective voting power can trigger a "distribution".
    1. This moves all of the chosen asset (ETH or ERC20) into the canonical TokenDistributor contract and creates a distribution within it.
    2. Anyone with a governance NFT in that party can redeem their share of the asset distribution.
      1. Distribution share for a governance NFT is generally equal to its individual voting power over the total voting power of the party.

image

Here's an abbreviated inheritance graph of the major contracts in the protocol (leaf nodes are deployable):

                              ┌─────►AuctionCrowdfund
                              │
CrowdfundNFT─────►Crowdfund───┤                           ┌─────►BuyCrowdfund
                              │                           │
                              └─────►BuyCrowdfundBase─────┤
                                                          │
                                                          └─────►CollectionBuyCrowdfund



PartyGovernance──────►PartyGovernanceNFT──────►Party




ListOnOpenseaProposal────┐
                         │
ListOnZoraProposal───────┤
                         ├─────►ProposalExecutionEngine
FractionalizeProposal────┤
                         │
ArbitraryCallsProposal───┘

For deeper details, visit the Protocol Documentation.

Areas of Concern / Unique Approaches

Dependencies on External Protocols

Throughout both phases of the product (crowdfund and governance), we rely heavily on external protocols. It's critical that our integrations with them are correct. The governance proposal contracts (ListOnOpenseaProposal, ListOnZoraProposal, ListOnFractionalProposal) are areas of highest concern because a bad integration there can either cause the loss of an NFT held by the party or can brick the party until the proposal can be canceled.

delegatecall's on the ProposalExecutionEngine

The ProposalExecutionEngine implements all the logic with parsing and executing proposals passed by PartyGovernance. In addition to this it is stateful, reading and writing to storage slots shared with PartyGovernance and also utilizing its own "private" storage slots. Low-level storage operations are used to ensure these regions of storage are predictable and do not overlap.

Unconventional Reentrancy Guards

To save gas, we do not use traditional reentrancy guard modifiers anywhere in our protocol. Instead, we try to make use of some existing state variables already being touched to prevent reentrancy. That, or we simply allow reentrancy in places that we've decided are low-risk. These assumptions should be tested.

Voting Power Accounting

The PartyGovernance contract creates a record of voting power for members of the party (and delegates) every time a governance NFT is moved or delegation is changed. We search these records during voting to ensure members cannot game proposals by voting with voting power earned after voting begins. It's important to have high confidence in this accounting logic to ensure malicious proposals cannot be passed without consensus.

Ruggability by Governance

A major goal that runs through the protocol design is to protect governance parties from unfairly losing the NFT they formed the party around. We call these NFTs "preciouses," and we have logic that restricts the way parties can interact with these NFTs to prevent them from being moved, or having the potential to be moved, without passing a rigorous (sometimes unanimous) governance process. For example, to list a precious NFT for sale on Opensea, it must first go through a Zora auction to mitigate a malicious whale with voting power from listing it for far below floor price and buying it themselves. We want to be sure these safeguards are effective for the majority of NFTs.

TokenDistributor

The TokenDistributor is a single, canonical contract that's used across all governance parties. It custodies any ETH or ERC20 that a party transfers into it when creating a distribution. As such, it is a major honeypot for potential exploits. Also, anyone (not just official governance parties) can create a distribution on the TokenDistributor, and the creator of a distribution can dictate how funds within that distribution are split. Because of these properties, funds from each distribution must be isolated from the other (no distribution can transfer more than their initial deposit).

Multi-Step Proposals

There are some proposals that can take multiple executions to complete (eg. ListOnZoraProposal), as opposed to proposals that are completed in one transaction like it commonly works in other governance implementations. While a multi-step proposal is in progress, no other proposals can be executed until it is finished. There is support for canceling proposals should they get "stuck" for any reason.

Off-Chain Storage

The off-chain storage pattern is used across almost all contracts to drastically reduce the gas costs involved in reading/writing storage. We verify the data coming off-chain is correct by checking it against an on-chain hash of the data we expect.

Storage Buckets

The explicit storage buckets pattern is used in both the PartyGovernance and ProposalExecutionEngine implementation. Instead of relying on the compiler to assign/access these storage buckets, we manually define pointers that explicitly map to the storage slot of our choosing that does not overlap with any automatically assigned slot.

Read-Only Delegate Calls

In places where we want to make sure delegateCalling does not alter state (is read-only), we use a custom _readOnlyDelegateCall() function. It works by delegateCallinging on a contract but always reverting with the return data than using a try/catch statement to bubble up the result to return.

Unconventional Reinitialization Guards

We do not use any explicit state to indicate that a proxified contract has been initialized before (to prevent re-initialization attacks). Because all our initialization logic runs inside constructors, we simply check that our address has no code in it.

Upgradeability Risks

There are two different upgrade models at play in the protocol. One is through the Global registry contract, which other contracts will use to look up the latest instance (address) of a contract. Often this is done just-in-time, such as looking up the PartyFactory when a crowdfund has won and is transitioning to the governance phase. This registry is also used to look up the latest implementation contract for Proxy instances when deploying new crowdfunds or governance parties. The PartyDAO multisig (which controls the Globals contract) has the ability to unilaterally change the addresses pointed to in these cases. The other upgrade mechanism is voluntary, occuring when a governance party passes a proposal to upgrade its ProposalExecutionEngine implementation to the latest version (also looked up in Globals). In either case, publishing a contract that is not backwards compatible with existing crowdfund and governance instances can brick them.

Known Issues / Topics

  • It is possible that someone could manipulate parties by contributing ETH and then buying their NFT that they own. This is known and not considered a bug or a valid finding by the team.
  • For PartyBuy and PartyCollectionBuy crowdfunds, the contract allows arbitrary calls via the buy() method to buy the NFT and check if the NFT is owned by the contract at the end. A potential attack here happens if the crowdfund raises more than the buy price (or if the seller reduces the price). An attacker can then write a contract that when called with the crowdfunds entire ETH balance, buys the NFT for less and sends it to the crowdfund contract, then sends the remaining ETH to the attacker. This behavior exists in V1 as well. In V1, we used an allow list to help mitigate. The issue with this is that a motivated actor could still buy the original listing and create a new one on an allowed target then trigger the party to buy() that one instead at a higher price, pocketing the difference. We have made peace with this issue and accepted the risk, but the team is open to new solutions.
    • PartyCollectionBuy will be much less likely to be affected by this since only a host may call buy().
    • On the frontend, we have thought about notifying contributors whose contribution would push the crowdfund above the buy price to reduce their contribution. Another solution is to cap contributions to maximumPrice, but we'd prefer to do this on the frontend.
  • For PartyBid crowdfunds, in the case that a party did not bid at all on the NFT in the auction yet still (somehow) manages to acquire the NFT before finalize() is called, all contributions to the crowdfund are considered used so that everyone who contributed wins but no contributions will be refunded back. The ETH contribution would stay in the crowdfund and not be transferred over to the created Party instance, effectively burned. The crowdfund could transfer over contributions to the created Party to distribute() back (refunding it) but this introduces the possibility for someone to make a last minute contribution before finalize() is called to boost their voting power at no cost because they could get back all their contributions. This is a rare and atypical enough case that we feel comfortable leaving this behavior alone.
  • In _settleZoraAuction() in ListOnZoraProposal, a try/catch statement is used to get the state of an auction. If the endAuction() call fails but returns an "Auction doesn't exit" we take this as meaning someone else had called endAuction() before we did, ending the auction and emitting a ZoraAuctionSold event. There is a possibility that a safeTransferFrom() call in Zora's endAuction() reverts at onERC721Received() with a "Auction doesn't exit" to trick the party into completing the proposal even though the auction wasn't settled. However, the party still has the NFT and can just list it elsewhere. This is a known grief and, unless there can be more serious implications, we do not consider it a valid finding.
  • If a party were to list a malicious NFT (eg. reverts on transfer after listing), somewhere along the way it may break the proposal flow and put the party in a stuck state until cancelDelay is reached. While it is annoying, we do not consider it serious because (1) the proposal can always be canceled and (2) it is unlikely a malicious NFT will have a market.
  • By controlling the Globals registry contract, it’s understood that the PartyDAO multisig has a lot of power over the protocol and could cause harm in various ways by updating the Globals contract maliciously or incorrectly. On top of this, there are emergency admin recovery functions on governance parties and the token distributor callable by the multisig that can execute arbitrary bytecode, though party hosts can disable them on governance parties.
  • Party hosts have unilateral veto power on any proposal. Hosts can essentially block a governance party in this way. Therefore crowdfunds must be extremely careful with their host selection. We accept these risks, given that the PartyDAO multisig is comprised of several different members, all of whom have signed legal agreements to abide by the DAO's governance system.
  • Because voting power is represented by governance NFTs proportional to their (used) crowdfund contribution, it limits the ways voting power can be distributed across party members. The lack of quorum or "no" votes can amplify this situation. For example, if someone contributed 51% of the ETH to a crowdfund and the passing threshold for that governance party is also 51%, whoever holds that governance NFT will always be able to pass proposals unless a host vetoes them.
  • Canceling an InProgress proposal (mid-step) can leave the governance party in a vulnerable or undesirable state because there is no cleanup logic run during a cancel. For example, if a party cancels a Zora proposal while the Zora auction is active, the party will no longer possess the NFT (because Zora is custodial), and must either wait for the auction to conclude or execute an arbitrary call to cancel the action (directly on Zora) in order to retrieve it.

License

This code is provided under the Beta Software License Agreement.

2022-09-party's People

Contributors

merklejerk avatar kartoonjoy avatar 0xble avatar illilli000 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.