Mint NFT
Mint Single NFT
The mintNFT
function, imported from streamnft-evm, facilitates minting various types of tokens (ERC721, ERC1155, Certificate) on the Ethereum Virtual Machine (EVM). It supports both public and private minting methods for different token standards.
🔧 Function Signature
Return Value
An object containing:
success
(boolean): Indicates if minting was successful.tokenType
(number): The type of token minted.transactionHash
(string): The hash of the transaction.error
(string): Error message, if applicable.
Error Handling
Throws Invalid token type if
tokenType
does not match a supported type.Throws Unsupported token type for SoulBound and ERC7066 tokens (not yet implemented).
Catches and logs errors if the transaction fails.
Last updated