Retrieves all auctions based on the provided options.
import { getAllAuctions } from "thirdweb/extensions/marketplace"; const listings = await getAllAuctions({ contract, start: 0, count: 10,});
function getAllAuctions( options: BaseTransactionOptions<GetAllAuctionParams>,): Promise<Array<EnglishAuction>>;
The options for retrieving the auctions.
let options: BaseTransactionOptions<GetAllAuctionParams>;
let returnType: Promise<Array<EnglishAuction>>;
A promise that resolves to the auctions array.