🦑Squid Game 3.0 (SQUID3)
💎Best of Movie MEME token.
📱Marketing team has run Squid Pet and Squid Game 2.0.
🌙Squid 1000x+ Squidpet 100x+ Squid2 100x+ Squid3 coming soon.
🏆Squid3 will be listed on cex and will giveaway Squid NFT and airdrop tokens to the community after the launch.
SQUID3.addLiquidity(uint256,uint256) (#802-815) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SQUID3._transfer(address,address,uint256) (#695-749):
External calls:
- swapAndLiquify(contractTokenBalance) (#723)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#791-797)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#723)
- recipient.transfer(amount) (#643)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#726)
- finalAmount = takeFee(sender,recipient,amount) (#737)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#829)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#743)
- addBot(recipient) (#734)
- _isbclisted[recipient] = true (#684)
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)
SQUID3._transfer(address,address,uint256) (#695-749) performs a multiplication on the result of a division:
-_sellReserveFeeAmount = amount.div(100).mul(_sellReserveFee) (#708)
Consider ordering multiplication before division.
Additional information: link
SQUID3.addLiquidity(uint256,uint256) (#802-815) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
Ensure that all the return values of the function calls are used.
Additional information: link
SQUID3.allowance(address,address).owner (#525) shadows:
- Ownable.owner() (#152-154) (function)
SQUID3._approve(address,address,uint256).owner (#548) shadows:
- Ownable.owner() (#152-154) (function)
Rename the local variables that shadow another component.
Additional information: link
SQUID3.setBuyTaxes(uint256,uint256,uint256) (#573-579) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#578)
SQUID3.setSellTaxes(uint256,uint256,uint256) (#581-587) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#586)
SQUID3.setDistributionSettings(uint256,uint256,uint256) (#589-595) should emit an event for:
- _liquidityShare = newLiquidityShare (#590)
- _teamShare = newTeamShare (#592)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#594)
SQUID3.setMaxTxAmount(uint256) (#597-599) should emit an event for:
- _maxTxAmount = maxTxAmount (#598)
SQUID3.setWalletLimit(uint256) (#609-611) should emit an event for:
- _walletMax = newLimit (#610)
SQUID3.setNumTokensBeforeSwap(uint256) (#613-615) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#614)
SQUID3.setKillBlock(uint256) (#687-689) should emit an event for:
- killblock = num (#688)
Emit an event for critical parameter changes.
Additional information: link
SQUID3.setMarketingWalletAddress(address).newAddress (#617) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#618)
SQUID3.setTeamWalletAddress(address).newAddress (#621) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#622)
SQUID3.setLiquidityWalletAddress(address).newAddress (#625) lacks a zero-check on :
- liquidityAddress = address(newAddress) (#626)
Check that the address is not zero.
Additional information: link
Reentrancy in SQUID3.changeRouterVersion(address) (#646-663):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#654-655)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#662)
- isWalletLimitExempt[address(uniswapPair)] = true (#661)
- uniswapPair = newPairAddress (#658)
- uniswapV2Router = _uniswapV2Router (#659)
Reentrancy in SQUID3.constructor() (#475-503):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#479-480)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#483)
- _balances[_msgSender()] = _totalSupply (#501)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#490)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#488)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#489)
- isExcludedFromFee[owner()] = true (#485)
- isExcludedFromFee[address(this)] = true (#486)
- isMarketPair[address(uniswapPair)] = true (#499)
- isTxLimitExempt[owner()] = true (#496)
- isTxLimitExempt[address(this)] = true (#497)
- isWalletLimitExempt[owner()] = true (#492)
- isWalletLimitExempt[address(uniswapPair)] = true (#493)
- isWalletLimitExempt[address(this)] = true (#494)
- uniswapV2Router = _uniswapV2Router (#482)
Reentrancy in SQUID3.swapAndLiquify(uint256) (#758-780):
External calls:
- swapTokensForEth(tokensForSwap) (#763)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#791-797)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#779)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#773)
- recipient.transfer(amount) (#643)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#776)
- recipient.transfer(amount) (#643)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#779)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#779)
- _allowances[owner][spender] = amount (#552)
Reentrancy in SQUID3.transferFrom(address,address,uint256) (#673-677):
External calls:
- _transfer(sender,recipient,amount) (#674)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#791-797)
External calls sending eth:
- _transfer(sender,recipient,amount) (#674)
- recipient.transfer(amount) (#643)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#675)
- _allowances[owner][spender] = amount (#552)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SQUID3._transfer(address,address,uint256) (#695-749):
External calls:
- swapAndLiquify(contractTokenBalance) (#723)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#791-797)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#723)
- recipient.transfer(amount) (#643)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#830)
- finalAmount = takeFee(sender,recipient,amount) (#737)
- Transfer(sender,recipient,finalAmount) (#745)
Reentrancy in SQUID3.constructor() (#475-503):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#479-480)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#502)
Reentrancy in SQUID3.swapAndLiquify(uint256) (#758-780):
External calls:
- swapTokensForEth(tokensForSwap) (#763)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#791-797)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#779)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#773)
- recipient.transfer(amount) (#643)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#776)
- recipient.transfer(amount) (#643)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#779)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#553)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#779)
Reentrancy in SQUID3.swapTokensForEth(uint256) (#782-800):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#791-797)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#799)
Reentrancy in SQUID3.transferFrom(address,address,uint256) (#673-677):
External calls:
- _transfer(sender,recipient,amount) (#674)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#791-797)
External calls sending eth:
- _transfer(sender,recipient,amount) (#674)
- recipient.transfer(amount) (#643)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#553)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#675)
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
SQUID3._totalSupply (#439) is set pre-construction with a non-constant function or state variable:
- 100000000000 * 10 ** _decimals
SQUID3._maxTxAmount (#440) is set pre-construction with a non-constant function or state variable:
- 100000000000 * 10 ** _decimals
SQUID3._walletMax (#441) is set pre-construction with a non-constant function or state variable:
- 100000000000 * 10 ** _decimals
SQUID3.minimumTokensBeforeSwap (#442) is set pre-construction with a non-constant function or state variable:
- 100000000000 * 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 SQUID3.Launch() (#556-559) is not in mixedCase
Parameter SQUID3.setSwapAndLiquifyEnabled(bool)._enabled (#629) is not in mixedCase
Variable SQUID3._balances (#412) is not in mixedCase
Variable SQUID3._buyLiquidityFee (#421) is not in mixedCase
Variable SQUID3._buyMarketingFee (#422) is not in mixedCase
Variable SQUID3._buyTeamFee (#423) is not in mixedCase
Variable SQUID3._sellLiquidityFee (#425) is not in mixedCase
Variable SQUID3._sellMarketingFee (#426) is not in mixedCase
Variable SQUID3._sellTeamFee (#427) is not in mixedCase
Variable SQUID3._sellReserveFee (#429) is not in mixedCase
Variable SQUID3._liquidityShare (#431) is not in mixedCase
Variable SQUID3._marketingShare (#432) is not in mixedCase
Variable SQUID3._teamShare (#433) is not in mixedCase
Variable SQUID3._totalTaxIfBuying (#435) is not in mixedCase
Variable SQUID3._totalTaxIfSelling (#436) is not in mixedCase
Variable SQUID3._totalDistributionShares (#437) is not in mixedCase
Variable SQUID3._maxTxAmount (#440) is not in mixedCase
Variable SQUID3._walletMax (#441) 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 SQUID3._transfer(address,address,uint256) (#695-749):
External calls:
- swapAndLiquify(contractTokenBalance) (#723)
- recipient.transfer(amount) (#643)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#723)
- recipient.transfer(amount) (#643)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#726)
- finalAmount = takeFee(sender,recipient,amount) (#737)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#829)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#743)
- addBot(recipient) (#734)
- _isbclisted[recipient] = true (#684)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#830)
- finalAmount = takeFee(sender,recipient,amount) (#737)
- Transfer(sender,recipient,finalAmount) (#745)
Reentrancy in SQUID3.swapAndLiquify(uint256) (#758-780):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#773)
- recipient.transfer(amount) (#643)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#776)
- recipient.transfer(amount) (#643)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#773)
- recipient.transfer(amount) (#643)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#776)
- recipient.transfer(amount) (#643)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#779)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#779)
- _allowances[owner][spender] = amount (#552)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#553)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#779)
Reentrancy in SQUID3.transferFrom(address,address,uint256) (#673-677):
External calls:
- _transfer(sender,recipient,amount) (#674)
- recipient.transfer(amount) (#643)
External calls sending eth:
- _transfer(sender,recipient,amount) (#674)
- recipient.transfer(amount) (#643)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#807-814)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#675)
- _allowances[owner][spender] = amount (#552)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#553)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#675)
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
SQUID3.slitherConstructorVariables() (#395-837) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#410)
SQUID3.slitherConstructorVariables() (#395-837) uses literals with too many digits:
- _totalSupply = 100000000000 * 10 ** _decimals (#439)
SQUID3.slitherConstructorVariables() (#395-837) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** _decimals (#440)
SQUID3.slitherConstructorVariables() (#395-837) uses literals with too many digits:
- _walletMax = 100000000000 * 10 ** _decimals (#441)
SQUID3.slitherConstructorVariables() (#395-837) uses literals with too many digits:
- minimumTokensBeforeSwap = 100000000000 * 5 ** _decimals (#442)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SQUID3._decimals (#402) should be constant
SQUID3._name (#400) should be constant
SQUID3._sellReserveFee (#429) should be constant
SQUID3._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:
- SQUID3.name() (#505-507)
symbol() should be declared external:
- SQUID3.symbol() (#509-511)
decimals() should be declared external:
- SQUID3.decimals() (#513-515)
totalSupply() should be declared external:
- SQUID3.totalSupply() (#517-519)
allowance(address,address) should be declared external:
- SQUID3.allowance(address,address) (#525-527)
increaseAllowance(address,uint256) should be declared external:
- SQUID3.increaseAllowance(address,uint256) (#529-532)
decreaseAllowance(address,uint256) should be declared external:
- SQUID3.decreaseAllowance(address,uint256) (#534-537)
minimumTokensBeforeSwapAmount() should be declared external:
- SQUID3.minimumTokensBeforeSwapAmount() (#539-541)
approve(address,uint256) should be declared external:
- SQUID3.approve(address,uint256) (#543-546)
Launch() should be declared external:
- SQUID3.Launch() (#556-559)
setMarketPairStatus(address,bool) should be declared external:
- SQUID3.setMarketPairStatus(address,bool) (#561-563)
setIsExcludedFromFee(address,bool) should be declared external:
- SQUID3.setIsExcludedFromFee(address,bool) (#569-571)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SQUID3.setSwapAndLiquifyEnabled(bool) (#629-632)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- SQUID3.setSwapAndLiquifyByLimitOnly(bool) (#634-636)
getCirculatingSupply() should be declared external:
- SQUID3.getCirculatingSupply() (#638-640)
changeRouterVersion(address) should be declared external:
- SQUID3.changeRouterVersion(address) (#646-663)
transfer(address,uint256) should be declared external:
- SQUID3.transfer(address,uint256) (#668-671)
transferFrom(address,address,uint256) should be declared external:
- SQUID3.transferFrom(address,address,uint256) (#673-677)
isbcList(address) should be declared external:
- SQUID3.isbcList(address) (#679-681)
setKillBlock(uint256) should be declared external:
- SQUID3.setKillBlock(uint256) (#687-689)
writebcList(address,bool) should be declared external:
- SQUID3.writebcList(address,bool) (#691-693)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract name (SQUID GAME 3.0) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Twitter link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
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
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts