Advanced Minting
Advanced Minting Walkthrough
Last updated
Was this helpful?
Advanced Minting Walkthrough
Last updated
Was this helpful?
Create a folder on your PC and give it a name.
Within that folder, insert the file you want to mint. Example: Logo.png
Create an account on or download .
Create a .json file using a text editor such as Notepad.
Example: metadata.json
Save the .json file.
Upload the collection_metadata json file to Pinata or IPFS Desktop in the same manner as above. Note the CID.
Add an additional key/value pair to the NFT metadata json file whose key is "collection_metadata
" and value is the IPFS CID for the collection's metadata file.
Example:
{
"description": "Loopring Logo",
"image": "ipfs://QmZBf3Aq1LGNRLGqad2dxojwTA7ddgrMpsHqJCi6jeK6Vh",
"name": "Logo", "collection_metadata": "ipfs://QmbpBgKipbPbiLr3D2ykfiKv6XNerLSmWtoWECnqkStSs4",
"royalty_percentage": 10
}
JSON Legend: collection_metadata: A text string containing an IPFS CID which points to a collection metadata file.
Similarly, as the NFT file was uploaded above, upload the NFT metadata .json file to Pinata or IPFS Desktop.
If you wish to manually specify an IPFS CID of the NFT's collection_metadata file, proceed to .
If you will select a collection in the mint GUI, skip to .
Create a collection_metadata json file conforming to the specification found in .
If NFT's metadata does not contain a "collection_metadata
" key/value pair, proceed to .
If NFT's metadata does contain a "collection_metadata
" key/value pair, proceed to .
If an NFT is not a member of any collection, proceed to .