Skip to content

Instantly share code, notes, and snippets.

@nicovalencia
Created September 23, 2021 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicovalencia/987c67cc5687c567323bf5b29a44a529 to your computer and use it in GitHub Desktop.
Save nicovalencia/987c67cc5687c567323bf5b29a44a529 to your computer and use it in GitHub Desktop.
Level Protocol $LEVEL ERC-721 Token Metadata Example
{
"name": "Nico Valencia",
"description": "Developer, designer, and co-founder of 2C, IndieDAO, Level Protocol.",
"image": "ipfs://QmPK1s...gpqB",
"daos": {
"0": "ipfs://Qm4Xos...dHUt",
"7": "ipfs://QmYgpq...3pNY",
"13": "ipfs://QmUgJT...pohQ"
}
}
{
"title": "Asset Metadata",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Identifies the asset to which this NFT represents"
},
"description": {
"type": "string",
"description": "Describes the asset to which this NFT represents"
},
"image": {
"type": "string",
"description": "A URI pointing to a resource with mime type image/* representing the asset to which this NFT represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive."
},
"daos": {
"type": "object",
"description": "A mapping of DAOs and related profile attributes by $REP DAO (id) namespace.",
"additionalProperties": {
"type": "string",
"description": "URI to external metadata for this DAO."
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment