NFT metadata standards
Off-Chain Metadata
Basic NFT
{
"title": "Title of the NFT",
"description": "Description of the NFT",
"image": "Hash of the media",
"properties": {
"media": {
"hash": "Hash of the media",
"type": "Type of the media (file format)",
"size": "Size of the media"
}
}
}Secret NFT
{
"title": "(OPTIONAL) Title of the Secret NFT",
"description": "(OPTIONAL) Description of the Secret NFT",
"properties": {
"encrypted_media": {
"hash": "Hash of the encrypted media",
"type": "Type of the encrypted media (file format)",
"size": "Size of the encrypted media",
"name": "(OPTIONAL) Name of the encrypted media",
"description": "(OPTIONAL) Description of the encrypted media"
},
"public_key_of_nft": "Public key associated with the Secret NFT"
}
}Collection
Marketplace
Last updated