Skip to main content
BETA
HomeIntegration BuilderAPI ReferenceGuidesChangelog
View Mirror World on Github
Join the Discord server

Language:

GetMintedNFTOnCollection

This endpoint is used to fetch NFTs on collection that user already minted.

Parameters

action|Action<CommonResponse<List<SUIResGetMintedNFTOnCollectionObj>> - The callback function of this method is used to receive the results.

Return

response class - CommonResponse<List<SUIResGetMintedNFTOnCollectionObj>>

Code Example


string collection;
MWSDK.SUI.Asset.GetMintedNFTOnCollection(collection, (res) =>
{
CommonResponse<List<SUIResGetMintedNFTOnCollectionObj>> resObj = res;
string message = resObj.message;
List<SUIResGetMintedNFTOnCollectionObj> data = resObj.data;
//todo
});

Edit this page on GitHub

Copyright © Mirror World, Inc. 2023
On this page

Home

Integration

Guides

API Reference

Changelog