Reentrancy in AtomikChain._transfer(address,address,uint256) (#575-604):
External calls:
- swapAndLiquify(contractTokenBalance) (#594)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#594)
- recipient.transfer(amount) (#560)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
State variables written after the call(s):
- _walletTotals[sender] = _walletTotals[sender].sub(amount,Insufficient Balance) (#596)
- _walletTotals[recipient] = _walletTotals[recipient].add(finalAmount) (#600)
- finalAmount = takeFee(sender,recipient,amount) (#597)
- _walletTotals[address(this)] = _walletTotals[address(this)].add(feeAmount) (#673)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
Low level call in Address.sendValue(address,uint256) (#101-107):
- (success) = recipient.call{value: amount}() (#105)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#126-143):
- (success,returndata) = target.call{value: weiValue}(data) (#129)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
AtomikChain.addLiquidity(uint256,uint256) (#648-658) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
Ensure that all the return values of the function calls are used.
Additional information: link
AtomikChain.allowance(address,address).owner (#500) shadows:
- Ownable.owner() (#158-160) (function)
AtomikChain._approve(address,address,uint256).owner (#523) shadows:
- Ownable.owner() (#158-160) (function)
Rename the local variables that shadow another component.
Additional information: link
AtomikChain.setDisposal(uint256,uint256) (#534-538) should emit an event for:
- _finalSellTax = _LiquidityFeeSell.add(_TreasuryFeeSell) (#537)
AtomikChain.setAcquire(uint256,uint256) (#540-544) should emit an event for:
- _finalBuyTax = _LiquidityFeeBuy.add(_TreasuryFeeBuy) (#543)
AtomikChain.setNumTokensBeforeSwap(uint256) (#550-552) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#551)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in AtomikChain.constructor() (#453-478):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#457)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#459)
- _finalBuyTax = _LiquidityFeeBuy.add(_TreasuryFeeBuy) (#464)
- _finalSellTax = _LiquidityFeeSell.add(_TreasuryFeeSell) (#465)
- _totalDistributionShares = _liquidityShare.add(_marketingShare) (#466)
- _walletTotals[_msgSender()] = _totalSupply (#476)
- isExcludedFromFee[owner()] = true (#461)
- isExcludedFromFee[address(this)] = true (#462)
- isMarketPair[address(uniswapPair)] = true (#475)
- isTXNoLimit[owner()] = true (#472)
- isTXNoLimit[address(this)] = true (#473)
- isWalletNoLimit[owner()] = true (#468)
- isWalletNoLimit[address(uniswapPair)] = true (#469)
- isWalletNoLimit[address(this)] = true (#470)
- uniswapV2Router = _uniswapV2Router (#458)
Reentrancy in AtomikChain.swapAndLiquify(uint256) (#613-631):
External calls:
- swapTokensForEth(tokensForSwap) (#617)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#630)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
External calls sending eth:
- transferToAddressETH(treasuryWallet,amountBNBMarketing) (#626)
- recipient.transfer(amount) (#560)
- transferToAddressETH(treasuryWallet,amountBNBTeam) (#628)
- recipient.transfer(amount) (#560)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#630)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#630)
- _allowances[owner][spender] = amount (#526)
Reentrancy in AtomikChain.transferFrom(address,address,uint256) (#570-573):
External calls:
- _transfer(sender,recipient,amount) (#571)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
External calls sending eth:
- _transfer(sender,recipient,amount) (#571)
- recipient.transfer(amount) (#560)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#572)
- _allowances[owner][spender] = amount (#526)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in AtomikChain._transfer(address,address,uint256) (#575-604):
External calls:
- swapAndLiquify(contractTokenBalance) (#594)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#594)
- recipient.transfer(amount) (#560)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#674)
- finalAmount = takeFee(sender,recipient,amount) (#597)
- Transfer(sender,recipient,finalAmount) (#601)
Reentrancy in AtomikChain.constructor() (#453-478):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#457)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#477)
Reentrancy in AtomikChain.swapAndLiquify(uint256) (#613-631):
External calls:
- swapTokensForEth(tokensForSwap) (#617)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#630)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
External calls sending eth:
- transferToAddressETH(treasuryWallet,amountBNBMarketing) (#626)
- recipient.transfer(amount) (#560)
- transferToAddressETH(treasuryWallet,amountBNBTeam) (#628)
- recipient.transfer(amount) (#560)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#630)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#527)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#630)
Reentrancy in AtomikChain.swapTokensForEth(uint256) (#633-646):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#645)
Reentrancy in AtomikChain.transferFrom(address,address,uint256) (#570-573):
External calls:
- _transfer(sender,recipient,amount) (#571)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
External calls sending eth:
- _transfer(sender,recipient,amount) (#571)
- recipient.transfer(amount) (#560)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#527)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#572)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#90-99) uses assembly
- INLINE ASM (#97)
Address._functionCallWithValue(address,bytes,uint256,string) (#126-143) uses assembly
- INLINE ASM (#135-138)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#126-143) is never used and should be removed
Address.functionCall(address,bytes) (#109-111) is never used and should be removed
Address.functionCall(address,bytes,string) (#113-115) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#117-119) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#121-124) is never used and should be removed
Address.isContract(address) (#90-99) is never used and should be removed
Address.sendValue(address,uint256) (#101-107) is never used and should be removed
Context._msgData() (#18-21) is never used and should be removed
SafeMath.mod(uint256,uint256) (#78-80) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#83-86) is never used and should be removed
Remove unused functions.
Additional information: link
AtomikChain._totalSupply (#412) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** _decimals
AtomikChain.minimumTokensBeforeSwap (#413) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
AtomikChain._walletMax (#414) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** _decimals
AtomikChain._maxTxAmount (#415) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** _decimals
AtomikChain.rewardDecimals (#449) is set pre-construction with a non-constant function or state variable:
- (10 ** _decimals)
AtomikChain.getTotalRewards (#451) is set pre-construction with a non-constant function or state variable:
- rewardEndSupply * rewardDecimals
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
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#214) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#215) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#231) is not in mixedCase
Function IUniswapV2Router01.WETH() (#250) is not in mixedCase
Function AtomikChain._setSwapAndLiquifyEnabled(bool) (#554-557) is not in mixedCase
Parameter AtomikChain._setSwapAndLiquifyEnabled(bool)._enabled (#554) is not in mixedCase
Parameter AtomikChain.setNoScope(address)._account (#660) is not in mixedCase
Variable AtomikChain._walletTotals (#393) is not in mixedCase
Variable AtomikChain._LiquidityFeeBuy (#401) is not in mixedCase
Variable AtomikChain._TreasuryFeeBuy (#402) is not in mixedCase
Variable AtomikChain._LiquidityFeeSell (#403) is not in mixedCase
Variable AtomikChain._TreasuryFeeSell (#404) is not in mixedCase
Variable AtomikChain._marketingShare (#406) is not in mixedCase
Variable AtomikChain._liquidityShare (#407) is not in mixedCase
Variable AtomikChain._totalDistributionShares (#408) is not in mixedCase
Variable AtomikChain._finalBuyTax (#409) is not in mixedCase
Variable AtomikChain._finalSellTax (#410) is not in mixedCase
Variable AtomikChain._walletMax (#414) is not in mixedCase
Variable AtomikChain._maxTxAmount (#415) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#19)" inContext (#14-22)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in AtomikChain._transfer(address,address,uint256) (#575-604):
External calls:
- swapAndLiquify(contractTokenBalance) (#594)
- recipient.transfer(amount) (#560)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#594)
- recipient.transfer(amount) (#560)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
State variables written after the call(s):
- _walletTotals[sender] = _walletTotals[sender].sub(amount,Insufficient Balance) (#596)
- _walletTotals[recipient] = _walletTotals[recipient].add(finalAmount) (#600)
- finalAmount = takeFee(sender,recipient,amount) (#597)
- _walletTotals[address(this)] = _walletTotals[address(this)].add(feeAmount) (#673)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#674)
- finalAmount = takeFee(sender,recipient,amount) (#597)
- Transfer(sender,recipient,finalAmount) (#601)
Reentrancy in AtomikChain.swapAndLiquify(uint256) (#613-631):
External calls:
- transferToAddressETH(treasuryWallet,amountBNBMarketing) (#626)
- recipient.transfer(amount) (#560)
- transferToAddressETH(treasuryWallet,amountBNBTeam) (#628)
- recipient.transfer(amount) (#560)
External calls sending eth:
- transferToAddressETH(treasuryWallet,amountBNBMarketing) (#626)
- recipient.transfer(amount) (#560)
- transferToAddressETH(treasuryWallet,amountBNBTeam) (#628)
- recipient.transfer(amount) (#560)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#630)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#630)
- _allowances[owner][spender] = amount (#526)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#527)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#630)
Reentrancy in AtomikChain.transferFrom(address,address,uint256) (#570-573):
External calls:
- _transfer(sender,recipient,amount) (#571)
- recipient.transfer(amount) (#560)
External calls sending eth:
- _transfer(sender,recipient,amount) (#571)
- recipient.transfer(amount) (#560)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#650-657)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#572)
- _allowances[owner][spender] = amount (#526)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#527)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#572)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#255) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#256)
Prevent variables from having similar names.
Additional information: link
AtomikChain.slitherConstructorVariables() (#383-679) uses literals with too many digits:
- _totalSupply = 1000000 * 10 ** _decimals (#412)
AtomikChain.slitherConstructorVariables() (#383-679) uses literals with too many digits:
- minimumTokensBeforeSwap = 100000000 * 10 ** _decimals (#413)
AtomikChain.slitherConstructorVariables() (#383-679) uses literals with too many digits:
- _walletMax = 1000000 * 10 ** _decimals (#414)
AtomikChain.slitherConstructorVariables() (#383-679) uses literals with too many digits:
- _maxTxAmount = 1000000 * 10 ** _decimals (#415)
AtomikChain.slitherConstructorVariables() (#383-679) uses literals with too many digits:
- rewardEndSupply = 100000000000 (#450)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._lockTime (#148) is never used in AtomikChain (#383-679)
Remove unused state variables.
Additional information: link
AtomikChain._decimals (#389) should be constant
AtomikChain._liquidityShare (#407) should be constant
AtomikChain._marketingShare (#406) should be constant
AtomikChain._name (#387) should be constant
AtomikChain._symbol (#388) should be constant
AtomikChain.checkWalletLimit (#423) should be constant
AtomikChain.rewardEndSupply (#450) should be constant
AtomikChain.swapAndLiquifyByLimitOnly (#422) should be constant
AtomikChain.treasuryWallet (#391) should be constant
Ownable._lockTime (#148) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
getOwner() should be declared external:
- Ownable.getOwner() (#162-164)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#171-175)
getTime() should be declared external:
- Ownable.getTime() (#177-179)
name() should be declared external:
- AtomikChain.name() (#480-482)
decimals() should be declared external:
- AtomikChain.decimals() (#484-486)
symbol() should be declared external:
- AtomikChain.symbol() (#488-490)
totalSupply() should be declared external:
- AtomikChain.totalSupply() (#492-494)
allowance(address,address) should be declared external:
- AtomikChain.allowance(address,address) (#500-502)
increaseAllowance(address,uint256) should be declared external:
- AtomikChain.increaseAllowance(address,uint256) (#504-507)
decreaseAllowance(address,uint256) should be declared external:
- AtomikChain.decreaseAllowance(address,uint256) (#509-512)
minimumTokensBeforeSwapAmount() should be declared external:
- AtomikChain.minimumTokensBeforeSwapAmount() (#514-516)
approve(address,uint256) should be declared external:
- AtomikChain.approve(address,uint256) (#518-521)
setMarketPairStatus(address,bool) should be declared external:
- AtomikChain.setMarketPairStatus(address,bool) (#530-532)
_setSwapAndLiquifyEnabled(bool) should be declared external:
- AtomikChain._setSwapAndLiquifyEnabled(bool) (#554-557)
rewardAssets() should be declared external:
- AtomikChain.rewardAssets() (#563)
transfer(address,uint256) should be declared external:
- AtomikChain.transfer(address,uint256) (#566-568)
transferFrom(address,address,uint256) should be declared external:
- AtomikChain.transferFrom(address,address,uint256) (#570-573)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Contract has 10% buy tax and 9% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Token is deployed only at one blockchain
Token has only one trading pair
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