DAOs on TON: Voting, Governance, and Frameworks 2026
What DAOs actually exist in the TON ecosystem, how voting works without an Aragon-style framework, off-chain Snapshot vs on-chain execution, and how to participate in governance.
- Author
- TON Adoption Team · research desk
- Published
Contents10sections
- What a DAO is and why a project needs one
- Why TON has no Aragon analogue
- DAOs that already exist on TON
- Voting models in use
- Off-chain vs on-chain in detail
- TON vs EVM governance stack
- How to participate as a regular user
- Where DAOs break: lessons from EVM history
- What to expect from TON governance over the next year
- Conclusion
A DAO — Decentralized Autonomous Organization — is a governance model where decisions are made by token holders or community members rather than a centralized team. On Ethereum the stack matured over a decade: Aragon, Compound Governor, OpenZeppelin Governor, Tally, Snapshot, Boardroom. On TON in 2026 the picture is fundamentally different — there is no single mature DAO framework that everyone uses.
That does not mean DAOs on TON do not exist. They do, but they are wired differently: usually off-chain Snapshot-style voting executed through a multi-sig, occasionally a hand-rolled Tact or FunC contract for a specific case. This guide unpacks which models work, who is already voting, and how to participate.
What a DAO is and why a project needs one
A minimal DAO has five moving parts:
- Voting rights — who can vote (token holders, SBT owners, KYC-verified members).
- Proposals — a formal procedure to put a question on the ballot.
- Quorum and threshold — the minimum participation and the share of “yes” votes needed.
- Execution — how an approved proposal becomes an action (a transfer, a parameter change, a proxy upgrade).
- Transparency — every step must be auditable.
The point of a DAO is to reduce trust in the team, give the community a legitimate influence channel, and distribute responsibility. In practice most DAOs even on EVM operate as advisory — voting is recommendation, the core team still ships.
Why TON has no Aragon analogue
There are architectural and cultural reasons:
- Asynchronous messages. Aragon on EVM relies on synchronous execution: “vote ends, then proposal executes in the same transaction.” On TON DAO logic is split across many messages, which requires a different design pattern.
- Ecosystem youth. Active DeFi development on TON only really started in 2022–2023. Three years is not enough for a universal stack to settle.
- A strong TON Foundation. Decisions that an EVM project would hand to a DAO are often kept in the foundation on TON — that is faster but less decentralized.
- Off-chain pragmatism. Many teams decide that Snapshot plus a multi-sig covers 90% of the real need at 10% of the effort, and skip a full on-chain governance build.
DAOs that already exist on TON
Despite the missing framework, several DAO initiatives are running in production:
- STON.fi DAO. STON token holders vote on protocol parameters: new pool listings, revenue distribution, router upgrades. Mix of off-chain and on-chain voting contracts.
- TON Society contributor voting. Inside TON Society, holders of specific SBT badges can vote on grant distribution, hackathon winners, and ecosystem program priorities.
- EVAA Protocol governance. Token holders vote on lending risk parameters (LTV, rates, new collateral listings).
- Tonstakers and staking pools. Some pool parameters are delegated to a vote of stakers.
- Ad-hoc community votes. Notcoin and DOGS communities periodically run off-chain polls and Snapshot votes on next steps.
It is not Compound-grade governance, but it is real activity producing real decisions.
Voting models in use
You will see three or four core schemes across TON projects:
| Model | How it works | Who uses it |
|---|---|---|
| Token-weighted (1 token = 1 vote) | More tokens, more weight. DeFi default. | STON.fi, EVAA |
| Quadratic voting | Weight = √(balance), reduces whale power. Harder to defend from Sybil. | Experimental |
| SBT-gated (1 person = 1 vote) | Only holders of a non-transferable badge vote. | TON Society |
| Delegated voting | A delegate votes on behalf of others. | Tonstakers pools |
Each has trade-offs. Token-weighted easily turns into whale rule, SBT defends from plutocracy but introduces a “who issues the SBT” question, quadratic is mathematically elegant but exposed to address farming.
Off-chain vs on-chain in detail
Off-chain voting, Snapshot-style:
- The user signs the vote with their wallet (gasless).
- Signatures are collected on a server or IPFS.
- The client tallies votes against a balance snapshot taken at proposal creation.
- The result is a JSON the multi-sig executes by hand.
Pros: free, flexible, you can change the strategy without migrating a contract. Cons: the final step still needs a trusted multi-sig — formally the community cannot force anything.
On-chain voting via a DAO contract:
- The proposal is written on chain.
- Votes are on-chain transactions (paying fees).
- Tallying and execution are automatic inside the contract.
Pros: trustless, execution guaranteed. Cons: expensive, inflexible, any bug in the contract needs a migration.
Most TON projects choose the hybrid: vote off-chain, mirror the outcome on chain for the public log, execute via multi-sig.
TON vs EVM governance stack
| Aspect | Ethereum | TON |
|---|---|---|
| Mature DAO frameworks | Aragon, OZ Governor, Compound | None universal |
| Voting UI | Snapshot, Tally, Boardroom | Snapshot (generic) + custom |
| Delegation standard | ERC-5805 | Ad-hoc |
| Timelock equivalent | OZ TimelockController | Multi-sig wrapper |
| Active DAOs | Hundreds (Uniswap, Aave, ENS, …) | A handful (STON.fi, TON Society) |
| Treasury under DAO control | Billions of dollars | Tens of millions |
The gap is obvious — and the niche is open. Teams willing to build a TON-native governance stack have room.
How to participate as a regular user
Practical steps:
- Register with TON Society via their official site and your Telegram account. Pick up the base SBT badge — it unlocks some votes.
- Hold the project token for the DAO you want to influence (STON, EVAA, native tokens of DEX or lending protocols).
- Follow proposal channels. Most DAOs have a Telegram channel or Discord with new-vote alerts.
- Vote through the official interface: either the project’s Snapshot space or an in-app governance tab.
- Delegate if you cannot keep up. Many pool-style governance models let you delegate to an active community member or a validator.
Where DAOs break: lessons from EVM history
Failure modes that will eventually surface on TON:
- Quorum capture. If the quorum is low (5–10%), a whale holding 6% can pass anything alone. Defenses: high quorum (20–30%) and a timelock.
- Flash-loan voting attacks. An attacker takes a flashloan in DAO tokens, votes, repays. TON has no clean EVM-style flashloans, but JIT liquidity and pool manipulation can mimic the effect.
- Social-engineered multi-call proposals. Complex bundles hiding a malicious call. Defense: independent audit of every proposal before voting.
- Backdoor in the executor. If the multi-sig has emergency functions, the DAO is decoration.
What to expect from TON governance over the next year
Reasonable bets for 2026–2027:
- One or two candidate frameworks — Tact libraries at the OZ Governor level that try to standardize DAO development on TON.
- TON Society maturing into a real ecosystem-level governance body (grants, standards votes).
- Delegation as default. EVM took eight years to reach ERC-5805; TON can shortcut if it moves before the mass DeFi wave.
- Regulatory pressure. The EU is debating DAO legal status — TON projects with European users will be affected.
Conclusion
DAOs on TON are still early. No universal framework, most governance is Snapshot plus multi-sig, active DAOs are a handful. But the direction is clear: STON.fi, EVAA, and TON Society are building the first working models, the patterns are forming.
If you hold tokens of TON projects — vote. Right now it is cheap (often free) and your voice actually matters, because participation is low. In two or three years, when DAOs become mainstream, your share of influence will shrink.
Frequently asked
Are there full on-chain DAOs on TON in 2026?
Where does STON.fi DAO vote?
What is the difference between off-chain and on-chain voting?
Can I launch a DAO on TON today?
Related
- BasicsMay 16, 2026
Tonviewer vs TonScan: which explorer to choose
Comparing TON's two main block explorers in 2026: UX, data depth, APIs, failed-tx debugging and phishing trace workflows. Decision matrix per use case.
- BasicsFeb 14, 2026
What is TON: a complete guide to the Toncoin blockchain
Architecture of The Open Network, differences from Ethereum, the Telegram connection, Toncoin tokenomics and the current state of the ecosystem
- BasicsApr 22, 2026
How to buy TON (Toncoin) in 2026: 5 routes
Spot exchanges, P2P, on-ramps, in-wallet purchase and USDT swaps — fees, limits and KYC trade-offs side by side for a global buyer.
- BasicsMay 16, 2026
TON Storage and TON Proxy: the decentralized web in 2026
How TON's decentralized-web stack works — Storage, Proxy, .ton sites, the economics of paid hosting and an honest take on real adoption in 2026.
- BasicsMay 16, 2026
USDT on TON: complete guide 2026
How the USDT jetton on TON works, how it differs from ERC-20 and Tron USDT, where to use it, how gas is paid, and which risks to keep in mind.