'is two different ERC721 contract can mint same NFT
I'm learning blockchain development recently and I'm implementing ERC721 contract to mint NFT and store the mapping of ownership. What if I deploy a second contract which mints NFT using same characteristics, does it have different NFTs or it will be replication of NFTs on the blockchain? Also, is there a possibility of minting same NFTs on the blockchain?
Solution 1:[1]
absolutely not, even if you are forking an existing contract (i.e. a replica), the contracts will be completely separate from each other, the ownership mapping of your contract will be completely different from that of the already existing contract
Solution 2:[2]
I think it will be considered as replication. You can make many copies of the same images and characteristics. With the same image and same characteristics, you will be creating the same Nft.
Also, is there a possibility of minting same NFTs on the blockchain?
Yes, I think if you go rarible and mint an Nft, you have an option to create as many copies as you want.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Jacopo Mosconi |
Solution 2 | Yilmaz |