Say I use UUPS pattern and want to add ERC721 by inheriting it, is this possible?
i.e.
contract MyContractV1 is OwnableUpgradeable {
and for the next version
contract MyContractV2 is OwnableUpgradeable, ERC721Upgradeable {
Say I use UUPS pattern and want to add ERC721 by inheriting it, is this possible?
i.e.
contract MyContractV1 is OwnableUpgradeable {
and for the next version
contract MyContractV2 is OwnableUpgradeable, ERC721Upgradeable {