Git Source Inherits: ApplicationERC721 Author: @ShaneDuncan602, @oscarsernarosero, @TJ-Everett This is an example implementation of the protocol ERC721 where minting is only available for app administrators or contract owners.

Functions

constructor

Constructor sets the name, symbol and base URI of NFT along with the App Manager and Handler Address
constructor(string memory _name, string memory _symbol, address _tokenAdmin, string memory _baseUri)
    ApplicationERC721(_name, _symbol, _tokenAdmin, _baseUri);
Parameters
NameTypeDescription
_namestringName of NFT
_symbolstringSymbol for the NFT
_tokenAdminaddressToken Admin address
_baseUristringURI for the base token