MintNFT
Mint NFT into collection. The "mintID" param is nullable, server will response that "minting is proceeding, please wait it" if detected one mintID is minted already.
_14string parentCollection = "collection_address";_14string collectionName = "NewNFT";_14string collectionSymbol = "NFT";_14string collectionUrl = "https://example.com/path/detail.json";_14string confirmation = Confirmation.Default;_14string mintID = "randomID";_14_14MirrorSDK.MintNFT(parentCollection,collectionName,collectionSymbol,collectionUrl,confirmation,mintID,(response) => {_14 long resCode = response.Code;_14 MintResponse result = response.Data;_14 string error = response.Error;_14 string message = response.Message;_14 string status = response.Status;_14});
Edit this page on GitHub