Calls the "tokenDataOf" function on the contract.
import { tokenDataOf } from "thirdweb/extensions/lens"; const result = await tokenDataOf({ contract, tokenId: ...,});
function tokenDataOf( options: BaseTransactionOptions<TokenDataOfParams>,): Promise<{ mintTimestamp: bigint; owner: string }>;
The options for the tokenDataOf function.
let options: BaseTransactionOptions<TokenDataOfParams>;
let returnType: Promise<{ mintTimestamp: bigint; owner: string }>;
The parsed result of the function call.