You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -172,7 +176,7 @@ abstract contract ServiceManagerBase is ServiceManagerBaseStorage {
172
176
/**
173
177
* @notice Forwards a call to Eigenlayer's RewardsCoordinator contract to set the address of the entity that can call `processClaim` on behalf of this contract.
174
178
* @param claimer The address of the entity that can call `processClaim` on behalf of the earner
175
-
* @dev Only callabe by the owner.
179
+
* @dev Only callable by the owner.
176
180
*/
177
181
function setClaimerFor(addressclaimer) publicvirtual onlyOwner {
Copy file name to clipboardExpand all lines: src/interfaces/IServiceManager.sol
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ interface IServiceManager is IServiceManagerUI {
13
13
* @notice Creates a new rewards submission to the EigenLayer RewardsCoordinator contract, to be split amongst the
14
14
* set of stakers delegated to operators who are registered to this `avs`
15
15
* @param rewardsSubmissions The rewards submissions being created
16
-
* @dev Only callabe by the permissioned rewardsInitiator address
16
+
* @dev Only callable by the permissioned rewardsInitiator address
17
17
* @dev The duration of the `rewardsSubmission` cannot exceed `MAX_REWARDS_DURATION`
18
18
* @dev The tokens are sent to the `RewardsCoordinator` contract
19
19
* @dev Strategies must be in ascending order of addresses to check for duplicates
@@ -28,7 +28,7 @@ interface IServiceManager is IServiceManagerUI {
28
28
* @notice Creates a new operator-directed rewards submission on behalf of an AVS, to be split amongst the operators and
29
29
* set of stakers delegated to operators who are registered to the `avs`.
30
30
* @param operatorDirectedRewardsSubmissions The operator-directed rewards submissions being created
31
-
* @dev Only callabe by the permissioned rewardsInitiator address
31
+
* @dev Only callable by the permissioned rewardsInitiator address
32
32
* @dev The duration of the `rewardsSubmission` cannot exceed `MAX_REWARDS_DURATION`
33
33
* @dev The tokens are sent to the `RewardsCoordinator` contract
34
34
* @dev This contract needs a token approval of sum of all `operatorRewards` in the `operatorDirectedRewardsSubmissions`, before calling this function.
@@ -44,7 +44,7 @@ interface IServiceManager is IServiceManagerUI {
44
44
/**
45
45
* @notice Forwards a call to Eigenlayer's RewardsCoordinator contract to set the address of the entity that can call `processClaim` on behalf of this contract.
46
46
* @param claimer The address of the entity that can call `processClaim` on behalf of the earner
0 commit comments