Skip to main content

NftMetadata

namestringrequired

The name of the NFT

imagestringrequired

The image URL or IPFS hash associated with the NFT

descriptionstring

Optional description of the NFT

bannerstring

Optional banner image URL or IPFS hash. Required for Collection Master NFT.

traits object[]
  • Array [
  • keystringrequired

    The trait key/name

    typestringrequired

    The type of the trait value

    Possible values: [string, text, image, url, field, number, address, map, tree]

    value objectrequired

    The trait value, can be a string or complex object depending on type

    oneOf
    string
    isPrivateboolean

    Optional flag indicating if this trait is private

  • ]
  • NftMetadata
    {
    "name": "string",
    "image": "string",
    "description": "string",
    "banner": "string",
    "traits": [
    {
    "key": "string",
    "type": "string",
    "value": "string",
    "isPrivate": true
    }
    ]
    }