> For the complete documentation index, see [llms.txt](https://docs.chiliz.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.chiliz.com/ko/gaebal/goseup/nft-jageob.md).

# NFT 작업하기

{% hint style="success" %}
**NFT란 무엇인가요?**

위키피디아에 따르면, "대체 불가능한 토큰(NFT)은 블록체인에 기록된 고유한 디지털 식별자로, 소유권과 진위성을 증명하는 데 사용됩니다. 복사, 대체, 분할이 불가능합니다. NFT의 소유권은 블록체인에 기록되며, 소유자가 이를 이전할 수 있어 NFT를 판매하고 거래할 수 있습니다."

실질적으로 NFT는 다음으로 구성됩니다:

* 온라인에서 사용 가능한 미디어 파일 (이미지, 동영상),
* 미디어 파일이 저장된 웹 주소를 포함하는 메타데이터 파일,
* NFT와 상호작용하는 메서드를 제공하는 NFT 중심 스마트 컨트랙트와 함께 메타데이터 파일을 저장하는 블록체인 블록.

Chiliz Chain의 NFT는 [EVM 표준](https://ethereum.org/en/developers/docs/standards/)을 따릅니다 (예: [ERC721](https://ethereum.org/en/developers/docs/standards/tokens/erc-721/), [ERC-1155](https://ethereum.org/en/developers/docs/standards/tokens/erc-1155/), [기타](https://ethereum.org/en/developers/docs/standards/#token-standards)), 이를 통해 다양한 도구와 마켓플레이스 간의 상호운용성이 보장됩니다.
{% endhint %}

{% hint style="success" %}
**NFT 민팅이란 무엇인가요?**

NFT 민팅은 디지털 파일(이미지, 동영상, 음악 등)을 온체인 토큰으로 변환하는 과정입니다. 이렇게 생성된 토큰은 소유하고 이전할 수 있는 검증 가능한 디지털 자산입니다.
{% endhint %}

## 사전 요구사항

NFT를 민팅하려면 세 가지가 필요합니다:

### 1. Web3 지갑

Chiliz Chain(Chiliz Chain Mainnet 또는 Spicy Testnet)과 상호작용하려면 일정량의 CHZ가 들어있는 Web3 지갑 주소가 필요합니다. CHZ는 Chiliz Chain의 네이티브 토큰입니다.

{% hint style="success" %}
Web3 지갑은 CHZ 토큰을 보관하는 저장소이자, 온체인 작업을 승인하는 디지털 서명 수단으로 사용됩니다.
{% endhint %}

Chiliz Chain에서 작업할 때 [MetaMask](https://metamask.io/) 또는 다른 Web3 지갑을 사용할 수 있습니다:

{% content-ref url="/pages/igiuYVT5abkWAqBysH3I" %}
[MetaMask 사용 방법](/ko/baeuggi/jigap/metamask-sayong.md)
{% endcontent-ref %}

설치 후, Chiliz Chain에서 작동하도록 지갑을 설정하세요:

[RPC로 연결](/ko/gaebal/gibon/chiliz-chain-yeongyeol/rpc-yeongyeol.md)

Chiliz Chain Mainnet에서 가스 요금을 지불하려면 CHZ 토큰을 보유해야 합니다. Binance, Coinbase, Bitpanda 등의 거래소에서 CHZ를 구매할 수 있습니다.

Chiliz Chain에서의 NFT 민팅 테스트는 테스트 CHZ 토큰이 있는 Spicy Testnet을 사용하세요. 테스트넷 faucet을 통해 무료 토큰을 받을 수 있습니다:

{% content-ref url="/pages/qiix4G9ofyknkfg1PvVE" %}
[무료 Testnet 토큰 받기](/ko/gaebal/gibon/teseuteuseunet-token.md)
{% endcontent-ref %}

### 2. 배포된 NFT 스마트 컨트랙트

파일을 NFT로 민팅하기 전에, Chiliz Chain에 해당 NFT 스마트 컨트랙트를 배포하고 검증해야 합니다. 이는 투명성을 확보하고 온체인에서 컨트랙트와 상호작용하기 위한 중요한 단계입니다.

{% content-ref url="/pages/PoSYCQbmUonCd3IJfnEb" %}
[올바른 NFT 컨트랙트 선택](/ko/gaebal/goseup/nft-jageob/nft-keonteulaekteu-seontaek.md)
{% endcontent-ref %}

{% content-ref url="/pages/zeEtydOU4PCe2pXKpDvV" %}
[스마트 컨트랙트 배포](/ko/gaebal/gibon/seumateu-keonteulaekteu-baepoe.md)
{% endcontent-ref %}

{% content-ref url="/pages/nsWrQabw0Uxfup8ISrim" %}
[스마트 컨트랙트 검증](/ko/gaebal/gibon/seumateu-keonteulaekteu-geomjeung.md)
{% endcontent-ref %}

### 3. NFT 파일 및 메타데이터를 위한 온라인 저장소

NFT의 필수 요소 중 하나는 모든 사람이 볼 수 있도록 온라인에서 접근 가능하게 하는 것입니다. 이를 위해 미디어 파일(이미지/동영상 등)과 `metadata.json` 파일을 IPFS를 통해 접근 가능하게 하는 방법이 있습니다.

{% content-ref url="/pages/0abkPfga0yLcqXvcoltN" %}
[NFT 파일 준비](/ko/gaebal/goseup/nft-jageob/nft-pail-junbi.md)
{% endcontent-ref %}

{% content-ref url="/pages/xGwBcBB9kIZac4UZmknP" %}
[IPFS에 NFT 호스팅](/ko/gaebal/goseup/nft-jageob/ipfs-nft-hoseuteing.md)
{% endcontent-ref %}

## NFT 민팅하기

Chiliz Chain에서 NFT를 민팅하는 방법은 필요에 따라 여러 가지가 있습니다.\
이 페이지들은 가장 권장하는 방법들을 소개합니다.

{% content-ref url="/pages/8HQBPuCQvWQwQUISJ0nj" %}
[viem으로 민팅](/ko/gaebal/goseup/nft-jageob/viem-mintting.md)
{% endcontent-ref %}

{% content-ref url="/pages/Xq76xK3EFs1LAoNQ7kFt" %}
[thirdweb으로 민팅](/ko/gaebal/goseup/nft-jageob/thirdweb-mintting.md)
{% endcontent-ref %}

{% content-ref url="/pages/TSOxKwuQQy1m9JuwKjWJ" %}
[Rarible로 민팅](/ko/gaebal/goseup/nft-jageob/rarible-mintting.md)
{% endcontent-ref %}

## NFT 판매 등록하기

개발자와 크리에이터에게 있어 NFT를 "호스팅"한다는 것은 실질적으로 온라인 NFT 마켓플레이스에 자산을 등록하여 사용자들이 볼 수 있고, 거래 가능하며, 인덱싱될 수 있도록 하는 것을 의미합니다.

{% content-ref url="/pages/8uTvwxBxC8MgjipfKHHK" %}
[OKX에 NFT 등록](/ko/gaebal/goseup/nft-jageob/okx-nft-deungnok.md)
{% endcontent-ref %}


---

# 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://docs.chiliz.com/ko/gaebal/goseup/nft-jageob.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.
