AcceptDirectOffer
type AcceptDirectOffer = {  addressOfOfferor: string;  listingId: BigNumberish;};
The wallet address of the user who made the offer you wish to accept.
 The useContractEvents  hook can be used to read all "NewOffer"  events on your Marketplace  contract.
type addressOfOfferor = string;
 The listingId  of the listing you wish to accept. Each listing has a unique listingId  on the Marketplace  contract.
type listingId = BigNumberish;