Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Chapter 9: Ownership as an Asset — NFTs and Memberships

Forget the monkey pictures. An NFT is a deed.

1Ownership as an Asset — NFTs and Memberships

Comprehensive infographic summarizing NFTs as ownership deeds, Metaplex metadata standards, membership tiers, royalties, and secondary markets on Solana

Figure 1:Chapter 9 at a Glance. NFTs are programmable deeds — not pictures. This chapter maps the full lifecycle from minting a membership pass to observing it trade on a secondary market.

Every new technology arrives draped in its worst possible use case. The steam engine’s first public demonstration ended in a fatal crash. The internet’s early reputation was built on dial-up pornography and pyramid schemes. And NFTs, despite the infrastructure they introduced, became synonymous with cartoon apes selling for millions of dollars and then losing most of that value inside eighteen months.

That’s unfortunate. Because underneath the speculation, the NFT standard solved a real problem: how do you prove unique ownership of a digital thing on a public ledger?

▶ Watch: NFTs Explained in 4 minutes! (3 min)

This chapter answers that question — and then turns it into a business tool. By the end of the session you will have designed a three-tier membership pass collection, minted it on Solana mainnet, connected those passes to the token gate you built in Chapter 7, and listed one pass on a marketplace to observe secondary-market mechanics firsthand. You will walk away holding a transferable, resalable asset that represents access to something your business actually offers.


1.1Fungible vs. Non-Fungible: When Uniqueness Matters

In Chapter 2 you created a fungible token. Every unit of that token is identical to every other unit — interchangeable, like dollar bills. One SOL equals one SOL equals one SOL. That interchangeability is a feature: it’s what makes a currency spendable.

But imagine you’re issuing access to the front row at your annual conference. Seat 1A is not the same as seat 47C, even though they’re both “seats.” A deed to a specific house on a specific lot is not the same as a deed to a different house, even if both houses cost the same. Some assets derive their entire value from which specific thing they represent. They are non-fungible — each one is unique.

Side-by-side comparison diagram showing fungible tokens as identical interchangeable coins versus non-fungible tokens as unique distinct deeds with serial numbers

Figure 2:Fungible vs. Non-Fungible. Fungible tokens are interchangeable units. Non-fungible tokens carry unique identity — like serial numbers on physical assets.

On Solana, a non-fungible token is technically a SPL token with a supply of exactly one, combined with a metadata account that describes what that single token means. That metadata account — maintained by Metaplex’s Token Metadata program — is what transforms a raw on-chain record into something a human being can recognize as “Gold Member Pass #47.”

The insight that matters for business builders: if your product has unique instances, NFTs give those instances provable, transferable identity. That’s the whole idea, stripped of the hype.


1.2NFTs as Membership, Ticket, Credential, and Receipt

The creative and collector markets were the first to adopt NFTs because scarcity and provenance matter enormously in art. But the underlying mechanics serve every industry where unique ownership matters.

Four-panel infographic showing NFT use cases: membership passes, event tickets, professional credentials, and purchase receipts, each with real-world business examples

Figure 3:Four Real Business Use Cases for NFTs. Memberships, tickets, credentials, and receipts all share the need for unique, provable ownership — exactly what non-fungible tokens provide.

1.2.1Memberships

A gym membership, a wine club subscription, a co-working space access pass: all of these are currently managed in centralized databases. The business decides whether you’re a member. The business decides what you’re entitled to. And when you leave, the membership evaporates.

An NFT membership inverts some of that logic. The pass lives in your wallet. Your entitlements are readable by any application that checks the chain. And if the business allows it, you can sell the remaining term of your membership to someone else — treating unused subscription value like a transferable asset rather than a sunk cost.

1.2.2Event Tickets

Ticket scalping exists because current ticketing infrastructure has no elegant way to let the original issuer participate in secondary-market revenue. NFT tickets change this. When a ticket trades on a secondary market, the smart contract can route a royalty percentage back to the event organizer. The organizer earns from resales. And buyers get cryptographic proof the ticket is authentic — no Ticketmaster barcode fraud.

1.2.3Credentials and Certificates

A university diploma verifiable on-chain. A professional certification that any employer can confirm in seconds. A completion badge from an online course that lives in your wallet and travels with you across platforms. These are sometimes called “soulbound tokens” — NFTs designed to be non-transferable, proving credentials belong permanently to one holder. Metaplex supports this with a isMutable: false flag and the ProgrammableNFT standard.

