EVMTools

What is a DAO?

Learn what DAOs are, how decentralized governance works with tokens and voting, famous DAOs, DAO types, tools, and legal considerations.

A DAO (Decentralized Autonomous Organization) is an internet-native organization governed by its members through transparent rules encoded in smart contracts. Instead of a CEO and board of directors, DAOs use token-based voting to make collective decisions about treasury management, protocol upgrades, and organizational strategy. This guide explains how DAOs work, the different types, famous examples, governance tools, and the legal landscape surrounding decentralized organizations.

What is a DAO?

A Decentralized Autonomous Organization is a community-led entity with no central authority. It is fully owned and managed by its members, with rules enforced by smart contracts on a blockchain. The key properties that define a DAO are:

  • Decentralized: No single person or small group has unilateral control. Power is distributed among token holders.
  • Autonomous: Core rules are encoded in smart contracts that execute automatically. A passed proposal can trigger on-chain actions without manual intervention.
  • Transparent: All proposals, votes, and treasury transactions are publicly visible on the blockchain. Anyone can audit how funds are spent.
  • Permissionless: Anyone can acquire governance tokens and participate in decision-making. No approval or membership application needed.

How DAOs Work: The Governance Process

Most DAOs follow a structured governance process that moves from informal discussion to binding on-chain execution:

DAO Governance Lifecycle:

1. Forum Discussion
   └── Community member posts idea on governance forum (Discourse)
   └── Open discussion, feedback, and iteration

2. Temperature Check (off-chain)
   └── Snapshot poll to gauge community sentiment
   └── No gas fees, signature-based voting
   └── Typically 3-5 day voting period

3. Formal Proposal (on-chain)
   └── Proposal submitted to Governor contract
   └── Requires minimum token threshold (e.g., 10,000 UNI to propose)
   └── Includes executable code (calldata) for on-chain actions

4. Voting Period
   └── Token holders cast votes: For / Against / Abstain
   └── Typically 5-7 day voting window
   └── Votes weighted by token holdings (1 token = 1 vote)

5. Timelock
   └── Passed proposals enter a delay period (24-48 hours)
   └── Allows community to react if something is wrong
   └── Security mechanism against governance attacks

6. Execution
   └── Smart contract automatically executes the proposal
   └── Treasury transfers, parameter changes, contract upgrades

Governance Tokens

Governance tokens are ERC-20 tokens that represent voting power within a DAO. Holding more tokens means more votes. Most governance tokens also support delegation — you can delegate your voting power to another address without transferring the tokens themselves. This allows passive holders to have their votes counted by active community members (delegates).

Voting Mechanisms

DAOs use several voting models:

  • Token-weighted voting: 1 token = 1 vote. Simple but can concentrate power in large holders (whales).
  • Quadratic voting: Voting power scales with the square root of tokens, reducing whale influence. 100 tokens = 10 votes, not 100.
  • Conviction voting: Votes accumulate strength over time. The longer you support a proposal, the stronger your vote becomes.
  • Optimistic governance: Proposals pass automatically unless vetoed. Reduces governance overhead for routine decisions.

Types of DAOs

DAOs have evolved into several distinct categories, each serving a different purpose:

DAO TypePurposeExamples
Protocol DAOGovern a DeFi protocol or networkUniswap, Aave, Compound, MakerDAO
Investment DAOPool capital for collective investingThe LAO, MetaCartel Ventures, BitDAO
Grant DAOFund public goods and ecosystem developmentGitcoin, Moloch DAO, Optimism RetroPGF
Social DAOCommunity membership and coordinationFriends With Benefits, Developer DAO
Collector DAOCollectively acquire assets (NFTs, art)PleasrDAO, FlamingoDAO, ConstitutionDAO
Service DAOProvide services (development, auditing)RaidGuild, DXdao, LexDAO

Famous DAOs and Their Impact

MakerDAO

MakerDAO governs the Maker Protocol, which issues the DAI stablecoin. MKR token holders vote on critical parameters like collateral types, stability fees (interest rates), and risk parameters. MakerDAO manages one of the largest DeFi treasuries and has been operating since 2017, making it one of the longest-running DAOs.

Uniswap DAO

The Uniswap DAO governs the largest decentralized exchange. UNI token holders control the protocol's treasury (worth billions), vote on fee switches, and approve protocol upgrades. Notable decisions include the deployment to new chains and the activation of protocol fee sharing.

Aave DAO

Aave's DAO manages the leading lending protocol. AAVE holders vote on risk parameters, new asset listings, and protocol upgrades. The Aave governance process is one of the most active in DeFi, with multiple proposals passing each month.

ENS DAO

The Ethereum Name Service DAO governs the .eth domain name system. ENS airdropped governance tokens to all .eth domain holders in November 2021, creating one of the largest and most diverse DAOs. The DAO manages protocol revenue, sets pricing policies, and funds ecosystem development.

ConstitutionDAO (historic)

In November 2021, ConstitutionDAO raised $47 million in ETH within a week to bid on a rare copy of the US Constitution at Sotheby's. Although it lost the auction, ConstitutionDAO demonstrated how DAOs can rapidly coordinate large-scale collective action with complete transparency.

DAO Governance Tools

