Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions contracts/src/interfaces/IRewardClaim.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

/// @notice This interface contains the methods, events and errors for claiming Espresso staking
/// rewards.
///
/// @notice This interface does not include administrative functionality of the RewardClaim
/// contract.
interface IRewardClaim {
/// @notice User claimed rewards
event RewardsClaimed(address indexed user, uint256 amount);
Expand Down