Skip to content

FRACTALTREX/fractal-ordinals-collections

This branch is up to date with unisat-wallet/fractal-ordinals-collections:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d64751d · Feb 21, 2025
Sep 14, 2024
Sep 17, 2024
Feb 19, 2025
Sep 14, 2024
Sep 14, 2024
Sep 14, 2024
Sep 14, 2024
Sep 14, 2024
Sep 14, 2024
Sep 14, 2024
Oct 24, 2024

Repository files navigation

Ordinals Collections Standards

Meta Data meta.json

{
  "description": "",
  "discord_link": "",
  "icon": "https://",
  "name": "",
  "slug": "", # all lowercase or underscore hyphen, consistent with the directory name
  "twitter_link": "https://",
  "website_link": "https://"
}

Inscription Data inscriptions.json

[
  {
    "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
        },
        ...
      ]
    }
  },
  ...
]

Your inscriptions.json file will look like this:

[
  {
    "id": "af0b19432a676551223e300e7197348b7c225cb7b31d0d7c6e246e382cbf6f81i0",
    "meta": {
      "name": "Planetary Ordinal #11",
      "attributes": [
        {
          "trait_type": "Background",
          "value": "Sun sun",
        },
        {
          "trait_type": "Holes",
          "value": "rose blossom",
        }
      ]
    }
  }
]

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 74.6%
  • Python 21.6%
  • JavaScript 3.8%