최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 fun-first, earning은 byproduct". 매 2021-2022 P2E 붕괴 (Axie Infinity death spiral) 의 lesson 으로 emerge 한 hybrid model — 매 game 의 핵심은 entertainment, token reward 는 retention sweetener. 매 2026 sustainable Web3 game 의 dominant frame.
매 핵심
매 P2E vs P&E
P2E (2021): 매 earning 이 primary motivation. 매 grinding farm. 매 mercenary players → token dump → economy collapse.
P&E (2024+): 매 fun 이 primary. 매 token 은 long-term retention reward. 매 player base 의 50%+ 가 non-earners 이어도 ok.
결정적 차이: 매 game 의 token 없으면 still fun? P&E = yes, P2E = no.
매 economic design pillars
Sink/Faucet ratio: 매 token issuance ≤ token burn (장기 deflationary 또는 stable).
Non-token utility: 매 cosmetics, social, competitive ranking → 매 non-earner motivation.
Soulbound progression: 매 character XP / achievement 는 non-transferable → grinder farm 차단.
Skill gate: 매 earning rate 가 player skill 에 비례 → bot resistance.
매 응용
Pixels (Ronin) — 매 farming-sim 으로 daily active 600k+ 유지 (2025).
Off the Grid (Avalanche) — 매 Battle royale, AAA quality, optional NFT.
Illuvium — 매 auto-battler + open world, token earning은 ranked play 에 한정.
💻 패턴
Reward emission curve (deflationary)
// SPDX-License-Identifier: MIT
pragma solidity^0.8.24;contractPlayAndEarnReward{uint256publicconstantINITIAL_DAILY_EMISSION=100_000ether;uint256publicconstantHALVING_PERIOD=180days;uint256publicimmutablestartTime;constructor(){startTime=block.timestamp;}functioncurrentDailyEmission()publicviewreturns(uint256){uint256halvings=(block.timestamp-startTime)/HALVING_PERIOD;if(halvings>=10)return0;returnINITIAL_DAILY_EMISSION>>halvings;}}