How to Create a Governance Token on Optimism

Optimism is arguably the most governance-native chain in crypto. It is run by the Optimism Collective, it pioneered Retroactive Public Goods Funding, and its whole ethos revolves around decentralized decision-making. That makes it an unusually good place to launch a governance token — a token whose primary purpose is to let a community steer a protocol, a treasury, or a DAO. This guide covers how to design and deploy a governance token on Optimism, from the token contract to delegation, voting, and the treasury it controls.

A note on scope: a healthy DAO is far more than a token. This guide focuses on getting the token and its governance mechanics right, but the harder, longer work is building an engaged community that actually participates. The token is the tool; governance is the practice.

What a Governance Token Actually Does

A governance token gives its holders formal power over a protocol or organization. In practice, that power is exercised through on-chain voting: holders (or people they delegate to) vote on proposals — changing parameters, spending from a treasury, upgrading contracts, or setting policy. One token typically equals one vote, though more sophisticated designs weight votes differently.

For governance to be real, three things have to be true. The token must confer votes over something that genuinely matters — a treasury, protocol parameters, a fee switch — not just symbolic signalling. The voting mechanism must be secure and resistant to manipulation. And enough of the community must actually participate that decisions reflect the collective rather than a handful of whales. A governance token that controls nothing, or that nobody votes with, is governance in name only.

Why Optimism for a Governance Token

Optimism's culture is the reason. The chain is governed by the Optimism Collective, and its community is deeply fluent in delegation, voting, and public-goods funding through RetroPGF. Launching a governance token here means launching into an ecosystem where people already understand and value governance participation — a meaningful advantage when your token's whole point is to be voted with.

The practical properties help too: gas on Optimism is a fraction of a cent, which matters enormously for governance, since voting, delegating, and executing proposals are all on-chain transactions that would be prohibitively expensive on Ethereum mainnet for ordinary participants. Optimism keeps Ethereum settlement security as an OP Stack rollup, and its position at the center of the Superchain aligns your DAO with a growing, interoperable ecosystem. Cheap transactions plus a governance-literate community is close to ideal for a DAO token.

Deploy the token with no code. The governance token contract is the foundation. You can create your token on Optimism from audited OpenZeppelin components, auto-verified on the explorer, then wire it into your Governor and treasury contracts.

Designing the Governance Token

Good governance-token design is mostly about legitimacy and distribution. A few principles:

Distribution is the whole ballgame. If a small group holds most of the supply, your "decentralized" governance is a facade — those holders decide everything. Credible governance tokens distribute widely: to users, contributors, and the community, often through airdrops, contributor rewards, and public-goods allocations (an approach Optimism itself models with its OP distributions). Team and investor allocations should be transparent and vested. Concentrated, unlocked supply is fatal to governance legitimacy.

Supply and inflation. Decide the total supply and whether new tokens will be minted over time (for ongoing contributor rewards, for example). Be explicit and public about any inflation, because it directly dilutes voting power. Many governance tokens use a fixed or slowly-inflating supply to keep voting weight stable.

Voting power model. The simplest model is one-token-one-vote. More advanced designs use vote-escrow (lock tokens longer for more voting power, aligning voters with the long term) or quadratic mechanisms (to reduce whale dominance). Start simple unless you have a specific reason for complexity — over-engineered governance confuses participants and lowers turnout.

The Vote-Tracking and Governor Pattern

Under the hood, on-chain governance on EVM chains almost always uses a well-established pattern. The token implements vote tracking (the OpenZeppelin ERC20Votes extension), which records voting power at each block and supports delegation. A separate Governor contract handles the proposal lifecycle: creating proposals, voting periods, quorum, and execution. A Timelock contract typically sits between a passed vote and its execution, giving the community a window to react before changes take effect.

The important architectural point is that these live in separate contracts. Your token stays a clean, standard ERC-20 with vote-tracking; the Governor and Timelock are purpose-built governance contracts that reference the token. This separation keeps the token composable and lets you audit and upgrade the governance machinery independently. Deploy the token first as a solid, verified base, then layer the Governor and Timelock on top using audited, well-tested implementations.

Step by Step: Deploying Your Governance Token on Optimism

  1. Open the Optimism creator and connect. On the create a token on Optimism page, Optimism is preselected. Connect your wallet; it switches to OP Mainnet automatically. Keep a little ETH on Optimism for gas.
  2. Set your token parameters. Name, symbol, total supply, and decimals (18 is standard). Match the supply to your distribution plan — the total that will eventually be allocated to community, contributors, team, and treasury.
  3. Keep the token clean. A governance token should be a standard ERC-20. Avoid transfer taxes and unusual mechanics that interfere with vote-tracking and delegation. Enable minting only if your model includes future contributor emissions, and cap it transparently.
  4. Deploy and verify. Confirm the flat fee plus low Optimism gas. The contract deploys, is auto-verified on the Optimistic Etherscan, and full supply and ownership transfer to your wallet. From there, connect it to your Governor and Timelock contracts to activate on-chain voting.

