TypeScript SDK
GetHandleFromProfileIdParams
type GetHandleFromProfileIdParams = {  overrides?: {    lensHandleAddress?: string;    tokenHandleRegistryAddress?: string;  };  profileId: bigint;};Override variables for LensHandle contract and TokenHandleRegistry contract Make sure both of them have to be on the same network
type overrides = {  lensHandleAddress?: string;  tokenHandleRegistryAddress?: string;};type profileId = bigint;