ERC721 Functions
Last updated
Functions used to mint NFTs.
Mints a token without an extension. Token URI can also be specified as a parameter to set the token URI upon mint.
Permissions: Owner/Admin function callable by contract owner only.
function mintBase(address to) returns (uint256)
function mintBase(address to, string calldata uri) returns (uint256)Batch mints tokens without an extension and sets the token URIs. Token URI can also be specified as a parameter to set the token URI upon mint.
Permissions: Owner/Admin function callable by contract owner only.
function mintBaseBatch(address to, uint16 count) returns (uint256[] memory)
function mintBaseBatch(address to, string[] calldata uris) returns (uint256[] memory)Last updated