MRC-721
Last updated
{
"name":"the full name of the collection",
"totalSupply":5, //該專輯的最大发行量,可接受值 ;range[-1~1e12];default to -1,means unlimited;optional
"royaltyRate":5, //該專輯的銷售版税設置,單位為百分比,5 即為 5%,可用範圍0-20, default to 0;optional
"desc":"description of the collection", //optional
"website":"https://the-website-of-the-collection", //optional
"cover":"metafile://your-nft-cover-pinid",//optional
"metadata":"any data if needed" //optional
}{
"items":
[{
"pinid":"the-pinid-of-nft", //optional
"name":"the-name-of-the-NFT-Item",//optional
"desc":"the description of the specific NFT",//optional
"cover":"metafile://your-nft-cover-pinid",//optional
"metadata":"any arbitrary data you can place here"//optional
},
//repeat item object if needed
]
}