-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28f515a
commit de48e9f
Showing
7 changed files
with
76 additions
and
2 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
test_mint |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"title": "Token Metadata", | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string", | ||
"description": "Identifies the asset to which this token represents" | ||
}, | ||
"decimals": { | ||
"type": "integer", | ||
"description": "The number of decimal places that the token amount should display - e.g. 18, means to divide the token amount by 1000000000000000000 to get its user representation." | ||
}, | ||
"description": { | ||
"type": "string", | ||
"description": "Describes the asset to which this token represents" | ||
}, | ||
"image": { | ||
"type": "string", | ||
"description": "A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive." | ||
}, | ||
"properties": { | ||
"type": "object", | ||
"description": "Arbitrary properties. Values may be strings, numbers, object or arrays." | ||
} | ||
} | ||
} | ||
|
||
{ | ||
"name": "Caminho ao Pico do Jaraguá", | ||
"description": "Caminho ao Pico do Jaraguá or Path to Jaraguá Hights is an oil in canvas paiting. It is one of first artwork made Ismenia Coaracy. The buyer will receive the physical item and also the rights of the digital version of it.", | ||
"image": "https://novatrixtech.github.io/paredesnft/static/ismeniacoaracy_pico-do-jaragua.jpg", | ||
"image_low": "https://novatrixtech.github.io/paredesnft/static/ismeniacoaracy_pico-do-jaragua_small.jpg", | ||
"external_url": "https://pt.wikipedia.org/wiki/Ism%C3%AAnia_Coaracy", | ||
"seller_fee_basis_points": 100, | ||
"fee_recipient": "0x7dA2547202458D2540d64513D409A1c2bA57bA3A", | ||
"attributes": [ | ||
{ | ||
"trait_type": "Medium", | ||
"value": "Oil in Canvas" | ||
}, | ||
{ | ||
"trait_type": "Year", | ||
"value": "1957" | ||
}, | ||
{ | ||
"trait_type": "Artist", | ||
"value": "Ismenia Coaracy" | ||
}, | ||
{ | ||
"trait_type": "Dimensions", | ||
"value": "44 cm x 34 cm" | ||
} | ||
] | ||
} |
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