Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
CoinToken._canTransfer(address,address,uint256) (#431-456) uses a dangerous strict equality:
- start == 0 (#438)
CoinToken._canTransfer(address,address,uint256) (#431-456) uses a dangerous strict equality:
- start == 0 (#445)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
CoinToken._canTransfer(address,address,uint256) (#431-456) uses timestamp for comparisons
Dangerous comparisons:
- start == 0 (#438)
- start == 0 (#445)
- (block.timestamp - start) >= THRESHOLD (#446)
- (block.timestamp - lastBuy[_to]) < DELAY (#452)
Avoid relying on block.timestamp.
Additional information: link
StandardToken.transfer(address,uint256) (#138-169) compares to a boolean constant:
-require(bool)(tokenBlacklist[msg.sender] == false) (#144)
StandardToken.transferFrom(address,address,uint256) (#171-202) compares to a boolean constant:
-require(bool)(tokenBlacklist[msg.sender] == false) (#176)
Remove the equality to the boolean constant.
Additional information: link
Parameter StandardToken.balanceOf(address)._owner (#129) is not in mixedCase
Parameter StandardToken.transfer(address,uint256)._to (#138) is not in mixedCase
Parameter StandardToken.transfer(address,uint256)._value (#138) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._from (#172) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._to (#173) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._value (#174) is not in mixedCase
Parameter StandardToken.approve(address,uint256)._spender (#204) is not in mixedCase
Parameter StandardToken.approve(address,uint256)._value (#204) is not in mixedCase
Parameter StandardToken.allowance(address,address)._owner (#215) is not in mixedCase
Parameter StandardToken.allowance(address,address)._spender (#215) is not in mixedCase
Parameter StandardToken.increaseApproval(address,uint256)._spender (#225) is not in mixedCase
Parameter StandardToken.increaseApproval(address,uint256)._addedValue (#225) is not in mixedCase
Parameter StandardToken.decreaseApproval(address,uint256)._spender (#235) is not in mixedCase
Parameter StandardToken.decreaseApproval(address,uint256)._subtractedValue (#235) is not in mixedCase
Variable StandardToken.FeeAddress (#121) is not in mixedCase
Parameter PausableToken.transfer(address,uint256)._to (#264) is not in mixedCase
Parameter PausableToken.transfer(address,uint256)._value (#264) is not in mixedCase
Parameter PausableToken.transferFrom(address,address,uint256)._from (#275) is not in mixedCase
Parameter PausableToken.transferFrom(address,address,uint256)._to (#276) is not in mixedCase
Parameter PausableToken.transferFrom(address,address,uint256)._value (#277) is not in mixedCase
Parameter PausableToken.approve(address,uint256)._spender (#282) is not in mixedCase
Parameter PausableToken.approve(address,uint256)._value (#282) is not in mixedCase
Parameter PausableToken.increaseApproval(address,uint256)._spender (#291) is not in mixedCase
Parameter PausableToken.increaseApproval(address,uint256)._addedValue (#291) is not in mixedCase
Parameter PausableToken.decreaseApproval(address,uint256)._spender (#300) is not in mixedCase
Parameter PausableToken.decreaseApproval(address,uint256)._subtractedValue (#300) is not in mixedCase
Function TokenConverter.DEFAULT_FACTORY() (#338) is not in mixedCase
Parameter CoinToken.burn(uint256)._value (#384) is not in mixedCase
Parameter CoinToken.updateFee(uint256,uint256,address)._txFee (#389) is not in mixedCase
Parameter CoinToken.updateFee(uint256,uint256,address)._burnFee (#390) is not in mixedCase
Parameter CoinToken.updateFee(uint256,uint256,address)._FeeAddress (#391) is not in mixedCase
Parameter CoinToken.transferFrom(address,address,uint256)._from (#407) is not in mixedCase
Parameter CoinToken.transferFrom(address,address,uint256)._to (#408) is not in mixedCase
Parameter CoinToken.transferFrom(address,address,uint256)._value (#409) is not in mixedCase
Parameter CoinToken.transfer(address,uint256)._to (#418) is not in mixedCase
Parameter CoinToken.transfer(address,uint256)._value (#418) is not in mixedCase
Parameter CoinToken.dollarsToTokens(uint256)._dollars (#458) is not in mixedCase
Parameter CoinToken.setWhitelistRights(address,bool)._user (#472) is not in mixedCase
Parameter CoinToken.setWhitelistRights(address,bool)._value (#472) is not in mixedCase
Variable CoinToken.THRESHOLD (#353) is not in mixedCase
Variable CoinToken.MAX_DOLLARS (#354) is not in mixedCase
Variable CoinToken.DELAY (#355) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
CoinToken.DELAY (#355) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address).tokenOwner (#370) lacks a zero-check on :
- owner = tokenOwner (#377)
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address)._FeeAddress (#369) lacks a zero-check on :
- FeeAddress = _FeeAddress (#380)
CoinToken.updateFee(uint256,uint256,address)._FeeAddress (#391) lacks a zero-check on :
- FeeAddress = _FeeAddress (#395)
Check that the address is not zero.
Additional information: link
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#37-41)
pause() should be declared external:
- Pausable.pause() (#69-72)
unpause() should be declared external:
- Pausable.unpause() (#77-80)
balanceOf(address) should be declared external:
- ERC20Basic.balanceOf(address) (#86)
- StandardToken.balanceOf(address) (#129-136)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#94-98)
- StandardToken.allowance(address,address) (#215-223)
blackListAddress(address,bool) should be declared external:
- PausableToken.blackListAddress(address,bool) (#309-316)
burn(uint256) should be declared external:
- CoinToken.burn(uint256) (#384-386)
updateFee(uint256,uint256,address) should be declared external:
- CoinToken.updateFee(uint256,uint256,address) (#388-396)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Last post in Twitter was more than 30 days ago
Unable to find Discord account