import { ClaimableERC1155 } from "thirdweb/modules";
const transaction = ClaimableERC1155.mint({
contract,
to: "0x...", // Address to mint tokens to
quantity: 2, // Amount of tokens to mint
});
// Send the transaction
await sendTransaction({ transaction, account });