Skip to main content

Creators

Add music to an image NFT.

Creators and attachments are paramount to build a well structured music NFT.

SyntaxDescription
Attachments & CreatorsAdding music files to the NFT & crediting each rightsholder/creator

Metadata elements

The following metadata is part of the legacy NFT creation techniques. As of 2022, this section must be used so marketplaces can identify the files to display, and the creators who have to receive commissions from secondary sales.

Creator Information

The creators element should be an array that includes all wallet addresses from creators who own IP in the NFT

SyntaxDescription
propertiescategory: (image, audio, video...)
files: External link to file stored (centralised or decentralised)
creators : An array that includes all creators wallet address, creator share of NFT royalty. Minimum requirements is one creator (wallet address) and percentage of share.

Important information needed to comply with nft worldwide standards. It will be used by marketplaces wallets/tools to visualise nfts, pay transfer royalties, etc. Ensure total sum of share across creators equals 100%.

JSON example for this layer (tradeability layer)

NFT minimum requirements
{
"properties": {
"category": "image",
"files": [
{
"uri": "0.jpg",
"type": "image/.jpg"
},
{
"uri": "https://security.middleware.soundpickr.com/198745129129w983957wefiuh98y",
"type": "audio/mp3"
}
],
"creators": [
{
"address": "nYowtMaRr7eEaqlpwaapl1lzeetxu4moYo9fj7h3y",
"share": 100
},
]
}
}