Lesson 0214 min
SNAPSHOT · DELEGATION · QUORUM

How Much Does One Vote Count?

Delegate Alice’s power to Bob, freeze the snapshot, and compare participation with quorum and support.

ObjectivesAfter this lesson, you should be able to:
  • Explain why voting power freezes at proposal creation
  • Separate delegation, direct voting, abstention, and quorum
  • Use participation to decide whether a proposal may continue
COURSE POSITIONStep 2 of 4
  1. PREVIOUSA Proposal Is a Pending State Change
  2. CURRENTHow Much Does One Vote Count?

    Delegate Alice’s power to Bob, freeze the snapshot, and compare participation with quorum and support.

  3. NEXTWhy Can’t a Passed Vote Execute Immediately?
BEFORE YOU READ

Think about these questions first.

Choose an answer before opening the explanation. You can add anything unexpected to your review list.

Q01Can borrowed tokens seize a vote after it starts?
SHORT ANSWER

Well-designed governance usually reads voting power from a snapshot before the proposal begins, so later borrowing does not change that vote. Snapshot timing, delegation, and lending can still create other attack surfaces.

Compared with your prediction:

Token governance makes representation computable, but not simple. Delegation, snapshots, abstention, and quorum determine when a vote counts and whether the proposal has enough participation to continue.

Freeze voting power before counting

When Alice delegates 420,000 tokens to Bob, Bob represents 750,000. The proposal creation moment takes the snapshot; later transfers do not quietly rewrite an active vote.

GOVERNANCE SIMULATIONVirtual tokens · no real voting
SECURITY 002 · PROPOSAL / VOTE / TIMELOCK / TREASURY

Who gets to change the protocol?

Follow one proposal from intention to executable state, then inspect voting power, delay, and treasury conservation.

ScenarioDelegated votePhase: Draft
Participation0quorum 600,000
Support0.0%of snapshot power
Treasury1,000,000virtual credits
Protocol fee0.30%active
Voting power1,000,0000 delegated
The authority pipelineDraft
  1. 01Draft
  2. 02Voting
  3. 03Succeeded
  4. 04Queued
  5. 05Ready
  6. 06Executed

Create a proposal to freeze a voting snapshot.

CONTROL CONSOLEMove the proposal one legal step
Delegation
Cast one vote
Alice420,000 power
Bob330,000 power
Carol250,000 power
Coach

Start by creating one proposal. Read the action before you read the vote count.

Governance event log2 EVENTS
  1. 02

    投票窗口 3 天,法定人数 60%,时间锁 2 天。

  2. 01

    治理模块创建:1,000,000 治理代币、1,000,000 积分金库,提案需要投票和时间锁。

ACTION HISTORYExperiment timeline
1 state snapshots

Use the slider to return to an earlier step. Continuing from there replaces the later history with a new sequence.

Initial state
View experiment records →

Select the delegation scenario, delegate Alice to Bob, then create the proposal. Try to vote as Alice and observe the duplicate-power boundary. Let Bob vote and compare participation with support.

Expand: how this step works
snapshot = balances + delegation at proposal creation
participation = for + against + abstain
pass = participation >= quorum && for > against

Delegation changes representation, not token supply. Production systems also need to consider delegation chains, locked voting, transfers, and sybil resistance.

KNOWLEDGE CHECK

Why can Bob not vote Alice's delegated power a second time?

LESSON RECAPComplete the exercise and knowledge check first