import { sendTransaction } from "thirdweb";
import { MintableERC721 } from "thirdweb/modules";
const transaction = MintableERC721.setSaleConfig({
contract,
primarySaleRecipient: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });