Finds Listings by multiple criteria. You can use any combination of keys.
// Find all listings in an Auction House.const listings = await metaplex .auctionHouse() .findListings({ auctionHouse });// Find listings by seller and mint.const listings = await metaplex .auctionHouse() .findListings({ auctionHouse, seller, mint });
Generated using TypeDoc
Finds Listings by multiple criteria. You can use any combination of keys.