1.2.4Receipts and Warranties

Some brands are experimenting with minting an NFT at point of sale that functions as a digital receipt and warranty document. The NFT proves you bought the product. If you sell the product, the receipt (and remaining warranty) transfers with it. No lost receipts. No warranty fraud.

1.2.5The Common Thread

Notice what all four use cases share: a need to say “this specific thing belongs to this specific person, and that fact should be verifiable by anyone.” That’s what Metaplex’s NFT standard delivers.


1.3Metadata Standards: Metaplex and Where the “Thing” Actually Lives

Here is the question that trips up most students: if an NFT is just a token on the blockchain, where does the actual content live? The image, the description, the attributes?

Not on-chain. Almost never on-chain. Storing a high-resolution image directly on Solana would cost thousands of dollars in rent. Instead, the NFT’s on-chain record contains a URI — a pointer to a JSON file. That JSON file is the metadata. The metadata contains the name, description, image URL, and any attributes.

Architecture diagram showing the chain of pointers from wallet to SPL token to Metaplex metadata account to IPFS JSON file to image storage, with labels at each layer

Figure 4:Where the “Thing” Actually Lives. The blockchain holds a pointer. The metadata JSON is stored off-chain (IPFS or Arweave). The image lives at a URL referenced inside the JSON. Each layer verifiable, each layer replaceable.

1.3.1The Metaplex Metadata Schema

Metaplex defines a standard JSON format that every wallet, marketplace, and dApp on Solana understands:

{
  "name": "Gold Member Pass #47",
  "symbol": "GPASS",
  "description": "Holder receives Gold-tier benefits at TokenSystems events.",
  "seller_fee_basis_points": 500,
  "image": "https://arweave.net/abc123/47.png",
  "attributes": [
    { "trait_type": "Tier", "value": "Gold" },
    { "trait_type": "Benefits", "value": "VIP Lounge, Front Row, 20% Merch Discount" },
    { "trait_type": "Issued", "value": "2026-01" }
  ],
  "properties": {
    "files": [{ "uri": "https://arweave.net/abc123/47.png", "type": "image/png" }],
    "category": "image",
    "creators": [
      { "address": "YourWalletAddressHere", "share": 100 }
    ]
  }
}

The field seller_fee_basis_points: 500 encodes a 5% royalty on secondary sales. Every marketplace that respects Metaplex royalties (and not all do — more on this shortly) will route 5% of any resale price back to the creators array.

1.3.2Storage: IPFS vs. Arweave

The metadata JSON and image need to live somewhere persistent. Two options dominate:

▶ Watch: IPFS: Interplanetary file storage! (9 min)

For our lab, we will use the Metaplex Candy Machine UI, which handles metadata upload automatically.


1.4Royalties: Programmable Resale Economics and Their Limits

The royalty concept sounds like a revolution: creators earn a percentage every time their asset trades hands. A musician mints 1,000 concert passes. Every time one resells, 7% flows back automatically. The artist participates in the secondary market forever.

Flow diagram showing NFT secondary sale price split into royalty percentage going back to creator and net amount going to seller, with marketplace fee also deducted, labeled percentages and arrows

Figure 5:How NFT Royalties Flow. On every secondary sale, the marketplace splits the price: seller receives the bulk, creator receives the royalty percentage encoded in metadata, marketplace keeps its fee.

1.4.1The Honest Truth About Royalty Enforcement

Here is where the analogy breaks down, and intellectual honesty requires saying so: royalties encoded in NFT metadata are not technically enforceable. They are a convention, not a protocol-level rule.

In 2022–2023, a wave of NFT marketplaces (Blur, most notably) launched with zero-royalty trading to attract volume. Creators saw royalty revenue collapse. The community response was Metaplex’s Programmable NFTs (pNFTs) and the Token-2022 Transfer Hook standard — both of which allow creators to encode rules that marketplaces must enforce or the transfer will fail at the protocol level.

For membership passes — where the issuer has ongoing control of the backend system granting benefits — there is an even simpler solution: the benefit is delivered by your backend, not enforced by the chain alone. If someone buys your pass on a secondary market without paying the royalty, your backend can simply check whether the sale was royalty-compliant before granting access. You control the door; you can demand the toll was paid.

