Update regarding this issue - issues were caused by isLazyNft() validation.
All NFTs returned by the findAllByOwner() and findAllByMintList() were lazyNfts, so validation returned undefined. And the NFTs list were just Array of undefineds.
I reworked the functions, so even if NFT is lazyNft, the function will run the loadNft() function and return non-lazy NFT, with all needed Metadata.
I've tested the functions and everything should work fine now. ðŸ¤
Update regarding this issue - issues were caused by
isLazyNft()
validation.All NFTs returned by the
findAllByOwner()
andfindAllByMintList()
werelazyNft
s, so validation returnedundefined
. And the NFTs list were just Array ofundefined
s.I reworked the functions, so even if NFT is
lazyNft
, the function will run theloadNft()
function and return non-lazy NFT, with all needed Metadata.I've tested the functions and everything should work fine now. ðŸ¤