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

Language:

GetNFTInfo

Get info of a NFT.

Parameters

contract|string - The contract address.

token_id|int - The token id.

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

Returns

response class - CommonResponse<EVMResMetadataNFTInfo>

Code Example


string contract = "contract address";
string token_id = "token_id";
MWSDK.BNB.Metadata.GetNFTInfo(contract, token_id, (res) => {
CommonResponse<EVMResMetadataNFTInfo> resObj = res;
long code = resObj.code;
string message = resObj.message;
EVMResMetadataNFTInfo nftInfo = resObj.data;
//todo...
});

Edit this page on GitHub

Copyright © Mirror World, Inc. 2023
On this page

Home

Integration

Guides

API Reference

Changelog