Key Takeaways: Token Economics

Core Concepts

1. A Token Is an Entry in a Mapping

A token is not a coin, a file, or an object. It is an entry in a smart contract's mapping(address => uint256). The contract's code defines what operations are possible — minting, burning, transferring, freezing — and the whitepaper is irrelevant to what actually executes on-chain. Understanding this demystifies every other concept in tokenomics.

2. Four Standards, Four Use Cases

  • ERC-20 — fungible tokens (currencies, governance, utility). Six functions, two events. The foundation of DeFi composability.
  • ERC-721 — non-fungible tokens (unique digital assets). Each token has a unique ID and a single owner.
  • ERC-1155 — multi-token standard (gaming, mixed assets). Supports both fungible and non-fungible tokens in one contract with gas-efficient batch operations.
  • ERC-4626 — tokenized vault standard (yield-bearing tokens). Standardizes deposit/withdrawal mechanics for DeFi vaults.

3. Supply Model Is the Most Consequential Design Decision

  • Fixed supply creates scarcity but limits future incentive capacity
  • Inflationary supply funds ongoing security and participation but dilutes passive holders
  • Deflationary supply (burns) reduces circulating tokens but can impair liquidity
  • Elastic supply (rebasing) adjusts balances to target a price — complex and historically unreliable
  • Dual-token separates governance from utility but adds complexity and does not eliminate failure modes

4. Distribution Is Power

Who holds tokens at launch determines who governs the protocol for years. Three dominant models: - Fair launch — no pre-mine, maximum legitimacy, zero team funding - Venture-backed — team + investors + community allocation, requires vesting to align incentives - Airdrop — retroactive distribution to past users, creates broad ownership but most recipients sell immediately

5. Vesting Aligns Incentives Through Time

Cliff periods prevent immediate dumping. Linear vesting spreads selling pressure. Standard structure: 1-year cliff, 4-year total vest for team; 6-month cliff, 2-year vest for contributors. Continuous (daily or block-by-block) vesting is superior to monthly cliff vesting because it eliminates predictable unlock events.

6. The Howey Test Has Four Prongs

A token is likely a security if it involves: (1) an investment of money, (2) in a common enterprise, (3) with an expectation of profits, (4) derived primarily from the efforts of others. Design choices that weaken the securities argument: free distribution (weakens prong 1), genuine utility (weakens prong 3), decentralized governance (weakens prong 4).

7. Governance Tokens Face Two Systemic Problems

  • Voter apathy — turnout is typically 3-10% of eligible supply, meaning a small minority makes decisions for the whole protocol
  • Plutocracy — voting power proportional to holdings means whales dominate governance; delegation helps with apathy but not with concentration

8. The Velocity Problem Suppresses Utility Token Value

If users buy a token, use it immediately, and the recipient sells it immediately, the token changes hands rapidly (high velocity), and its market cap is low relative to the economic activity it supports. Solutions: staking, burn-and-mint mechanics, holding incentives, and lock-ups.

9. Incentive Engineering Is Mechanism Design

Token incentives work when they make productive behavior profitable (staking, honest validation, long-term liquidity provision). They fail when they attract mercenary capital, enable governance attacks, reward Sybil farming, or create inflationary death spirals. The fundamental test: does the system work without the token subsidy?

10. Every Tokenomics Model Is a Hypothesis About Human Behavior

No amount of mathematical modeling can guarantee that a tokenomics design will work in practice. Humans are creative, self-interested, and capable of exploiting loopholes that designers never imagined. The best tokenomics designs assume adversarial participants, model contraction scenarios (not just growth), and include mechanisms that can adapt without requiring emergency intervention.

Decision Framework

When evaluating any token's economics, ask these five questions in order:

  1. What is the token's purpose? (Governance, utility, store of value, or multiple?)
  2. What is the supply model? (Fixed, inflationary, deflationary, or hybrid? What are the numbers?)
  3. Who holds the tokens? (Team percentage, investor percentage, community percentage. Is there vesting?)
  4. What are the sinks? (What removes tokens from circulation? Are sinks proportional to sources?)
  5. Does it work without growth? (Can the system sustain itself in steady state, or does it require new participants?)

If you cannot clearly answer all five questions for a token you hold, you do not understand what you own.

Common Pitfalls

  • Confusing total supply with circulating supply when evaluating market capitalization
  • Ignoring vesting unlock schedules when evaluating short-term price dynamics
  • Assuming "deflationary" means "price goes up" (deflation can reduce liquidity and utility)
  • Treating the whitepaper as ground truth when the smart contract is what actually executes
  • Designing tokenomics for the growth phase and ignoring the contraction scenario
  • Assuming governance participation will be high just because tokens are distributed broadly
  • Using token emissions to subsidize demand for the same token (circular, unsustainable)