Finds Purchases by multiple criteria.
You can use any combination of keys.
Supports only 3 criteria at the same time including
the required auctionHouse attribute.
// Find all purchases in an Auction House. constpurchases = awaitmetaplex .auctionHouse() .findPurchases({ auctionHouse });
// Find purchases by buyer and mint. constpurchases = awaitmetaplex .auctionHouse() .findPurchases({ auctionHouse, buyer, mint });
Finds Purchases by multiple criteria. You can use any combination of keys. Supports only 3 criteria at the same time including the required
auctionHouse
attribute.