Thank you very much joteo,
it works now but takes like ages to load? what I have done is:
NFTTokenIds.slice(0, 5000).map((nft, index) =>…
and set limit to 5000
} = useMoralisWeb3ApiCall(token.getAllTokenIds, {
chain: chainId,
address: addr,
limit: 5000,
});
but first I got undefined collection, and got following message:
message=“Unable to fetch all NFT metadata… We are searching for a solution, please try again later!”
then load all NFT but as I said it takes long long time?
Is there any way to reduce the time of loading? lets say I divided my collection to 1000 and then put each under different image and name but the problem is all 5000 have the same address? so it will load the same 1000 in each collection?
any suggestions I really appreciate it…