Verifies a Thirdweb Prebuilt Contract, e.g. Marketplace, DropERC721, etc
Example
const explorerAPIUrl = ""; // e.g. https://api.etherscan.io/apiconst explorerAPIKey = ""; // Generate API key on the explorerconst chainId = 1; // Change according to the networkawait sdk.verifier.verifyThirdwebPrebuiltImplementation(
"DropERC721",
chainId,
explorerAPIUrl,
explorerAPIKey,
storage, // this could be used from the SDK instance, e.g. sdk.storage
);