import { ClaimableERC1155, deployModularContract } from "thirdweb/modules";
 
const deployed = deployModularContract({
  client,
  chain,
  account,
  core: "ERC1155",
  params: {
    name: "My Modular Contract",
  },
  modules: [
    ClaimableERC1155.module({
       primarySaleRecipient: ...,
    }),
  ],
});