Internal functions callable only by the contract Owner or Admin for minting new tokens from the contract.
mintBaseNewMints a completely new token with the given amount without an extension. If URI is empty, URI will fall back to the default URI configured.
See the smart contract for further details.
Permissions: Owner/Admin function callable by contract owner only.
Copy function mintBaseNew ( address [] calldata to , uint256 [] calldata amounts , string [] calldata uris) returns ( uint256 [] memory )
mintBaseExistingMints more of an existing token without an extension. This function requires that the original token already exists and that it is not a token minted from an extension.
See the smart contract for further details.
Permissions: Owner/Admin function callable by contract owner only.
Copy function mintBaseExisting ( address [] calldata to , uint256 [] calldata tokenIds , uint256 [] calldata amounts)