CreateVerifiedCollection
Create a new Verified Collection.
_12string collectionName = "TopCollection";_12string collectionSymbol = "Top";_12string collectionUrl = "https://example.com/path/detail.json";_12string confirmation = Confirmation.Finalized;_12_12MirrorSDK.CreateVerifiedCollection(collectionName,collectionSymbol,collectionUrl,confirmation,(response) => {_12 long resCode = response.Code;_12 MintResponse result = response.Data;_12 string error = response.Error;_12 string message = response.Message;_12 string status = response.Status;_12});
Edit this page on GitHub