Platform: Code4rena
Start Date: 20/01/2022
Pot Size: $50,000 USDC
Total HM: 3
Participants: 35
Period: 7 days
Judge: GalloDaSballo
Total Solo HM: 2
Id: 77
League: ETH
Rank: 27/35
Findings: 1
Award: $5.10
🌟 Selected for report: 0
🚀 Solo Findings: 0
5.0956 USDC - $5.10
Tomio
Cheaper gas using unchecked in MathLib.sol
Remix
example before:
function wDiv(uint256 a, uint256 b) public pure returns (uint256) { return ((a * WAD) + (b / 2)) / b; }
gas cost 22863
after
function wDiv(uint256 a, uint256 b) public pure returns (uint256) { unchecked{ return ((a * WAD) + (b / 2)) / b; }
gas cost 22205
#0 - 0xean
2022-01-31T13:54:41Z
dupe of #177