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