Web3 & DApp Development Fundamentals · レッスン

ガバナンストークン

投票権

レッスン 2/413 ステップ

「ガバナンストークン」はCoddyKit上の無料Web3 & DApp Development Fundamentalsレッスンです。 これはレッスン2/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはWeb3 & DApp Development Fundamentals学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Web3 & DApp Development Fundamentalsコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

What Is a Governance Token?

A governance token is an ERC-20 token that grants its holder the right to participate in a DAO's decisions.

It converts ownership into voting power, aligning influence with stake in the organization.

Voting Power

In the simplest model, one token equals one vote. A holder of 1,000 tokens has ten times the weight of a holder of 100.

This ties decision-making to economic exposure to the protocol.

votingPower(address) = token.balanceOf(address)
// 1 token = 1 vote

ERC-20 Votes Extension

OpenZeppelin provides ERC20Votes, which adds vote tracking to a standard token.

It records historical balances so votes can be counted at a specific block, preventing double-voting by moving tokens.

contract GovToken is ERC20, ERC20Votes {
    constructor() ERC20("Gov", "GOV") {}
}

Snapshots and Checkpoints

To vote fairly, the system records a snapshot of balances at the block a proposal was created.

This checkpoint stops someone from buying tokens after a proposal starts just to swing the result.

votingPower = token.getPastVotes(
    voter,
    proposalSnapshotBlock
);

Delegation

Holders can delegate their voting power to themselves or to another address (a trusted expert).

Crucially, in many systems you must delegate even to yourself before your tokens count as votes.

token.delegate(msg.sender);   // self-delegate
token.delegate(expertAddress); // delegate to another

Why Delegation Helps

Delegation combats voter apathy. Passive holders can hand their power to active, informed delegates.

It concentrates expertise without forcing every holder to research every proposal.

Token Distribution Matters

How tokens are distributed shapes governance health:

  • Concentrated — a few whales dominate (plutocracy)
  • Broad — many small holders, more decentralized

Airdrops and vesting schedules are used to spread ownership.

Quorum

A quorum is the minimum total voting power that must participate for a vote to be valid.

Without a quorum requirement, a tiny minority could pass proposals during periods of low turnout.

if (totalVotes < quorum) {
    proposal fails (not enough participation)
}

Beyond One-Token-One-Vote

Some DAOs use alternative models to curb whale dominance:

  • Quadratic voting — cost grows with the square of votes
  • Reputation-based — non-transferable influence
  • Conviction voting — power grows with time committed

Vote-Escrowed Tokens

Protocols like Curve use vote-escrow (veToken) models: lock tokens longer to gain more voting power.

This rewards long-term commitment and discourages short-term governance attacks.

lock 1000 tokens for 4 years
-> maximum veToken voting power
lock for 1 year
-> reduced power

Putting It Together

Governance tokens turn ownership into voting power, tracked via snapshots and made flexible through delegation. Quorums and alternative models keep governance fair and resistant to manipulation.

Next we build proposals and voting with Governor contracts.

Quick Check

Test your governance token knowledge.

Recap: Governance Tokens

You learned that:

  • Governance tokens grant voting power (often 1 token = 1 vote)
  • ERC20Votes tracks historical balances via snapshots
  • Delegation lets holders assign their power
  • Quorum ensures enough participation
  • Alternatives like quadratic and veToken models curb whales

Next: proposals and voting.

無料で開始

AI チューターと学ぶ Web3 & DApp Development Fundamentals — 無料

ブラウザでリアルコードを書いて実行し、24/7 の AI チューターから瞬時にサポートを受け、ウェブまたはアプリで続きから学習できます。

コース
29
レッスン
105

よくある質問

「ガバナンストークン」レッスンは無料ですか?

はい。「ガバナンストークン」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Web3 & DApp Development Fundamentalsコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Web3 & DApp Development Fundamentalsコースには全4レッスンが含まれています。

「ガバナンストークン」で何を学びますか?

投票権 ブラウザで直接実行するハンズオンコードでWeb3 & DApp Development Fundamentalsを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Web3 & DApp Development Fundamentalsを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのWeb3 & DApp Development Fundamentalsは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン2/4です。

「ガバナンストークン」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このWeb3 & DApp Development Fundamentalsレッスンでコードを書いて実行できますか?

はい。すべてのWeb3 & DApp Development Fundamentalsレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. DAOとは
  2. ガバナンストークン
  3. 提案と投票
  4. タイムロックと実行
← Web3 & DApp Development Fundamentalsに戻る