Luminex
  • About Us
  • Runes
    • What are Runes?
    • Luminex Tools for Runes
    • FAQs: General Concepts
    • Runes: Mint Page
    • FAQs: Runes on Luminex
  • ORDINALS
    • Open Launchpad
      • How to Create your first Recursive Collection
      • How to Create your first Static Collection
      • How to Create your first Editions Collection
    • Recursive Inscriptions
  • BRC69+
    • What is BRC69+?
    • Case Study: WZRD
    • Modules
    • How to Deploy a BRC69+ Collection
  • DMT
    • What is DMT?
    • Luminex Tools for DMT
    • DMT: Open Mints
    • DMT: Launchpad Mints
  • Features
    • Speed Up Transactions
Powered by GitBook
On this page
  • Step 1: Prepare Your Collection
  • Step 2: Deploy Your Collection
  • Step 3: Mint Your Collection
  • Step 4: Close the Mint and Reveal
  • We will release a tool to easily deploy and mint BRC69+ collections.
  1. BRC69+

How to Deploy a BRC69+ Collection

PreviousModulesNextWhat is DMT?

Last updated 1 year ago

Step 1: Prepare Your Collection

Compile Traits.json and Rules.json, and inscribe your preview image. These components form the backbone of your collection, defining its visual and logical structure.

Step 2: Deploy Your Collection

Inscribe the following HTML template, replacing placeholders with your specific inscription IDs:

<script src="/content/<OrdinalArtRenderer.js Inscription ID>"></script>
<script>
window.onload = function() {
  const renderer = new OrdinalArtRenderer(
    '/content/<traits.json InscriptionID>',
    '/content/<rules.json InscriptionID>',
    '<Preview Image Inscription ID>',
    'auto',
    { width: X, height: Y },
    'YourCollectionName'
  );
  renderer.init();
};
</script>

Step 3: Mint Your Collection

Allow users to mint from your collection by delegating the deployed inscription.

Step 4: Close the Mint and Reveal

Once the minting phase ends, collect all mint inscription IDs, generate Hashtable.json, and inscribe it as a child of the preview image. This final step triggers the on-chain reveal, revealing the unique traits of each Ordinal in your collection.

We will release a tool to easily deploy and mint BRC69+ collections.

Modules