ποΈ How to Create a DAO How to Create a DAO
From an idea to a working DAO: decide what it votes on, set the rules, wire up the tools, and test before any real money moves.
A DAO is a community that runs itself by member votes and smart contracts instead of a boss. Building one is mostly a sequence of decisions, not code. Here is the order most teams follow.
-
1Define the purpose and the decisions
Start with what the group is for and exactly which decisions it will make together, such as how to spend a shared treasury. Form the DAO around a real community and a real decision, not the other way around.
If you cannot name a decision the group needs to vote on, it is too early for a DAO.
-
2Choose a voting model
Two common models. Token-based: one governance token equals one vote, which suits larger groups and adds sybil-resistance. Wallet or multisig-based: one authorized wallet equals one vote, which suits small groups. Many DAOs start wallet-based and migrate to tokens later.
-
3Set the voting parameters
Three numbers do most of the work: quorum (the minimum participation a vote needs to count), the pass threshold (a simple majority of 50%+ or a super-majority around 67%), and the voting duration (often about 7 days). Quorum set too high is a common cause of stalled DAOs.
-
4Design the proposal workflow
Decide how an idea becomes a vote: idea, then community discussion, then a formal vote. Give members a proposal template so every submission has a title, a description, the funding ask, specs, KPIs, and the team behind it.
-
5Pick the tool stack
Mix and match four pieces. Voting: Snapshot (off-chain and gasless, so members vote without spending gas), Tally (on-chain), or Aragon. Discussion: Discourse or Commonwealth. Access control: Guild or Collab.Land to gate who can join and vote.
Snapshot voting is free, which keeps casual members from being priced out of governance.
-
6Set up the treasury as a multisig
Hold the shared funds in a multisig wallet such as Safe, so money moves only when several approved signers agree. This removes the single-key risk of one person controlling everything.
-
7Create and distribute the governance token
Only if you chose the token model. Create the governance token, decide who receives it and how much, then connect it to the voting platform so balances translate into voting power.
-
8Run a low-stakes test vote
Before going live, run one small, harmless proposal through the whole system. A test vote confirms that proposals, voting, and the treasury connect correctly while a mistake still costs nothing.
-
9Consider a legal wrapper
Optional but increasingly common. A legal wrapper such as a Wyoming DAO LLC or a DUNA can limit membersβ personal liability and let the DAO sign contracts. Rules differ by jurisdiction, so talk to a lawyer about your situation rather than copying another DAO.
β οΈ Common mistakes & staying safe
- π Quorum set too high: nothing ever passes and the DAO stalls.
- π Whale dominance: in practice turnout is often below 10%, and a small group of large holders can control most of the vote.
- β‘ Flash-loan attacks: an attacker borrows tokens for one transaction to force a malicious vote through. A flash loan drained Beanstalk in 2022, and Mango Markets attackers voted themselves the treasury.
- π Single point of failure: never let one person hold the treasury keys; use a multisig committee.
- π© Reader caution: be wary of any βjoin our DAOβ pitch that is really a token sale with no real governance, no audit, an anonymous team, or promises of returns.
β FAQ
- Do I need a token to start a DAO?
- No. A small group can start wallet-based, where one authorized wallet equals one vote. Many DAOs begin that way and migrate to a token-based model as they grow and need sybil-resistance.
- Why run a test vote before going live?
- A low-stakes test vote checks that proposals, voting, and the treasury all work together before real funds are at stake. It surfaces broken settings, like a quorum set too high, while the cost of a mistake is still zero.
- What is a flash-loan governance attack?
- An attacker borrows a large amount of governance tokens for a single transaction, uses that temporary voting power to pass a malicious proposal, then repays the loan. Beanstalk was drained this way in 2022.
- Does a DAO need a legal entity?
- It is optional but increasingly common. Without a legal wrapper, members can face personal liability. A Wyoming DAO LLC or DUNA can limit that, but rules vary by jurisdiction, so consult a lawyer for your situation.