@@ -18,29 +18,29 @@ contract ACLEvents {
1818 /// @param delegate The address of the account that receives the delegation.
1919 /// @param contractAddress The contract address to delegate access to.
2020 /// @param delegationCounter Counter that tracks the order of each delegation or revocation.
21- /// @param oldExpiryDate The previous UNIX timestamp when the user decryption delegation expires.
22- /// @param newExpiryDate The new UNIX timestamp when the user decryption delegation expires.
21+ /// @param oldExpirationDate The previous UNIX timestamp when the user decryption delegation expires.
22+ /// @param newExpirationDate The new UNIX timestamp when the user decryption delegation expires.
2323 event DelegatedForUserDecryption (
2424 address indexed delegator ,
2525 address indexed delegate ,
2626 address contractAddress ,
2727 uint64 delegationCounter ,
28- uint64 oldExpiryDate ,
29- uint64 newExpiryDate
28+ uint64 oldExpirationDate ,
29+ uint64 newExpirationDate
3030 );
3131
3232 /// @notice Emitted when a delegation for user decryption is revoked.
3333 /// @param delegator The address of the account that delegates access to its handles.
3434 /// @param delegate The address of the account that receives the delegation.
3535 /// @param contractAddress The contract address to delegate access to.
3636 /// @param delegationCounter Counter that tracks the order of each delegation or revocation.
37- /// @param oldExpiryDate The expiration UNIX timestamp of the revoked user decryption delegation.
37+ /// @param oldExpirationDate The expiration UNIX timestamp of the revoked user decryption delegation.
3838 event RevokedDelegationForUserDecryption (
3939 address indexed delegator ,
4040 address indexed delegate ,
4141 address contractAddress ,
4242 uint64 delegationCounter ,
43- uint64 oldExpiryDate
43+ uint64 oldExpirationDate
4444 );
4545
4646 /// @notice Emitted when an account is added to the deny list.
0 commit comments