[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
@@ -1,80 +1,176 @@
---
id: wiki-2026-0508-hyperinflation-in-closed-loop-sy
title: Hyperinflation in Closed Loop Systems
category: 10_Wiki/Topics_GD
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: []
aliases: [Game Hyperinflation, Virtual Currency Crash, Axie SLP Crash]
duplicate_of: none
source_trust_level: A
confidence_score: 0.92
tags: [uncategorized]
confidence_score: 0.9
verification_status: applied
tags: [game-design, economy, hyperinflation, web3-game]
raw_sources: []
last_reinforced: 2026-05-08
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: economy-pathology
framework: closed-loop-economy
---
---
redirect_to: "[[게임_디자인_및_가상_경제_시스템]]"
canonical_id: "wiki-2026-0507-105"
---
# Hyperinflation in Closed Loop Systems
# Redirect
## 매 한 줄
> **"매 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 못 함.
이 문서는 Canonical 문서인 통합되었습니다.
모든 최신 지식과 세부 내용은 위 링크를 참조하십시오.
## 📌 한 줄 통찰 (The Karpathy Summary)
> 폐쇄 루프 게임 경제의 하이퍼인플레이션은 통화 발행이 회수를 초과해 통화 가치가 폭락하는 현상이다.
## 매 핵심
### 매 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.
## 📖 구조화된 지식 (Synthesized Content)
### 매 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).
**추출된 패턴:** Source-Sink 비율이 1.2 이상 장기 지속되면 위험 신호 — 신규 Sink 도입 또는 기존 Sink 강화 필요.
### 매 응용
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.
**세부 내용:**
- 정의: 통화 가치(아이템 환산)가 시간당 N% 이상 하락.
- 원인: 새 콘텐츠로 Source 증가, Sink 미흡.
- 해결: 시즌 리셋, 강한 Sink 도입, 통화 페그.
- 사례: Diablo III 골드 인플레이션, MMORPG 후반 통화 붕괴.
- 측정: 가격 인덱스(주요 아이템 가격 변화).
## 💻 패턴
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### Pattern 1: Inflation Detection
```python
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)
**언제 이 지식을 쓰는가:**
- *(TODO)*
# Axie SLP: 200%+ supply growth, 95%+ price decline
```
**언제 쓰면 안 되는가:**
- *(TODO)*
### Pattern 2: Emergency Sink Activation
```typescript
class EmergencySink {
activated = false;
## 🧪 검증 상태 (Validation)
trigger(cpi: number) {
if (cpi > 30 && !this.activated) {
this.activated = true;
this.deployMeasures();
}
}
- **정보 상태:** draft
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
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;
}
}
```
## 🧬 중복 검사 (Duplicate Check)
### Pattern 3: Bot Detection (Behavioral)
```rust
struct BotSignal {
actions_per_minute: f64,
same_path_repetition: f64, // 0-1 cosine similarity
no_chat_for_hours: u32,
instant_perfect_reaction: bool,
}
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
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
}
```
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
### Pattern 4: Currency Redenomination
```csharp
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
// Solidity — pseudo SLP-fix
contract GameToken is ERC20 {
uint256 public stakeBurnRate = 5; // 5% burn on staking
## 🔗 지식 연결 (Graph)
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
```
- **Parent:** [[10_Wiki/Topics]]
- **Related:** *(TODO: 최소 2개)*
- **Opposite / Trade-off:** *(TODO)*
- **Raw Source:** 직접 입력
## 매 결정 기준
| 상황 | 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 |
## 🕓 변경 이력 (Changelog)
**기본값**: 매 monthly economic report (EVE QER 모델) + 매 automatic sink scaling.
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## 🔗 Graph
- 부모: [[Economic-Analysis]] · [[Virtual-Economy-Pathology]]
- 변형: [[Diablo3-RMAH-Crash]] · [[Axie-SLP-Crash]] · [[RuneScape-Duping]]
- 응용: [[Sink-Faucet-Balancing]] · [[Bot-Detection-Systems]]
- Adjacent: [[Tokenomics-Design]] · [[Currency-Redenomination]]
## 🤖 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) |