File tree Expand file tree Collapse file tree
protocol-contracts/staking/contracts Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,15 +48,15 @@ contract OperatorRewarder is Ownable {
4848 /// @notice Emitted when the fee is updated.
4949 event FeeUpdated (uint16 oldFee , uint16 newFee );
5050
51+ /// @notice Emitted when an address is authorized to claim rewards on behalf of the receiver address.
52+ event ClaimerAuthorized (address receiver , address claimer );
53+
5154 /// @notice Error for invalid claimer address.
5255 error InvalidClaimer (address claimer );
5356
5457 /// @notice Emitted when the claimer for the receiver address is already set.
5558 error ClaimerAlreadySet (address receiver , address claimer );
5659
57- /// @notice Emitted when an address is authorized to claim rewards on behalf of the receiver address.
58- event ClaimerAuthorized (address receiver , address claimer );
59-
6060 /// @notice Emitted when an address is not authorized to claim rewards on behalf of the receiver address.
6161 error ClaimerNotAuthorized (address receiver , address claimer );
6262
You can’t perform that action at this time.
0 commit comments