The total fees must not be above 10000 in LSTRewardsSplitter.sol. This is checked using _totalFeesBasisPoints() > 10000, which is present in updateFee() and addFee() but not checked in the constructor.
addFee() in LSTRewardsSplitter.sol checks if the total fees is above 10000.
It is not checked in the constructor:
Fees can be set above 10000.
Manual Review
Add if (_totalFeesBasisPoints() > 10000) revert FeesExceedLimit(); in the constructor.
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.