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