[
{
"id": "", # inscription id
"meta": {
"name": "" # inscription name
}
},
...
]
Artists can assign unqiue traits to ordinals with attributes
[
{
"id": "",
"meta": {
"name": ""
"attributes": [
{
"trait_type": "", # trait category
"value": "", # trait value
},
...
]
}
},
...
]
main Here is an example of a completed collection inscription
Your meta.json file will look like this:
{
"name": "Bitcoin Frog #2989",
"inscription_icon": "c387a2656ef973a55df57edd3ac4b26b09865cc3fcb21cfaa4921ead1363f53ai0",
"slug": "bitcoin-frogs",
"description": "Bitcoin Frogs are 10,000 pure digital collectibles that will remain on Bitcoin forever. No more will ever be created. Rarities of all traits within each layer are equal, allowing subjective appreciation of aesthetics and Satoshi-based rarities to emerge.",
"twitter_link": "https://twitter.com/BitcoinFrogs",
"discord_link": "https://discord.com/invite/bitcoinfrogs",
"website_link": "https://bitcoinfrogs.com"
}
======= main Your inscriptions.json file will look like this:
[
{
"id": "c387a2656ef973a55df57edd3ac4b26b09865cc3fcb21cfaa4921ead1363f53ai0",
"meta": {
"name": "Bitcoin Frog #2989",
"attributes": [
{
"trait_type": "Background",
"value": "Black",
},
{
"trait_type": "Body",
"value": "Tron",
},
{
"trait_type": "Clothing",
"value": "Green Hoodie",
},
{
"trait_type": "Mouth",
"value": "Cigar",
},
{
"trait_type": "Eyes",
"value": "Visor",
}
]
}
}
]