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