Welcome on Blue Cheems channel.
Stealth launch 01.01.2022.
Tokenomics: Total supply 100M / 50M burned / Max tx 1M / Max wallet 3M / Slippage 15-18%
website: https://bluecheems.space
twitter: https://twitter.com/cheemsblue
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
BlueCheems.swapBack() (#667-709) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in BlueCheems._transferFrom(address,address,uint256) (#602-628):
External calls:
- swapBack() (#611)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
External calls sending eth:
- swapBack() (#611)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#616)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#619)
- amountReceived = takeFee(sender,recipient,amount) (#618)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#654)
- triggerAutoBuyback() (#612)
- inSwap = true (#547)
- inSwap = false (#547)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#442-453) ignores return value by BUSD.transfer(shareholder,amount) (#448)
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) (#442-453):
External calls:
- BUSD.transfer(shareholder,amount) (#448)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#450)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#451)
Reentrancy in DividendDistributor.process(uint256) (#411-435):
External calls:
- distributeDividend(shareholders[currentIndex]) (#427)
- BUSD.transfer(shareholder,amount) (#448)
State variables written after the call(s):
- currentIndex ++ (#432)
Reentrancy in DividendDistributor.setShare(address,uint256) (#374-388):
External calls:
- distributeDividend(shareholder) (#376)
- BUSD.transfer(shareholder,amount) (#448)
State variables written after the call(s):
- shares[shareholder].amount = amount (#386)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#387)
Apply the check-effects-interactions pattern.
Additional information: link
BlueCheems.swapBack() (#667-709) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#369-372) should emit an event for:
- minPeriod = _minPeriod (#370)
- minDistribution = _minDistribution (#371)
BlueCheems.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#751-758) should emit an event for:
- autoBuybackCap = _cap (#753)
- autoBuybackAmount = _amount.div(100) (#755)
BlueCheems.setSwapBackSettings(bool,uint256) (#803-806) should emit an event for:
- swapThreshold = _amount.div(100) (#805)
BlueCheems.setTargetLiquidity(uint256,uint256) (#808-811) should emit an event for:
- targetLiquidity = _target (#809)
- targetLiquidityDenominator = _denominator (#810)
Emit an event for critical parameter changes.
Additional information: link
BlueCheems.setFeeReceivers(address,address)._autoLiquidityReceiver (#798) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#799)
BlueCheems.setFeeReceivers(address,address)._marketingFeeReceiver (#798) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#800)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#442-453) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#448)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in BlueCheems._transferFrom(address,address,uint256) (#602-628):
External calls:
- swapBack() (#611)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
External calls sending eth:
- swapBack() (#611)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
State variables written after the call(s):
- launch() (#614)
- launchedAt = block.number (#772)
Reentrancy in BlueCheems.constructor() (#549-568):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#551)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#552)
- _balances[msg.sender] = _totalSupply (#566)
- autoLiquidityReceiver = owner() (#563)
- distributor = new DividendDistributor(address(router)) (#554)
- isDividendExempt[pair] = true (#559)
- isDividendExempt[address(this)] = true (#560)
- isDividendExempt[DEAD] = true (#561)
- isDividendExempt[ZERO] = true (#562)
- isFeeExempt[msg.sender] = true (#556)
- isTxLimitExempt[msg.sender] = true (#557)
- isTxLimitExempt[address(router)] = true (#558)
- marketingFeeReceiver = address(0x559276E998BC70d10F5255ddfcA7391305a1AF1f) (#564)
Reentrancy in DividendDistributor.deposit() (#391-409):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#398-403)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#408)
- totalDividends = totalDividends.add(amount) (#407)
Reentrancy in DividendDistributor.distributeDividend(address) (#442-453):
External calls:
- BUSD.transfer(shareholder,amount) (#448)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#449)
Reentrancy in DividendDistributor.setShare(address,uint256) (#374-388):
External calls:
- distributeDividend(shareholder) (#376)
- BUSD.transfer(shareholder,amount) (#448)
State variables written after the call(s):
- addShareholder(shareholder) (#380)
- shareholderIndexes[shareholder] = shareholders.length (#475)
- removeShareholder(shareholder) (#382)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#481)
- addShareholder(shareholder) (#380)
- shareholders.push(shareholder) (#476)
- removeShareholder(shareholder) (#382)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#480)
- shareholders.pop() (#482)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#385)
Reentrancy in BlueCheems.triggerAutoBuyback() (#731-736):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#732)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#734)
- autoBuybackBlockLast = block.number (#733)
- autoBuybackEnabled = false (#735)
Reentrancy in BlueCheems.triggerManualBuyback(uint256,bool) (#719-725):
External calls:
- buyTokens(amount,DEAD) (#720)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#722)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BlueCheems._transferFrom(address,address,uint256) (#602-628):
External calls:
- swapBack() (#611)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
- distributor.setShare(sender,_balances[sender]) (#621)
- distributor.setShare(recipient,_balances[recipient]) (#622)
- distributor.process(distributorGas) (#624)
External calls sending eth:
- swapBack() (#611)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#626)
Reentrancy in BlueCheems._transferFrom(address,address,uint256) (#602-628):
External calls:
- swapBack() (#611)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
External calls sending eth:
- swapBack() (#611)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#655)
- amountReceived = takeFee(sender,recipient,amount) (#618)
Reentrancy in BlueCheems.constructor() (#549-568):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#551)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#567)
Reentrancy in BlueCheems.swapBack() (#667-709):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#707)
Reentrancy in BlueCheems.triggerManualBuyback(uint256,bool) (#719-725):
External calls:
- buyTokens(amount,DEAD) (#720)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#723)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#437-440) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#438-439)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#29-36) uses assembly
- INLINE ASM (#34)
Address._functionCallWithValue(address,bytes,uint256,string) (#63-84) uses assembly
- INLINE ASM (#76-79)
Do not use evm assembly.
Additional information: link
DividendDistributor.process(uint256) (#411-435) has costly operations inside a loop:
- currentIndex = 0 (#423)
DividendDistributor.distributeDividend(address) (#442-453) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#447)
DividendDistributor.process(uint256) (#411-435) has costly operations inside a loop:
- currentIndex ++ (#432)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#63-84) is never used and should be removed
Address.functionCall(address,bytes) (#46-48) is never used and should be removed
Address.functionCall(address,bytes,string) (#50-52) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#54-56) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#58-61) is never used and should be removed
Address.isContract(address) (#29-36) is never used and should be removed
Address.sendValue(address,uint256) (#38-44) is never used and should be removed
Context._msgData() (#92-95) is never used and should be removed
Remove unused functions.
Additional information: link
BlueCheems._maxTxAmount (#500) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 10) / 1000
BlueCheems._maxWalletSize (#501) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 30) / 1000
BlueCheems.swapThreshold (#545) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 400
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
Pragma version^0.7.2 (#25) allows old versions
solc-0.7.2 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#38-44):
- (success) = recipient.call{value: amount}() (#42)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#63-84):
- (success,returndata) = target.call{value: weiValue}(data) (#67)
Low level call in BlueCheems.swapBack() (#667-709):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
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() (#265) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#369) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#369) is not in mixedCase
Variable DividendDistributor._token (#321) is not in mixedCase
Variable DividendDistributor.BUSD (#330) is not in mixedCase
Variable DividendDistributor.WBNB (#331) is not in mixedCase
Parameter BlueCheems.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#751) is not in mixedCase
Parameter BlueCheems.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#751) is not in mixedCase
Parameter BlueCheems.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#751) is not in mixedCase
Parameter BlueCheems.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#751) is not in mixedCase
Parameter BlueCheems.setFeeReceivers(address,address)._autoLiquidityReceiver (#798) is not in mixedCase
Parameter BlueCheems.setFeeReceivers(address,address)._marketingFeeReceiver (#798) is not in mixedCase
Parameter BlueCheems.setSwapBackSettings(bool,uint256)._enabled (#803) is not in mixedCase
Parameter BlueCheems.setSwapBackSettings(bool,uint256)._amount (#803) is not in mixedCase
Parameter BlueCheems.setTargetLiquidity(uint256,uint256)._target (#808) is not in mixedCase
Parameter BlueCheems.setTargetLiquidity(uint256,uint256)._denominator (#808) is not in mixedCase
Parameter BlueCheems.setDistributionCriteria(uint256,uint256)._minPeriod (#813) is not in mixedCase
Parameter BlueCheems.setDistributionCriteria(uint256,uint256)._minDistribution (#813) is not in mixedCase
Variable BlueCheems.BUSD (#490) is not in mixedCase
Variable BlueCheems.WBNB (#491) is not in mixedCase
Variable BlueCheems.DEAD (#492) is not in mixedCase
Variable BlueCheems.ZERO (#493) is not in mixedCase
Constant BlueCheems._name (#495) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BlueCheems._symbol (#496) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BlueCheems._decimals (#497) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BlueCheems._totalSupply (#499) is not in mixedCase
Variable BlueCheems._maxTxAmount (#500) is not in mixedCase
Variable BlueCheems._maxWalletSize (#501) is not in mixedCase
Variable BlueCheems._balances (#503) is not in mixedCase
Variable BlueCheems._allowances (#504) is not in mixedCase
Variable BlueCheems._sellMultiplier (#516) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#93)" inContext (#87-96)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#270) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#271)
Prevent variables from having similar names.
Additional information: link
BlueCheems.slitherConstructorVariables() (#487-837) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#492)
BlueCheems.slitherConstructorVariables() (#487-837) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#493)
BlueCheems.slitherConstructorVariables() (#487-837) uses literals with too many digits:
- _totalSupply = 100000000 * (10 ** _decimals) (#499)
BlueCheems.slitherConstructorVariables() (#487-837) uses literals with too many digits:
- distributorGas = 500000 (#542)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BlueCheems.BUSD (#490) is never used in BlueCheems (#487-837)
BlueCheems.buybackFee (#511) is never used in BlueCheems (#487-837)
Remove unused state variables.
Additional information: link
BlueCheems.BUSD (#490) should be constant
BlueCheems.DEAD (#492) should be constant
BlueCheems.WBNB (#491) should be constant
BlueCheems.ZERO (#493) should be constant
BlueCheems._sellMultiplier (#516) should be constant
BlueCheems._totalSupply (#499) should be constant
BlueCheems.buybackFee (#511) should be constant
BlueCheems.feeDenominator (#515) should be constant
BlueCheems.liquidityFee (#510) should be constant
BlueCheems.marketingFee (#513) should be constant
BlueCheems.reflectionFee (#512) should be constant
BlueCheems.totalFee (#514) should be constant
DividendDistributor.WBNB (#331) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#344) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#243-246)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#252-256)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
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
Telegram account link seems to be invalid
Unable to find Twitter account
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account