import { sendTransaction } from "thirdweb";
import { setPrimarySaleRecipient } from "thirdweb/extensions/common";
const transaction = setPrimarySaleRecipient({
contract,
saleRecipient: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });