Payouts
2nd Places
3rd Places
Top 10
All
Sherlock
Code4rena
CodeHawks
Apr '24
Mar '24
Feb '24
Jan '24
Dec '23
Nov '23
1.37 USDC • 1 total finding • Code4rena • neocrao
#31
Jul '23
high
[H-04] Lender#buyLoan - Malicious user could take over a loan for free without having a pool because of wrong access control
low
Zero address leads to transaction reverts
low
Lender fails to giveLoan because of inconsistent length between `loadIds` and `poolIds`
gas
Multiple accesses of a mapping/array should use a local variable cache.
gas
Uncheck Arithmetic where overflow/underflow impossible
gas
Using Private Rather Than Public For Constants,Saves Gas
gas
Use of magic numbers
gas
Named parameter mappings
gas
For the borrow(), repay() & startAuction() functions in Lender.sol the public visibility modifiers should be changed to external, to help optimize gas usage
gas
Use assembly to check for `address(0)`
gas
NatSpec documentation for function is missing
gas
Large multiples of ten should use scientific notation
gas
Constants in comparisons should appear on the left side
gas
Conformance to Solidity naming conventions
gas
Cache array length outside of loop
gas
Function ordering does not follow the Solidity style guide
gas
Long functions should be refactored into multiple, smaller, functions
gas
Interfaces should be indicated with an `I` prefix in the contract name
77.62 USDC • 9 total findings • CodeHawks • neocrao
#20
high
Liquidation Is Prevented Due To Strict Implementation of Liqudation Bonus
medium
All of the USD pair price feeds doesn't have 8 decimals
gas
Use `==` instead for `<=` for `uints` when comparing for `zero` values
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
Constants should be be used for hardcoded values
gas
The nonReentrant modifier should occur before all other modifiers
gas
NatSpec `@return` argument is missing
gas
[I-4] Constants in comparisons should appear on the left side
gas
Use `assembly` to check for `address(0)`
51.99 USDC • 7 total findings • CodeHawks • neocrao
#44
low
Constructor of `Escrow` should make sure that `buyer`, `seller`, `arbiter` are different from each other.
gas
Use assembly to check for `address(0)`
gas
The `nonReentrant` `modifier` should occur before all other modifiers
gas
NatSpec `@param` is missing
gas
NatSpec `@return` argument is missing
gas
Constants in comparisons should appear on the left side
gas
Add methods to add/update arbiter in existing Escrow contracts