Return the Lens handle of a profile in the format: lens/@<name-of-user>
<name-of-user>
import { getHandleFromProfileId } from "thirdweb/extensions/lens"; const profileId = 461662n;const handle = await getHandleFromProfileId({ profileId, client }); // "lens/@captain_jack"
function getHandleFromProfileId( options: GetHandleFromProfileIdParams,): Promise<null | string>;
let options: { client: ThirdwebClient; overrides?: { chain?: Chain; lensHandleAddress?: string; tokenHandleRegistryAddress?: string; }; profileId: bigint;};
let returnType: Promise<null | string>;