This document is a security audit report performed by RideSolo, where Holo Token has been reviewed.
- Holo Token github commit hash 8bfb49766d967009a680548ef3cc28c011aa1c4c.
** 1 issue** was reported:
- 1 low severity issue.
olo/EthereumSmartContracts/blob/master/SafeUpgradeableTokenERC20/contracts/SafeUpgradeableTokenERC20.sol#L217#LL229
- It is possible to double withdrawal attack. More details here
- Lack of transaction handling mechanism issue. WARNING! This is a very common issue and it already caused millions of dollars losses for lots of token users! More details here
Add the following code to the transfer(_to address, ...)
function:
require( _to != address(this) );
The audited contract can be deployed.