Skip to content

Commit f1e0776

Browse files
committed
docs: natspec
1 parent 7702a88 commit f1e0776

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

src/EjectionManagerStorage.sol

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,19 @@ import {IEjectionManager} from "./interfaces/IEjectionManager.sol";
88
abstract contract EjectionManagerStorage is IEjectionManager {
99
/// @notice The basis point denominator for the ejectable stake percent
1010
uint16 internal constant BIPS_DENOMINATOR = 10_000;
11-
1211
/// @notice The max number of quorums
1312
uint8 internal constant MAX_QUORUM_COUNT = 192;
1413

15-
/// @notice the RegistryCoordinator contract that is the entry point for ejection
14+
/// @inheritdoc IEjectionManager
1615
IRegistryCoordinator public immutable registryCoordinator;
17-
/// @notice the StakeRegistry contract that keeps track of quorum stake
16+
/// @inheritdoc IEjectionManager
1817
IStakeRegistry public immutable stakeRegistry;
1918

20-
/// @notice Addresses permissioned to eject operators under a ratelimit
19+
/// @inheritdoc IEjectionManager
2120
mapping(address => bool) public isEjector;
22-
23-
/// @notice Keeps track of the total stake ejected for a quorum
21+
/// @inheritdoc IEjectionManager
2422
mapping(uint8 => StakeEjection[]) public stakeEjectedForQuorum;
25-
/// @notice Ratelimit parameters for each quorum
23+
/// @inheritdoc IEjectionManager
2624
mapping(uint8 => QuorumEjectionParams) public quorumEjectionParams;
2725

2826
constructor(IRegistryCoordinator _registryCoordinator, IStakeRegistry _stakeRegistry) {

0 commit comments

Comments
 (0)