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"
    }
  ]
}

Last updated