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 bed47fb commit 9c28996Copy full SHA for 9c28996
src/contracts/interfaces/IRewardsCoordinator.sol
@@ -92,6 +92,16 @@ interface IRewardsCoordinator {
92
uint32 duration;
93
}
94
95
+ struct OperatorSetRewardsSubmission {
96
+ RewardType rewardType;
97
+ uint32 operatorSetId;
98
+ StrategyAndMultiplier[] strategiesAndMultipliers;
99
+ IERC20 token;
100
+ uint256 amount;
101
+ uint32 startTimestamp;
102
+ uint32 duration;
103
+ }
104
+
105
/**
106
* @notice A distribution root is a merkle root of the distribution of earnings for a given period.
107
* The RewardsCoordinator stores all historical distribution roots so that earners can claim their earnings against older roots
0 commit comments