So I want to create two different kind of NFTs, each one with its own name, but I don't want to create two different smart contracts and duplicate my code. I don't know if its possible, but it is worth asking. Sorry if it's an stupid question.
constructor(string memory _name, string memory _symbol) ERC721(_name, _symbol)
I instantiate it like this, so maybe it could be posible to instantiate two of them? idk. Thanks :)