Calls the "getFollowData" function on the contract.
import { getFollowData } from "thirdweb/extensions/lens"; const result = await getFollowData({ contract, followTokenId: ...,});
function getFollowData( options: BaseTransactionOptions<GetFollowDataParams>,): Promise<{ followerProfileId: bigint; followTimestamp: number; originalFollowTimestamp: number; profileIdAllowedToRecover: bigint;}>;
The options for the getFollowData function.
let options: BaseTransactionOptions<GetFollowDataParams>;
let returnType: Promise<{ followerProfileId: bigint; followTimestamp: number; originalFollowTimestamp: number; profileIdAllowedToRecover: bigint;}>;
The parsed result of the function call.