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), 게임 아이템, 음악, 도메인 이름, 이벤트 티켓, 디지털 신원.

환경 문제: 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](/ko/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](/ko/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.

📚 출처