sherlock-audit / 2023-10-real-wagmi-judging

16 stars 14 forks source link

HHK - `MINIMUM_AMOUNT` will result in higher rate for tokens with low decimals #181

Closed sherlock-admin closed 11 months ago

sherlock-admin commented 11 months ago

HHK

medium

MINIMUM_AMOUNT will result in higher rate for tokens with low decimals

Summary

The WAGMI contract has a MINIMUM_AMOUNT constant that is used to define minimum on certain amounts in different functions.

It is currently 1000 which will result in higher value than expected for tokens will low decimals like GUSD (2 decimals).

Vulnerability Detail

The borrow() function will charge a minimum of dailyRateCollateral of MINIMUM_AMOUNT. This means that if we were to send the MINIMUM_BORROWED_AMOUNT which is 100000.

We would result in 1000 / 100000 * 100 = 1. 1% of the borrowed amount would be charged as collateral, in the case of GUSD which has 2 decimals it would mean that a loan of 1000 GUSD would make us pay 1% even if the real rate is smaller.

The getLiquidationBonus() function will also charge us a minimum of MINIMUM_AMOUNT even if real rate is smaller.

And if we were to close our position using repay() we wouldn't get back the collateral balance if the fees charged is less than MINIMUM_AMOUNT.

Impact

Medium. When using protocol with low decimals tokens like GUSD, unexpected fees and losses can arise.

Code Snippet

https://github.com/sherlock-audit/2023-10-real-wagmi/blob/b33752757fd6a9f404b8577c1eae6c5774b3a0db/wagmi-leverage/contracts/LiquidityBorrowingManager.sol#L465 https://github.com/sherlock-audit/2023-10-real-wagmi/blob/b33752757fd6a9f404b8577c1eae6c5774b3a0db/wagmi-leverage/contracts/LiquidityBorrowingManager.sol#L683C6-L683C6 https://github.com/sherlock-audit/2023-10-real-wagmi/blob/b33752757fd6a9f404b8577c1eae6c5774b3a0db/wagmi-leverage/contracts/LiquidityBorrowingManager.sol#L532

Tool used

Manual Review

Recommendation

Consider computing MINIMUM_AMOUNT and MINIMUM_BORROWED_AMOUNT with the token's decimals.

fann95 commented 11 months ago

Yes, that's right, that's how it was planned.This limits the minimum amounts that can be borrowed for some tokens and and this suits us. If you want to take smaller amounts, pay more commission or hold the position longer. In such cases, the minimum payment will cover more than a day and you will be able to hold the position longer.