Lesson 0314 min
ALLOCATION · DILUTION · BURN

Who Gets Diluted, and Who Gets the Choice?

Run a treasury transfer, mint, and burn in sequence, then compare holder shares, total supply, and concentration.

ObjectivesAfter this lesson, you should be able to:
  • Separate transfer, mint, and burn effects on total supply
  • Use holder shares to explain dilution and concentration
  • Judge whether a locked whale's allocation matches current liquid power
COURSE POSITIONStep 3 of 4
  1. PREVIOUSWhen Does a Promise of Future Tokens Become Liquid?
  2. CURRENTWho Gets Diluted, and Who Gets the Choice?

    Run a treasury transfer, mint, and burn in sequence, then compare holder shares, total supply, and concentration.

  3. NEXTWho Can Change the Supply Rule?
BEFORE YOU READ

Think about these questions first.

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

Q01My token balance did not fall. How was I diluted?
SHORT ANSWER

New issuance raises total supply and lowers your share of the network. Dilution changes relative rights and future claims without reducing the absolute wallet number.

Compared with your prediction:

Token economics is not only “how many units exist.” After each action, ask whose share grew, whose share fell, and whether the change came from ownership transfer, supply expansion, or supply destruction.

Three actions, three ledger outcomes

SIMULATION ACTIVEVirtual asset · LAB
ASSET 001 · SUPPLY & AUTHORITY

LAB / Virtual token

Every action changes a public state table. Ask who can change supply, who can claim, and who absorbs dilution.

Mint authorityCREATOR SINGLE SIGNERCreator can mint
Total supply1,000,000Cap 1,200,000
Liquid supply600,00060.0% liquid
Locked supply400,000Claimable 0
Mintable200,000room under cap
ALLOCATION · DILUTION · BURN

Ownership changes with supply and distribution

Transfers change ownership, minting dilutes existing holders, and burning reduces total supply. Distribute from the treasury, then burn community units.

Creator liquid share 10.0%Community liquid share 30.0%Largest allocation 创建者 · 40.0%
Allocation & vestingLaunch day
Creator400,000 LAB
Liquid 100,000 · Locked 300,000
Community400,000 LAB
Liquid 300,000 · Locked 100,000
Treasury200,000 LAB
Liquid 200,000 · Locked 0
Learner0 LAB
Liquid 0 · Locked 0
LiquidLocked

Locked units count toward total supply but cannot transfer yet. Color is secondary; numbers and labels are the state.

Observation prompt

Start with the supply map: liquid balances, locked balances, and the mint authority are separate state variables.

Supply events2 EVENTS
  1. 02

    Initial allocation recorded:创建者、社区、国库余额可用;另外 400,000 LAB 处于锁仓.

  2. 01

    LAB created:总供应 1,000,000, 供应上限 1,200,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 →
  • Transfer: total supply stays the same; ownership moves between holders.
  • Mint: a balance and total supply rise together; existing holders can be diluted.
  • Burn: a holder balance and total supply fall together; remaining units may gain relative share.

All three can look like “a number changed” in a UI, but their risks for other holders are different.

Dilution is not the same as a price drop

If the treasury transfers 50,000 LAB to a learner, ownership distribution changes but the total supply ratio does not. If the creator mints 50,000 LAB, old units become a smaller fraction of total supply even before market price moves: dilution has already happened.

Burn is the opposite direction: it reduces total supply, but does not automatically make every holder wealthier or more powerful. Who burns, and which balance is removed, still matters.

Expand: how this step works
transfer(A, B, amount):
  A -= amount; B += amount; totalSupply unchanged
mint(T, amount):
  T += amount; totalSupply += amount
burn(A, amount):
  A -= amount; totalSupply -= amount

Market price, voting weight, and fully diluted allocation can each answer a different question. Never use one percentage as a substitute for all three.

KNOWLEDGE CHECK

What is the key difference between a 50,000 LAB transfer and a 50,000 LAB mint?

A quick concentration audit

Compare the creator's liquid share, the community's liquid share, and the largest full allocation. Then ask which future unlocks could change the answer.

LESSON RECAPComplete the exercise and knowledge check first