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

Language:

SearchNFTsByOwner

This endpoint is used to search NFTs by owner address.

Parameters

owner_address|string - The address of NFTs holder

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

Return

response class - CommonResponse<List<SUIResQueryNFT>>

Code Example


string owner_address;
MWSDK.SUI.Asset.SearchNFTsByOwner(owner_address, (res) =>
{
CommonResponse<List<SUIResQueryNFT>> resObj = res;
string message = resObj.message;
List<SUIResQueryNFT> data = resObj.data;
PrintLog("result:" + JsonUtility.ToJson(res));
});

Edit this page on GitHub

Copyright © Mirror World, Inc. 2023
On this page

Home

Integration

Guides

API Reference

Changelog