Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/interfaces/IIdentityManagerV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,11 @@ interface IIdentityManagerV2 {
uint256[] calldata expirationTimestamps,
string[] calldata metadataHashes
) external;

function emergencyVerify(address user, UserType userType, VerificationLevel level) external;

// Management functions
function revokeVerification(address user, string calldata reason) external;
function updateUserType(address user, UserType newUserType) external;
function renewVerification(address user, uint256 newExpirationTimestamp) external;
}
Loading