Skip to main content
Other Assets

NFTs

Pomegra Learn

NFTs

An NFT is a digital certificate of authenticity issued on a blockchain. It's a record saying "this address owns this unique asset"—where unique is defined cryptographically, immutably stored, and verifiable by anyone. The asset itself might be digital: an image, a video, a virtual property. Or it might be digital proof of ownership of a physical thing: a deed, a championship ring, a bottle of wine.

NFTs arrived as a solution to a genuine problem—how to prove digital ownership and scarcity without a central authority—but became famous as a speculative craze. In 2021 and early 2022, identical jpeg images sold for hundreds of thousands of dollars. Celebrities launched NFT collections that crashed to near-zero when the hype evaporated. The market correction was brutal and earned: most of what was built made no genuine use of NFT properties. A JPEG hosted on AWS and pointed to by an NFT smart contract isn't particularly scarce. A Twitter profile picture you can screenshot isn't a meaningful asset.

Yet underneath the wreckage, NFTs enable real capabilities: proof of provenance for artwork, soulbound credentials attached to identities, in-game assets that remain your property, and programmatic properties (like royalties) that transfer with ownership. Gaming studios use ERC-721 to let players truly own in-game items. Artists use NFTs to bypass galleries and sell directly. Communities use NFTs as tickets or membership proofs.

This chapter teaches you NFTs from first principles. You'll understand fungibility as a spectrum, study the ERC-721 standard that made NFTs possible, and learn ERC-1155, which blends fungible and non-fungible in one contract. You'll see how metadata works—and crucially, where the actual content lives and why that matters for permanence. You'll examine the marketplaces where NFTs trade, understand minting and royalty mechanics, and learn what actually determines an NFT's value. You'll study NFTs across their three main use cases: digital art, gaming, and utility/identity systems. And you'll grapple honestly with the bust: why speculation ran so wild, what failed, and what survived because it genuinely creates value.

Why this matters

NFTs are a contested technology. Many investors lost fortunes. Many developers are still building on them in earnest. The divide between scam and genuine innovation is not always obvious, and the vocabulary of "ownership" and "scarcity" obscures real questions about what an NFT actually gives you. Understanding NFTs thoroughly means becoming resistant to hype—and capable of recognizing real use cases when they appear.

What you'll learn

This chapter starts with the difference between fungible and non-fungible assets, and why that distinction matters for how they're coded and traded. The ERC-721 standard is covered in detail: what data a contract must store, how ownership is tracked, and what metadata points to. You'll learn ERC-1155, understand why it emerged as a more flexible alternative, and see how it combines patterns from both fungible and non-fungible tokens. A deep dive into metadata follows: what lives on-chain versus off-chain, how IPFS differs from centralized hosting, and what permanence actually means for NFT art. We'll examine OpenSea and other major marketplaces, see how they handle listing and trading, and understand fee structures. Minting mechanics are covered thoroughly, including lazy minting and the differences between ERC-721A and other optimization approaches. You'll study royalty systems and why creators so often can't enforce them. Finally, you'll explore the three use cases separately: digital art (and the mess of authentication and provenance), gaming (and how NFTs change economic models), and identity/utility NFTs (and their role in DAOs and credentials). We'll close by examining what caused the speculative mania, why most of it was unearned, and which NFT applications seem positioned to survive and thrive.

How to read this chapter

Start with the technical foundations: fungibility, standards, and metadata. This is dry but essential. Then move to the use cases, reading each with a critical eye. Ask: what problem does this NFT solve that couldn't be solved another way? For art, is scarcity meaningful if the image is a screenshot away? For gaming, does ownership create genuine economic models or just artificial grinding? By the end, you should be able to evaluate any NFT project with skepticism but without dismissal—recognizing that some are genuine innovations while many are noise.

The NFT chapter closes Crypto Basics, and appropriately so: NFTs sit at the intersection of technology, art, gaming, and finance, each with its own maturity and potential. They're a test of whether you can separate lasting innovation from temporary hype.

Articles in this chapter

📄️ NFT Metadata and Standards

The invisible infrastructure that makes NFTs functional lies in their metadata—the structured information that describes what an NFT is, what it represents, and what properties it possesses. While a blockchain transaction records ownership, metadata determines how that ownership is displayed, understood, and valued. This layer of standardization transforms NFTs from mere accounting entries into meaningful digital assets that humans can interact with and understand.

📄️ Digital Art as NFTs

Digital art existed for decades before NFTs, but the technology transformed how artists create value from their work. An artist could create stunning digital paintings, animations, or procedural artworks, but the infinite replicability of digital files meant monetization remained challenging. NFTs fundamentally changed this equation by establishing provable ownership and scarcity for digital artwork, enabling creators to sell original works in a way that had previously been impossible.