✨
Playground
  • OVERVIEW
    • What is Playground?
    • Core Features
    • API Authentication
  • Guides
    • Trait Templates
      • Create a New Trait Template
        • Adding Media to Trait Templates
        • Setting Render Order for Traits
      • Get Started With a Pre-Made Trait Template
        • Access Passes
        • Achievement Badges
    • Minting New Traits
      • Trait Minting Flows
      • Gas Fee Options for Trait Minting
    • Migrating Metadata for Existing NFT Collections
      • Updating the BaseURI
  • Concepts
    • What are Traits?
      • Ownership and Transfers of Traits
      • Verified Traits
      • Artist Royalties
    • Media
    • Rendering
    • Access Controls
Powered by GitBook
On this page
  1. Guides
  2. Trait Templates
  3. Get Started With a Pre-Made Trait Template

Access Passes

Using Traits as Access Passes provides a versatile and innovative solution for brands, creators, and enterprises to offer unique and exclusive experiences to their audience.

By releasing Access Pass Traits to the NFT ecosystem, you can distribute access for a wide range of possibilities such as VIP access to events, early access to content, or entry to restricted digital areas.

Usage Guide:

  1. Copy the Access Passes Trait Template provided below and save it as a JSON file.

  2. Modify the value, image_url, and other fields as needed to represent the various access levels or benefits relevant to your brand, creators, or enterprises.

  3. Ensure the render_order value is set to a high number (e.g., 60) to allow the Access Pass to be displayed on top of other traits when multiple traits are combined in a single NFT. This will ensure that the access-related traits are clearly visible.

  4. If you want to add more access passes or benefits, simply add more objects to the "traits" array and maintain the same trait_type and render_order values.

  5. Upload the JSON file to your platform, following the instructions for submitting a Trait Template.

{
  "template_name": "Access Passes",
  "traits": [
    {
      "value": "VIP Lounge",
      "trait_type": "Access",
      "render_order": "60",
      "image_url": "https://example.com/images/vip-lounge-pass.png"
    },
    {
      "value": "Exclusive Event",
      "trait_type": "Access",
      "render_order": "60",
      "image_url": "https://example.com/images/exclusive-event-pass.png"
    },
    {
      "value": "Limited Edition Content",
      "trait_type": "Access",
      "render_order": "60",
      "image_url": "https://example.com/images/limited-edition-content-pass.png"
    }
  ]
}
PreviousGet Started With a Pre-Made Trait TemplateNextAchievement Badges

Last updated 2 years ago