NFT (Token no fungible)

Un NFT es un certificado digital único registrado en la blockchain que garantiza la autenticidad y la propiedad de un objeto digital.

Un NFT (Token No Fungible) se diferencia de las criptomonedas regulares en que cada token es único y no puede ser reemplazado por otro (como la pintura de la Mona Lisa). 1 BTC = 1 BTC, pero 1 NFT ≠ 1 NFT.

Técnicamente, un NFT es un contrato inteligente (generalmente el estándar ERC-721 o ERC-1155 en Ethereum) que contiene un enlace a un archivo multimedia y el historial de propiedad. Estos estándares definen cómo se crean y transfieren los tokens entre los usuarios.

Los NFT se pueden comprar en mercados como OpenSea, Rarible o Magic Eden. Casos de uso populares: arte digital (Beeple, CryptoPunks), artículos de juegos, música, nombres de dominio, entradas para eventos, identidad digital.

Preocupaciones ambientales: los NFT en Ethereum consumían previamente una energía significativa debido a la Prueba de Trabajo (Proof-of-Work), pero después de la transición a Prueba de Participación (Proof-of-Stake) en 2022, el consumo de energía disminuyó en un 99,9%.

        graph LR
  Center["NFT (Token no fungible)"]:::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;

      

🧠 Prueba de conocimiento

1 / 3

🧒 Explícalo como si tuviera 5 años

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](/es/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](/es/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.

📚 Fuentes