Reentrancy in COOPERSTATION._transfer(address,address,uint256) (#464-511):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#502)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#592-598)
- address(Cooper_Marketing_Wallet).sendValue(marketingAmt) (#560)
- address(Cooper_Team_Wallet).sendValue(teamAmt) (#564)
- swapAndLiquify(swapTokensAtAmount,taxes) (#503)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#592-598)
- address(Cooper_Marketing_Wallet).sendValue(marketingAmt) (#560)
- address(Cooper_Team_Wallet).sendValue(teamAmt) (#564)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#502)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
- swapAndLiquify(swapTokensAtAmount,taxes) (#503)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#510)
- _rOwned[address(this)] += rTeam (#385)
- _rOwned[address(this)] += rMarketing (#375)
- _rOwned[address(this)] += rLiquidity (#365)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#526)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#527)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#510)
- _rTotal -= rRfi (#354)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#510)
- _tOwned[address(this)] += tLiquidity (#363)
- _tOwned[sender] = _tOwned[sender] - tAmount (#520)
- _tOwned[address(this)] += tTeam (#383)
- _tOwned[address(this)] += tMarketing (#373)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#523)
Apply the check-effects-interactions pattern.
Additional information: link
COOPERSTATION.rescueAnyBEP20Tokens(address,address,uint256) (#672-674) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#673)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
COOPERSTATION.addLiquidity(uint256,uint256) (#568-581) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
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.
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.
Contract ownership is not renounced (belongs to a wallet)
COOPERSTATION.swapAndLiquify(uint256,COOPERSTATION.Taxes) (#540-566) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#550)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#551)
COOPERSTATION.swapAndLiquify(uint256,COOPERSTATION.Taxes) (#540-566) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#550)
-marketingAmt = unitBalance * 2 * temp.marketing (#558)
COOPERSTATION.swapAndLiquify(uint256,COOPERSTATION.Taxes) (#540-566) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#550)
-teamAmt = unitBalance * 2 * temp.team (#562)
Consider ordering multiplication before division.
Additional information: link
COOPERSTATION.addLiquidity(uint256,uint256) (#568-581) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
Ensure that all the return values of the function calls are used.
Additional information: link
COOPERSTATION.allowance(address,address).owner (#244) shadows:
- Ownable.owner() (#47-49) (function)
COOPERSTATION._approve(address,address,uint256).owner (#457) shadows:
- Ownable.owner() (#47-49) (function)
Rename the local variables that shadow another component.
Additional information: link
COOPERSTATION.updateCooldown(bool,uint256) (#623-626) should emit an event for:
- coolDownTime = time * 1 (#624)
COOPERSTATION.updateSwapTokensAtAmount(uint256) (#628-630) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#629)
COOPERSTATION.updateMaxTxLimit(uint256,uint256) (#651-654) should emit an event for:
- Cooper_max_BuyLimit = maxBuy * 10 ** decimals() (#652)
- Cooper_max_SellLimit = maxSell * 10 ** decimals() (#653)
COOPERSTATION.updateCooper_Max_Walletlimit(uint256) (#656-658) should emit an event for:
- Cooper_max_WalletLimit = amount * 10 ** decimals() (#657)
Emit an event for critical parameter changes.
Additional information: link
COOPERSTATION.constructor(address)._pair (#200-201) lacks a zero-check on :
- pair = _pair (#204)
COOPERSTATION.Cooper_Update_MarketingWallet(address).newWallet (#614) lacks a zero-check on :
- Cooper_Marketing_Wallet = newWallet (#615)
COOPERSTATION.Cooper_Update_TeamWallet(address).newWallet (#618) lacks a zero-check on :
- Cooper_Team_Wallet = newWallet (#619)
COOPERSTATION.updateRouterAndPair(address,address).newPair (#660) lacks a zero-check on :
- pair = newPair (#662)
Check that the address is not zero.
Additional information: link
Reentrancy in COOPERSTATION._transfer(address,address,uint256) (#464-511):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#502)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#592-598)
- address(Cooper_Marketing_Wallet).sendValue(marketingAmt) (#560)
- address(Cooper_Team_Wallet).sendValue(teamAmt) (#564)
- swapAndLiquify(swapTokensAtAmount,taxes) (#503)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#592-598)
- address(Cooper_Marketing_Wallet).sendValue(marketingAmt) (#560)
- address(Cooper_Team_Wallet).sendValue(teamAmt) (#564)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#502)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
- swapAndLiquify(swapTokensAtAmount,taxes) (#503)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#510)
- totFeesPaid.team += tTeam (#379)
- totFeesPaid.marketing += tMarketing (#369)
- totFeesPaid.liquidity += tLiquidity (#359)
- totFeesPaid.rfi += tRfi (#355)
Reentrancy in COOPERSTATION.constructor(address) (#198-221):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#200-201)
State variables written after the call(s):
- excludeFromReward(pair) (#206)
- _excluded.push(account) (#315)
- excludeFromReward(pair) (#206)
- _isExcluded[account] = true (#314)
- _isExcludedFromFee[address(this)] = true (#209)
- _isExcludedFromFee[owner()] = true (#210)
- _isExcludedFromFee[Cooper_Marketing_Wallet] = true (#211)
- _isExcludedFromFee[Cooper_Team_Wallet] = true (#212)
- _rOwned[owner()] = _rTotal (#208)
- excludeFromReward(pair) (#206)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#312)
- allowedTransfer[address(this)] = true (#214)
- allowedTransfer[owner()] = true (#215)
- allowedTransfer[pair] = true (#216)
- allowedTransfer[Cooper_Marketing_Wallet] = true (#217)
- allowedTransfer[Cooper_Team_Wallet] = true (#218)
- pair = _pair (#204)
- router = _router (#203)
Reentrancy in COOPERSTATION.swapAndLiquify(uint256,COOPERSTATION.Taxes) (#540-566):
External calls:
- swapTokensForBNB(toSwap) (#547)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#592-598)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#555)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#555)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#555)
- _allowances[owner][spender] = amount (#460)
Reentrancy in COOPERSTATION.transferFrom(address,address,uint256) (#253-261):
External calls:
- _transfer(sender,recipient,amount) (#254)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#592-598)
- address(Cooper_Marketing_Wallet).sendValue(marketingAmt) (#560)
- address(Cooper_Team_Wallet).sendValue(teamAmt) (#564)
External calls sending eth:
- _transfer(sender,recipient,amount) (#254)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#258)
- _allowances[owner][spender] = amount (#460)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in COOPERSTATION._transfer(address,address,uint256) (#464-511):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#502)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#592-598)
- address(Cooper_Marketing_Wallet).sendValue(marketingAmt) (#560)
- address(Cooper_Team_Wallet).sendValue(teamAmt) (#564)
- swapAndLiquify(swapTokensAtAmount,taxes) (#503)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#592-598)
- address(Cooper_Marketing_Wallet).sendValue(marketingAmt) (#560)
- address(Cooper_Team_Wallet).sendValue(teamAmt) (#564)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#502)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
- swapAndLiquify(swapTokensAtAmount,taxes) (#503)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tTeam) (#532)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#510)
- Transfer(sender,recipient,s.tTransferAmount) (#536)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#510)
Reentrancy in COOPERSTATION.constructor(address) (#198-221):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#200-201)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#220)
Reentrancy in COOPERSTATION.swapAndLiquify(uint256,COOPERSTATION.Taxes) (#540-566):
External calls:
- swapTokensForBNB(toSwap) (#547)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#592-598)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#555)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#555)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#461)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#555)
Reentrancy in COOPERSTATION.transferFrom(address,address,uint256) (#253-261):
External calls:
- _transfer(sender,recipient,amount) (#254)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#592-598)
- address(Cooper_Marketing_Wallet).sendValue(marketingAmt) (#560)
- address(Cooper_Team_Wallet).sendValue(teamAmt) (#564)
External calls sending eth:
- _transfer(sender,recipient,amount) (#254)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#573-580)
- (success) = recipient.call{value: amount}() (#100)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#461)
- _approve(sender,_msgSender(),currentAllowance - amount) (#258)
Apply the check-effects-interactions pattern.
Additional information: link
COOPERSTATION._transfer(address,address,uint256) (#464-511) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#491)
Avoid relying on block.timestamp.
Additional information: link
COOPERSTATION.setTradingStatus(bool) (#297-301) compares to a boolean constant:
-state == true && genesis_block == 0 (#300)
Remove the equality to the boolean constant.
Additional information: link
COOPERSTATION.includeInReward(address) (#318-329) has costly operations inside a loop:
- _excluded.pop() (#325)
COOPERSTATION._reflectRfi(uint256,uint256) (#353-356) has costly operations inside a loop:
- _rTotal -= rRfi (#354)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#32-35) is never used and should be removed
Remove unused functions.
Additional information: link
COOPERSTATION._rTotal (#140) 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) (#97-102):
- (success) = recipient.call{value: amount}() (#100)
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() (#78) is not in mixedCase
Struct COOPERSTATION.valuesFromGetValues (#175-187) is not in CapWords
Parameter COOPERSTATION.setTaxes(uint256,uint256,uint256,uint256)._rfi (#343) is not in mixedCase
Parameter COOPERSTATION.setTaxes(uint256,uint256,uint256,uint256)._marketing (#343) is not in mixedCase
Parameter COOPERSTATION.setTaxes(uint256,uint256,uint256,uint256)._liquidity (#343) is not in mixedCase
Parameter COOPERSTATION.setTaxes(uint256,uint256,uint256,uint256)._team (#343) is not in mixedCase
Parameter COOPERSTATION.setSellTaxes(uint256,uint256,uint256,uint256)._rfi (#348) is not in mixedCase
Parameter COOPERSTATION.setSellTaxes(uint256,uint256,uint256,uint256)._marketing (#348) is not in mixedCase
Parameter COOPERSTATION.setSellTaxes(uint256,uint256,uint256,uint256)._liquidity (#348) is not in mixedCase
Parameter COOPERSTATION.setSellTaxes(uint256,uint256,uint256,uint256)._team (#348) is not in mixedCase
Function COOPERSTATION.Cooper_Update_MarketingWallet(address) (#614-616) is not in mixedCase
Function COOPERSTATION.Cooper_Update_TeamWallet(address) (#618-620) is not in mixedCase
Parameter COOPERSTATION.updateSwapEnabled(bool)._enabled (#632) is not in mixedCase
Function COOPERSTATION.updateCooper_Max_Walletlimit(uint256) (#656-658) is not in mixedCase
Parameter COOPERSTATION.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#672) is not in mixedCase
Parameter COOPERSTATION.rescueAnyBEP20Tokens(address,address,uint256)._to (#672) is not in mixedCase
Parameter COOPERSTATION.rescueAnyBEP20Tokens(address,address,uint256)._amount (#672) is not in mixedCase
Constant COOPERSTATION._decimals (#136) is not in UPPER_CASE_WITH_UNDERSCORES
Variable COOPERSTATION.genesis_block (#142) is not in mixedCase
Constant COOPERSTATION._name (#144) is not in UPPER_CASE_WITH_UNDERSCORES
Constant COOPERSTATION._symbol (#145) is not in UPPER_CASE_WITH_UNDERSCORES
Variable COOPERSTATION.Cooper_Marketing_Wallet (#147) is not in mixedCase
Variable COOPERSTATION.Cooper_Team_Wallet (#148) is not in mixedCase
Variable COOPERSTATION.Cooper_max_WalletLimit (#151) is not in mixedCase
Variable COOPERSTATION.Cooper_max_BuyLimit (#153) is not in mixedCase
Variable COOPERSTATION.Cooper_max_SellLimit (#154) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#33)" inContext (#27-36)
Remove redundant statements if they congest code but offer no value.
Additional information: link
COOPERSTATION.slitherConstructorVariables() (#106-679) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** _decimals (#139)
COOPERSTATION.slitherConstructorVariables() (#106-679) uses literals with too many digits:
- Cooper_max_WalletLimit = 20000000000 * 10 ** 9 (#151)
COOPERSTATION.slitherConstructorVariables() (#106-679) uses literals with too many digits:
- swapTokensAtAmount = 3000000000 * 10 ** 9 (#152)
COOPERSTATION.slitherConstructorVariables() (#106-679) uses literals with too many digits:
- Cooper_max_BuyLimit = 10000000000 * 10 ** 9 (#153)
COOPERSTATION.slitherConstructorVariables() (#106-679) uses literals with too many digits:
- Cooper_max_SellLimit = 10000000000 * 10 ** 9 (#154)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
COOPERSTATION._tTotal (#139) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#56-58)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#60-63)
name() should be declared external:
- COOPERSTATION.name() (#224-226)
symbol() should be declared external:
- COOPERSTATION.symbol() (#227-229)
totalSupply() should be declared external:
- COOPERSTATION.totalSupply() (#235-237)
allowance(address,address) should be declared external:
- COOPERSTATION.allowance(address,address) (#244-246)
approve(address,uint256) should be declared external:
- COOPERSTATION.approve(address,uint256) (#248-251)
transferFrom(address,address,uint256) should be declared external:
- COOPERSTATION.transferFrom(address,address,uint256) (#253-261)
increaseAllowance(address,uint256) should be declared external:
- COOPERSTATION.increaseAllowance(address,uint256) (#263-266)
decreaseAllowance(address,uint256) should be declared external:
- COOPERSTATION.decreaseAllowance(address,uint256) (#268-274)
transfer(address,uint256) should be declared external:
- COOPERSTATION.transfer(address,uint256) (#276-280)
isExcludedFromReward(address) should be declared external:
- COOPERSTATION.isExcludedFromReward(address) (#282-284)
reflectionFromToken(uint256,bool) should be declared external:
- COOPERSTATION.reflectionFromToken(uint256,bool) (#286-295)
excludeFromFee(address) should be declared external:
- COOPERSTATION.excludeFromFee(address) (#331-333)
includeInFee(address) should be declared external:
- COOPERSTATION.includeInFee(address) (#335-337)
isExcludedFromFee(address) should be declared external:
- COOPERSTATION.isExcludedFromFee(address) (#339-341)
setTaxes(uint256,uint256,uint256,uint256) should be declared external:
- COOPERSTATION.setTaxes(uint256,uint256,uint256,uint256) (#343-346)
setSellTaxes(uint256,uint256,uint256,uint256) should be declared external:
- COOPERSTATION.setSellTaxes(uint256,uint256,uint256,uint256) (#348-351)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- COOPERSTATION.rescueAnyBEP20Tokens(address,address,uint256) (#672-674)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 9% buy tax and 11% 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
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