We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 17e1fef + dadef52 commit bc337b5Copy full SHA for bc337b5
1 file changed
src/interfaces/IIdentityManagerV2.sol
@@ -78,4 +78,9 @@ interface IIdentityManagerV2 {
78
function revokeVerification(address user, string calldata reason) external;
79
function updateUserType(address user, UserType newUserType) external;
80
function renewVerification(address user, uint256 newExpirationTimestamp) external;
81
+
82
+ // View functions
83
+ function getIsVerified(address user) external view returns (bool);
84
+ function isUserVerified(address user) external view returns (bool);
85
+ function isVerificationExpired(address user) external view returns (bool);
86
}
0 commit comments