getWalletNFTs returns null for specific address but works for other addresses

I can not get nfts for this address

const address = '0x7Fc3d60f1708456F4A7f9E2ad88242e00B15FA77';

  const chain = EvmChain.ETHEREUM;

  const response = await Moralis.EvmApi.nft.getWalletNFTs({
    address,
    chain,
  });

but it works for other addresses

const address = '0xAa5D1125DcD349455dC5f04911BcB315Af10C847';

I created nfts for the first address

and I don’t know why it returns empty results.

Could you be able to assist with this problem ?

This address doesnt have any nfts
https://etherscan.io/address/0x7Fc3d60f1708456F4A7f9E2ad88242e00B15FA77

NFTs created on opensea wont be in your wallet until you mint them. They might be lazy minted and they are not in your wallet right now, you will have to pay a fee to mint it

Thank you for the response. This gives me clues !

1 Like