Last active
January 25, 2022 13:45
-
-
Save PeterTheOne/09cf4c6b49f7dfa4319fddaedba1b721 to your computer and use it in GitHub Desktop.
test 1155 nft metadata with decimals
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": "Asset Name", | |
"description": "Lorem ipsum...", | |
"decimals": 3, | |
"image": "https:\/\/s3.amazonaws.com\/your-bucket\/images\/{id}.png", | |
"properties": { | |
"simple_property": "example value", | |
"rich_property": { | |
"name": "Name", | |
"value": "123", | |
"display_value": "123 Example Value", | |
"class": "emphasis", | |
"css": { | |
"color": "#ffffff", | |
"font-weight": "bold", | |
"text-decoration": "underline" | |
} | |
}, | |
"array_property": { | |
"name": "Name", | |
"value": [1,2,3,4], | |
"class": "emphasis" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment