MooNetwork.addLiquidity(uint256,uint256) (#756-769) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in MooNetwork._transfer(address,address,uint256) (#657-703):
External calls:
- swapAndLiquify(contractTokenBalance) (#687)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#687)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#690)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#698)
- finalAmount = takeFee(sender,recipient,amount) (#692-693)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#785)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
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.
Contract ownership is not renounced (belongs to a wallet)
Address.isContract(address) (#91-100) uses assembly
- INLINE ASM (#98)
Address._functionCallWithValue(address,bytes,uint256,string) (#127-144) uses assembly
- INLINE ASM (#136-139)
Do not use evm assembly.
Additional information: link
MooNetwork.addLiquidity(uint256,uint256) (#756-769) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
Ensure that all the return values of the function calls are used.
Additional information: link
MooNetwork.allowance(address,address).owner (#512) shadows:
- Ownable.owner() (#159-161) (function)
MooNetwork._approve(address,address,uint256).owner (#535) shadows:
- Ownable.owner() (#159-161) (function)
Rename the local variables that shadow another component.
Additional information: link
MooNetwork.setBuyTaxes(uint256,uint256,uint256) (#555-561) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#560)
MooNetwork.setSelTaxes(uint256,uint256,uint256) (#563-569) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#568)
MooNetwork.setDistributionSettings(uint256,uint256,uint256) (#571-577) should emit an event for:
- _liquidityShare = newLiquidityShare (#572)
- _teamShare = newTeamShare (#574)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#576)
MooNetwork.setMaxTxAmount(uint256) (#579-581) should emit an event for:
- _maxTxAmount = maxTxAmount (#580)
MooNetwork.setWalletLimit(uint256) (#591-593) should emit an event for:
- _walletMax = newLimit (#592)
MooNetwork.setNumTokensBeforeSwap(uint256) (#595-597) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#596)
Emit an event for critical parameter changes.
Additional information: link
MooNetwork.setMarketingWalletAddress(address).newAddress (#599) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#600)
MooNetwork.setTeamWalletAddress(address).newAddress (#603) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#604)
Check that the address is not zero.
Additional information: link
Reentrancy in MooNetwork._transfer(address,address,uint256) (#657-703):
External calls:
- swapAndLiquify(contractTokenBalance) (#687)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#687)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
State variables written after the call(s):
- finalAmount = takeFee(sender,recipient,amount) (#692-693)
- _totalTaxIfSelling = 3 * 3 * 10 (#775)
Reentrancy in MooNetwork.changeRouterVersion(address) (#624-641):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#632-633)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#640)
- isWalletLimitExempt[address(uniswapPair)] = true (#639)
- uniswapPair = newPairAddress (#636)
- uniswapV2Router = _uniswapV2Router (#637)
Reentrancy in MooNetwork.constructor() (#447-474):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#450-451)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#454)
- _balances[_msgSender()] = _totalSupply (#472)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#461)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#459)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#460)
- isExcludedFromFee[owner()] = true (#456)
- isExcludedFromFee[address(this)] = true (#457)
- isMarketPair[address(uniswapPair)] = true (#470)
- isTxLimitExempt[owner()] = true (#467)
- isTxLimitExempt[address(this)] = true (#468)
- isWalletLimitExempt[owner()] = true (#463)
- isWalletLimitExempt[address(uniswapPair)] = true (#464)
- isWalletLimitExempt[address(this)] = true (#465)
- uniswapV2Router = _uniswapV2Router (#453)
Reentrancy in MooNetwork.swapAndLiquify(uint256) (#712-734):
External calls:
- swapTokensForEth(tokensForSwap) (#717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#733)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#727)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#730)
- recipient.transfer(amount) (#621)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#733)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#733)
- _allowances[owner][spender] = amount (#539)
Reentrancy in MooNetwork.transferFrom(address,address,uint256) (#651-655):
External calls:
- _transfer(sender,recipient,amount) (#652)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
- _allowances[owner][spender] = amount (#539)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MooNetwork._transfer(address,address,uint256) (#657-703):
External calls:
- swapAndLiquify(contractTokenBalance) (#687)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#687)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#786)
- finalAmount = takeFee(sender,recipient,amount) (#692-693)
- Transfer(sender,recipient,finalAmount) (#700)
Reentrancy in MooNetwork.constructor() (#447-474):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#450-451)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#473)
Reentrancy in MooNetwork.swapAndLiquify(uint256) (#712-734):
External calls:
- swapTokensForEth(tokensForSwap) (#717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#733)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#727)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#730)
- recipient.transfer(amount) (#621)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#733)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#540)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#733)
Reentrancy in MooNetwork.swapTokensForEth(uint256) (#736-754):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#753)
Reentrancy in MooNetwork.transferFrom(address,address,uint256) (#651-655):
External calls:
- _transfer(sender,recipient,amount) (#652)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#540)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
Apply the check-effects-interactions pattern.
Additional information: link
MooNetwork._transfer(address,address,uint256) (#657-703) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= readyTimes[sender],Cooldown) (#673)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#127-144) is never used and should be removed
Address.functionCall(address,bytes) (#110-112) is never used and should be removed
Address.functionCall(address,bytes,string) (#114-116) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#118-120) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#122-125) is never used and should be removed
Address.isContract(address) (#91-100) is never used and should be removed
Address.sendValue(address,uint256) (#102-108) is never used and should be removed
Context._msgData() (#18-21) is never used and should be removed
SafeMath.mod(uint256,uint256) (#79-81) 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
MooNetwork._totalSupply (#426) is set pre-construction with a non-constant function or state variable:
- 1000000000000000 * 10 ** _decimals
MooNetwork._maxTxAmount (#427) is set pre-construction with a non-constant function or state variable:
- 1000000000000000 * 10 ** _decimals
MooNetwork._walletMax (#428) is set pre-construction with a non-constant function or state variable:
- 1000000000000000 * 10 ** _decimals
MooNetwork.minimumTokensBeforeSwap (#429) is set pre-construction with a non-constant function or state variable:
- 1 * 10 ** _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
solc-0.8.14 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) (#102-108):
- (success) = recipient.call{value: amount}() (#106)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#127-144):
- (success,returndata) = target.call{value: weiValue}(data) (#130)
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() (#216) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#217) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#233) is not in mixedCase
Function IUniswapV2Router01.WETH() (#252) is not in mixedCase
Parameter MooNetwork.setSwapAndLiquifyEnabled(bool)._enabled (#607) is not in mixedCase
Variable MooNetwork._balances (#418) is not in mixedCase
Variable MooNetwork._maxTxAmount (#427) is not in mixedCase
Variable MooNetwork._walletMax (#428) is not in mixedCase
Variable MooNetwork._CoolDown (#434) is not in mixedCase
Variable MooNetwork._buyLiquidityFee (#476) is not in mixedCase
Variable MooNetwork._buyMarketingFee (#477) is not in mixedCase
Variable MooNetwork._buyTeamFee (#478) is not in mixedCase
Variable MooNetwork._sellLiquidityFee (#480) is not in mixedCase
Variable MooNetwork._sellMarketingFee (#481) is not in mixedCase
Variable MooNetwork._sellTeamFee (#482) is not in mixedCase
Variable MooNetwork._liquidityShare (#484) is not in mixedCase
Variable MooNetwork._marketingShare (#485) is not in mixedCase
Variable MooNetwork._teamShare (#486) is not in mixedCase
Variable MooNetwork._totalTaxIfBuying (#488) is not in mixedCase
Variable MooNetwork._totalTaxIfSelling (#489) is not in mixedCase
Variable MooNetwork._totalDistributionShares (#490) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#19)" inContext (#12-22)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in MooNetwork._transfer(address,address,uint256) (#657-703):
External calls:
- swapAndLiquify(contractTokenBalance) (#687)
- recipient.transfer(amount) (#621)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#687)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#690)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#698)
- finalAmount = takeFee(sender,recipient,amount) (#692-693)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#785)
- finalAmount = takeFee(sender,recipient,amount) (#692-693)
- _totalTaxIfSelling = 3 * 3 * 10 (#775)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#786)
- finalAmount = takeFee(sender,recipient,amount) (#692-693)
- Transfer(sender,recipient,finalAmount) (#700)
Reentrancy in MooNetwork.swapAndLiquify(uint256) (#712-734):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#727)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#730)
- recipient.transfer(amount) (#621)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#727)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#730)
- recipient.transfer(amount) (#621)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#733)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#733)
- _allowances[owner][spender] = amount (#539)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#540)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#733)
Reentrancy in MooNetwork.transferFrom(address,address,uint256) (#651-655):
External calls:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
External calls sending eth:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#761-768)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
- _allowances[owner][spender] = amount (#539)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#540)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#257) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#258)
Prevent variables from having similar names.
Additional information: link
Ownable.waiveOwnership() (#168-171) uses literals with too many digits:
- OwnershipTransferred(_owner,address(0x000000000000000000000000000000000000dEaD)) (#169)
Ownable.waiveOwnership() (#168-171) uses literals with too many digits:
- _owner = address(0x000000000000000000000000000000000000dEaD) (#170)
MooNetwork.slitherConstructorVariables() (#385-793) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#416)
MooNetwork.slitherConstructorVariables() (#385-793) uses literals with too many digits:
- _totalSupply = 1000000000000000 * 10 ** _decimals (#426)
MooNetwork.slitherConstructorVariables() (#385-793) uses literals with too many digits:
- _maxTxAmount = 1000000000000000 * 10 ** _decimals (#427)
MooNetwork.slitherConstructorVariables() (#385-793) uses literals with too many digits:
- _walletMax = 1000000000000000 * 10 ** _decimals (#428)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._lockTime (#149) is never used in MooNetwork (#385-793)
Remove unused state variables.
Additional information: link
MooNetwork._CoolDown (#434) should be constant
MooNetwork._decimals (#425) should be constant
MooNetwork._name (#443) should be constant
MooNetwork._symbol (#444) should be constant
Ownable._lockTime (#149) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#168-171)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#173-177)
getTime() should be declared external:
- Ownable.getTime() (#179-181)
name() should be declared external:
- MooNetwork.name() (#492-494)
symbol() should be declared external:
- MooNetwork.symbol() (#496-498)
decimals() should be declared external:
- MooNetwork.decimals() (#500-502)
totalSupply() should be declared external:
- MooNetwork.totalSupply() (#504-506)
allowance(address,address) should be declared external:
- MooNetwork.allowance(address,address) (#512-514)
increaseAllowance(address,uint256) should be declared external:
- MooNetwork.increaseAllowance(address,uint256) (#516-519)
decreaseAllowance(address,uint256) should be declared external:
- MooNetwork.decreaseAllowance(address,uint256) (#521-524)
minimumTokensBeforeSwapAmount() should be declared external:
- MooNetwork.minimumTokensBeforeSwapAmount() (#526-528)
approve(address,uint256) should be declared external:
- MooNetwork.approve(address,uint256) (#530-533)
setMarketPairStatus(address,bool) should be declared external:
- MooNetwork.setMarketPairStatus(address,bool) (#543-545)
setIsExcludedFromFee(address,bool) should be declared external:
- MooNetwork.setIsExcludedFromFee(address,bool) (#551-553)
setSwapAndLiquifyEnabled(bool) should be declared external:
- MooNetwork.setSwapAndLiquifyEnabled(bool) (#607-610)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- MooNetwork.setSwapAndLiquifyByLimitOnly(bool) (#612-614)
getCirculatingSupply() should be declared external:
- MooNetwork.getCirculatingSupply() (#616-618)
changeRouterVersion(address) should be declared external:
- MooNetwork.changeRouterVersion(address) (#624-641)
transfer(address,uint256) should be declared external:
- MooNetwork.transfer(address,uint256) (#646-649)
transferFrom(address,address,uint256) should be declared external:
- MooNetwork.transferFrom(address,address,uint256) (#651-655)
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 2% buy tax and 1% 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