import { lazyMint } from "thirdweb/extensions/erc721";
import { sendTransaction } from "thirdweb";
const transaction = lazyMint({
contract,
nfts: [
{
name: "My NFT",
description: "This is my NFT",
image: "https://example.com/image.png",
},
],
});
await sendTransaction({ transaction, account });