MagnifyERC721V1

Git Source Inherits: ERC721, Ownable

string public baseURI;

address public magnifyCash;

string private _name;

string private _symbol;

Requires caller to be the Magnify Cash contract

modifier onlyMagnifyCash();

constructor(string memory name, string memory symbol, string memory _baseURI, address initialOwner);

Set Magnify Cash contract address, requires caller to be owner

Update base URI but requires caller to be owner

Call _mint but requires caller to be the Magnify Cash contract

Call _burn but requires caller to be the Magnify Cash contract

Last updated