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 d27972b commit b1df47dCopy full SHA for b1df47d
contracts/bonding/IBondingManager.sol
@@ -72,6 +72,20 @@ interface IBondingManager {
72
73
function setCurrentRoundTotalActiveStake() external;
74
75
+ function setRewardCaller(address _rewardCaller) external;
76
+
77
+ function reward() external;
78
79
+ function rewardWithHint(address _newPosPrev, address _newPosNext) external;
80
81
+ function rewardForTranscoder(address _transcoder) external;
82
83
+ function rewardForTranscoderWithHint(
84
+ address _transcoder,
85
+ address _newPosPrev,
86
+ address _newPosNext
87
+ ) external;
88
89
// Public functions
90
function getTranscoderPoolSize() external view returns (uint256);
91
0 commit comments