get NFT data

get NFT 1155 balance, transfer, listing and offers

import NiftySDK from 'nifty-protocol';

const niftySDK = new NiftySDK({ key: 'key', env: Nifty.envs.TESTNET });

const nft = await nifty.getNFT(contractAddress, nftId, chainId);
const { balances, transfers, listings, offers } = await nifty.getNFTData(nft);

Last updated