HUSTLE2.0 is token deployed on the BSC with low tax system ✅(6% buy/sell). It focuses on financial freedom by creating benefits and value for $HST holders. The Auto-Staking Protocol $Hustle is a financial protocol that makes staking easier, more efficient & awards $HST holders with the highest stable returns in crypto, ♦️NFTs minting,
♦️Free Crypto academy to nurture & grow crypto beginners
♦️ Dao in decision making process, & also
♦️ Create2Earn for creators. A multi-sig Marketing wallet. ✅#Safu
HUSTLE2.addLiquidity(uint256,uint256) (#718-731) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in HUSTLE2._transfer(address,address,uint256) (#573-633):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#624)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- address(marketingWallet).sendValue(marketingAmt) (#704)
- address(devWallet).sendValue(devAmt) (#709)
- address(opsWallet).sendValue(opsAmt) (#714)
- swapAndLiquify(swapTokensAtAmount,taxes) (#625)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- address(marketingWallet).sendValue(marketingAmt) (#704)
- address(devWallet).sendValue(devAmt) (#709)
- address(opsWallet).sendValue(opsAmt) (#714)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#624)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#625)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#632)
- _rOwned[address(this)] += rOps (#431)
- _rOwned[address(this)] += rLiquidity (#404)
- _rOwned[address(this)] += rDev (#422)
- _rOwned[address(this)] += rMarketing (#413)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#658)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#659)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#632)
- _rTotal -= rRfi (#394)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#632)
- _tOwned[address(this)] += tDev (#420)
- _tOwned[address(this)] += tMarketing (#411)
- _tOwned[address(this)] += tOps (#429)
- _tOwned[address(this)] += tLiquidity (#402)
- _tOwned[sender] = _tOwned[sender] - tAmount (#651)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#655)
Apply the check-effects-interactions pattern.
Additional information: link
HUSTLE2.rescueAnyBEP20Tokens(address,address,uint256) (#808-811) ignores return value by IBEP20(_tokenAddr).transfer(_to,_amount) (#810)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
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.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
HUSTLE2.swapAndLiquify(uint256,HUSTLE2.Taxes) (#676-716) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#694)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#695)
HUSTLE2.swapAndLiquify(uint256,HUSTLE2.Taxes) (#676-716) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#694)
-marketingAmt = unitBalance * 2 * temp.marketing (#702)
HUSTLE2.swapAndLiquify(uint256,HUSTLE2.Taxes) (#676-716) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#694)
-devAmt = unitBalance * 2 * temp.dev (#707)
HUSTLE2.swapAndLiquify(uint256,HUSTLE2.Taxes) (#676-716) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#694)
-opsAmt = unitBalance * 2 * temp.ops (#712)
Consider ordering multiplication before division.
Additional information: link
HUSTLE2.addLiquidity(uint256,uint256) (#718-731) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
Ensure that all the return values of the function calls are used.
Additional information: link
HUSTLE2.allowance(address,address).owner (#252) shadows:
- Ownable.owner() (#46-48) (function)
HUSTLE2._approve(address,address,uint256).owner (#563) shadows:
- Ownable.owner() (#46-48) (function)
Rename the local variables that shadow another component.
Additional information: link
HUSTLE2.updatedeadline(uint256) (#322-326) should emit an event for:
- deadline = _deadline (#325)
HUSTLE2.updateCooldown(bool,uint256) (#772-776) should emit an event for:
- coolDownTime = time * 1 (#774)
HUSTLE2.updateSwapTokensAtAmount(uint256) (#778-781) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#780)
HUSTLE2.updateMaxTxLimit(uint256,uint256,uint256) (#787-794) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#791)
- maxSellLimit = maxSell * 10 ** decimals() (#792)
- maxWalletLimit = maxWallet * 10 ** decimals() (#793)
Emit an event for critical parameter changes.
Additional information: link
HUSTLE2.constructor(address)._pair (#208) lacks a zero-check on :
- pair = _pair (#211)
HUSTLE2.updateRouterAndPair(address,address).newPair (#796) lacks a zero-check on :
- pair = newPair (#798)
Check that the address is not zero.
Additional information: link
Reentrancy in HUSTLE2._transfer(address,address,uint256) (#573-633):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#624)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- address(marketingWallet).sendValue(marketingAmt) (#704)
- address(devWallet).sendValue(devAmt) (#709)
- address(opsWallet).sendValue(opsAmt) (#714)
- swapAndLiquify(swapTokensAtAmount,taxes) (#625)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- address(marketingWallet).sendValue(marketingAmt) (#704)
- address(devWallet).sendValue(devAmt) (#709)
- address(opsWallet).sendValue(opsAmt) (#714)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#624)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#625)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#632)
- totFeesPaid.marketing += tMarketing (#408)
- totFeesPaid.ops += tOps (#426)
- totFeesPaid.liquidity += tLiquidity (#399)
- totFeesPaid.dev += tDev (#417)
- totFeesPaid.rfi += tRfi (#395)
Reentrancy in HUSTLE2.constructor(address) (#206-227):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#208)
State variables written after the call(s):
- excludeFromReward(pair) (#213)
- _excluded.push(account) (#341)
- excludeFromReward(deadWallet) (#214)
- _excluded.push(account) (#341)
- excludeFromReward(pair) (#213)
- _isExcluded[account] = true (#340)
- excludeFromReward(deadWallet) (#214)
- _isExcluded[account] = true (#340)
- _isExcludedFromFee[address(this)] = true (#217)
- _isExcludedFromFee[owner()] = true (#218)
- _isExcludedFromFee[marketingWallet] = true (#219)
- _isExcludedFromFee[devWallet] = true (#220)
- _isExcludedFromFee[opsWallet] = true (#221)
- _isExcludedFromFee[deadWallet] = true (#222)
- _isExcludedFromFee[0xD152f549545093347A162Dce210e7293f1452150] = true (#223)
- _isExcludedFromFee[0x7ee058420e5937496F5a2096f04caA7721cF70cc] = true (#224)
- _rOwned[owner()] = _rTotal (#216)
- excludeFromReward(pair) (#213)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#338)
- excludeFromReward(deadWallet) (#214)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#338)
- pair = _pair (#211)
- router = _router (#210)
Reentrancy in HUSTLE2.swapAndLiquify(uint256,HUSTLE2.Taxes) (#676-716):
External calls:
- swapTokensForBNB(toSwap) (#691)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#699)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#699)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#699)
- _allowances[owner][spender] = amount (#569)
Reentrancy in HUSTLE2.transferFrom(address,address,uint256) (#261-273):
External calls:
- _transfer(sender,recipient,amount) (#266)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- address(marketingWallet).sendValue(marketingAmt) (#704)
- address(devWallet).sendValue(devAmt) (#709)
- address(opsWallet).sendValue(opsAmt) (#714)
External calls sending eth:
- _transfer(sender,recipient,amount) (#266)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#270)
- _allowances[owner][spender] = amount (#569)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in HUSTLE2._transfer(address,address,uint256) (#573-633):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#624)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- address(marketingWallet).sendValue(marketingAmt) (#704)
- address(devWallet).sendValue(devAmt) (#709)
- address(opsWallet).sendValue(opsAmt) (#714)
- swapAndLiquify(swapTokensAtAmount,taxes) (#625)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- address(marketingWallet).sendValue(marketingAmt) (#704)
- address(devWallet).sendValue(devAmt) (#709)
- address(opsWallet).sendValue(opsAmt) (#714)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#624)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#625)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tDev + s.tOps) (#664-668)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#632)
- Transfer(sender,recipient,s.tTransferAmount) (#673)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#632)
Reentrancy in HUSTLE2.constructor(address) (#206-227):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#208)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#226)
Reentrancy in HUSTLE2.swapAndLiquify(uint256,HUSTLE2.Taxes) (#676-716):
External calls:
- swapTokensForBNB(toSwap) (#691)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#699)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#699)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#570)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#699)
Reentrancy in HUSTLE2.transferFrom(address,address,uint256) (#261-273):
External calls:
- _transfer(sender,recipient,amount) (#266)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- address(marketingWallet).sendValue(marketingAmt) (#704)
- address(devWallet).sendValue(devAmt) (#709)
- address(opsWallet).sendValue(opsAmt) (#714)
External calls sending eth:
- _transfer(sender,recipient,amount) (#266)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#723-730)
- (success) = recipient.call{value: amount}() (#109)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#570)
- _approve(sender,_msgSender(),currentAllowance - amount) (#270)
Apply the check-effects-interactions pattern.
Additional information: link
HUSTLE2._transfer(address,address,uint256) (#573-633) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#610)
Avoid relying on block.timestamp.
Additional information: link
HUSTLE2.includeInReward(address) (#344-355) has costly operations inside a loop:
- _excluded.pop() (#351)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#31-34) is never used and should be removed
Remove unused functions.
Additional information: link
HUSTLE2._rTotal (#141) 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) (#106-111):
- (success) = recipient.call{value: amount}() (#109)
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 HUSTLE2.valuesFromGetValues (#181-195) is not in CapWords
Function HUSTLE2.EnableTrading() (#315-320) is not in mixedCase
Parameter HUSTLE2.updatedeadline(uint256)._deadline (#322) is not in mixedCase
Parameter HUSTLE2.setTaxes(uint256,uint256,uint256,uint256,uint256)._rfi (#370) is not in mixedCase
Parameter HUSTLE2.setTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#371) is not in mixedCase
Parameter HUSTLE2.setTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#372) is not in mixedCase
Parameter HUSTLE2.setTaxes(uint256,uint256,uint256,uint256,uint256)._dev (#373) is not in mixedCase
Parameter HUSTLE2.setTaxes(uint256,uint256,uint256,uint256,uint256)._ops (#374) is not in mixedCase
Parameter HUSTLE2.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._rfi (#382) is not in mixedCase
Parameter HUSTLE2.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#383) is not in mixedCase
Parameter HUSTLE2.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#384) is not in mixedCase
Parameter HUSTLE2.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._dev (#385) is not in mixedCase
Parameter HUSTLE2.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._ops (#386) is not in mixedCase
Parameter HUSTLE2.updateSwapEnabled(bool)._enabled (#783) is not in mixedCase
Parameter HUSTLE2.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#808) is not in mixedCase
Parameter HUSTLE2.rescueAnyBEP20Tokens(address,address,uint256)._to (#808) is not in mixedCase
Parameter HUSTLE2.rescueAnyBEP20Tokens(address,address,uint256)._amount (#808) is not in mixedCase
Constant HUSTLE2._decimals (#137) is not in UPPER_CASE_WITH_UNDERSCORES
Variable HUSTLE2.genesis_block (#148) is not in mixedCase
Constant HUSTLE2._name (#156) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HUSTLE2._symbol (#157) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#32)" inContext (#26-35)
Remove redundant statements if they congest code but offer no value.
Additional information: link
HUSTLE2.slitherConstructorVariables() (#114-815) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#151)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
HUSTLE2._tTotal (#140) should be constant
HUSTLE2.deadWallet (#151) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#55-57)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#59-62)
name() should be declared external:
- HUSTLE2.name() (#230-232)
symbol() should be declared external:
- HUSTLE2.symbol() (#234-236)
totalSupply() should be declared external:
- HUSTLE2.totalSupply() (#243-245)
allowance(address,address) should be declared external:
- HUSTLE2.allowance(address,address) (#252-254)
approve(address,uint256) should be declared external:
- HUSTLE2.approve(address,uint256) (#256-259)
transferFrom(address,address,uint256) should be declared external:
- HUSTLE2.transferFrom(address,address,uint256) (#261-273)
increaseAllowance(address,uint256) should be declared external:
- HUSTLE2.increaseAllowance(address,uint256) (#275-278)
decreaseAllowance(address,uint256) should be declared external:
- HUSTLE2.decreaseAllowance(address,uint256) (#280-289)
transfer(address,uint256) should be declared external:
- HUSTLE2.transfer(address,uint256) (#291-294)
isExcludedFromReward(address) should be declared external:
- HUSTLE2.isExcludedFromReward(address) (#296-298)
reflectionFromToken(uint256,bool) should be declared external:
- HUSTLE2.reflectionFromToken(uint256,bool) (#300-313)
excludeFromFee(address) should be declared external:
- HUSTLE2.excludeFromFee(address) (#357-359)
includeInFee(address) should be declared external:
- HUSTLE2.includeInFee(address) (#361-363)
isExcludedFromFee(address) should be declared external:
- HUSTLE2.isExcludedFromFee(address) (#365-367)
setTaxes(uint256,uint256,uint256,uint256,uint256) should be declared external:
- HUSTLE2.setTaxes(uint256,uint256,uint256,uint256,uint256) (#369-379)
setSellTaxes(uint256,uint256,uint256,uint256,uint256) should be declared external:
- HUSTLE2.setSellTaxes(uint256,uint256,uint256,uint256,uint256) (#381-391)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- HUSTLE2.rescueAnyBEP20Tokens(address,address,uint256) (#808-811)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract name (HUSTLE2.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 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 Telegram 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
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 Discord account