Use this methods to save gas while using for loops.
No need to explicitly initialize variables with default values (eg : uint256 i=0).
The increment in the for loop’s post condition can be made unchecked.
Caching the length in for loops.
Instead of this loop at https://github.com/Cyfrin/2023-07-foundry-defi-stablecoin/blob/d1c5501aa79320ca0aeaa73f47f0dbc88c7b77e2/src/DSCEngine.sol#L118C9-L121C10
Use this for loop
Instead of this loop at https://github.com/Cyfrin/2023-07-foundry-defi-stablecoin/blob/d1c5501aa79320ca0aeaa73f47f0dbc88c7b77e2/src/DSCEngine.sol#L353C8-L357C10
Use this for loop
Manual Review
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.