How to Deploy a BRC69+ Collection

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.

Modules

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.

Last updated