Git Source
address internal immutable FEE_FOLLOW_MODULE;
address internal immutable PROFILE_FOLLOW_MODULE;
address internal immutable NEW_FEE_FOLLOW_MODULE;
LensHandles internal immutable lensHandles;
TokenHandleRegistry internal immutable tokenHandleRegistry;
constructor(Types.MigrationParams memory migrationParams);
function batchMigrateProfiles(uint256[] calldata profileIds) external;
function batchMigrateFollows(
uint256 followerProfileId,
uint256[] calldata idsOfProfileFollowed,
uint256[] calldata followTokenIds
) external;
function batchMigrateFollowers(
uint256[] calldata followerProfileIds,
uint256 idOfProfileFollowed,
uint256[] calldata followTokenIds
) external;
function batchMigrateFollowModules(uint256[] calldata profileIds) external;
function getProfileIdByHandleHash(bytes32 handleHash) external view returns (uint256);
function setMigrationAdmins(address[] memory migrationAdmins, bool whitelisted) external;