King Streams Token Logo

KS [King Streams] Token

About KS

Listings

Not Found
Token 2 years

Your favourite esports streaming platform.

Social

Laser Scorebeta Last Audit: 5 January 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

KingStreams.swapBack() (#563-602) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#588)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in KingStreams._transferFrom(address,address,uint256) (#496-518):
External calls:
- swapBack() (#501)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#574-580)
- distributor.deposit{value: amountBNBReflection}() (#587)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#588)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#592-599)
- triggerAutoBuyback() (#502)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#640-645)
External calls sending eth:
- swapBack() (#501)
- distributor.deposit{value: amountBNBReflection}() (#587)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#588)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#592-599)
- triggerAutoBuyback() (#502)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#640-645)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#506)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#509)
- amountReceived = takeFee(sender,recipient,amount) (#508)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#550)
- triggerAutoBuyback() (#502)
- inSwap = true (#441)
- inSwap = false (#441)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#336-347) ignores return value by BETH.transfer(shareholder,amount) (#342)
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.

Reentrancy in DividendDistributor.distributeDividend(address) (#336-347):
External calls:
- BETH.transfer(shareholder,amount) (#342)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#344)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#345)
Reentrancy in DividendDistributor.process(uint256) (#305-329):
External calls:
- distributeDividend(shareholders[currentIndex]) (#321)
- BETH.transfer(shareholder,amount) (#342)
State variables written after the call(s):
- currentIndex ++ (#326)
Reentrancy in DividendDistributor.setShare(address,uint256) (#269-283):
External calls:
- distributeDividend(shareholder) (#271)
- BETH.transfer(shareholder,amount) (#342)
State variables written after the call(s):
- shares[shareholder].amount = amount (#281)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#282)
Apply the check-effects-interactions pattern.

Additional information: link

KingStreams.swapBack() (#563-602) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#592-599)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#264-267) should emit an event for:
- minPeriod = _minPeriod (#265)
- minDistribution = _minDistribution (#266)
KingStreams.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#648-656) should emit an event for:
- autoBuybackCap = _cap (#650)
- autoBuybackAmount = _amount (#652)
KingStreams.setBuybackMultiplierSettings(uint256,uint256,uint256) (#658-663) should emit an event for:
- buybackMultiplierNumerator = numerator (#660)
- buybackMultiplierDenominator = denominator (#661)
- buybackMultiplierLength = length (#662)
KingStreams.setTxLimit(uint256) (#673-676) should emit an event for:
- _maxTxAmount = amount (#675)
KingStreams.setFees(uint256,uint256,uint256,uint256,uint256) (#696-703) should emit an event for:
- liquidityFee = _liquidityFee (#697)
- reflectionFee = _reflectionFee (#699)
- marketingFee = _marketingFee (#700)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#701)
- feeDenominator = _feeDenominator (#702)
KingStreams.setSwapBackSettings(bool,uint256) (#710-713) should emit an event for:
- swapThreshold = _amount (#712)
KingStreams.setTargetLiquidity(uint256,uint256) (#715-718) should emit an event for:
- targetLiquidity = _target (#716)
- targetLiquidityDenominator = _denominator (#717)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#146) lacks a zero-check on :
- owner = adr (#147)
KingStreams.setFeeReceivers(address,address)._autoLiquidityReceiver (#705) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#706)
KingStreams.setFeeReceivers(address,address)._marketingFeeReceiver (#705) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#707)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#336-347) has external calls inside a loop: BETH.transfer(shareholder,amount) (#342)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in KingStreams._transferFrom(address,address,uint256) (#496-518):
External calls:
- swapBack() (#501)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#574-580)
- distributor.deposit{value: amountBNBReflection}() (#587)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#588)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#592-599)
- triggerAutoBuyback() (#502)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#640-645)
External calls sending eth:
- swapBack() (#501)
- distributor.deposit{value: amountBNBReflection}() (#587)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#588)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#592-599)
- triggerAutoBuyback() (#502)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#640-645)
State variables written after the call(s):
- triggerAutoBuyback() (#502)
- buybackMultiplierTriggeredAt = block.timestamp (#627)
- launch() (#504)
- launchedAt = block.number (#670)
Reentrancy in KingStreams.constructor() (#443-462):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#445)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#446)
- _balances[_presaler] = _totalSupply (#460)
- autoLiquidityReceiver = msg.sender (#457)
- distributor = new DividendDistributor(address(router)) (#448)
- isDividendExempt[pair] = true (#453)
- isDividendExempt[address(this)] = true (#454)
- isDividendExempt[DEAD] = true (#455)
- isFeeExempt[_presaler] = true (#451)
- isTxLimitExempt[_presaler] = true (#452)
- marketingFeeReceiver = msg.sender (#458)
Reentrancy in DividendDistributor.deposit() (#285-303):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#292-297)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#302)
- totalDividends = totalDividends.add(amount) (#301)
Reentrancy in DividendDistributor.distributeDividend(address) (#336-347):
External calls:
- BETH.transfer(shareholder,amount) (#342)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#343)
Reentrancy in DividendDistributor.setShare(address,uint256) (#269-283):
External calls:
- distributeDividend(shareholder) (#271)
- BETH.transfer(shareholder,amount) (#342)
State variables written after the call(s):
- addShareholder(shareholder) (#275)
- shareholderIndexes[shareholder] = shareholders.length (#369)
- removeShareholder(shareholder) (#277)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#375)
- addShareholder(shareholder) (#275)
- shareholders.push(shareholder) (#370)
- removeShareholder(shareholder) (#277)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#374)
- shareholders.pop() (#376)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#280)
Reentrancy in KingStreams.triggerAutoBuyback() (#624-633):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#625)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#640-645)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#631)
- autoBuybackBlockLast = block.number (#630)
- autoBuybackEnabled = false (#632)
- buybackMultiplierTriggeredAt = block.timestamp (#627)
Reentrancy in KingStreams.triggerManualBuyback(uint256,bool) (#612-618):
External calls:
- buyTokens(amount,DEAD) (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#640-645)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#615)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in KingStreams._transferFrom(address,address,uint256) (#496-518):
External calls:
- swapBack() (#501)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#574-580)
- distributor.deposit{value: amountBNBReflection}() (#587)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#588)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#592-599)
- triggerAutoBuyback() (#502)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#640-645)
External calls sending eth:
- swapBack() (#501)
- distributor.deposit{value: amountBNBReflection}() (#587)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#588)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#592-599)
- triggerAutoBuyback() (#502)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#640-645)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#628)
- triggerAutoBuyback() (#502)
- Transfer(sender,address(this),feeAmount) (#551)
- amountReceived = takeFee(sender,recipient,amount) (#508)
Reentrancy in KingStreams._transferFrom(address,address,uint256) (#496-518):
External calls:
- swapBack() (#501)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#574-580)
- distributor.deposit{value: amountBNBReflection}() (#587)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#588)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#592-599)
- triggerAutoBuyback() (#502)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#640-645)
- distributor.setShare(sender,_balances[sender]) (#511)
- distributor.setShare(recipient,_balances[recipient]) (#512)
- distributor.process(distributorGas) (#514)
External calls sending eth:
- swapBack() (#501)
- distributor.deposit{value: amountBNBReflection}() (#587)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#588)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#592-599)
- triggerAutoBuyback() (#502)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#640-645)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#516)
Reentrancy in KingStreams.constructor() (#443-462):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#445)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#461)
Reentrancy in KingStreams.swapBack() (#563-602):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#574-580)
- distributor.deposit{value: amountBNBReflection}() (#587)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#588)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#592-599)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#587)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#588)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#592-599)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#600)
Reentrancy in KingStreams.triggerAutoBuyback() (#624-633):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#625)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#640-645)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#628)
Reentrancy in KingStreams.triggerManualBuyback(uint256,bool) (#612-618):
External calls:
- buyTokens(amount,DEAD) (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#640-645)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#616)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#331-334) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#332-333)
KingStreams._transferFrom(address,address,uint256) (#496-518) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_balances[sender] > 0) (#504)
KingStreams.getTotalFee(bool) (#535-539) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#537)
KingStreams.shouldSwapBack() (#556-561) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#557-560)
KingStreams.isOverLiquified(uint256,uint256) (#750-752) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#751)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#305-329) has costly operations inside a loop:
- currentIndex = 0 (#317)
DividendDistributor.distributeDividend(address) (#336-347) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#341)
DividendDistributor.process(uint256) (#305-329) has costly operations inside a loop:
- currentIndex ++ (#326)
Use a local variable to hold the loop computation result.

Additional information: link

KingStreams._maxTxAmount (#393) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 4) / 100
KingStreams._maxWalletToken (#394) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 5) / 100
KingStreams.swapThreshold (#439) 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 KingStreams.swapBack() (#563-602):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#588)
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() (#161) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#264) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#264) is not in mixedCase
Variable DividendDistributor._token (#217) is not in mixedCase
Variable DividendDistributor.BETH (#225) is not in mixedCase
Variable DividendDistributor.WBNB (#226) is not in mixedCase
Parameter KingStreams.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#648) is not in mixedCase
Parameter KingStreams.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#648) is not in mixedCase
Parameter KingStreams.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#648) is not in mixedCase
Parameter KingStreams.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#648) is not in mixedCase
Parameter KingStreams.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#648) is not in mixedCase
Parameter KingStreams.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#696) is not in mixedCase
Parameter KingStreams.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#696) is not in mixedCase
Parameter KingStreams.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#696) is not in mixedCase
Parameter KingStreams.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#696) is not in mixedCase
Parameter KingStreams.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#696) is not in mixedCase
Parameter KingStreams.setFeeReceivers(address,address)._autoLiquidityReceiver (#705) is not in mixedCase
Parameter KingStreams.setFeeReceivers(address,address)._marketingFeeReceiver (#705) is not in mixedCase
Parameter KingStreams.setSwapBackSettings(bool,uint256)._enabled (#710) is not in mixedCase
Parameter KingStreams.setSwapBackSettings(bool,uint256)._amount (#710) is not in mixedCase
Parameter KingStreams.setTargetLiquidity(uint256,uint256)._target (#715) is not in mixedCase
Parameter KingStreams.setTargetLiquidity(uint256,uint256)._denominator (#715) is not in mixedCase
Parameter KingStreams.setDistributionCriteria(uint256,uint256)._minPeriod (#725) is not in mixedCase
Parameter KingStreams.setDistributionCriteria(uint256,uint256)._minDistribution (#725) is not in mixedCase
Variable KingStreams.BETH (#383) is not in mixedCase
Variable KingStreams.WBNB (#384) is not in mixedCase
Variable KingStreams.DEAD (#385) is not in mixedCase
Variable KingStreams.ZERO (#386) is not in mixedCase
Constant KingStreams._name (#388) is not in UPPER_CASE_WITH_UNDERSCORES
Constant KingStreams._symbol (#389) is not in UPPER_CASE_WITH_UNDERSCORES
Constant KingStreams._decimals (#390) is not in UPPER_CASE_WITH_UNDERSCORES
Variable KingStreams._totalSupply (#392) is not in mixedCase
Variable KingStreams._maxTxAmount (#393) is not in mixedCase
Variable KingStreams._maxWalletToken (#394) is not in mixedCase
Variable KingStreams._balances (#397) is not in mixedCase
Variable KingStreams._allowances (#398) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#166) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#167)
Prevent variables from having similar names.

Additional information: link

KingStreams.slitherConstructorVariables() (#380-757) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#385)
KingStreams.slitherConstructorVariables() (#380-757) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#386)
KingStreams.slitherConstructorVariables() (#380-757) uses literals with too many digits:
- _totalSupply = 1000000000000000000 * (10 ** _decimals) (#392)
KingStreams.slitherConstructorVariables() (#380-757) uses literals with too many digits:
- distributorGas = 500000 (#436)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

KingStreams.BETH (#383) is never used in KingStreams (#380-757)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#226) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#239) should be constant
KingStreams.BETH (#383) should be constant
KingStreams.DEAD (#385) should be constant
KingStreams.WBNB (#384) should be constant
KingStreams.ZERO (#386) should be constant
KingStreams._totalSupply (#392) 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) (#118-120)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#125-127)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#146-150)
getUnpaidEarnings(address) should be declared external:
- KingStreams.getUnpaidEarnings(address) (#733-735)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Twitter account


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


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 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

Price for KS