Skip to content

Commit

Permalink
add legacy events
Browse files Browse the repository at this point in the history
  • Loading branch information
mtabasco committed Jul 18, 2024
1 parent 085874c commit 9c79a9b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions contracts/interfaces/ISSVOperators.sol
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,12 @@ interface ISSVOperators is ISSVNetworkCore {
* @param toPrivate Flag that indicates if the operators are being set to private (true) or public (false).
*/
event OperatorPrivacyStatusUpdated(uint64[] operatorIds, bool toPrivate);

// legacy events
/**
* @dev Emitted when the whitelist of an operator is updated.
* @param operatorId operator's ID.
* @param whitelisted operator's new whitelisted address.
*/
event OperatorWhitelistUpdated(uint64 indexed operatorId, address whitelisted);
}

0 comments on commit 9c79a9b

Please sign in to comment.