For this course, we will use Metaplex Core (the 2025 standard) which supports transfer delegates and lifecycle hooks, giving creators meaningful programmatic control over transfers.


1.5Combining a Fungible Token and an NFT: Tiered Economies

Here is where the concepts from the whole course converge. You have a fungible token (your SPL token from Chapter 3). You have a token gate (Chapter 7). Now add an NFT membership pass.

The architecture is a tiered economy:

  1. The Pass (NFT) — proves your tier. Bronze, Silver, or Gold.

  2. The Token (SPL fungible) — the currency that flows through the system.

  3. The Gate — checks both the pass and the token balance before granting access to benefits.

Three-tier pyramid diagram showing Bronze Silver Gold membership NFT passes on left connecting to SPL token flows in center and gated benefits on right, with escalating rewards at each tier

Figure 6:Tiered Economy Architecture. The NFT pass establishes your tier. The fungible token is the currency. The token gate reads both and delivers escalating benefits — a complete membership economy in three moving parts.

1.5.1A Concrete Example: TokenSystems Academy

Imagine you run a professional development platform for blockchain builders. Here’s a tiered economy design:

Table 1:TokenSystems Academy Tier Structure

Tier

NFT Pass

SPL Token Requirement

Benefits

Bronze

Bronze Academy Pass

Hold 100 LEARN tokens

Community forum, recorded sessions

Silver

Silver Academy Pass

Hold 500 LEARN tokens

Live sessions, office hours access

Gold

Gold Academy Pass

Hold 2,000 LEARN tokens

1-on-1 mentorship, early access, governance voting

The pass proves your tier. The token balance proves your stake. Both together unlock the benefit. If you sell your Gold pass on a secondary market, the new holder gets Gold benefits if they also hold the required token balance. This design creates demand for both the pass and the token simultaneously — each amplifies the value of the other.

1.5.2Why This Works

Fungible tokens are great for degree — how much of something you hold. NFTs are great for kind — which specific thing you hold. Combining them means you can say “hold at least this much of this currency, and hold specifically this type of pass” — richer conditions than either instrument alone.


1.6Secondary Markets: Why Resale Value Is a Feature, Not a Bug

Traditional membership businesses fear transferability. A gym signs you to a 12-month contract, wants to keep you locked in, and loses nothing when you cancel because they capture the full year up front. The idea of you selling your remaining months to a stranger seems threatening — it disrupts their control of the member roster.

Marketplace interface diagram showing NFT membership pass listing price secondary sale flow with buy now offer and royalty distribution breakdown

Figure 7:Secondary Market Mechanics. A membership pass listed on Magic Eden or Tensor shows the floor price, recent sales, and royalty settings — giving both buyers and sellers transparent information that centralized membership markets never offered.

Reframe it: resale value is the most powerful marketing tool a membership business can offer.

If your Gold membership pass holds its value — or appreciates — on the secondary market, every member is incentivized to join early and stay. The membership becomes an investment as well as a service relationship. Members who no longer need the benefits recover value rather than feeling like they wasted money. And the marketplace listing is itself advertising: anyone browsing Magic Eden or Tensor for blockchain-related passes might discover your community for the first time.

1.6.1The Marketplaces

Two marketplaces dominate Solana NFT trading in 2026:

For the lab, you will list one pass on Magic Eden because the interface is designed for accessibility and you will observe the listing mechanics in real time.


1.7🔬 Hands-On Lab: Mint a Membership Pass Collection

1.7.1Overview

You will design a three-tier membership NFT collection using Metaplex’s no-code tools, mint passes on Solana mainnet, connect the tiers to your Chapter 7 token gate, and list one pass on a marketplace.

Step-by-step workflow diagram showing four stages of the lab: design metadata, upload to Arweave via Sugar, mint via Candy Machine, connect to token gate and list on marketplace

Figure 8:Lab Workflow. Four stages from metadata design to live marketplace listing. Each stage builds on the previous, culminating in a real, tradeable membership pass.

1.7.2Prerequisites

1.7.3Part 1 — Design Your Three-Tier Collection

Before touching any tool, design your collection on paper (or a doc):

Tier Design Template:

