> 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/introduction/07_-_-_-_.md).

# 07 디지털 고유성 구현

CryptoStone은 각 보석의 고유성을 표현하기 위해 다양한 기술적 선택지를 검토할 수 있다. 대체 가능한 토큰 구조, 반대체 토큰 구조, 복합 토큰 구조 등 여러 방식이 가능하지만, CryptoStone이 구현하려는 핵심은 각 보석이 고유한 속성 조합과 `tokenId`를 갖는 것이다.

따라서 CryptoStone의 보석은 고유한 `tokenId`와 속성 조합을 가진 Gem NFT로 표현된다. 이 선택은 특정 기술 표준을 강조하기 위한 것이 아니라, 다음 기능을 구현하기 위한 결과다.

## 구현 요구사항과 NFT 구조 채택 이유

| 구현 요구사항               | NFT 구조 채택 이유                                       |
| --------------------- | -------------------------------------------------- |
| 각 보석의 고유 `tokenId` 필요 | NFT 구조는 고유 `tokenId` 기반 자산 표현에 적합하다.               |
| 보석마다 다른 속성 저장         | `tokenId`별 metadata 및 on-chain attribute 구조가 가능하다. |
| 소유권 이전 기록 필요          | 표준 NFT 전송 및 소유권 기록이 가능하다.                          |
| 하나의 컬렉션 안에 여러 스톤 표현   | `stoneType` 속성으로 12개 스톤을 구분할 수 있다.                 |
| 희귀도와 거래 이력 추적         | NFT별 provenance 및 rarity tracking이 가능하다.           |

즉, CryptoStone에서 Gem NFT 구조는 이미지 NFT를 만들기 위한 수단이 아니라, 디지털 보석의 고유성과 속성 기반 자산성을 표현하기 위한 기술적 컨테이너다.


---

# 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/introduction/07_-_-_-_.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.
