SquidThree.swapBack() (#551-590) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#576)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SquidThree._transferFrom(address,address,uint256) (#484-506):
External calls:
- swapBack() (#489)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#562-568)
- distributor.deposit{value: amountBNBReflection}() (#575)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#576)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#580-587)
- triggerAutoBuyback() (#490)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#628-633)
External calls sending eth:
- swapBack() (#489)
- distributor.deposit{value: amountBNBReflection}() (#575)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#576)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#580-587)
- triggerAutoBuyback() (#490)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#628-633)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#494)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#497)
- amountReceived = takeFee(sender,recipient,amount) (#496)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#538)
- triggerAutoBuyback() (#490)
- inSwap = true (#429)
- inSwap = false (#429)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#324-335) ignores return value by BETH.transfer(shareholder,amount) (#330)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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)
Reentrancy in DividendDistributor.distributeDividend(address) (#324-335):
External calls:
- BETH.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#332)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#333)
Reentrancy in DividendDistributor.process(uint256) (#293-317):
External calls:
- distributeDividend(shareholders[currentIndex]) (#309)
- BETH.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- currentIndex ++ (#314)
Reentrancy in DividendDistributor.setShare(address,uint256) (#257-271):
External calls:
- distributeDividend(shareholder) (#259)
- BETH.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- shares[shareholder].amount = amount (#269)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#270)
Apply the check-effects-interactions pattern.
Additional information: link
SquidThree.swapBack() (#551-590) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#580-587)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#252-255) should emit an event for:
- minPeriod = _minPeriod (#253)
- minDistribution = _minDistribution (#254)
SquidThree.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#636-644) should emit an event for:
- autoBuybackCap = _cap (#638)
- autoBuybackAmount = _amount (#640)
SquidThree.setBuybackMultiplierSettings(uint256,uint256,uint256) (#646-651) should emit an event for:
- buybackMultiplierNumerator = numerator (#648)
- buybackMultiplierDenominator = denominator (#649)
- buybackMultiplierLength = length (#650)
SquidThree.setTxLimit(uint256) (#661-664) should emit an event for:
- _maxTxAmount = amount (#663)
SquidThree.setFees(uint256,uint256,uint256,uint256,uint256) (#684-691) should emit an event for:
- liquidityFee = _liquidityFee (#685)
- reflectionFee = _reflectionFee (#687)
- marketingFee = _marketingFee (#688)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#689)
- feeDenominator = _feeDenominator (#690)
SquidThree.setSwapBackSettings(bool,uint256) (#698-701) should emit an event for:
- swapThreshold = _amount (#700)
SquidThree.setTargetLiquidity(uint256,uint256) (#703-706) should emit an event for:
- targetLiquidity = _target (#704)
- targetLiquidityDenominator = _denominator (#705)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (#134) lacks a zero-check on :
- owner = adr (#135)
SquidThree.setFeeReceivers(address,address)._autoLiquidityReceiver (#693) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#694)
SquidThree.setFeeReceivers(address,address)._marketingFeeReceiver (#693) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#695)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#324-335) has external calls inside a loop: BETH.transfer(shareholder,amount) (#330)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in SquidThree._transferFrom(address,address,uint256) (#484-506):
External calls:
- swapBack() (#489)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#562-568)
- distributor.deposit{value: amountBNBReflection}() (#575)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#576)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#580-587)
- triggerAutoBuyback() (#490)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#628-633)
External calls sending eth:
- swapBack() (#489)
- distributor.deposit{value: amountBNBReflection}() (#575)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#576)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#580-587)
- triggerAutoBuyback() (#490)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#628-633)
State variables written after the call(s):
- triggerAutoBuyback() (#490)
- buybackMultiplierTriggeredAt = block.timestamp (#615)
- launch() (#492)
- launchedAt = block.number (#658)
Reentrancy in SquidThree.constructor() (#431-450):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#433)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#434)
- _balances[_presaler] = _totalSupply (#448)
- autoLiquidityReceiver = msg.sender (#445)
- distributor = new DividendDistributor(address(router)) (#436)
- isDividendExempt[pair] = true (#441)
- isDividendExempt[address(this)] = true (#442)
- isDividendExempt[DEAD] = true (#443)
- isFeeExempt[_presaler] = true (#439)
- isTxLimitExempt[_presaler] = true (#440)
- marketingFeeReceiver = msg.sender (#446)
Reentrancy in DividendDistributor.deposit() (#273-291):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#280-285)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#290)
- totalDividends = totalDividends.add(amount) (#289)
Reentrancy in DividendDistributor.distributeDividend(address) (#324-335):
External calls:
- BETH.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#331)
Reentrancy in DividendDistributor.setShare(address,uint256) (#257-271):
External calls:
- distributeDividend(shareholder) (#259)
- BETH.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- addShareholder(shareholder) (#263)
- shareholderIndexes[shareholder] = shareholders.length (#357)
- removeShareholder(shareholder) (#265)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#363)
- addShareholder(shareholder) (#263)
- shareholders.push(shareholder) (#358)
- removeShareholder(shareholder) (#265)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#362)
- shareholders.pop() (#364)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#268)
Reentrancy in SquidThree.triggerAutoBuyback() (#612-621):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#628-633)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#619)
- autoBuybackBlockLast = block.number (#618)
- autoBuybackEnabled = false (#620)
- buybackMultiplierTriggeredAt = block.timestamp (#615)
Reentrancy in SquidThree.triggerManualBuyback(uint256,bool) (#600-606):
External calls:
- buyTokens(amount,DEAD) (#601)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#628-633)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#603)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SquidThree._transferFrom(address,address,uint256) (#484-506):
External calls:
- swapBack() (#489)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#562-568)
- distributor.deposit{value: amountBNBReflection}() (#575)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#576)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#580-587)
- triggerAutoBuyback() (#490)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#628-633)
External calls sending eth:
- swapBack() (#489)
- distributor.deposit{value: amountBNBReflection}() (#575)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#576)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#580-587)
- triggerAutoBuyback() (#490)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#628-633)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#616)
- triggerAutoBuyback() (#490)
- Transfer(sender,address(this),feeAmount) (#539)
- amountReceived = takeFee(sender,recipient,amount) (#496)
Reentrancy in SquidThree._transferFrom(address,address,uint256) (#484-506):
External calls:
- swapBack() (#489)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#562-568)
- distributor.deposit{value: amountBNBReflection}() (#575)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#576)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#580-587)
- triggerAutoBuyback() (#490)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#628-633)
- distributor.setShare(sender,_balances[sender]) (#499)
- distributor.setShare(recipient,_balances[recipient]) (#500)
- distributor.process(distributorGas) (#502)
External calls sending eth:
- swapBack() (#489)
- distributor.deposit{value: amountBNBReflection}() (#575)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#576)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#580-587)
- triggerAutoBuyback() (#490)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#628-633)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#504)
Reentrancy in SquidThree.constructor() (#431-450):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#433)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#449)
Reentrancy in SquidThree.swapBack() (#551-590):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#562-568)
- distributor.deposit{value: amountBNBReflection}() (#575)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#576)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#580-587)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#575)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#576)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#580-587)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#588)
Reentrancy in SquidThree.triggerAutoBuyback() (#612-621):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#628-633)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#616)
Reentrancy in SquidThree.triggerManualBuyback(uint256,bool) (#600-606):
External calls:
- buyTokens(amount,DEAD) (#601)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#628-633)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#604)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#319-322) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#320-321)
SquidThree._transferFrom(address,address,uint256) (#484-506) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_balances[sender] > 0) (#492)
SquidThree.getTotalFee(bool) (#523-527) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#525)
SquidThree.shouldSwapBack() (#544-549) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#545-548)
SquidThree.isOverLiquified(uint256,uint256) (#738-740) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#739)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#293-317) has costly operations inside a loop:
- currentIndex = 0 (#305)
DividendDistributor.distributeDividend(address) (#324-335) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#329)
DividendDistributor.process(uint256) (#293-317) has costly operations inside a loop:
- currentIndex ++ (#314)
Use a local variable to hold the loop computation result.
Additional information: link
SquidThree._maxTxAmount (#381) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 1) / 100
SquidThree._maxWalletToken (#382) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 2) / 100
SquidThree.swapThreshold (#427) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 200
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 SquidThree.swapBack() (#551-590):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#576)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IDEXRouter.WETH() (#149) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#252) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#252) is not in mixedCase
Variable DividendDistributor._token (#205) is not in mixedCase
Variable DividendDistributor.BETH (#213) is not in mixedCase
Variable DividendDistributor.WBNB (#214) is not in mixedCase
Parameter SquidThree.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#636) is not in mixedCase
Parameter SquidThree.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#636) is not in mixedCase
Parameter SquidThree.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#636) is not in mixedCase
Parameter SquidThree.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#636) is not in mixedCase
Parameter SquidThree.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#636) is not in mixedCase
Parameter SquidThree.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#684) is not in mixedCase
Parameter SquidThree.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#684) is not in mixedCase
Parameter SquidThree.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#684) is not in mixedCase
Parameter SquidThree.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#684) is not in mixedCase
Parameter SquidThree.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#684) is not in mixedCase
Parameter SquidThree.setFeeReceivers(address,address)._autoLiquidityReceiver (#693) is not in mixedCase
Parameter SquidThree.setFeeReceivers(address,address)._marketingFeeReceiver (#693) is not in mixedCase
Parameter SquidThree.setSwapBackSettings(bool,uint256)._enabled (#698) is not in mixedCase
Parameter SquidThree.setSwapBackSettings(bool,uint256)._amount (#698) is not in mixedCase
Parameter SquidThree.setTargetLiquidity(uint256,uint256)._target (#703) is not in mixedCase
Parameter SquidThree.setTargetLiquidity(uint256,uint256)._denominator (#703) is not in mixedCase
Parameter SquidThree.setDistributionCriteria(uint256,uint256)._minPeriod (#713) is not in mixedCase
Parameter SquidThree.setDistributionCriteria(uint256,uint256)._minDistribution (#713) is not in mixedCase
Variable SquidThree.BETH (#371) is not in mixedCase
Variable SquidThree.WBNB (#372) is not in mixedCase
Variable SquidThree.DEAD (#373) is not in mixedCase
Variable SquidThree.ZERO (#374) is not in mixedCase
Constant SquidThree._name (#376) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SquidThree._symbol (#377) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SquidThree._decimals (#378) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SquidThree._totalSupply (#380) is not in mixedCase
Variable SquidThree._maxTxAmount (#381) is not in mixedCase
Variable SquidThree._maxWalletToken (#382) is not in mixedCase
Variable SquidThree._balances (#385) is not in mixedCase
Variable SquidThree._allowances (#386) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#154) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#155)
Prevent variables from having similar names.
Additional information: link
SquidThree.slitherConstructorVariables() (#368-745) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#373)
SquidThree.slitherConstructorVariables() (#368-745) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#374)
SquidThree.slitherConstructorVariables() (#368-745) uses literals with too many digits:
- _totalSupply = 100000000000000 * (10 ** _decimals) (#380)
SquidThree.slitherConstructorVariables() (#368-745) uses literals with too many digits:
- distributorGas = 500000 (#424)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SquidThree.BETH (#371) is never used in SquidThree (#368-745)
Remove unused state variables.
Additional information: link
DividendDistributor.WBNB (#214) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#227) should be constant
SquidThree.BETH (#371) should be constant
SquidThree.DEAD (#373) should be constant
SquidThree.WBNB (#372) should be constant
SquidThree.ZERO (#374) should be constant
SquidThree._totalSupply (#380) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
authorize(address) should be declared external:
- Auth.authorize(address) (#106-108)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#113-115)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#134-138)
getUnpaidEarnings(address) should be declared external:
- SquidThree.getUnpaidEarnings(address) (#721-723)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract name (Squid 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.
Average 30d PancakeSwap liquidity is less than $100. 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 10% buy tax and 9% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d PancakeSwap volume 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