Description
Constants should not be hardcoded due to readability purposes.
Recommendation
Replace 10000 by uint256 private constant BASIS_POINTS = 10000, 200 by uint256 private constant MAX_FEE = 200 and 15 days by uint256 private constant MAX_TIMELOCK = 15 days.
Status
Addressed in #67d85d0.