FieldBronzeSilverGold
Name[YourBrand] Bronze Pass #001[YourBrand] Silver Pass #001[YourBrand] Gold Pass #001
DescriptionEntry-level community accessMid-tier with live sessionsFull access + mentorship
Image StyleBronze metallic cardSilver metallic cardGold metallic card
Attribute: TierBronzeSilverGold
Attribute: Supply1005020
Token Requirement100 tokens500 tokens2,000 tokens

Keep supply intentional. Scarcity matters for the secondary market: Gold passes should be rare enough that their floor price reflects real exclusivity.

1.7.4Part 2 — Create Images for Each Tier

For this lab, you will create three simple pass images — one per tier. Options:

Option A (No Code): Use Canva (canva.com). Create a 1:1 square image (1000×1000px). Design a membership card aesthetic with:

Option B (AI-generated): Use any image generation tool (Gemini, DALL-E, Midjourney) with this prompt framework:

“A premium digital membership card for [YourBrand]. [Tier] tier. Metallic [bronze/silver/gold] aesthetic. Minimalist, professional, dark background. Card shows membership tier and brand name. Square format.”

Save each as a PNG file: bronze.png, silver.png, gold.png.

1.7.5Part 3 — Upload Metadata via Metaplex Candy Machine UI

Navigate to: studio.metaplex.com — Metaplex’s no-code Candy Machine interface.

Metaplex Candy Machine architecture diagram showing collection config, Solana program, minting interface, and user wallets

Figure 9:Metaplex Candy Machine Architecture. The Candy Machine program sits on Solana and enforces your collection’s rules — supply, price, dates, allowlists — without any custom code from you. The Studio UI is the control panel.

Steps:

  1. Connect your Phantom wallet using the Connect Wallet button. Ensure it’s set to Mainnet.

  2. Create a new Candy Machine → click “Create” → select “New Collection.”

  3. Upload your assets: For each tier, you will create a separate Candy Machine (three total) or use Metaplex’s multi-group configuration if available. For simplicity, start with one tier (Gold) for the lab.

  4. Configure metadata:

    • Name: Gold Member Pass

    • Symbol: GPASS (or your brand abbreviation)

    • Seller Fee Basis Points: 500 (= 5% royalty)

    • Upload your gold.png

  5. Set mint settings:

    • Price: 0 SOL (you’re minting to your own wallet for the lab, so set price to 0)

    • Supply: 5 (small number for the lab exercise)

    • Start Date: Immediate

  6. Review and deploy. The Studio UI will ask you to sign two transactions: one to create the Candy Machine program account, one to upload the metadata. Each costs roughly 0.01 SOL.

  7. Mint your passes. After deployment, click “Mint” on the Candy Machine page. Mint 2–3 passes to your wallet. Verify they appear in your Phantom wallet under “Collectibles.”

1.7.6Part 4 — Connect Tiers to Your Token Gate

Return to the Underdog Protocol dashboard (app.underdogprotocol.com) or your token-gating solution from Chapter 7.

Create a new gate condition:

This gate now requires both the Gold pass AND the token balance. Test it by visiting your gated content with your wallet connected. You should pass the gate because your wallet holds both the NFT and the required tokens.

To test a failing case: Create a second wallet with no NFTs and visit the gate. You should be denied access. This confirms the gate is reading on-chain state correctly.

1.7.7Part 5 — List on a Marketplace

Navigate to magiceden.io.

  1. Click “My Items” (top right, after connecting your wallet)

  2. Your minted Gold passes should appear

  3. Click a pass → “List for Sale”

  4. Set a price (even 0.001 SOL is fine — this is for observation, not profit)

  5. Sign the transaction

Screenshot your listing and the collection page analytics for your lab report.

1.7.8Part 6 — Observe and Reflect

Leave your pass listed for the duration of the class session. Note:


1.8🎯 In-Class Assignment: Design Your Membership Economy (10 pts)

Details and instructions will be provided in class.

Points: 10


1.9💬 Discussion: The Gym Membership Question

If a gym membership were an NFT, you could sell the remaining months to a stranger. The gym loses control of who its members are — someone the gym never vetted, never onboarded, never built a relationship with suddenly holds an active membership. But the gym gains a liquid product: memberships with real resale value attract customers who see purchasing as an investment, not a sunk cost.

Split illustration showing traditional gym membership locked to one person on the left versus NFT gym membership as a transferable asset on a marketplace on the right, with pros and cons labeled

