From 9c79a9bd90beb7130806e6d50505cce90d3314a6 Mon Sep 17 00:00:00 2001 From: Marco Tabasco Date: Thu, 18 Jul 2024 12:40:30 +0200 Subject: [PATCH] add legacy events --- contracts/interfaces/ISSVOperators.sol | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/contracts/interfaces/ISSVOperators.sol b/contracts/interfaces/ISSVOperators.sol index 19548c37e..83d5004aa 100644 --- a/contracts/interfaces/ISSVOperators.sol +++ b/contracts/interfaces/ISSVOperators.sol @@ -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); }