Artists
Collection creators can format their collection data using the inscriptions.json
and meta.json
format below to be listed on all platforms using the standard!
Steps
- Create your
inscriptions.json
andmeta.json
files in the format provided below- Check out this file formatting tool!
- Add to the registry by creating a pull request including new collections that follow the standard
- Websites can use the registry to include the ordinal collections provided on their websites!
.
├── ...
└── collections
└── [collection-name]
├── inscriptions.json
└── meta.json
{
"name": "", # inscription name
"inscription_icon": "", # collection cover inscription id
"supply": "", # total supply
"slug": "", # directory name
"description": "", # collection description
"twitter_link": "", # official twitter
"discord_link": "", # official discord
"website_link": "" # official website
}
[
{
"id": "", # inscription id
"meta": {
"name": "" # inscription name
}
},
...
]
Collections can be organized using status
and rank
[
{
"id": "",
"meta": {
"name": "",
"status": "", # inscription theme
"rank": # inscription rarity rank
}
},
...
]
Artists can assign unqiue traits to ordinals with attributes
[
{
"id": "",
"meta": {
"status": "",
"rank": ,
"name": ""
"attributes": [
{
"trait_type": "", # trait category
"value": "", # trait value
"status": "", # trait theme
"percent": "" # percent of inscriptions in collection with trait
},
...
]
}
},
...
]