js
js copied to clipboard
Loading NFTs in bulk with JSON files
Hello, and firstly thank you for a great library!
We are aiming to load NFTs in bulk including the JSON files.
The current implementation is as follows;
- use metaplex.nfts().findAllByMintList({ mints: [p1, p2,....] })
- For each meta returned call the metaplex.nfts().load({metadata}).
I'm hoping there is a better option as it requires many requests.
Thanks!