tokensLazyMintedEvent
Creates an event object for the TokensLazyMinted event.
import { getContractEvents } from "thirdweb";import { tokensLazyMintedEvent } from "thirdweb/extensions/erc721"; const events = await getContractEvents({contract,events: [ tokensLazyMintedEvent({ startTokenId: ...,})],});
function tokensLazyMintedEvent(  filters: Partial<{ startTokenId: bigint }>,  readonly inputs: readonly [    {      readonly indexed: true;      readonly name: "startTokenId";      readonly type: "uint256";    },    { readonly name: "endTokenId"; readonly type: "uint256" },    { readonly name: "baseURI"; readonly type: "string" },    { readonly name: "encryptedBaseURI"; readonly type: "bytes" },  ];  readonly name: "TokensLazyMinted";  readonly type: "event";}>;
  readonly inputs: readonly [    {      readonly indexed: true;      readonly name: "startTokenId";      readonly type: "uint256";    },    { readonly name: "endTokenId"; readonly type: "uint256" },    { readonly name: "baseURI"; readonly type: "string" },    { readonly name: "encryptedBaseURI"; readonly type: "bytes" },  ];  readonly name: "TokensLazyMinted";  readonly type: "event";}>;
The prepared event object.