File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ contract ShutterRegistry is Ownable {
20
20
uint64 timestamp;
21
21
}
22
22
/**
23
- * @dev Mapping to store registration timestamps for each identity.
24
- * The identity is represented as a `bytes32` hash and mapped to a uint64 timestamp .
23
+ * @dev Mapping to store registration data for each identity.
24
+ * The identity is represented as a `bytes32` hash and mapped to struct RegsitrationData .
25
25
*/
26
26
mapping (bytes32 identity = > RegsitrationData) public registrations;
27
27
@@ -45,7 +45,7 @@ contract ShutterRegistry is Ownable {
45
45
constructor () Ownable (msg .sender ) {}
46
46
47
47
/**
48
- * @notice Registers a new identity with a specified timestamp.
48
+ * @notice Registers a new identity with a specified timestamp and eon .
49
49
* @dev The identity is derived by hashing the provided `identityPrefix` concatenated with the sender's address.
50
50
* @param eon The eon associated with the identity.
51
51
* @param identityPrefix The input used to derive the identity hash.
You can’t perform that action at this time.
0 commit comments