If you have
Telegram
, you can contact
@gekkollcbsc
right away.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract creator or owner is blacklisted for past scams
Reentrancy in Gekko._transfer(address,address,uint256) (#998-1042):
External calls:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#954)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1123)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1132)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1143)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#870)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1124)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1134)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1144)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#872)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _rTotal = _rTotal.sub(rFee) (#909)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#956)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1142)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#869)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1133)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#871)
Apply the check-effects-interactions pattern.
Additional information: link
Gekko.addLiquidity(uint256,uint256) (#1085-1098) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
Ensure that all the return values of the function calls are used.
Additional information: link
Gekko.allowance(address,address).owner (#786) shadows:
- Ownable.owner() (#422-424) (function)
Gekko._approve(address,address,uint256).owner (#990) shadows:
- Ownable.owner() (#422-424) (function)
Rename the local variables that shadow another component.
Additional information: link
Gekko.setTaxFeePercent(uint256) (#886-888) should emit an event for:
- _taxFee = taxFee (#887)
Gekko.setLiquidityFeePercent(uint256) (#890-892) should emit an event for:
- _liquidityFee = liquidityFee (#891)
Gekko.setMaxTxPercent(uint256) (#894-898) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#895-897)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in Gekko._transfer(address,address,uint256) (#998-1042):
External calls:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _liquidityFee = _previousLiquidityFee (#983)
- _liquidityFee = 0 (#978)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _previousLiquidityFee = _liquidityFee (#975)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _previousTaxFee = _taxFee (#974)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _tFeeTotal = _tFeeTotal.add(tFee) (#910)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _taxFee = _previousTaxFee (#982)
- _taxFee = 0 (#977)
Reentrancy in Gekko.constructor() (#742-758):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#747-748)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#754)
- _isExcludedFromFee[address(this)] = true (#755)
- uniswapV2Router = _uniswapV2Router (#751)
Reentrancy in Gekko.swapAndLiquify(uint256) (#1044-1065):
External calls:
- swapTokensForEth(half) (#1056)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
- addLiquidity(otherHalf,newBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1062)
- _allowances[owner][spender] = amount (#994)
Reentrancy in Gekko.transferFrom(address,address,uint256) (#795-799):
External calls:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
External calls sending eth:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#797)
- _allowances[owner][spender] = amount (#994)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Gekko._transfer(address,address,uint256) (#998-1042):
External calls:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1127)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- Transfer(sender,recipient,tTransferAmount) (#1137)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- Transfer(sender,recipient,tTransferAmount) (#1147)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- Transfer(sender,recipient,tTransferAmount) (#875)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
Reentrancy in Gekko.constructor() (#742-758):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#747-748)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#757)
Reentrancy in Gekko.swapAndLiquify(uint256) (#1044-1065):
External calls:
- swapTokensForEth(half) (#1056)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
- addLiquidity(otherHalf,newBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#995)
- addLiquidity(otherHalf,newBalance) (#1062)
- SwapAndLiquify(half,newBalance,otherHalf) (#1064)
Reentrancy in Gekko.transferFrom(address,address,uint256) (#795-799):
External calls:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
External calls sending eth:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#995)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#797)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#469-474) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#471)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#274-283) uses assembly
- INLINE ASM (#281)
Address._functionCallWithValue(address,bytes,uint256,string) (#367-388) uses assembly
- INLINE ASM (#380-383)
Do not use evm assembly.
Additional information: link
Gekko.includeInReward(address) (#855-866) has costly operations inside a loop:
- _excluded.pop() (#862)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#367-388) is never used and should be removed
Address.functionCall(address,bytes) (#327-329) is never used and should be removed
Address.functionCall(address,bytes,string) (#337-339) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#352-354) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#362-365) is never used and should be removed
Address.isContract(address) (#274-283) is never used and should be removed
Address.sendValue(address,uint256) (#301-307) is never used and should be removed
Context._msgData() (#246-249) is never used and should be removed
SafeMath.mod(uint256,uint256) (#219-221) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#235-238) is never used and should be removed
Remove unused functions.
Additional information: link
Gekko._rTotal (#706) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Gekko._previousTaxFee (#714) is set pre-construction with a non-constant function or state variable:
- _taxFee
Gekko._previousLiquidityFee (#717) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#301-307):
- (success) = recipient.call{value: amount}() (#305)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#367-388):
- (success,returndata) = target.call{value: weiValue}(data) (#371)
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() (#513) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#514) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#531) is not in mixedCase
Function IUniswapV2Router01.WETH() (#553) is not in mixedCase
Parameter Gekko.setSwapAndLiquifyEnabled(bool)._enabled (#900) is not in mixedCase
Parameter Gekko.calculateTaxFee(uint256)._amount (#959) is not in mixedCase
Parameter Gekko.calculateLiquidityFee(uint256)._amount (#965) is not in mixedCase
Variable Gekko._taxFee (#713) is not in mixedCase
Variable Gekko._liquidityFee (#716) is not in mixedCase
Variable Gekko._maxTxAmount (#725) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#247)" inContext (#241-250)
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 (#558) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#559)
Variable Gekko._transferToExcluded(address,address,uint256).rTransferAmount (#1131) is too similar to Gekko._transferFromExcluded(address,address,uint256).tTransferAmount (#1141)
Variable Gekko._getValues(uint256).rTransferAmount (#915) is too similar to Gekko._getTValues(uint256).tTransferAmount (#922)
Variable Gekko._transferStandard(address,address,uint256).rTransferAmount (#1122) is too similar to Gekko._getTValues(uint256).tTransferAmount (#922)
Variable Gekko._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Gekko._transferToExcluded(address,address,uint256).tTransferAmount (#1131)
Variable Gekko._transferStandard(address,address,uint256).rTransferAmount (#1122) is too similar to Gekko._transferStandard(address,address,uint256).tTransferAmount (#1122)
Variable Gekko._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Gekko._transferFromExcluded(address,address,uint256).tTransferAmount (#1141)
Variable Gekko._transferFromExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to Gekko._getTValues(uint256).tTransferAmount (#922)
Variable Gekko._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#930) is too similar to Gekko._getTValues(uint256).tTransferAmount (#922)
Variable Gekko._getValues(uint256).rTransferAmount (#915) is too similar to Gekko._transferToExcluded(address,address,uint256).tTransferAmount (#1131)
Variable Gekko._transferStandard(address,address,uint256).rTransferAmount (#1122) is too similar to Gekko._transferToExcluded(address,address,uint256).tTransferAmount (#1131)
Variable Gekko._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#930) is too similar to Gekko._transferStandard(address,address,uint256).tTransferAmount (#1122)
Variable Gekko._getValues(uint256).rTransferAmount (#915) is too similar to Gekko._transferFromExcluded(address,address,uint256).tTransferAmount (#1141)
Variable Gekko._transferStandard(address,address,uint256).rTransferAmount (#1122) is too similar to Gekko._transferFromExcluded(address,address,uint256).tTransferAmount (#1141)
Variable Gekko._transferToExcluded(address,address,uint256).rTransferAmount (#1131) is too similar to Gekko._getTValues(uint256).tTransferAmount (#922)
Variable Gekko._transferFromExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to Gekko._transferToExcluded(address,address,uint256).tTransferAmount (#1131)
Variable Gekko._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Gekko._getTValues(uint256).tTransferAmount (#922)
Variable Gekko._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#930) is too similar to Gekko._transferToExcluded(address,address,uint256).tTransferAmount (#1131)
Variable Gekko._transferFromExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to Gekko._transferFromExcluded(address,address,uint256).tTransferAmount (#1141)
Variable Gekko._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#930) is too similar to Gekko._transferFromExcluded(address,address,uint256).tTransferAmount (#1141)
Variable Gekko._transferToExcluded(address,address,uint256).rTransferAmount (#1131) is too similar to Gekko._transferToExcluded(address,address,uint256).tTransferAmount (#1131)
Variable Gekko._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#930) is too similar to Gekko._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Gekko._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#930) is too similar to Gekko._getValues(uint256).tTransferAmount (#914)
Variable Gekko.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Gekko._transferFromExcluded(address,address,uint256).tTransferAmount (#1141)
Variable Gekko.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Gekko._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Gekko.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Gekko._getValues(uint256).tTransferAmount (#914)
Variable Gekko.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Gekko._transferStandard(address,address,uint256).tTransferAmount (#1122)
Variable Gekko._transferStandard(address,address,uint256).rTransferAmount (#1122) is too similar to Gekko._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Gekko._transferStandard(address,address,uint256).rTransferAmount (#1122) is too similar to Gekko._getValues(uint256).tTransferAmount (#914)
Variable Gekko._getValues(uint256).rTransferAmount (#915) is too similar to Gekko._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Gekko._getValues(uint256).rTransferAmount (#915) is too similar to Gekko._getValues(uint256).tTransferAmount (#914)
Variable Gekko._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Gekko._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Gekko._getValues(uint256).rTransferAmount (#915) is too similar to Gekko._transferStandard(address,address,uint256).tTransferAmount (#1122)
Variable Gekko._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Gekko._getValues(uint256).tTransferAmount (#914)
Variable Gekko._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Gekko._transferStandard(address,address,uint256).tTransferAmount (#1122)
Variable Gekko.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Gekko._transferToExcluded(address,address,uint256).tTransferAmount (#1131)
Variable Gekko._transferToExcluded(address,address,uint256).rTransferAmount (#1131) is too similar to Gekko._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Gekko._transferToExcluded(address,address,uint256).rTransferAmount (#1131) is too similar to Gekko._getValues(uint256).tTransferAmount (#914)
Variable Gekko._transferToExcluded(address,address,uint256).rTransferAmount (#1131) is too similar to Gekko._transferStandard(address,address,uint256).tTransferAmount (#1122)
Variable Gekko._transferFromExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to Gekko._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Gekko.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Gekko._getTValues(uint256).tTransferAmount (#922)
Variable Gekko._transferFromExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to Gekko._getValues(uint256).tTransferAmount (#914)
Variable Gekko._transferFromExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to Gekko._transferStandard(address,address,uint256).tTransferAmount (#1122)
Prevent variables from having similar names.
Additional information: link
Gekko.slitherConstructorVariables() (#691-1151) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 18 (#705)
Gekko.slitherConstructorVariables() (#691-1151) uses literals with too many digits:
- _maxTxAmount = 2000000000 * 10 ** 18 (#725)
Gekko.slitherConstructorVariables() (#691-1151) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000000 * 10 ** 18 (#726)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Gekko._decimals (#711) should be constant
Gekko._name (#709) should be constant
Gekko._symbol (#710) should be constant
Gekko._tTotal (#705) should be constant
Gekko.numTokensSellToAddToLiquidity (#726) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#441-444)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#450-454)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#456-458)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#461-466)
unlock() should be declared external:
- Ownable.unlock() (#469-474)
name() should be declared external:
- Gekko.name() (#760-762)
symbol() should be declared external:
- Gekko.symbol() (#764-766)
decimals() should be declared external:
- Gekko.decimals() (#768-770)
totalSupply() should be declared external:
- Gekko.totalSupply() (#772-774)
transfer(address,uint256) should be declared external:
- Gekko.transfer(address,uint256) (#781-784)
allowance(address,address) should be declared external:
- Gekko.allowance(address,address) (#786-788)
approve(address,uint256) should be declared external:
- Gekko.approve(address,uint256) (#790-793)
transferFrom(address,address,uint256) should be declared external:
- Gekko.transferFrom(address,address,uint256) (#795-799)
increaseAllowance(address,uint256) should be declared external:
- Gekko.increaseAllowance(address,uint256) (#801-804)
decreaseAllowance(address,uint256) should be declared external:
- Gekko.decreaseAllowance(address,uint256) (#806-809)
isExcludedFromReward(address) should be declared external:
- Gekko.isExcludedFromReward(address) (#811-813)
totalFees() should be declared external:
- Gekko.totalFees() (#815-817)
deliver(uint256) should be declared external:
- Gekko.deliver(uint256) (#819-826)
reflectionFromToken(uint256,bool) should be declared external:
- Gekko.reflectionFromToken(uint256,bool) (#828-837)
excludeFromReward(address) should be declared external:
- Gekko.excludeFromReward(address) (#845-853)
excludeFromFee(address) should be declared external:
- Gekko.excludeFromFee(address) (#878-880)
includeInFee(address) should be declared external:
- Gekko.includeInFee(address) (#882-884)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Gekko.setSwapAndLiquifyEnabled(bool) (#900-903)
isExcludedFromFee(address) should be declared external:
- Gekko.isExcludedFromFee(address) (#986-988)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to find website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account link seems to be invalid
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account