▪️3. Metaverse Component Instance

What's Metaverse Component Instance(MCI)?

They are a concretization of metaverse components. For example, Superman is an instance of Marvel metaverse hero, and a certain warrior is an instance of a Root metaverse warrior character.

Mint

Once a Metaverse Component is deployed, any wallet can mint its instance. The following Inscription will mint a warrior in the Root metaverse. After the mint process, the holder's wallet will possess the warrior character instance in the Root. When this inscription is transferred to another wallet, this instance will be owned by the new wallet.

{
    "p": "brc-1024",
    "metaverse": "root",
    "op": "mint",
    "tick": "charactor:warrior",
    "elements": {
        "Race": "Human",
        "Sub Race": "Warrior",
        "Gender": "Male",
        "Hair Color": "Black",
        "Hairstyle": "Short",
        "Skin Color": "White",
        "Clothing": "Leopard Print Robe",
        "Accessory": "Headband",
        "Weapon": "Darts",
        "Exoskeleton": ""
    }
}

Guides

  • After the Mint process, the holder's wallet will possess the warrior character instance in the Root. When this inscription is transferred to another wallet, this instance will be owned by the new wallet.

  • The keys contained in elements must be consistent with the Deploy inscription, without any addition or reduction. The case, spacing, and other formatting must also be exactly the same.

  • The value corresponding to each key must also be one of the values in the array corresponding to the key in the Deploy inscription, with sensitivity to case and exact matching of spaces and other formatting details.

Last updated