This document is a security audit report performed by danbogd, where Auditchain Token has been reviewed.
- Locked.sol github commit hash 6ebb925a6f8bf9a744b2c6eedaf71bacf24ddf46.
- MigrationAgent.sol github commit hash 6ebb925a6f8bf9a744b2c6eedaf71bacf24ddf46.
- Token.sol github commit hash 6ebb925a6f8bf9a744b2c6eedaf71bacf24ddf46.
In total, 2 issues were reported including:
- 2 low severity issues.
No critical security issues were found.
-
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 into a function transfer(address _to, ... )
following code:
require( _to != address(this) );
In the constructor is no events on the transfer of funds.
The review did not show any critical issues, but some low severity issues were found.