15,000 USDC
View results
Submission Details
Severity: medium
Valid

Unsafe use of `transfer()`/`transferFrom()` with `IERC20`

Summary

Unsafe use of transfer()/transferFrom() with IERC20

Vulnerability Details

Some tokens do not implement the ERC20 standard properly but are still accepted by most code that accepts ERC20 tokens. For example Tether (USDT)'s transfer() and transferFrom() functions on L1 do not return booleans as the specification requires, and instead have no return value. When these sorts of tokens are cast to IERC20, their function signatures do not match and therefore the calls made, revert (see this link for a test case).

Code Snippet

File: DSCEngine.sol
157: bool success = IERC20(tokenCollateralAddress).transferFrom(msg.sender, address(this), amountCollateral);
...
...
274: bool success = i_dsc.transferFrom(dscFrom, address(this), amountDscToBurn);
...
...
287: bool success = IERC20(tokenCollateralAddress).transfer(to, amountCollateral);

Impact

Tools Used

Manual Code Review

Recommendations

Use OpenZeppelin’s SafeERC20's safeTransfer()/safeTransferFrom() instead

Support

FAQs

Can't find an answer? Chat with us on Discord, Twitter or Linkedin.