Last active
January 9, 2025 14:37
-
-
Save dac09/b0da415fa4e010a0971c7ce7c7cc7340 to your computer and use it in GitHub Desktop.
ERC721 Metadata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Cat1", | |
"description": "A one-of-a-kind digital artwork.", | |
"image": "https://placecats.com/millie_neo/300/200", | |
"external_url": "https://placecats.com/millie_neo/300/200", | |
"attributes": [ | |
{ | |
"trait_type": "Artist", | |
"value": "Place Cat" | |
}, | |
{ | |
"trait_type": "Year", | |
"value": "2025" | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Cat2", | |
"description": "A unique digital artwork.", | |
"image": "https://placecats.com/neo_banana/300/200", | |
"external_url": "https://placecats.com/neo_banana/300/200", | |
"attributes": [ | |
{ | |
"trait_type": "Artist", | |
"value": "Place Cat" | |
}, | |
{ | |
"trait_type": "Year", | |
"value": "2024" | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Cat3", | |
"description": "An exclusive digital artwork.", | |
"image": "https://placecats.com/neo_2/300/200", | |
"external_url": "https://placecats.com/neo_2/300/200", | |
"attributes": [ | |
{ | |
"trait_type": "Artist", | |
"value": "Place Cat" | |
}, | |
{ | |
"trait_type": "Year", | |
"value": "2023" | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Cat4", | |
"description": "A rare digital artwork.", | |
"image": "https://placecats.com/bella/300/200", | |
"external_url": "https://placecats.com/bella/300/200", | |
"attributes": [ | |
{ | |
"trait_type": "Artist", | |
"value": "Place Cat" | |
}, | |
{ | |
"trait_type": "Year", | |
"value": "2022" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment