Check if a contract supports the ERC721 interface.
import { isERC721 } from "thirdweb/extensions/erc721";const result = await isERC721({ contract });
function isERC721(options: BaseTransactionOptions): Promise<boolean>;
The transaction options.
let options: { contract: ThirdwebContract<abi> } & T;
let returnType: Promise<boolean>;
A boolean indicating whether the contract supports the ERC721 interface.