DAOs
Course 1 Chapter 6 and this course's own Chapter 3 both revisited "The DAO" — the specific 2016 project whose real reentrancy exploit is now a permanent part of blockchain history. This chapter covers a DAO as a general, ongoing organizational pattern — one that genuinely survived that disaster and is still actively used today, with its own real successes, real failures, and real, unresolved governance problems.
What a DAO Actually Is
A Decentralized Autonomous Organization (DAO) is an organization whose own governance rules — how decisions get made, and how its own treasury gets spent — are encoded directly in smart contracts, rather than run by a traditional board or management hierarchy. In practice, this almost always means token-weighted governance: members propose changes, and holders of the organization's own governance token (an ERC-20 token, per Course 1 Chapter 8, just used for voting rights rather than as a currency) vote on-chain, with voting power typically proportional to how many tokens each address holds.
MakerDAO: A Real, Established Example
MakerDAO, launched in December 2017, is one of the oldest and most significant real DAOs still operating today — its holders govern the real parameters behind DAI, a decentralized stablecoin, and the lending mechanisms that back it. Unlike the original 2016 DAO, MakerDAO has operated continuously for years, a real, concrete demonstration that the underlying pattern itself wasn't the problem in 2016 — a specific, exploitable piece of code was (Chapter 3).
ConstitutionDAO: A Real, Fully Documented Case Study
A genuinely different kind of DAO, and a real, complete story worth knowing in full — both for its remarkable success and its own honest, practical failure.
Multisig Treasuries: A More Robust Access-Control Pattern
A DAO's own treasury — potentially millions of dollars in pooled funds — is rarely
guarded by a single Chapter 3-style onlyOwner address. Instead, real DAOs almost
universally use a multisig wallet, requiring a real, defined threshold of
signatures (commonly written as "M-of-N," e.g. 4-of-7 trusted signers) before any transaction can
actually execute. Safe (formerly known as Gnosis Safe) is the real, dominant,
widely used multisig implementation on Ethereum today.
This is a direct, practical extension of Chapter 3's own access-control discussion: rather than trusting one single private key (a genuine single point of failure), a multisig spreads that trust across several independent keys, so no single compromised or malicious signer can move funds alone.
Real, Honest Legal Status
A DAO's actual legal status remains genuinely unclear in most jurisdictions worldwide — a DAO with no formal legal wrapper can, in some interpretations, functionally expose its own individual members to unlimited liability as an unincorporated general partnership, since there's no recognized corporate structure shielding them. Wyoming was the real, first U.S. state to address this directly, passing a law effective 1 July 2021 that legally recognizes DAOs organized as LLCs — with the American CryptoFed DAO receiving the first real, formal recognition under it. This remains a genuinely unsettled area of law almost everywhere else.
Real, Honest Governance Challenges
| Challenge | Why It's Real |
|---|---|
| Plutocracy | Token-weighted voting means influence concentrates wherever token holdings concentrate — the same dynamic Chapter 4's own DeFi coverage applies to money applies equally to governance power |
| Voter apathy | Many token holders simply don't vote on most real proposals, letting a small, active minority effectively decide outcomes for everyone |
| Legal exposure | Outside jurisdictions like Wyoming, members may carry real, unclear personal liability |
Hands-On Exercises
Three exercises applying this chapter's real DAO examples and governance critiques, before Chapter 7 turns to smart contract security vulnerabilities in full depth.
onlyOwner address — and name one real trade-off this added safety comes
with.
Quick Reference
- DAO — an organization governed by on-chain, token-weighted voting instead of a traditional board.
- MakerDAO — launched December 2017, governs the DAI stablecoin, a real, long-running counter-example to "DAOs are inherently unsafe."
- ConstitutionDAO — November 2021, raised $47M, lost the Constitution auction at $43.2M, then hit real gas-fee refund problems (some paying $70 in fees on $200 donations).
- Multisig (Safe/Gnosis Safe) — requires M-of-N signatures for a treasury transaction, spreading trust beyond a single key.
- Legal status — generally unclear worldwide; Wyoming's 1 July 2021 law was the real first US recognition of DAO LLCs.
- Real governance challenges — plutocracy (token-concentrated power) and voter apathy.