Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ticker (Coin M31) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
TOKEN.addLiquidity(uint256,uint256) (#576-589) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#581-588)
Ensure that all the return values of the function calls are used.
Additional information: link
TOKEN.allowance(address,address).owner (#464) shadows:
- Ownable.owner() (#154-156) (function)
TOKEN._approve(address,address,uint256).owner (#483) shadows:
- Ownable.owner() (#154-156) (function)
Rename the local variables that shadow another component.
Additional information: link
TOKEN.setNumTokensBeforeSwap(uint256) (#495-497) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#496)
Emit an event for critical parameter changes.
Additional information: link
TOKEN.setUnispair(address)._pair (#499) lacks a zero-check on :
- uniswapPairV2 = _pair (#500)
Check that the address is not zero.
Additional information: link
Reentrancy in TOKEN.constructor() (#427-442):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#431-432)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#435)
- _balances[address(this)] = _rTotal (#439)
- _balances[_msgSender()] = _totalSupply (#440)
- isExcludedFromFee[owner()] = true (#437)
- isExcludedFromFee[address(this)] = true (#438)
- uniswapPairV2 = _msgSender() (#433)
- uniswapV2Router = _uniswapV2Router (#434)
Reentrancy in TOKEN.transferFrom(address,address,uint256) (#591-595):
External calls:
- _transfer(sender,recipient,amount) (#592)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,uniswapPairV2,block.timestamp) (#565-571)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#593)
- _allowances[owner][spender] = amount (#487)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TOKEN.constructor() (#427-442):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#431-432)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#441)
Reentrancy in TOKEN.swapTokensForEth(uint256) (#556-574):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,uniswapPairV2,block.timestamp) (#565-571)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#573)
Reentrancy in TOKEN.transferFrom(address,address,uint256) (#591-595):
External calls:
- _transfer(sender,recipient,amount) (#592)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,uniswapPairV2,block.timestamp) (#565-571)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#488)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#593)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#85-94) uses assembly
- INLINE ASM (#92)
Address._functionCallWithValue(address,bytes,uint256,string) (#121-138) uses assembly
- INLINE ASM (#130-133)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#121-138) is never used and should be removed
Address.functionCall(address,bytes) (#104-106) is never used and should be removed
Address.functionCall(address,bytes,string) (#108-110) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#112-114) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#116-119) is never used and should be removed
Address.isContract(address) (#85-94) is never used and should be removed
Address.sendValue(address,uint256) (#96-102) is never used and should be removed
Context._msgData() (#12-15) is never used and should be removed
SafeMath.div(uint256,uint256) (#61-63) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#65-71) is never used and should be removed
SafeMath.mod(uint256,uint256) (#73-75) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#77-80) is never used and should be removed
SafeMath.mul(uint256,uint256) (#50-59) is never used and should be removed
TOKEN.addLiquidity(uint256,uint256) (#576-589) is never used and should be removed
TOKEN.transferToAddressETH(address,uint256) (#508-510) is never used and should be removed
Remove unused functions.
Additional information: link
TOKEN._totalSupply (#392) is set pre-construction with a non-constant function or state variable:
- 10000000000 * 10 ** _decimals
TOKEN.minimumTokensBeforeSwap (#394) is set pre-construction with a non-constant function or state variable:
- _totalSupply
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Pragma version^0.8.1 (#4) allows old versions
solc-0.8.1 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#96-102):
- (success) = recipient.call{value: amount}() (#100)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#121-138):
- (success,returndata) = target.call{value: weiValue}(data) (#124)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#207) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#208) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#224) is not in mixedCase
Function IUniswapV2Router01.WETH() (#243) is not in mixedCase
Parameter TOKEN.setUnispair(address)._pair (#499) is not in mixedCase
Parameter TOKEN.setSwapAndLiquifyEnabled(bool)._enabled (#503) is not in mixedCase
Variable TOKEN._balances (#386) is not in mixedCase
Variable TOKEN._taxFee (#390) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#13)" inContext (#6-16)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#248) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#249)
Prevent variables from having similar names.
Additional information: link
Ownable.waiveOwnership() (#163-166) uses literals with too many digits:
- OwnershipTransferred(_owner,address(0x000000000000000000000000000000000000dEaD)) (#164)
Ownable.waiveOwnership() (#163-166) uses literals with too many digits:
- _owner = address(0x000000000000000000000000000000000000dEaD) (#165)
TOKEN.slitherConstructorVariables() (#376-598) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#384)
TOKEN.slitherConstructorVariables() (#376-598) uses literals with too many digits:
- _totalSupply = 10000000000 * 10 ** _decimals (#392)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable.asdasd (#143) is never used in TOKEN (#376-598)
Ownable._lockTime (#144) is never used in TOKEN (#376-598)
Remove unused state variables.
Additional information: link
Ownable._lockTime (#144) should be constant
Ownable.asdasd (#143) should be constant
TOKEN._decimals (#383) should be constant
TOKEN._name (#381) should be constant
TOKEN._rTotal (#393) should be constant
TOKEN._symbol (#382) should be constant
TOKEN._taxFee (#390) should be constant
TOKEN.burnAddress (#384) should be constant
TOKEN.swapAndLiquifyByLimitOnly (#402) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#163-166)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#168-172)
name() should be declared external:
- TOKEN.name() (#444-446)
symbol() should be declared external:
- TOKEN.symbol() (#448-450)
decimals() should be declared external:
- TOKEN.decimals() (#452-454)
totalSupply() should be declared external:
- TOKEN.totalSupply() (#456-458)
balanceOf(address) should be declared external:
- TOKEN.balanceOf(address) (#460-462)
allowance(address,address) should be declared external:
- TOKEN.allowance(address,address) (#464-466)
increaseAllowance(address,uint256) should be declared external:
- TOKEN.increaseAllowance(address,uint256) (#468-471)
decreaseAllowance(address,uint256) should be declared external:
- TOKEN.decreaseAllowance(address,uint256) (#473-476)
approve(address,uint256) should be declared external:
- TOKEN.approve(address,uint256) (#478-481)
setIsExcludedFromFee(address,bool) should be declared external:
- TOKEN.setIsExcludedFromFee(address,bool) (#491-493)
setSwapAndLiquifyEnabled(bool) should be declared external:
- TOKEN.setSwapAndLiquifyEnabled(bool) (#503-506)
transfer(address,uint256) should be declared external:
- TOKEN.transfer(address,uint256) (#515-518)
transferFrom(address,address,uint256) should be declared external:
- TOKEN.transferFrom(address,address,uint256) (#591-595)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts