Hi
I’ve recently minted an NFT on my own contract on the Rinkeby testnet
But after 2-3 hours I still don’t see it in my React Moralis app
When I do
const testnetNFTs = await Moralis.Web3API.account.getNFTs({ chain: 'rinkeby', address: 'MYADDRESSS_ETC_HERE' });
it gives me 4 NFTs
But when I use a deprecated function from Moralis it gives me 7 NFTs as it should, which is weird
const userNFTs = await Moralis.Web3.getNFTs({ chain: 'rinkeby', address: 'MYADDRESSS_ETC_HERE' });
Background checks:
- I’ve checked that my NFTs are visible on opensea
- I’ve checked my Moralis server dashboard and can see 7 NFTs in the table
What I see on my React app:
Any help will be much appreciated : )