We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 085874c commit 9c79a9bCopy full SHA for 9c79a9b
contracts/interfaces/ISSVOperators.sol
@@ -86,4 +86,12 @@ interface ISSVOperators is ISSVNetworkCore {
86
* @param toPrivate Flag that indicates if the operators are being set to private (true) or public (false).
87
*/
88
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);
97
}
0 commit comments