diff --git a/src/interfaces/IIdentityManagerV2.sol b/src/interfaces/IIdentityManagerV2.sol index 3bb8d6e..e33382a 100644 --- a/src/interfaces/IIdentityManagerV2.sol +++ b/src/interfaces/IIdentityManagerV2.sol @@ -49,4 +49,7 @@ interface IIdentityManagerV2 { ); event UserVerificationRevoked(address indexed user, address indexed revoker, string reason); + event UserTypeUpdated(address indexed user, UserType oldType, UserType newType); + event VerificationRenewed(address indexed user, uint256 newExpirationTimestamp); + event BatchVerificationCompleted(address indexed admin, uint256 count, UserType userType); }