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