Stage 1: Preparation

The preparation stage involves the inscription and mapping of SVG files and other resources necessary for NFT generation.

Steps

  1. Inscribe SVG Stacks: Each SVG file (e.g., stack_1.svg, stack_2.svg) must be inscribed separately.

  2. Retrieve SatPoints: Obtain the satpoints for each inscribed SVG stack. Satpoints are unique identifiers within the Bitcoin blockchain that correspond to each inscription.

  3. Create JSON Mapping File: Develop a JSON file that maps satpoints to their respective layer names. The format of the mapping file is as follows:

    [
      [ "satPoint_1", "layer_id_1" ],
      [ "satPoint_1", "layer_id_2" ],
      [ "satPoint_2", "layer_id_3" ],
      ...
    ]

This file must also be inscribed on the blockchain.

4. Inscribe Compiler.js: The compiler.js file is essential for generating the final NFT images and must be inscribed separately.

Last updated