In order to improve readability is convenient to not leave magic numbers in the code
Instances found:
File: Beedle.sol
_mint(msg.sender, 1_000_000_000 * 1e18);
File: Fees.sol
ISwapRouter.ExactInputSingleParams memory params = ISwapRouter.ExactInputSingleParams({[..], fee: 3000,
File: Lender.sol
if (_fee > 5000)
if (_fee > 500)
uint256 fees = (debt * borrowerFee) / 10000;
fees = (lenderFee * interest) / 10000;
None
Create private constants for those magic numbers
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.