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