import { MintableERC721 } from "thirdweb/modules";
 
const transaction = MintableERC721.mintWithRole({
  contract,
  to: "0x...", // Address to mint tokens to
  nfts: [
    {
      name: "My NFT",
      description: "This is my NFT",
      image: "ipfs://...",
    },
  ],
});
 
// Send the transaction
await sendTransaction({ transaction, account });