SwanInu
SwanInu will be the leader of Swan and the birth of SwanInu will be felt from Swan. At the same time SwanInu will rule and continue to multiply in the cryptocurrency space
After launched we'll developing the NFT and a animal P2E game
NFT can use as character in the game, also can be staking to earn
TOKENS.addLiquidity(uint256,uint256) (#771-784) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in TOKENS._transfer(address,address,uint256) (#672-718):
External calls:
- swapAndLiquify(contractTokenBalance) (#694)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#760-766)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#694)
- recipient.transfer(amount) (#617)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#697)
- finalAmount = takeFee(sender,recipient,amount) (#706)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#802)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#712)
- Welcome(recipient) (#704)
- welcome[recipient] = true (#658)
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)
TOKENS.setMultipleWelcome(address[],bool).i (#667) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
TOKENS.addLiquidity(uint256,uint256) (#771-784) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
Ensure that all the return values of the function calls are used.
Additional information: link
TOKENS.allowance(address,address).owner (#508) shadows:
- Ownable.owner() (#150-152) (function)
TOKENS._approve(address,address,uint256).owner (#531) shadows:
- Ownable.owner() (#150-152) (function)
Rename the local variables that shadow another component.
Additional information: link
TOKENS.Catapult(uint256,bool) (#539-543) should emit an event for:
- debar = value (#541)
TOKENS.setNumTokensBeforeSwap(uint256) (#579-581) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#580)
TOKENS.setClever(uint256) (#583-585) should emit an event for:
- clever = newValue (#584)
TOKENS.setDistributionSettings(uint256,uint256,uint256) (#587-593) should emit an event for:
- _liquidityShare = newLiquidityShare (#588)
- _teamShare = newTeamShare (#590)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#592)
Emit an event for critical parameter changes.
Additional information: link
TOKENS.setMarketingWalletAddress(address).newAddress (#595) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#596)
TOKENS.setTeamWalletAddress(address).newAddress (#599) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#600)
Check that the address is not zero.
Additional information: link
Reentrancy in TOKENS.changeRouterVersion(address) (#620-637):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#628-629)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#636)
- isWalletLimitExempt[address(uniswapPair)] = true (#635)
- uniswapPair = newPairAddress (#632)
- uniswapV2Router = _uniswapV2Router (#633)
Reentrancy in TOKENS.constructor() (#455-486):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#459-460)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#463)
- _balances[_msgSender()] = _totalSupply (#484)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#470)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#468)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#469)
- isExcludedFromFee[owner()] = true (#465)
- isExcludedFromFee[address(this)] = true (#466)
- isMarketPair[address(uniswapPair)] = true (#479)
- isTxLimitExempt[owner()] = true (#476)
- isTxLimitExempt[address(this)] = true (#477)
- isWalletLimitExempt[owner()] = true (#472)
- isWalletLimitExempt[address(uniswapPair)] = true (#473)
- isWalletLimitExempt[address(this)] = true (#474)
- marketingWalletAddress = address(owner()) (#482)
- teamWalletAddress = address(owner()) (#481)
- uniswapV2Router = _uniswapV2Router (#462)
Reentrancy in TOKENS.swapAndLiquify(uint256) (#727-749):
External calls:
- swapTokensForEth(tokensForSwap) (#732)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#760-766)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#748)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#742)
- recipient.transfer(amount) (#617)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#745)
- recipient.transfer(amount) (#617)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#748)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#748)
- _allowances[owner][spender] = amount (#535)
Reentrancy in TOKENS.transferFrom(address,address,uint256) (#647-651):
External calls:
- _transfer(sender,recipient,amount) (#648)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#760-766)
External calls sending eth:
- _transfer(sender,recipient,amount) (#648)
- recipient.transfer(amount) (#617)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#649)
- _allowances[owner][spender] = amount (#535)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TOKENS._transfer(address,address,uint256) (#672-718):
External calls:
- swapAndLiquify(contractTokenBalance) (#694)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#760-766)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#694)
- recipient.transfer(amount) (#617)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#803)
- finalAmount = takeFee(sender,recipient,amount) (#706)
- Transfer(sender,recipient,finalAmount) (#714)
Reentrancy in TOKENS.constructor() (#455-486):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#459-460)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#485)
Reentrancy in TOKENS.swapAndLiquify(uint256) (#727-749):
External calls:
- swapTokensForEth(tokensForSwap) (#732)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#760-766)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#748)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#742)
- recipient.transfer(amount) (#617)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#745)
- recipient.transfer(amount) (#617)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#748)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#536)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#748)
Reentrancy in TOKENS.swapTokensForEth(uint256) (#751-769):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#760-766)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#768)
Reentrancy in TOKENS.transferFrom(address,address,uint256) (#647-651):
External calls:
- _transfer(sender,recipient,amount) (#648)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#760-766)
External calls sending eth:
- _transfer(sender,recipient,amount) (#648)
- recipient.transfer(amount) (#617)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#536)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#649)
Apply the check-effects-interactions pattern.
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
TOKENS._transfer(address,address,uint256) (#672-718) compares to a boolean constant:
-require(bool)(welcome[sender] == false) (#676)
Remove the equality to the boolean constant.
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
TOKENS._totalSupply (#419) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** _decimals
TOKENS._maxTxAmount (#420) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** _decimals
TOKENS._walletMax (#421) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** _decimals
TOKENS.minimumTokensBeforeSwap (#422) is set pre-construction with a non-constant function or state variable:
- 500000 * 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
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() (#206) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#207) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#223) is not in mixedCase
Function IUniswapV2Router01.WETH() (#242) is not in mixedCase
Function TOKENS.Catapult(uint256,bool) (#539-543) is not in mixedCase
Parameter TOKENS.setCxlistEnable(bool)._status (#545) is not in mixedCase
Parameter TOKENS.setAddressCxlisted(address,bool)._status (#561) is not in mixedCase
Parameter TOKENS.setMultipleAddressCxlisted(address[],bool)._status (#565) is not in mixedCase
Parameter TOKENS.setSwapAndLiquifyEnabled(bool)._enabled (#603) is not in mixedCase
Function TOKENS.Welcome(address) (#657-659) is not in mixedCase
Variable TOKENS._balances (#392) is not in mixedCase
Variable TOKENS._buyLiquidityFee (#403) is not in mixedCase
Variable TOKENS._buyMarketingFee (#404) is not in mixedCase
Variable TOKENS._buyTeamFee (#405) is not in mixedCase
Variable TOKENS._sellLiquidityFee (#407) is not in mixedCase
Variable TOKENS._sellMarketingFee (#408) is not in mixedCase
Variable TOKENS._sellTeamFee (#409) is not in mixedCase
Variable TOKENS._liquidityShare (#411) is not in mixedCase
Variable TOKENS._marketingShare (#412) is not in mixedCase
Variable TOKENS._teamShare (#413) is not in mixedCase
Variable TOKENS._totalTaxIfBuying (#415) is not in mixedCase
Variable TOKENS._totalTaxIfSelling (#416) is not in mixedCase
Variable TOKENS._totalDistributionShares (#417) is not in mixedCase
Variable TOKENS._maxTxAmount (#420) is not in mixedCase
Variable TOKENS._walletMax (#421) 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 TOKENS._transfer(address,address,uint256) (#672-718):
External calls:
- swapAndLiquify(contractTokenBalance) (#694)
- recipient.transfer(amount) (#617)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#694)
- recipient.transfer(amount) (#617)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#697)
- finalAmount = takeFee(sender,recipient,amount) (#706)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#802)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#712)
- Welcome(recipient) (#704)
- welcome[recipient] = true (#658)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#803)
- finalAmount = takeFee(sender,recipient,amount) (#706)
- Transfer(sender,recipient,finalAmount) (#714)
Reentrancy in TOKENS.swapAndLiquify(uint256) (#727-749):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#742)
- recipient.transfer(amount) (#617)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#745)
- recipient.transfer(amount) (#617)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#742)
- recipient.transfer(amount) (#617)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#745)
- recipient.transfer(amount) (#617)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#748)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#748)
- _allowances[owner][spender] = amount (#535)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#536)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#748)
Reentrancy in TOKENS.transferFrom(address,address,uint256) (#647-651):
External calls:
- _transfer(sender,recipient,amount) (#648)
- recipient.transfer(amount) (#617)
External calls sending eth:
- _transfer(sender,recipient,amount) (#648)
- recipient.transfer(amount) (#617)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#776-783)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#649)
- _allowances[owner][spender] = amount (#535)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#536)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#649)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#247) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#248)
Prevent variables from having similar names.
Additional information: link
Ownable.waiveOwnership() (#159-162) uses literals with too many digits:
- OwnershipTransferred(_owner,address(0x000000000000000000000000000000000000dEaD)) (#160)
Ownable.waiveOwnership() (#159-162) uses literals with too many digits:
- _owner = address(0x000000000000000000000000000000000000dEaD) (#161)
TOKENS.slitherConstructorVariables() (#375-810) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#390)
TOKENS.slitherConstructorVariables() (#375-810) uses literals with too many digits:
- _totalSupply = 1000000000 * 10 ** _decimals (#419)
TOKENS.slitherConstructorVariables() (#375-810) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** _decimals (#420)
TOKENS.slitherConstructorVariables() (#375-810) uses literals with too many digits:
- _walletMax = 1000000000 * 10 ** _decimals (#421)
TOKENS.slitherConstructorVariables() (#375-810) uses literals with too many digits:
- minimumTokensBeforeSwap = 500000 * 10 ** _decimals (#422)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
TOKENS._buyLiquidityFee (#403) should be constant
TOKENS._buyMarketingFee (#404) should be constant
TOKENS._buyTeamFee (#405) should be constant
TOKENS._decimals (#382) should be constant
TOKENS._name (#380) should be constant
TOKENS._sellLiquidityFee (#407) should be constant
TOKENS._sellMarketingFee (#408) should be constant
TOKENS._sellTeamFee (#409) should be constant
TOKENS._symbol (#381) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#159-162)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#164-168)
getTime() should be declared external:
- Ownable.getTime() (#170-172)
name() should be declared external:
- TOKENS.name() (#488-490)
symbol() should be declared external:
- TOKENS.symbol() (#492-494)
decimals() should be declared external:
- TOKENS.decimals() (#496-498)
totalSupply() should be declared external:
- TOKENS.totalSupply() (#500-502)
allowance(address,address) should be declared external:
- TOKENS.allowance(address,address) (#508-510)
increaseAllowance(address,uint256) should be declared external:
- TOKENS.increaseAllowance(address,uint256) (#512-515)
decreaseAllowance(address,uint256) should be declared external:
- TOKENS.decreaseAllowance(address,uint256) (#517-520)
minimumTokensBeforeSwapAmount() should be declared external:
- TOKENS.minimumTokensBeforeSwapAmount() (#522-524)
approve(address,uint256) should be declared external:
- TOKENS.approve(address,uint256) (#526-529)
Catapult(uint256,bool) should be declared external:
- TOKENS.Catapult(uint256,bool) (#539-543)
setCxlistEnable(bool) should be declared external:
- TOKENS.setCxlistEnable(bool) (#545-547)
setMarketPairStatus(address,bool) should be declared external:
- TOKENS.setMarketPairStatus(address,bool) (#549-551)
setIsExcludedFromFee(address,bool) should be declared external:
- TOKENS.setIsExcludedFromFee(address,bool) (#557-559)
setAddressCxlisted(address,bool) should be declared external:
- TOKENS.setAddressCxlisted(address,bool) (#561-563)
setMultipleAddressCxlisted(address[],bool) should be declared external:
- TOKENS.setMultipleAddressCxlisted(address[],bool) (#565-569)
setSwapAndLiquifyEnabled(bool) should be declared external:
- TOKENS.setSwapAndLiquifyEnabled(bool) (#603-606)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- TOKENS.setSwapAndLiquifyByLimitOnly(bool) (#608-610)
getCirculatingSupply() should be declared external:
- TOKENS.getCirculatingSupply() (#612-614)
changeRouterVersion(address) should be declared external:
- TOKENS.changeRouterVersion(address) (#620-637)
transfer(address,uint256) should be declared external:
- TOKENS.transfer(address,uint256) (#642-645)
transferFrom(address,address,uint256) should be declared external:
- TOKENS.transferFrom(address,address,uint256) (#647-651)
isWelcome(address) should be declared external:
- TOKENS.isWelcome(address) (#653-655)
setWelcome(address,bool) should be declared external:
- TOKENS.setWelcome(address,bool) (#661-663)
setMultipleWelcome(address[],bool) should be declared external:
- TOKENS.setMultipleWelcome(address[],bool) (#665-670)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
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 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
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token is relatively young, but twitter if very old (probably it's fake).
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account