import { sendTransaction } from "thirdweb";
import { approveBuyerForListing } from "thirdweb/extensions/marketplace";
const transaction = approveBuyerForListing({
contract,
listingId: ...,
buyer: ...,
toApprove: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });