Kunal Zanke
Kunal Zanke

Reputation: 19

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?

Upvotes: 1

Views: 546

Answers (2)

Yilmaz
Yilmaz

Reputation: 49709

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.

Upvotes: 0

Jacopo Mosconi
Jacopo Mosconi

Reputation: 1062

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

Upvotes: 2

Related Questions