Several tools power DAO governance infrastructure:

ToolTypeDescription
SnapshotOff-chain votingGasless voting via signed messages. Most popular off-chain governance tool.
TallyOn-chain governanceInterface for on-chain Governor contracts. Proposal creation, voting, and delegation.
OpenZeppelin GovernorSmart contractBattle-tested governance contract framework. Used by most major DAOs.
Safe (Gnosis Safe)Treasury managementMulti-signature wallet for DAO treasury. Requires multiple approvals for transactions.
DiscourseForumGovernance forum for proposal discussion and community deliberation.
AragonDAO frameworkComplete toolkit for DAO creation, governance, and treasury management.

Challenges and Risks of DAOs

Voter Apathy

Most DAOs struggle with low voter participation. Typical turnout is 5–15% of eligible tokens. Many token holders acquired tokens for speculation, not governance. Delegation helps, but finding committed delegates remains a challenge.

Plutocracy Risk

Token-weighted voting means large holders (whales) can dominate decisions. A single address with millions of tokens can outvote thousands of smaller holders. Quadratic voting and reputation-based systems aim to address this, but no perfect solution exists yet.

Governance Attacks

Malicious actors can accumulate tokens (or use flash loans) to pass harmful proposals. The Beanstalk governance attack in 2022 used a flash loan to acquire enough tokens to drain $182 million. Timelocks, quorum requirements, and vote escrow mechanisms provide defense layers.

Legal Uncertainty

Most jurisdictions lack clear legal frameworks for DAOs. Without a legal wrapper, DAO members may be treated as a general partnership with unlimited personal liability. States like Wyoming and countries like the Marshall Islands are creating DAO-specific legislation, but global legal clarity is still years away.

Coordination Overhead

Decentralized decision-making is inherently slower than centralized leadership. A simple parameter change that a CEO could approve in minutes may take weeks through a DAO governance process (discussion, vote, timelock, execution). Some DAOs address this by using sub-committees or working groups with delegated authority.

Tip: Before joining a DAO, read its constitution or governance documentation. Understand the proposal threshold, voting period, quorum requirements, and timelock delay. Check voter participation history on tools like Tally or Snapshot.

How to Create a DAO

Building a DAO involves several steps:

  1. Define the mission: Clearly articulate the DAO's purpose, scope, and goals. A DAO needs a compelling reason for people to contribute governance attention.
  2. Choose a governance framework: Use OpenZeppelin Governor contracts for on-chain governance. Configure voting delay, voting period, proposal threshold, and quorum percentage.
  3. Deploy the governance token: Create an ERC-20 token with ERC20Votes extension for on-chain voting and delegation. Carefully design the token distribution to ensure broad participation.
  4. Set up treasury management: Deploy a Safe (multi-sig) to hold the DAO treasury. Configure the Governor to control the Safe.
  5. Establish communication: Set up a governance forum (Discourse), connect Snapshot for off-chain polls, and create community channels (Discord).
  6. Consider legal structure: Consult a crypto-native legal firm about wrapping the DAO in a legal entity to limit member liability.

Frequently Asked Questions

How do I join a DAO?

Most DAOs are open to anyone. To participate in governance, you typically need to acquire the DAO's governance token on a decentralized exchange like Uniswap, or sometimes earn tokens through protocol participation. Once you hold tokens, you can vote on proposals, join forum discussions, and submit your own proposals. Many DAOs also welcome non-token-holder contributions through grants and bounties.

Are DAOs legal?

The legal status of DAOs varies by jurisdiction and is still evolving. Wyoming became the first US state to recognize DAOs as legal entities in 2021. Some DAOs operate as unincorporated associations, while others wrap their operations in a legal entity like a foundation (Cayman Islands, Switzerland) or an LLC. Without a legal wrapper, DAO members may face unlimited personal liability.

What is the difference between a DAO and a regular company?

A traditional company has a hierarchical structure with executives making decisions, shareholders having limited voting rights, and operations being opaque. A DAO is flat: governance power is distributed among all token holders, all financial transactions are transparent on-chain, smart contracts enforce rules automatically, and participation is permissionless. However, DAOs can be slower to make decisions and may struggle with coordination at scale.

Can DAOs be hacked?

Yes. The most famous example is "The DAO" hack in 2016, where an attacker exploited a reentrancy vulnerability to drain $60 million in ETH. Modern DAOs use extensively audited governance contracts (like OpenZeppelin Governor), timelocks that delay execution of passed proposals, and multi-sig safeguards. However, governance attacks remain a risk for DAOs with low voter participation.

What are governance tokens?

Governance tokens are ERC-20 tokens that grant voting power in a DAO. One token typically equals one vote, though some DAOs use quadratic voting or other mechanisms. Examples include UNI (Uniswap), AAVE (Aave), COMP (Compound), and MKR (MakerDAO). Governance tokens can also represent a claim on the DAO's treasury or future revenue, making them both governance instruments and financial assets.

Explore DAO Building Blocks

Understand the technology behind DAOs. Use our ABI Encoder to inspect governance contract calls, or the Keccak256 Hash Generator to verify proposal hashes. Learn about the ERC-20 standard that powers governance tokens.

Related Guides