Skip to content

Commit

Permalink
feat: add getFeedOwner
Browse files Browse the repository at this point in the history
  • Loading branch information
iavl committed May 28, 2024
1 parent 90400ca commit 65e287c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/interfaces/IEntryPoint.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ interface IEntryPoint {
*/
function createFeed(bytes32 feedId, address account) external;

/**
* @notice Returns the feed owner.
* @param feedId The feed id.
* @return The feed owner.
*/
function getFeedOwner(bytes32 feedId) external view returns (address);

/**
* @notice Tips the recipient feed.
* @param from The address who sends the tip.
Expand Down

0 comments on commit 65e287c

Please sign in to comment.