Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
WhoLetTheCatsOut.addLiquidity(uint256,uint256) (#607-620) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in WhoLetTheCatsOut._transfer(address,address,uint256) (#496-543):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#534)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#631-637)
- address(marketingWallet).sendValue(marketingAmt) (#593)
- address(devWallet).sendValue(devAmt) (#597)
- address(buybackWallet).sendValue(buybackAmt) (#602)
- swapAndLiquify(swapTokensAtAmount,taxes) (#535)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#631-637)
- address(marketingWallet).sendValue(marketingAmt) (#593)
- address(devWallet).sendValue(devAmt) (#597)
- address(buybackWallet).sendValue(buybackAmt) (#602)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#534)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
- swapAndLiquify(swapTokensAtAmount,taxes) (#535)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#542)
- _rOwned[address(this)] += rMarketing (#394)
- _rOwned[address(this)] += rBuyback (#415)
- _rOwned[address(this)] += rLiquidity (#384)
- _rOwned[address(this)] += rDev (#404)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#558)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#559)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#542)
- _rTotal -= rRfi (#373)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#542)
- _tOwned[sender] = _tOwned[sender] - tAmount (#552)
- _tOwned[address(this)] += tDev (#402)
- _tOwned[address(this)] += tMarketing (#392)
- _tOwned[address(this)] += tBuyback (#413)
- _tOwned[address(this)] += tLiquidity (#382)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#555)
Apply the check-effects-interactions pattern.
Additional information: link
WhoLetTheCatsOut.rescueAnyBEP20Tokens(address,address,uint256) (#708-710) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#709)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
WhoLetTheCatsOut.swapAndLiquify(uint256,WhoLetTheCatsOut.Taxes) (#573-605) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#583)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#584)
WhoLetTheCatsOut.swapAndLiquify(uint256,WhoLetTheCatsOut.Taxes) (#573-605) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#583)
-marketingAmt = unitBalance * 2 * temp.marketing (#591)
WhoLetTheCatsOut.swapAndLiquify(uint256,WhoLetTheCatsOut.Taxes) (#573-605) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#583)
-devAmt = unitBalance * 2 * temp.dev (#595)
WhoLetTheCatsOut.swapAndLiquify(uint256,WhoLetTheCatsOut.Taxes) (#573-605) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#583)
-buybackAmt = unitBalance * 2 * temp.buyback (#600)
Consider ordering multiplication before division.
Additional information: link
WhoLetTheCatsOut.addLiquidity(uint256,uint256) (#607-620) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
Ensure that all the return values of the function calls are used.
Additional information: link
WhoLetTheCatsOut.allowance(address,address).owner (#259) shadows:
- Ownable.owner() (#54-56) (function)
WhoLetTheCatsOut._approve(address,address,uint256).owner (#489) shadows:
- Ownable.owner() (#54-56) (function)
Rename the local variables that shadow another component.
Additional information: link
WhoLetTheCatsOut.updateCooldown(bool,uint256) (#659-662) should emit an event for:
- coolDownTime = time * 1 (#660)
WhoLetTheCatsOut.updateSwapTokensAtAmount(uint256) (#664-666) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#665)
WhoLetTheCatsOut.updateMaxTxLimit(uint256,uint256) (#687-690) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#688)
- maxSellLimit = maxSell * 10 ** decimals() (#689)
WhoLetTheCatsOut.updateMaxWalletlimit(uint256) (#692-694) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#693)
Emit an event for critical parameter changes.
Additional information: link
WhoLetTheCatsOut.constructor(address)._pair (#213-214) lacks a zero-check on :
- pair = _pair (#217)
WhoLetTheCatsOut.updateMarketingWallet(address).newWallet (#647) lacks a zero-check on :
- marketingWallet = newWallet (#648)
WhoLetTheCatsOut.updateDevWallet(address).newWallet (#651) lacks a zero-check on :
- devWallet = newWallet (#652)
WhoLetTheCatsOut.updateBuybackWallet(address).newWallet (#655) lacks a zero-check on :
- buybackWallet = newWallet (#656)
WhoLetTheCatsOut.updateRouterAndPair(address,address).newPair (#696) lacks a zero-check on :
- pair = newPair (#698)
Check that the address is not zero.
Additional information: link
Reentrancy in WhoLetTheCatsOut._transfer(address,address,uint256) (#496-543):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#534)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#631-637)
- address(marketingWallet).sendValue(marketingAmt) (#593)
- address(devWallet).sendValue(devAmt) (#597)
- address(buybackWallet).sendValue(buybackAmt) (#602)
- swapAndLiquify(swapTokensAtAmount,taxes) (#535)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#631-637)
- address(marketingWallet).sendValue(marketingAmt) (#593)
- address(devWallet).sendValue(devAmt) (#597)
- address(buybackWallet).sendValue(buybackAmt) (#602)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#534)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
- swapAndLiquify(swapTokensAtAmount,taxes) (#535)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#542)
- totFeesPaid.dev += tDev (#398)
- totFeesPaid.marketing += tMarketing (#388)
- totFeesPaid.buyback += tBuyback (#409)
- totFeesPaid.liquidity += tLiquidity (#378)
- totFeesPaid.rfi += tRfi (#374)
Reentrancy in WhoLetTheCatsOut.constructor(address) (#211-236):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#213-214)
State variables written after the call(s):
- excludeFromReward(pair) (#219)
- _excluded.push(account) (#332)
- excludeFromReward(pair) (#219)
- _isExcluded[account] = true (#331)
- _isExcludedFromFee[address(this)] = true (#222)
- _isExcludedFromFee[owner()] = true (#223)
- _isExcludedFromFee[marketingWallet] = true (#224)
- _isExcludedFromFee[devWallet] = true (#225)
- _isExcludedFromFee[buybackWallet] = true (#226)
- _rOwned[owner()] = _rTotal (#221)
- excludeFromReward(pair) (#219)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#329)
- allowedTransfer[address(this)] = true (#228)
- allowedTransfer[owner()] = true (#229)
- allowedTransfer[pair] = true (#230)
- allowedTransfer[marketingWallet] = true (#231)
- allowedTransfer[devWallet] = true (#232)
- allowedTransfer[buybackWallet] = true (#233)
- pair = _pair (#217)
- router = _router (#216)
Reentrancy in WhoLetTheCatsOut.swapAndLiquify(uint256,WhoLetTheCatsOut.Taxes) (#573-605):
External calls:
- swapTokensForBNB(toSwap) (#580)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#631-637)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#588)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#588)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#588)
- _allowances[owner][spender] = amount (#492)
Reentrancy in WhoLetTheCatsOut.transferFrom(address,address,uint256) (#268-276):
External calls:
- _transfer(sender,recipient,amount) (#269)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#631-637)
- address(marketingWallet).sendValue(marketingAmt) (#593)
- address(devWallet).sendValue(devAmt) (#597)
- address(buybackWallet).sendValue(buybackAmt) (#602)
External calls sending eth:
- _transfer(sender,recipient,amount) (#269)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#273)
- _allowances[owner][spender] = amount (#492)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in WhoLetTheCatsOut._transfer(address,address,uint256) (#496-543):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#534)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#631-637)
- address(marketingWallet).sendValue(marketingAmt) (#593)
- address(devWallet).sendValue(devAmt) (#597)
- address(buybackWallet).sendValue(buybackAmt) (#602)
- swapAndLiquify(swapTokensAtAmount,taxes) (#535)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#631-637)
- address(marketingWallet).sendValue(marketingAmt) (#593)
- address(devWallet).sendValue(devAmt) (#597)
- address(buybackWallet).sendValue(buybackAmt) (#602)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#534)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
- swapAndLiquify(swapTokensAtAmount,taxes) (#535)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tDev + s.tBuyback) (#564)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#542)
- Transfer(sender,recipient,s.tTransferAmount) (#569)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#542)
Reentrancy in WhoLetTheCatsOut.constructor(address) (#211-236):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#213-214)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#235)
Reentrancy in WhoLetTheCatsOut.swapAndLiquify(uint256,WhoLetTheCatsOut.Taxes) (#573-605):
External calls:
- swapTokensForBNB(toSwap) (#580)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#631-637)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#588)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#588)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#493)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#588)
Reentrancy in WhoLetTheCatsOut.transferFrom(address,address,uint256) (#268-276):
External calls:
- _transfer(sender,recipient,amount) (#269)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#631-637)
- address(marketingWallet).sendValue(marketingAmt) (#593)
- address(devWallet).sendValue(devAmt) (#597)
- address(buybackWallet).sendValue(buybackAmt) (#602)
External calls sending eth:
- _transfer(sender,recipient,amount) (#269)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#612-619)
- (success) = recipient.call{value: amount}() (#107)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#493)
- _approve(sender,_msgSender(),currentAllowance - amount) (#273)
Apply the check-effects-interactions pattern.
Additional information: link
WhoLetTheCatsOut._transfer(address,address,uint256) (#496-543) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#523)
Avoid relying on block.timestamp.
Additional information: link
WhoLetTheCatsOut.setTradingStatus(bool) (#313-317) compares to a boolean constant:
-state == true && genesis_block == 0 (#316)
Remove the equality to the boolean constant.
Additional information: link
WhoLetTheCatsOut.includeInReward(address) (#335-346) has costly operations inside a loop:
- _excluded.pop() (#342)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#39-42) is never used and should be removed
Remove unused functions.
Additional information: link
WhoLetTheCatsOut._rTotal (#149) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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
Low level call in Address.sendValue(address,uint256) (#104-109):
- (success) = recipient.call{value: amount}() (#107)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IRouter.WETH() (#85) is not in mixedCase
Struct WhoLetTheCatsOut.valuesFromGetValues (#186-200) is not in CapWords
Parameter WhoLetTheCatsOut.setTaxes(uint256,uint256,uint256,uint256,uint256)._rfi (#362) is not in mixedCase
Parameter WhoLetTheCatsOut.setTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#362) is not in mixedCase
Parameter WhoLetTheCatsOut.setTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#362) is not in mixedCase
Parameter WhoLetTheCatsOut.setTaxes(uint256,uint256,uint256,uint256,uint256)._dev (#362) is not in mixedCase
Parameter WhoLetTheCatsOut.setTaxes(uint256,uint256,uint256,uint256,uint256)._buyback (#362) is not in mixedCase
Parameter WhoLetTheCatsOut.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._rfi (#367) is not in mixedCase
Parameter WhoLetTheCatsOut.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#367) is not in mixedCase
Parameter WhoLetTheCatsOut.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#367) is not in mixedCase
Parameter WhoLetTheCatsOut.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._dev (#367) is not in mixedCase
Parameter WhoLetTheCatsOut.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._buyback (#367) is not in mixedCase
Parameter WhoLetTheCatsOut.updateSwapEnabled(bool)._enabled (#668) is not in mixedCase
Parameter WhoLetTheCatsOut.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#708) is not in mixedCase
Parameter WhoLetTheCatsOut.rescueAnyBEP20Tokens(address,address,uint256)._to (#708) is not in mixedCase
Parameter WhoLetTheCatsOut.rescueAnyBEP20Tokens(address,address,uint256)._amount (#708) is not in mixedCase
Constant WhoLetTheCatsOut._decimals (#145) is not in UPPER_CASE_WITH_UNDERSCORES
Variable WhoLetTheCatsOut.genesis_block (#156) is not in mixedCase
Constant WhoLetTheCatsOut._name (#162) is not in UPPER_CASE_WITH_UNDERSCORES
Constant WhoLetTheCatsOut._symbol (#163) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#40)" inContext (#34-43)
Remove redundant statements if they congest code but offer no value.
Additional information: link
WhoLetTheCatsOut._tTotal (#148) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#63-65)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#67-70)
name() should be declared external:
- WhoLetTheCatsOut.name() (#239-241)
symbol() should be declared external:
- WhoLetTheCatsOut.symbol() (#242-244)
totalSupply() should be declared external:
- WhoLetTheCatsOut.totalSupply() (#250-252)
allowance(address,address) should be declared external:
- WhoLetTheCatsOut.allowance(address,address) (#259-261)
approve(address,uint256) should be declared external:
- WhoLetTheCatsOut.approve(address,uint256) (#263-266)
transferFrom(address,address,uint256) should be declared external:
- WhoLetTheCatsOut.transferFrom(address,address,uint256) (#268-276)
increaseAllowance(address,uint256) should be declared external:
- WhoLetTheCatsOut.increaseAllowance(address,uint256) (#278-281)
decreaseAllowance(address,uint256) should be declared external:
- WhoLetTheCatsOut.decreaseAllowance(address,uint256) (#283-289)
transfer(address,uint256) should be declared external:
- WhoLetTheCatsOut.transfer(address,uint256) (#291-295)
isExcludedFromReward(address) should be declared external:
- WhoLetTheCatsOut.isExcludedFromReward(address) (#297-299)
reflectionFromToken(uint256,bool) should be declared external:
- WhoLetTheCatsOut.reflectionFromToken(uint256,bool) (#301-310)
excludeFromFee(address) should be declared external:
- WhoLetTheCatsOut.excludeFromFee(address) (#349-351)
includeInFee(address) should be declared external:
- WhoLetTheCatsOut.includeInFee(address) (#353-355)
isExcludedFromFee(address) should be declared external:
- WhoLetTheCatsOut.isExcludedFromFee(address) (#358-360)
setTaxes(uint256,uint256,uint256,uint256,uint256) should be declared external:
- WhoLetTheCatsOut.setTaxes(uint256,uint256,uint256,uint256,uint256) (#362-365)
setSellTaxes(uint256,uint256,uint256,uint256,uint256) should be declared external:
- WhoLetTheCatsOut.setSellTaxes(uint256,uint256,uint256,uint256,uint256) (#367-370)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- WhoLetTheCatsOut.rescueAnyBEP20Tokens(address,address,uint256) (#708-710)
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.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Contract has 10% buy tax and 15% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
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