Starting from OpenZeppelin's audited libraries means your base token is battle-tested. The governance-specific logic then lives in the Governor and Timelock, which you should deploy from audited implementations and, ideally, have reviewed before they control real value.

Delegation and Voting Power

Delegation is the mechanism that makes token-based governance workable. Rather than requiring every holder to vote on every proposal, holders can delegate their voting power to a representative — themselves, a trusted community member, or a specialized delegate — who votes on their behalf. This is central to how Optimism's own governance operates, and it dramatically improves participation by letting engaged delegates carry the votes of passive holders.

A crucial detail: with the standard vote-tracking model, holders must actively delegate (even to themselves) for their tokens to count as voting power. Tokens that are held but never delegated are effectively abstaining. Educating your community to delegate is one of the most impactful things you can do for governance turnout. Building or supporting a healthy delegate ecosystem — people who publish their positions and vote consistently — is what turns a governance token from a formality into a functioning decision-making system.

The Treasury and What the DAO Controls

Governance is only meaningful if it controls something. Most DAOs give their governance authority over a treasury — a pool of assets (often including the governance token itself, plus stablecoins and ETH) that the community can allocate to development, grants, liquidity, marketing, or public goods. The Governor and Timelock contracts hold or control the treasury, so a passed proposal can move funds only through the governance process.

Decide early what falls under governance: treasury spending, protocol parameters, contract upgrades, fee switches, grant programs. On Optimism specifically, aligning with the public-goods ethos — funding contributors and ecosystem work through your treasury — fits the culture and can attract a community that values that mission. The clearer and more consequential the DAO's remit, the more reason people have to acquire the token and participate.

Avoiding Common Governance Pitfalls

  • Whale capture. If a few wallets hold most of the supply, they control governance. Distribute widely and vest team/investor tokens transparently.
  • Low turnout. Most governance tokens suffer from apathy. Encourage delegation, keep proposals clear, and give people real reasons to care.
  • Rushed, unaudited governance contracts. The Governor and Timelock control real money. Use audited implementations and review them before launch.
  • No timelock. Executing passed votes instantly leaves no window to react to a malicious or buggy proposal. A timelock is a standard, important safeguard.
  • Governance theater. If votes don't actually control anything, the community will disengage. Give governance genuine authority.

Launching and Growing the DAO

  1. Publish everything. Verified token and governance contracts on the explorer, a clear governance forum, and documented processes for proposing and voting.
  2. Seed the delegate ecosystem. Recruit and support active delegates; make delegation easy and visible.
  3. Start with real, meaningful proposals. Give the community consequential decisions early so governance feels alive rather than ornamental.
  4. Align with Optimism's ecosystem. Engage with the Collective, consider public-goods funding, and tap into a community that already values governance.

Start with a solid token. Your DAO rests on a clean, verified governance token. Create your token on Optimism from audited components, then build your Governor, Timelock, and treasury on a foundation the community can trust.

FAQ

Does the governance token itself contain the voting logic?

The token holds vote-tracking (which records voting power and supports delegation), but the proposal, voting, and execution logic lives in separate Governor and Timelock contracts that reference the token. This keeps the token a clean, composable ERC-20 while the governance machinery is audited and upgraded independently.

Why does distribution matter so much for a governance token?

Because whoever holds the tokens holds the votes. If supply is concentrated in a few wallets, governance is decentralized in name only - those wallets decide everything. Credible governance tokens distribute widely to users, contributors, and the community, with transparent, vested team and investor allocations.

Do holders need to do anything for their tokens to count as votes?

Yes. With the standard vote-tracking model, holders must actively delegate their voting power - even to themselves - for their tokens to count. Tokens that are held but never delegated effectively abstain, which is why encouraging delegation is one of the most important things you can do for turnout.

How much does it cost to launch a governance token on Optimism?

Deploying the ERC-20 costs a fraction of a cent in gas plus a flat 0.02 ETH platform fee if you use a no-code creator. Ongoing governance transactions (voting, delegating, executing) are also cheap on Optimism, which is a major reason to run a DAO on a Layer-2 rather than Ethereum mainnet.

Why launch a governance token on Optimism specifically?

Optimism is one of the most governance-native chains, run by the Optimism Collective and known for public-goods funding through RetroPGF. Its community is fluent in delegation and voting, and its low fees make on-chain governance practical. That combination makes it an unusually strong home for a DAO token.


A governance token on Optimism launches into a community that already lives and breathes decentralized decision-making. Get the fundamentals right — wide distribution, a clean token, audited Governor and Timelock, and a treasury worth governing — and you have the foundation of a real DAO. Start with the token: you can create your token on Optimism in under a minute.

For more, see our general guide to creating a governance token, our complete guide to launching a token on Optimism, and how token ownership and renouncing work.