Skip to content

Commit 9c79a9b

Browse files
committed
add legacy events
1 parent 085874c commit 9c79a9b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

contracts/interfaces/ISSVOperators.sol

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,12 @@ interface ISSVOperators is ISSVNetworkCore {
8686
* @param toPrivate Flag that indicates if the operators are being set to private (true) or public (false).
8787
*/
8888
event OperatorPrivacyStatusUpdated(uint64[] operatorIds, bool toPrivate);
89+
90+
// legacy events
91+
/**
92+
* @dev Emitted when the whitelist of an operator is updated.
93+
* @param operatorId operator's ID.
94+
* @param whitelisted operator's new whitelisted address.
95+
*/
96+
event OperatorWhitelistUpdated(uint64 indexed operatorId, address whitelisted);
8997
}

0 commit comments

Comments
 (0)