PandaInu.addLiquidity(uint256,uint256) (#797-810) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in PandaInu._transfer(address,address,uint256) (#690-744):
External calls:
- swapAndLiquify(contractTokenBalance) (#718)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#786-792)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#718)
- recipient.transfer(amount) (#638)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#721)
- finalAmount = takeFee(sender,recipient,amount) (#732)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#824)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#738)
- addBot(recipient) (#729)
- _isbclisted[recipient] = true (#679)
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)
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.
PandaInu._transfer(address,address,uint256) (#690-744) performs a multiplication on the result of a division:
-_sellReserveFeeAmount = amount.div(100).mul(_sellReserveFee) (#703)
Consider ordering multiplication before division.
Additional information: link
PandaInu.addLiquidity(uint256,uint256) (#797-810) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
Ensure that all the return values of the function calls are used.
Additional information: link
PandaInu.allowance(address,address).owner (#524) shadows:
- Ownable.owner() (#152-154) (function)
PandaInu._approve(address,address,uint256).owner (#547) shadows:
- Ownable.owner() (#152-154) (function)
Rename the local variables that shadow another component.
Additional information: link
PandaInu.setBuyTaxes(uint256,uint256,uint256) (#572-578) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#577)
PandaInu.setSellTaxes(uint256,uint256,uint256) (#580-586) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#585)
PandaInu.setDistributionSettings(uint256,uint256,uint256) (#588-594) should emit an event for:
- _liquidityShare = newLiquidityShare (#589)
- _teamShare = newTeamShare (#591)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#593)
PandaInu.setMaxTxAmount(uint256) (#596-598) should emit an event for:
- _maxTxAmount = maxTxAmount (#597)
PandaInu.setWalletLimit(uint256) (#608-610) should emit an event for:
- _walletMax = newLimit (#609)
PandaInu.setNumTokensBeforeSwap(uint256) (#612-614) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#613)
PandaInu.setKillBlock(uint256) (#682-684) should emit an event for:
- killblock = num (#683)
Emit an event for critical parameter changes.
Additional information: link
PandaInu.setMarketingWalletAddress(address).newAddress (#616) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#617)
PandaInu.setTeamWalletAddress(address).newAddress (#620) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#621)
Check that the address is not zero.
Additional information: link
Reentrancy in PandaInu.changeRouterVersion(address) (#641-658):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#649-650)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#657)
- isWalletLimitExempt[address(uniswapPair)] = true (#656)
- uniswapPair = newPairAddress (#653)
- uniswapV2Router = _uniswapV2Router (#654)
Reentrancy in PandaInu.constructor() (#474-502):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#478-479)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#482)
- _balances[_msgSender()] = _totalSupply (#500)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#489)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#487)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#488)
- isExcludedFromFee[owner()] = true (#484)
- isExcludedFromFee[address(this)] = true (#485)
- isMarketPair[address(uniswapPair)] = true (#498)
- isTxLimitExempt[owner()] = true (#495)
- isTxLimitExempt[address(this)] = true (#496)
- isWalletLimitExempt[owner()] = true (#491)
- isWalletLimitExempt[address(uniswapPair)] = true (#492)
- isWalletLimitExempt[address(this)] = true (#493)
- uniswapV2Router = _uniswapV2Router (#481)
Reentrancy in PandaInu.swapAndLiquify(uint256) (#753-775):
External calls:
- swapTokensForEth(tokensForSwap) (#758)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#786-792)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#774)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#768)
- recipient.transfer(amount) (#638)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#771)
- recipient.transfer(amount) (#638)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#774)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#774)
- _allowances[owner][spender] = amount (#551)
Reentrancy in PandaInu.transferFrom(address,address,uint256) (#668-672):
External calls:
- _transfer(sender,recipient,amount) (#669)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#786-792)
External calls sending eth:
- _transfer(sender,recipient,amount) (#669)
- recipient.transfer(amount) (#638)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#670)
- _allowances[owner][spender] = amount (#551)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PandaInu._transfer(address,address,uint256) (#690-744):
External calls:
- swapAndLiquify(contractTokenBalance) (#718)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#786-792)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#718)
- recipient.transfer(amount) (#638)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#825)
- finalAmount = takeFee(sender,recipient,amount) (#732)
- Transfer(sender,recipient,finalAmount) (#740)
Reentrancy in PandaInu.constructor() (#474-502):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#478-479)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#501)
Reentrancy in PandaInu.swapAndLiquify(uint256) (#753-775):
External calls:
- swapTokensForEth(tokensForSwap) (#758)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#786-792)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#774)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#768)
- recipient.transfer(amount) (#638)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#771)
- recipient.transfer(amount) (#638)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#774)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#552)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#774)
Reentrancy in PandaInu.swapTokensForEth(uint256) (#777-795):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#786-792)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#794)
Reentrancy in PandaInu.transferFrom(address,address,uint256) (#668-672):
External calls:
- _transfer(sender,recipient,amount) (#669)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#786-792)
External calls sending eth:
- _transfer(sender,recipient,amount) (#669)
- recipient.transfer(amount) (#638)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#552)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#670)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#187-192) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#189)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#83-92) uses assembly
- INLINE ASM (#90)
Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) uses assembly
- INLINE ASM (#128-131)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) is never used and should be removed
Address.functionCall(address,bytes) (#102-104) is never used and should be removed
Address.functionCall(address,bytes,string) (#106-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#110-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#114-117) is never used and should be removed
Address.isContract(address) (#83-92) is never used and should be removed
Address.sendValue(address,uint256) (#94-100) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#71-73) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#75-78) is never used and should be removed
Remove unused functions.
Additional information: link
PandaInu._totalSupply (#438) is set pre-construction with a non-constant function or state variable:
- 1000000000000 * 10 ** _decimals
PandaInu._maxTxAmount (#439) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 1) / 100
PandaInu._walletMax (#440) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 2) / 100
PandaInu.minimumTokensBeforeSwap (#441) is set pre-construction with a non-constant function or state variable:
- 1000000000000 * 5 ** _decimals
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) (#94-100):
- (success) = recipient.call{value: amount}() (#98)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#119-136):
- (success,returndata) = target.call{value: weiValue}(data) (#122)
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() (#226) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#227) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#243) is not in mixedCase
Function IUniswapV2Router01.WETH() (#262) is not in mixedCase
Function PandaInu.Launch() (#555-558) is not in mixedCase
Parameter PandaInu.setSwapAndLiquifyEnabled(bool)._enabled (#624) is not in mixedCase
Variable PandaInu._balances (#411) is not in mixedCase
Variable PandaInu._buyLiquidityFee (#420) is not in mixedCase
Variable PandaInu._buyMarketingFee (#421) is not in mixedCase
Variable PandaInu._buyTeamFee (#422) is not in mixedCase
Variable PandaInu._sellLiquidityFee (#424) is not in mixedCase
Variable PandaInu._sellMarketingFee (#425) is not in mixedCase
Variable PandaInu._sellTeamFee (#426) is not in mixedCase
Variable PandaInu._sellReserveFee (#428) is not in mixedCase
Variable PandaInu._liquidityShare (#430) is not in mixedCase
Variable PandaInu._marketingShare (#431) is not in mixedCase
Variable PandaInu._teamShare (#432) is not in mixedCase
Variable PandaInu._totalTaxIfBuying (#434) is not in mixedCase
Variable PandaInu._totalTaxIfSelling (#435) is not in mixedCase
Variable PandaInu._totalDistributionShares (#436) is not in mixedCase
Variable PandaInu._maxTxAmount (#439) is not in mixedCase
Variable PandaInu._walletMax (#440) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#11)" inContext (#4-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in PandaInu._transfer(address,address,uint256) (#690-744):
External calls:
- swapAndLiquify(contractTokenBalance) (#718)
- recipient.transfer(amount) (#638)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#718)
- recipient.transfer(amount) (#638)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#721)
- finalAmount = takeFee(sender,recipient,amount) (#732)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#824)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#738)
- addBot(recipient) (#729)
- _isbclisted[recipient] = true (#679)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#825)
- finalAmount = takeFee(sender,recipient,amount) (#732)
- Transfer(sender,recipient,finalAmount) (#740)
Reentrancy in PandaInu.swapAndLiquify(uint256) (#753-775):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#768)
- recipient.transfer(amount) (#638)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#771)
- recipient.transfer(amount) (#638)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#768)
- recipient.transfer(amount) (#638)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#771)
- recipient.transfer(amount) (#638)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#774)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#774)
- _allowances[owner][spender] = amount (#551)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#552)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#774)
Reentrancy in PandaInu.transferFrom(address,address,uint256) (#668-672):
External calls:
- _transfer(sender,recipient,amount) (#669)
- recipient.transfer(amount) (#638)
External calls sending eth:
- _transfer(sender,recipient,amount) (#669)
- recipient.transfer(amount) (#638)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x21935Bb89eF9EEAAFdda56758183fC897a45d89F),block.timestamp) (#802-809)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#670)
- _allowances[owner][spender] = amount (#551)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#552)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#670)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#267) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#268)
Prevent variables from having similar names.
Additional information: link
PandaInu.slitherConstructorVariables() (#395-832) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#409)
PandaInu.slitherConstructorVariables() (#395-832) uses literals with too many digits:
- _totalSupply = 1000000000000 * 10 ** _decimals (#438)
PandaInu.slitherConstructorVariables() (#395-832) uses literals with too many digits:
- minimumTokensBeforeSwap = 1000000000000 * 5 ** _decimals (#441)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
PandaInu._decimals (#402) should be constant
PandaInu._name (#400) should be constant
PandaInu._sellReserveFee (#428) should be constant
PandaInu._symbol (#401) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#161-164)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#166-170)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#172-174)
getTime() should be declared external:
- Ownable.getTime() (#176-178)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#180-185)
unlock() should be declared external:
- Ownable.unlock() (#187-192)
name() should be declared external:
- PandaInu.name() (#504-506)
symbol() should be declared external:
- PandaInu.symbol() (#508-510)
decimals() should be declared external:
- PandaInu.decimals() (#512-514)
totalSupply() should be declared external:
- PandaInu.totalSupply() (#516-518)
allowance(address,address) should be declared external:
- PandaInu.allowance(address,address) (#524-526)
increaseAllowance(address,uint256) should be declared external:
- PandaInu.increaseAllowance(address,uint256) (#528-531)
decreaseAllowance(address,uint256) should be declared external:
- PandaInu.decreaseAllowance(address,uint256) (#533-536)
minimumTokensBeforeSwapAmount() should be declared external:
- PandaInu.minimumTokensBeforeSwapAmount() (#538-540)
approve(address,uint256) should be declared external:
- PandaInu.approve(address,uint256) (#542-545)
Launch() should be declared external:
- PandaInu.Launch() (#555-558)
setMarketPairStatus(address,bool) should be declared external:
- PandaInu.setMarketPairStatus(address,bool) (#560-562)
setIsExcludedFromFee(address,bool) should be declared external:
- PandaInu.setIsExcludedFromFee(address,bool) (#568-570)
setSwapAndLiquifyEnabled(bool) should be declared external:
- PandaInu.setSwapAndLiquifyEnabled(bool) (#624-627)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- PandaInu.setSwapAndLiquifyByLimitOnly(bool) (#629-631)
getCirculatingSupply() should be declared external:
- PandaInu.getCirculatingSupply() (#633-635)
changeRouterVersion(address) should be declared external:
- PandaInu.changeRouterVersion(address) (#641-658)
transfer(address,uint256) should be declared external:
- PandaInu.transfer(address,uint256) (#663-666)
transferFrom(address,address,uint256) should be declared external:
- PandaInu.transferFrom(address,address,uint256) (#668-672)
isbcList(address) should be declared external:
- PandaInu.isbcList(address) (#674-676)
setKillBlock(uint256) should be declared external:
- PandaInu.setKillBlock(uint256) (#682-684)
writebcList(address,bool) should be declared external:
- PandaInu.writebcList(address,bool) (#686-688)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 1% buy tax and 12% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d PancakeSwap liquidity is low.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
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 scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Twitter account has less than 100 followers
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts