From 001b5d2fe231691860139c9e4df1e1df556f533f Mon Sep 17 00:00:00 2001 From: sveitser Date: Fri, 28 Nov 2025 12:22:29 +0100 Subject: [PATCH] doc: IRewardClaim covers reward claims only --- contracts/src/interfaces/IRewardClaim.sol | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/contracts/src/interfaces/IRewardClaim.sol b/contracts/src/interfaces/IRewardClaim.sol index 741c8bb2aa9..fb4823226be 100644 --- a/contracts/src/interfaces/IRewardClaim.sol +++ b/contracts/src/interfaces/IRewardClaim.sol @@ -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);