> For the complete documentation index, see [llms.txt](https://doc.cryptostone.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.cryptostone.org/crypto-stone/crypto-stone-wp-kr/protocol-architecture/35_-_-_stone_-_.md).

# 35 STONX 소각 구조

CryptoStone에서 STONX는 단순한 결제 수단이 아니라 디지털 보석 채굴에 참여하기 위한 마이닝 자원이다. 현실의 광산에서 채굴 장비와 에너지가 사용되고 시간이 지남에 따라 장비가 마모되는 것처럼, CryptoStone에서도 마이닝 풀에 투입된 STONX는 채굴 과정에서 일정한 디지털 감가상각 구조를 갖는다.

개발자는 STONX의 소각 구조가 토큰 가격 상승을 보장하기 위한 장치가 아니라, 디지털 보석 채굴에 필요한 자원 소비와 희소성 구조를 표현하기 위한 장치라고 본다.

CryptoStone의 기본 STONX 소각 구조는 크게 두 가지 경우에 발생할 수 있다.

| 소각 유형         | 발생 시점               | 목적              |
| ------------- | ------------------- | --------------- |
| Claim Burn    | Gem NFT를 claim하는 시점 | 채굴 비용과 희소성 표현   |
| Maturity Burn | 락업 종료 후 unstake 시점  | 마이닝 자원의 감가상각 표현 |

위 두 가지는 CryptoStone의 기본 소각 구조다. 다만 생태계가 확장되면 STONX 소각 메커니즘은 추가될 수 있다. 예를 들어 Marketplace 수수료 일부 소각, Arena 또는 게임형 모듈의 entry fee/settlement 소각, Gem Refinement 실행 비용 소각 등이 추가 소각 경로가 될 수 있다. 이러한 확장 소각은 핵심 채굴 규칙을 훼손하지 않는 범위에서 별도 컨트랙트와 공개 규칙으로 정의되어야 한다.

Gem NFT를 claim할 때 발생하는 소각량 (B\_{claim,j})은 다음 공식으로 계산된다.

$$
B\_{claim,j} = \beta \times S\_j
$$

여기서 (\beta)는 Base Claim Burn이고, (S\_j)는 해당 스톤의 Scarcity Multiplier이다.

Claim Burn은 모든 풀에서 고정 2 STONX가 아니다. 기본값은 2 STONX이지만, 각 스톤 풀의 Scarcity Multiplier에 따라 실제 소각량이 달라진다. 예를 들어 특정 풀이 2x 구간이면 claim 시 4 STONX, 4x 구간이면 8 STONX가 소각된다. 따라서 Claim Burn은 풀별 채굴 진행도와 난이도를 반영하는 동적 소각 비용이다.

초기 기준값은 다음과 같이 설정한다.

| Scarcity Multiplier | Claim Burn |
| ------------------- | ---------- |
| 1x                  | 2 STONX    |
| 2x                  | 4 STONX    |
| 4x                  | 8 STONX    |
| 8x                  | 16 STONX   |
| 16x                 | 32 STONX   |
| 32x                 | 64 STONX   |

Base Claim Burn은 채굴 비용을 표현하는 최소 소비 구조이며, 전체 공급량을 급격히 축소시키기 위한 장치가 아니다. 소각된 STONX는 운영자나 재단에 지급되지 않고 영구적으로 유통량에서 제거된다. 이를 통해 STONX는 단순히 예치되는 자산이 아니라, CryptoStone 생태계 안에서 실제로 사용되고 소비되는 디지털 마이닝 자원으로 기능한다.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://doc.cryptostone.org/crypto-stone/crypto-stone-wp-kr/protocol-architecture/35_-_-_stone_-_.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
