Files
2nd/10_Wiki/Topic_General/Game_Design/Hyperinflation-in-Closed-Loop-Systems.md
T
Antigravity Agent 9148c358d0 docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.

- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
  자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
  동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
  Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
  Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
  나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
  title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
  원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
  지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
2026-07-05 00:33:48 +09:00

6.2 KiB

id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
id title category status canonical_id aliases duplicate_of source_trust_level confidence_score verification_status tags raw_sources last_reinforced github_commit tech_stack
wiki-2026-0508-hyperinflation-in-closed-loop-sy Hyperinflation in Closed Loop Systems 10_Wiki/Topics verified self
Game Hyperinflation
Virtual Currency Crash
Axie SLP Crash
none A 0.9 applied
game-design
economy
hyperinflation
web3-game
2026-05-10 pending
language framework
economy-pathology closed-loop-economy

Hyperinflation in Closed Loop Systems

매 한 줄

"매 sink 부재 + 매 unbounded faucet → 매 매 currency value 의 매 collapse". 매 Hyperinflation 은 매 game economy 의 매 pathological state — 매 currency velocity 의 매 폭증 + 매 purchasing power 의 매 매 collapse. 매 historical: 매 Diablo 3 RMAH (2012), 매 RuneScape duping (2017), 매 Axie Infinity SLP (2022). 매 closed-loop 일수록 매 위험 — 매 매 currency 가 매 game 외부로 매 escape 못 함.

매 핵심

매 Causes

  • Faucet > Sink: 매 매 currency 매 inflow 가 매 sink 초과.
  • Botting/Duping: 매 매 supply 의 매 매 unauthorized expansion.
  • Tokenomics flaw (Web3): 매 매 reward emission 가 매 demand 초과.
  • Whale dump: 매 매 large holder 의 매 simultaneous selloff.

매 Symptoms

  • 매 NPC vendor item price 매 worthless 화.
  • 매 player-to-player trade 가 매 barter 회귀.
  • 매 새 player onboarding 비용 매 prohibitive.

매 Mitigation

  • 매 Sink 추가: 매 cosmetic, 매 housing, 매 tax.
  • 매 Faucet nerf: 매 drop rate 감소.
  • 매 Currency burn: 매 redemption-on-spend.
  • 매 Bot policing: 매 detection + ban.
  • 매 Currency redenomination: 매 nuclear option (e.g., 1000:1 swap).

매 응용

  1. Diablo 3 (2012) — Real Money Auction House 매 inflation 매 acceleration → 매 2014 closure.
  2. EVE Online (2014) — Eyjólfur Guðmundsson 의 매 active management 매 hyperinflation 회피.
  3. Axie Infinity (2022) — SLP token 매 99% 가치 손실.
  4. RuneScape (2017) — duping bug 매 매 emergency rollback.

💻 패턴

Pattern 1: Inflation Detection

def detect_hyperinflation(monthly_cpi: list[float], threshold: float = 50.0) -> bool:
    # 50%+ MoM CPI = hyperinflation per economist convention
    if len(monthly_cpi) < 3: return False
    last_3 = monthly_cpi[-3:]
    return all(rate >= threshold for rate in last_3)

# Axie SLP: 200%+ supply growth, 95%+ price decline

Pattern 2: Emergency Sink Activation

class EmergencySink {
  activated = false;

  trigger(cpi: number) {
    if (cpi > 30 && !this.activated) {
      this.activated = true;
      this.deployMeasures();
    }
  }

  private deployMeasures() {
    // 1. Increase NPC repair cost 5x
    config.repair_multiplier = 5.0;
    // 2. Add limited-time cosmetic at high price
    shop.addExclusive({ price: 10_000_000, duration_hours: 72 });
    // 3. Tax player-to-player trade (5%)
    market.tax_rate = 0.05;
  }
}

Pattern 3: Bot Detection (Behavioral)

struct BotSignal {
    actions_per_minute: f64,
    same_path_repetition: f64,  // 0-1 cosine similarity
    no_chat_for_hours: u32,
    instant_perfect_reaction: bool,
}

fn classify(signal: &BotSignal) -> f64 {
    let mut score = 0.0;
    if signal.actions_per_minute > 60.0 { score += 0.3; }
    if signal.same_path_repetition > 0.95 { score += 0.4; }
    if signal.no_chat_for_hours > 24 { score += 0.1; }
    if signal.instant_perfect_reaction { score += 0.4; }
    score.min(1.0)  // 0.7+ → flag for ban
}

Pattern 4: Currency Redenomination

public class RedenominationOp {
    // Nuclear option — last resort
    public void Execute(decimal ratio = 1000m) {
        foreach (var p in AllPlayers) {
            p.Gold = Math.Floor(p.Gold / ratio);
        }
        foreach (var item in AllAuctions) {
            item.Price = Math.Floor(item.Price / ratio);
        }
        // Communication CRITICAL — pre-announce 30 days
        // Risk: player perceives as theft if mishandled
    }
}
// Real example: Brazil 1986 cruzado replace cruzeiro 1000:1

Pattern 5: Tokenomics Sink Injection (Web3)

// Solidity — pseudo SLP-fix
contract GameToken is ERC20 {
    uint256 public stakeBurnRate = 5;  // 5% burn on staking

    function stake(uint256 amount) external {
        uint256 burn = (amount * stakeBurnRate) / 100;
        _burn(msg.sender, burn);          // permanent removal
        _transfer(msg.sender, vault, amount - burn);
    }
}
// Counters infinite SLP emission via deflationary sink

매 결정 기준

상황 Approach
매 mild inflation (CPI 5-15%) 매 sink 강화, 매 faucet 미세 조정
매 moderate (15-50%) 매 emergency sink + 매 bot purge
매 hyperinflation (50%+) 매 currency burn event 또는 매 redenomination
매 Web3 token 매 deflationary mechanism (burn on action)
매 botting 탐지 매 behavioral classifier + ban + 매 illicit gold removal

기본값: 매 monthly economic report (EVE QER 모델) + 매 automatic sink scaling.

🔗 Graph

🤖 LLM 활용

언제: 매 economy crisis 진단, 매 mitigation strategy 설계, 매 historical case study 학습. 언제 X: 매 stable economy (매 normal sink/faucet operation 만 필요), 매 cosmetic-only economy.

안티패턴

  • No real-time monitoring: 매 problem 감지 매 매 quarterly — 매 too late.
  • Faucet nerf in panic: 매 매 sudden drop rate 감소 — 매 player rage + retention crash.
  • No bot enforcement: 매 매 supply 의 매 매 unauthorized 확장 매 unchecked.
  • Hidden tokenomics: 매 매 player 가 매 emission curve 매 알 수 없음 — 매 trust 손실.
  • Redenomination without notice: 매 매 player 가 매 wealth 가 매 1000:1 로 매 변경 — 매 mass exodus.

🧪 검증 / 중복

  • Verified (CCP QER, Axie Infinity Sky Mavis postmortem 2022, Diablo 3 RMAH closure announcement).
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — Hyperinflation 의 cause/symptom/mitigation + 5-pattern (detect, emergency sink, bot, redenom, tokenomics)