> 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/jp/kaihatsu/joukyu/nft.md).

# NFT を扱う

{% hint style="success" %}
**NFTとは？**

Wikipediaによると、「非代替性トークン（NFT）とは、ブロックチェーン上に記録される一意のデジタル識別子であり、所有権と真正性を証明するために使用されます。複製、置換、分割することはできません。NFTの所有権はブロックチェーンに記録され、所有者によって譲渡できるため、NFTの売買や取引が可能になります。」

実際には、NFTは以下から構成されます。

* オンラインで利用可能なメディアファイル（画像、動画）、
* それに紐づくmetadataファイル。特に、メディアファイルが保存されているWebアドレスを含みます。
* metadataファイルと、NFTを操作するためのメソッドを提供するNFT中心のsmart contractを保存する、ブロックチェーンのブロック。

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をミントするには、3つのものが必要です。

### 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ウォレットを使用できます。

[MetaMask の使い方](/jp/gakushu/wallet/metamask.md)

インストールしたら、Chiliz Chainで動作するようにウォレットをセットアップします。

[Mainnet と Testnet に接続する](/jp/hajimeni/kaihatsusha-toolbox/mainnet-testnet-setsuzoku.md)

Chiliz Chain Mainnetでgas代を支払うために、必ずCHZトークンを入手してください。CHZはBinance、Coinbase、Bitpandaなどの取引所で購入できます。

Chiliz ChainでNFTをミントできるかどうかをテストするには、テスト用CHZトークンを使ってSpicy Testnetを利用してください。無料のトークンはtestnet faucetを通じて入手できます。

[無料の testnet token を入手する](/jp/kaihatsu/kihon/testnet-token-nyushu.md)

### 2. デプロイ済みのNFT smart contract

ファイルをNFTとしてミントする前に、対応するNFT smart contractをChiliz Chain上にdeployしてverifyする必要があります。これは透明性を確保し、オンチェーンでコントラクトとやり取りできるようにするための重要なステップです。

[nft-contract-sentaku.md](/jp/kaihatsu/joukyu/nft/nft-contract-sentaku.md)

[deploy-a-smart-contract](/jp/kaihatsu/kihon/smart-contract-deploy.md)

[verify-a-smart-contract](/jp/kaihatsu/kihon/smart-contract-verify.md)

### 3. NFTファイルとmetadataのオンライン上の保管場所

NFTの重要な要素の1つは、誰もが見られるようにオンラインで利用可能であることです。その方法の1つは、メディアファイル（画像/動画など）とその`metadata.json`ファイルをIPFS経由でアクセス可能にすることです。

[nft-file-junbi.md](/jp/kaihatsu/joukyu/nft/nft-file-junbi.md)

[ipfs-hosting.md](/jp/kaihatsu/joukyu/nft/ipfs-hosting.md)

## NFTのミント

Chiliz ChainでNFTをミントする方法は、ニーズに応じていくつかあります。\
これらのページでは、最も推奨される方法を紹介します。

[viem-mint.md](/jp/kaihatsu/joukyu/nft/viem-mint.md)

[thirdweb-mint.md](/jp/kaihatsu/joukyu/nft/thirdweb-mint.md)

[rarible-mint.md](/jp/kaihatsu/joukyu/nft/rarible-mint.md)

## NFTを販売用に出品する

開発者やクリエイターにとって、NFTを「ホスティング」するとは、実質的に資産をオンラインのNFTマーケットプレイスに出品し、ユーザーが閲覧、取引、インデックス検索できるようにすることを意味します。

[okx-shukka.md](/jp/kaihatsu/joukyu/nft/okx-shukka.md)


---

# 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:

```
GET https://docs.chiliz.com/jp/kaihatsu/joukyu/nft.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
