Minting many NFT at once

I’m working with local Art shop that want me Mint at least 50 NFT using the same policy ID. I know how to mint individually but how to do it using scripting or others ways…

if you want fast way doing it you can use EasyCNFT.art with around 4 Ada and around 1.5 come back with your 50 NFTs :slight_smile:

3 Likes

What you need to do is mint with this metadata

{
   "721": {
     "<policyid>": {
        "nft0": {
          "id": 0,
          "name": "<nft-name>",
          "image": "<link-to-image>",
        },
        "nft1": {
          "id": 1,
          "name": "<nft-name>",
          "image": "<link-to-image>",
        },
     }
   }
}

and when you mint you would write your --txout like address+yourbalance+1 nft0+1 nft

1 Like