/**
* @dev Creates the contract, set the given base parameters
* @param _votingEscrow address of the voting token to delegate
* @param _delegationBoost address of the contract handling delegation
* @param _minTargetVotes min amount of veToken to target in a Pledge // @audit missing natspec _chestAddress
*/
constructor(
address _votingEscrow,
address _delegationBoost,
address _chestAddress,
uint256 _minTargetVotes
NC-01 Missing Natspec at several Places
There are several instances of incomplete or missing natspec at manay places over the contract https://github.com/code-423n4/2022-10-paladin/blob/main/contracts/WardenPledge.sol#L125-L136
For all events natspec are incomplete: https://github.com/code-423n4/2022-10-paladin/blob/main/contracts/WardenPledge.sol#L84-L120