Skip to main content
ERC-721 tokens are unique, non-fungible assets—each has a distinct ID and metadata. Use them for characters, weapons, land, collectibles, or any asset that should be one-of-a-kind.

Why Use ERC-721?

Players own their assets on-chain. They can trade, sell, or use them across any compatible game or marketplace.
Fixed supply is enforced by the blockchain. Players can verify rarity and authenticity of any item.
Earn royalties on every resale. Set your percentage at deployment and receive automatic payments.
Standard ERC-721 works with all Ethereum wallets, marketplaces, and tools out of the box.

Features

  • Unique Token IDs: Each token has distinct metadata
  • EIP-2981 Royalties: Automatic royalty enforcement
  • Operator Allowlist: Control which contracts can transfer
  • Batch Minting: Create multiple tokens in one transaction
  • Minting API: Server-side minting at scale

Deploy via Hub

Deploy Contracts

Deploy ERC-721 contracts in Hub

Metadata

Each NFT needs metadata following the ERC-721 standard. Metadata defines how items appear in wallets, marketplaces, and your game.

Required Fields

Optional Fields

Attributes

Use attributes to define item properties visible in marketplaces:

Attribute Display Types

Control how attributes appear in wallets and marketplaces:
Naming consistency: Use the same trait_type across all items. “Rarity” everywhere, not “Rarity” for some items and “Tier” for others. This improves marketplace filtering.

Metadata Hosting Options

Include metadata directly in mint requests. Immutable stores and serves it automatically:
Pros:
  • No hosting infrastructure required
  • Automatic IPFS pinning for permanence
  • Included in Minting API workflow
Cons:
  • Metadata becomes immutable after minting
  • Images still need external hosting

IPFS (Decentralized)

Upload metadata JSON to IPFS for permanent, decentralized storage: Pros:
  • Fully decentralized and permanent
  • Content-addressed (tamper-proof)
  • No ongoing hosting costs
Cons:
  • Requires IPFS setup or pinning service (Pinata, NFT.Storage)
  • Metadata cannot be updated

Self-Hosted

Host metadata on your own servers. Set baseURI during contract deployment: Pros:
  • Full control over metadata
  • Can update metadata after minting
  • Dynamic attributes possible
Cons:
  • Hosting infrastructure required
  • Centralization (server downtime affects metadata)
  • Must maintain availability

Minting

Via Minting API

Enable Minting API access in Hub, then:

Batch Minting

Mint up to 100 tokens per request:

Deploy via Code

Next Steps

Primary Sales

Sell NFTs directly to players

Crafting

Let players combine items