https://sherlock-files.ams3.digitaloceanspaces.com/profile_images/defaults/default_avatar_3.png

0xadarsh

Security Researcher

Contact Me

$1.00

Total Earnings

#2498 All Time

1x

Payouts

All

CodeHawks

Jul '23

Foundry DeFi Stablecoin CodeHawks Audit Contest

Foundry DeFi Stablecoin CodeHawks Audit Contest

1.70 USDC • 3 total findings • CodeHawks • 0xadarsh

#118

gas

using x=x+y /x=x-y is more gas efficient than x+=y / x-=y

gas

`++i`/`i++` should be `unchecked{++i}`/`unchecked{i++}` when it is not possible for them to overflow, as is the case when used in `for`- and `while`-loops

gas

Use `assembly` to check for `address(0)`