Figure 10:Transferable Membership: Two Sides. Traditional memberships are locked. NFT memberships are liquid. The business gains a marketing mechanism and secondary-market revenue; it trades away roster control and relationship continuity.

Would businesses embrace or resist transferable memberships — and which customers benefit most?

Consider both sides:

The Case for Transferability:

The Case Against:

Discussion Guidelines:

Write a substantive post (minimum 300 words) that takes a clear position AND acknowledges the strongest counterargument. Cite at least one credible source — a news article, academic paper, or documented industry case — that supports your reasoning. A position without evidence is an opinion; with evidence it becomes an argument.

After posting, respond to at least two peers with substantive feedback. “I agree” is not feedback. Identify something specific in their argument you found compelling and one assumption they made that you’d push back on. Quality of engagement matters more than quantity.

Do not simply list pros and cons without committing. The best posts make a decision and defend it.


1.10📖 Glossary

Non-Fungible Token (NFT) A blockchain token with a supply of exactly one, carrying unique metadata that distinguishes it from every other token. On Solana, implemented via the Metaplex Token Metadata program.

Metaplex The primary NFT standard and tooling ecosystem on Solana. Defines the metadata schema, Candy Machine minting infrastructure, and Programmable NFT rules that wallets and marketplaces understand.

Candy Machine Metaplex’s minting program. Handles the mechanics of a fair NFT launch — supply cap, pricing, mint dates, allowlists, and metadata reveal — without custom smart contract code.

Metadata URI A URL stored in the on-chain NFT account that points to a JSON file describing the token’s name, image, description, and attributes. The actual content lives off-chain.

IPFS (InterPlanetary File System) A decentralized content-addressed storage network. Files are identified by their content hash rather than a server address. Commonly used for NFT metadata storage; pinning required for persistence.

Arweave A permanent decentralized storage network. Pay once at upload, stored forever. The preferred storage solution for production NFT metadata where permanence matters.

Seller Fee Basis Points The royalty percentage encoded in Metaplex metadata. 500 = 5%. Marketplaces that honor royalties pay this fraction of every secondary sale to the creator.

Programmable NFT (pNFT) A Metaplex NFT standard (2023+) that encodes transfer rules at the protocol level. Marketplaces cannot bypass royalties or restrictions without the transfer failing on-chain.

Token Gate An access control system that reads a user’s wallet to verify they hold specific tokens or NFTs before granting access to content, events, or services.

Floor Price The lowest listed price for any NFT in a given collection on a secondary market. The most widely watched metric for collection health.

Royalty A percentage of a secondary sale price routed to the original creator, encoded in NFT metadata. Enforceability varies by marketplace.

Tiered Economy A membership structure combining NFT passes (defining tier membership) with fungible token requirements (proving stake level) to gate escalating benefits.

Soulbound Token An NFT designed to be permanently non-transferable — proving a credential or achievement belongs to one specific wallet forever.

Magic Eden The largest Solana NFT marketplace by trading volume (2026). Supports royalties, collection analytics, and offers.

Tensor A Solana NFT trading platform preferred by sophisticated traders, offering AMM liquidity, bulk tools, and lower fees than Magic Eden.

Candy Machine UI (Studio) Metaplex’s browser-based no-code interface for creating and deploying Candy Machine NFT collections without writing smart contract code.

Transfer Hook A Solana Token-2022 feature allowing custom logic to execute on every transfer — enabling royalty enforcement and transfer restrictions at the protocol level.


1.11🏁 Walk Away With

By completing this chapter you now hold:

  1. A minted NFT membership pass collection — real assets on Solana mainnet representing tiered access to a service

  2. A functioning token gate reading both NFT and token balance — two-factor membership verification

  3. A live marketplace listing — your first participation in secondary-market mechanics

  4. A mental model for designing tiered economies that combine fungible currencies with non-fungible passes

The bigger takeaway is structural. Every business that sells access — subscriptions, event tickets, professional networks, loyalty programs — is currently built on centralized databases that they control entirely. NFT-based memberships redistribute some of that control to members: their pass lives in their wallet, their benefits are readable by any application, and their unused subscription value is recoverable. That’s a meaningfully different relationship between a business and its customers — one that some businesses will embrace and many will resist, but none should ignore.


1.12Chapter Summary