NFT (非代替性トークン)

NFTは、デジタルオブジェクトの真正性と所有権を保証する、ブロックチェーンに記録されたユニークなデジタル証明書です。

NFT(Non-Fungible Token)は、各トークンがユニークで、他のトークンと交換できないという点で、通常の暗号通貨とは異なります(モナリザの絵画のようなもの)。1 BTC = 1 BTCですが、1 NFT ≠ 1 NFTです。

技術的には、NFTは、メディアファイルへのリンクと所有履歴を含むスマートコントラクト(通常はEthereumERC-721またはERC-1155標準)です。これらの標準は、トークンの作成とユーザー間の転送方法を定義しています。

NFTは、OpenSea、Rarible、またはMagic Edenなどのマーケットプレイスで購入できます。一般的なユースケース:デジタルアート(Beeple、CryptoPunks)、ゲームアイテム、音楽、ドメイン名、イベントチケット、デジタルID。

環境への懸念:EthereumのNFTは、以前はProof-of-Workのためにかなりのエネルギーを消費していましたが、2022年にProof-of-Stakeに移行した後、エネルギー消費量は99.9%減少しました。

        graph LR
  Center["NFT (非代替性トークン)"]:::main
  Rel_wrapped_token["wrapped-token"]:::related -.-> Center
  click Rel_wrapped_token "/terms/wrapped-token"
  Rel_non_fungible_token_nft["non-fungible-token-nft"]:::related -.-> Center
  click Rel_non_fungible_token_nft "/terms/non-fungible-token-nft"
  Rel_proof_of_personhood["proof-of-personhood"]:::related -.-> Center
  click Rel_proof_of_personhood "/terms/proof-of-personhood"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧠 理解度チェック

1 / 3

🧒 5歳でもわかるように説明

A digital certificate of ownership that can't be copied or faked. Like having the original Mona Lisa instead of just a photo of it.

🤓 Expert Deep Dive

NFTs are typically implemented as smart contracts adhering to specific [token standards](/ja/terms/token-standards), most notably ERC-721 (Ethereum) and its variants (ERC-1155 for semi-fungible tokens). The core contract manages token ownership mapping (address to token ID) and provides functions for transfer, approval, and metadata retrieval. Metadata is often stored off-chain (e.g., on IPFS) and referenced by a URI within the token's properties, posing a challenge for long-term data persistence and integrity ('rug pull' risk). The immutability of the blockchain ensures ownership records are tamper-proof, but the underlying asset's availability and integrity depend on external factors. Security vulnerabilities can arise from [smart contract exploits](/ja/terms/smart-contract-exploits) (re-entrancy, integer overflows) or issues with the metadata storage and resolution mechanisms. Architectural trade-offs involve balancing on-chain storage costs (gas fees) with decentralization and data availability. The fungibility aspect is deliberately broken by unique token IDs and distinct metadata, enabling digital scarcity.

📚 出典