Quantum
  • Welcome to Quantum
  • Developer portal
    • Pricing
  • Self-Custody Infrastructure
    • Pincode Management
    • Private Key Management
  • Quickstart guide
  • Authentication
    • API Authentication
  • Faucets
  • Networks & URLs
  • Walletify Api
    • Overview
    • Getting started
    • User Management
    • Signing Methods
    • Testnet Assets
    • Basic Guides
      • Create a user
      • Retrieve a user
      • Update a user
      • Delete a user
      • Create a signing method
      • Update a signing method
      • Delete a signing method
      • Create a wallet
      • Retrieve wallet
      • Archive a wallet
      • Import a wallet
      • Export a wallet
      • Retrieve native balance
      • Retrieve ERC20 tokens
      • Retrieve NFTs
      • Transfer a native token
      • Transfer an ERC20 token
      • Transfer an NFT
      • Transfer a fungible token
      • Signatures
      • Read a contract
      • Execute a contract call
      • Get Transaction status
      • Resubmit a transaction
      • Get wallet events
      • Webhooks
    • Advanced Guides
      • Burn an NFT
      • Filter Spam NFTs
      • Filter NSFW NFTs
      • SWAP Token Pairs
      • Gasless/Meta Transactions
      • Sign RAW Transactions
      • Using Fiat Onramp with Walletify-API
      • Deploy an Ethereum contract
      • Integrate with WalletConnect
      • Set Up NFT Token Gating
      • Chain Specific Fields
      • Integrate with WalletConnect
      • Encrypted PIN Transfer
  • Nft Wizard Api
    • Overview
    • Getting started
    • Basic Guides
      • Get any NFT info
      • Get any NFT contract
      • Get NFTs by any wallet
      • Get wallets by any NFT
      • Create contract
      • Retrieve Contract
      • Delete Contract
      • Check Contract Status
      • Retrieve Contract Metadata
      • Update Contract Metadata
      • Create Token-type (NFT template)
      • Retrieve Token-type (NFT template)
      • Delete Token-type (NFT Template)
      • Check Token-type Status
      • Retrieve Token-type Metadata
      • Update Token-type Metadata
      • Mint an NFT
      • Batch Mint NFTs
      • Update NFT Metadata
      • Retrieve NFT Metadata
      • Add Audio to your NFTs
      • Add Video to your NFTs
      • Store NFT Media
      • Webhooks
    • Advanced Guides
      • Mass Minting
      • Speed Up Minting
      • Dynamic NFTs
      • Configure Royalties
      • Create Company Minter Wallet
      • Retrieve Company Minter Wallets
      • Store NFT Metadata on IPFS
      • View NFT on sandbox/testnet
    • NFT Configuration
      • Attributes
      • Animation & Media
      • Collection Info
      • Max Supply
      • Mint Number
      • Burnable
      • Metadata Storage
  • TMINTER API
    • Overview
    • Getting started
    • Basic Guide
      • Retrieve Any NFT Information
      • Retrieve NFT Contract Information
      • Retrieve NFTs by Wallet Address
      • Retrieve Wallets by NFT
      • Create a New NFT Contract
      • Retrieve a Contract
      • Delete a Contract
      • Check Contract Status
      • Retrieve Contract Metadata
      • Update Contract Metadata
      • Create Token-Type
      • Retrieve Token-Type
      • Delete Token-Type
      • Check Token-Type Status
      • Retrieve Token-Type Metadata
      • Update Token-Type Metadata
      • Mint a Single NFT
      • Batch Mint Multiple NFTs
      • Update NFT Metadata
      • Retrieve NFT Metadata
      • Add Audio to Your NFTs
      • Add Video to Your NFTs
      • Store NFT Media
      • Webhooks for NFT Events
    • Advance Guide
      • Dynamic NFT Creation
      • Token Economics and Supply Control
      • Advanced Minting: Royalty Distribution
      • Cross-Chain NFT Minting
      • NFT Sharding (Fractional Ownership)
      • Batch NFT Minting with Custom Metadata
      • Add Interactivity to NFTs
      • Advanced Media Integration: VR and AR
      • Webhook Triggers for Automated Processes
Powered by GitBook
On this page
  1. Nft Wizard Api
  2. NFT Configuration

Collection Info

PreviousAnimation & MediaNextMax Supply

Last updated 9 months ago

Collection info is metadata about the collection, the brand, and the company to which the NFT belongs. Unlike all other metadata, the collection info is not stored in the metadata of the NFT, but rather in the metadata of the NFT contract. It allows us to add information such as the name and description of a collection as well as certain forms of media such as a logo and a banner, social channels, and even a YouTube video.

NFT Collection Information

Data Structure

Signature:

JSON

{
   "name": string, // Name of the collection
   "description": string, // Description of the collection
   "chain" : string, // Blockchain that hosts the contract
   "symbol" : string, // Symbol related to the contract
   "image" : string // Logo of the collection,
   "externalUrl": string // CTA link,
   "media" : [
      {"type": "image", "value" : string }, // Will be used as a hero image for your nft collection
      {"type": "banner", "value" : string }, // Will be used as a banner image for your nft collection
      {"type": "instagram", "value" : string }, // Adds Instagram social link
      {"type": "twitter", "value" : string } // Adds Twitter social link
   ],
   "owner": Address //Wallet address the will be the owner of the NFT contract
}

Example:

JSON

{
   "id": 1751, // Reference ID of the contract
   "name": "Space Chickens",
   "description":"Space Chickens in Space is an American-Australian-Mexican-British-Irish animated television series produced by Ánima Estudios in Mexico, Studio Moshi in Australia. A trio of chickens—Chuck, Starley and Finley—are taken from their home and mistakenly enrolled in an elite intergalactic former military academy. It would take all their strength, and teamwork, to survive every escapade they have.",
   "chain" : "MATIC",
   "confirmed": true, // Boolean to indicate if the tx to create the contract has been minted yet.
   "symbol" : "SPACECHICKS",
   "image" : "https://static.wikia.nocookie.net/logopedia/images/a/aa/Space_Chickens_in_Space.jpg",
   "externalUrl": "https://en.wikipedia.org/wiki/Space_Chickens_in_Space",
   "media" : [
      {"type": "image", "value" : "https://dg31sz3gwrwan.cloudfront.net/fanart/355763/1357791-0-q80.jpg"},
      {"type": "instagram", "value" : "https://www.instagram.com/spacechickes"},
      {"type": "twitter", "value" : "https://twitter.com/spacechickes"}
    ],
    "owner": "0xF4Cc6E6c585d23585d5F08BDaEE9b85aB658fa95",
    "transactionHash": "0x5b6f718b41b138849f267c9c40b687e28dbe68fc6c50343469e6bd13c578535d" // Transaction that created the contract
}

Social links that are supported by the Quantum Market

  • Facebook

  • Instagram

  • Twitter

  • Discord

  • Twitch

  • Medium

  • Telegram

  • YouTube

NFT Collection Information