Get NFT
public void GetNFT()
{
PhantasmaAPI api = new PhantasmaAPI("https://testnet.phantasma.info/rpc");
var symbol = "CROWN";
var tokenId = "1";
var loadProperties = true;
StartCoroutine(api.GetNFT(symbol, tokenId, loadProperties, (nft) =>
{
Debug.Log(nft);
}));
}Last updated