getFollowData

Calls the "getFollowData" function on the contract.

Example

import { getFollowData } from "thirdweb/extensions/lens";
const result = await getFollowData({
contract,
followTokenId: ...,
});
function getFollowData(
): Promise<{
followTimestamp: number;
followerProfileId: bigint;
originalFollowTimestamp: number;
profileIdAllowedToRecover: bigint;
}>;

Parameters

The options for the getFollowData function.

Type

Returns

let returnType: Promise<{
followTimestamp: number;
followerProfileId: bigint;
originalFollowTimestamp: number;
profileIdAllowedToRecover: bigint;
}>;

The parsed result of the function call.