Skip to content

Commit

Permalink
fill missing natspec comments on ICyphernodeRegistry
Browse files Browse the repository at this point in the history
  • Loading branch information
auryn-macmillan committed Jun 5, 2024
1 parent 72f187d commit 2164536
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/evm/contracts/interfaces/ICyphernodeRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@ pragma solidity >=0.8.26;

interface ICyphernodeRegistry {
/// @notice This event MUST be emitted when a committee is selected for an E3.
/// @param e3Id ID of the E3 for which the committee was selected.
/// @param pools Addresses of the pools of nodes from which the committee was selected.
/// @param threshold The M/N threshold for the committee.
event CommitteeRequested(uint256 indexed e3Id, address[] pools, uint32[2] threshold);

/// @notice This event MUST be emitted when a committee is selected for an E3.
/// @param e3Id ID of the E3 for which the committee was selected.
/// @param nodes Addresses of the nodes in the committee.
/// @param merkleRoots Merkle roots of the nodes in the committee.
/// @param publicKey Public key of the committee.
event CommitteeSelected(
uint256 indexed e3Id,
address[] nodes,
Expand Down

0 comments on commit 2164536

Please sign in to comment.