Comment on page
Prepare files
Step 1 - Prepare NFT collection files
Before starting the NFTs collection setup on the Crossbased NFTs launch is needed to have properly prepared media and metadata files.
Make sure that you have a corresponding JSON file for each media file. Each JSON file should be named exactly as its NFT file (for instance: 1.png and 1.json). Ensure that JSON file's metadata files are properly formatted and match the media file.
1.json file example
1
{
2
"name": "Combot #1",
3
"description": "Discover Combots, ComVerse's collection of 999 NFTs. Providing holders passive income and original NFT art. By Combased.",
4
"attributes": [
5
{
6
"trait_type": "Background",
7
"value": "Rainbow"
8
},
9
{
10
"trait_type": "Body",
11
"value": "Pink"
12
},
13
{
14
"trait_type": "Body Outfit",
15
"value": "Food Fight"
16
},
17
{
18
"trait_type": "Face Expression",
19
"value": "Ready To Fight"
20
},
21
{
22
"trait_type": "Face",
23
"value": "Reading Glasses"
24
}
25
]
26
}
Gather all of your media files, including images and videos, along with their corresponding metadata files, and place them into a single folder. Use the following naming convention for all files: 1.png (or jpg/mp4/etc.) for media files, and 1.json for metadata files (1.png / 1.json, 2.png / 2.json, 3.png / 3.json, and so on until the max supply number.)

We strongly recommend using Pinata to upload your entire folder to the IPFS network. However, please note that storing your files on IPFS is not free of charge. To ensure that your items remain accessible indefinitely, you will need to "pin" them.
Last modified 7mo ago