Finds multiple NFTs and SFTs by their creator at a given position.
// Find all by first creator.const nfts = await metaplex .nfts() .findAllByCreator({ creator };// Find all by second creator.const nfts = await metaplex .nfts() .findAllByCreator({ creator, position: 2 };
Generated using TypeDoc
Finds multiple NFTs and SFTs by their creator at a given position.