BabyCheems2022 Token Logo

BabyCheems2022 Token

About BabyCheems2022

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 12 January 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.

BabyCheems2022.swapBack() (#742-785) sends eth to arbitrary user
Dangerous calls:
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


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

Reentrancy in BabyCheems2022._transferFrom(address,address,uint256) (#544-595):
External calls:
- swapBack() (#574)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#753-759)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
External calls sending eth:
- swapBack() (#574)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#577)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#580)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#579)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#699)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#321-332) ignores return value by CAKE.transfer(shareholder,amount) (#327)
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.

Low level call in BabyCheems2022.swapBack() (#742-785):
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#770)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

DividendDistributor.process(uint256) (#290-314) has costly operations inside a loop:
- currentIndex = 0 (#302)
DividendDistributor.distributeDividend(address) (#321-332) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#326)
DividendDistributor.process(uint256) (#290-314) has costly operations inside a loop:
- currentIndex ++ (#311)
Use a local variable to hold the loop computation result.

Additional information: link

BabyCheems2022.launched() (#858-860) is never used and should be removed
BabyCheems2022.shouldAutoBuyback() (#788-794) is never used and should be removed
BabyCheems2022.triggerAutoBuyback() (#813-822) is never used and should be removed
Remove unused functions.

Additional information: link

BabyCheems2022._maxBuyTxAmount (#389) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 100 / 10000
BabyCheems2022._maxSellTxAmount (#390) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 300 / 10000
BabyCheems2022._maxWalletToken (#391) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 300) / 10000
BabyCheems2022.swapThreshold (#435) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 50 / 10000
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

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

Reentrancy in DividendDistributor.distributeDividend(address) (#321-332):
External calls:
- CAKE.transfer(shareholder,amount) (#327)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#329)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#330)
Reentrancy in DividendDistributor.process(uint256) (#290-314):
External calls:
- distributeDividend(shareholders[currentIndex]) (#306)
- CAKE.transfer(shareholder,amount) (#327)
State variables written after the call(s):
- currentIndex ++ (#311)
Reentrancy in DividendDistributor.setShare(address,uint256) (#254-268):
External calls:
- distributeDividend(shareholder) (#256)
- CAKE.transfer(shareholder,amount) (#327)
State variables written after the call(s):
- shares[shareholder].amount = amount (#266)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#267)
Apply the check-effects-interactions pattern.

Additional information: link

BabyCheems2022.swapBack() (#742-785) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#249-252) should emit an event for:
- minPeriod = _minPeriod (#250)
- minDistribution = _minDistribution (#251)
BabyCheems2022.setMaxWalletPercent(uint256) (#538-541) should emit an event for:
- _maxWalletToken = _totalSupply.mul(maxWallPercent).div(10000) (#539)
BabyCheems2022.enableGREED(uint256) (#720-723) should emit an event for:
- GREEDDuration = _seconds (#722)
BabyCheems2022.cooldownEnabled(bool,uint8) (#731-734) should emit an event for:
- cooldownTimerInterval = _interval (#733)
BabyCheems2022.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#839-847) should emit an event for:
- autoBuybackCap = _cap (#841)
- autoBuybackAmount = _amount (#843)
BabyCheems2022.setBuybackMultiplierSettings(uint256,uint256,uint256) (#850-855) should emit an event for:
- buybackMultiplierNumerator = numerator (#852)
- buybackMultiplierDenominator = denominator (#853)
- buybackMultiplierLength = length (#854)
BabyCheems2022.setBuyTxLimitInPercent(uint256) (#868-870) should emit an event for:
- _maxBuyTxAmount = _totalSupply.mul(maxBuyTxPercent).div(10000) (#869)
BabyCheems2022.setSellTxLimitInPercent(uint256) (#873-875) should emit an event for:
- _maxSellTxAmount = _totalSupply.mul(maxSellTxPercent).div(10000) (#874)
BabyCheems2022.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256) (#904-912) should emit an event for:
- liquidityFeeBuy = _liquidityFeeBuy (#905)
- buybackFeeBuy = _buybackFeeBuy (#906)
- reflectionFeeBuy = _reflectionFeeBuy (#907)
- marketingFeeBuy = _marketingFeeBuy (#908)
- devFeeBuy = _devFeeBuy (#909)
- totalFeeBuy = _liquidityFeeBuy.add(_buybackFeeBuy).add(_reflectionFeeBuy).add(_marketingFeeBuy).add(_devFeeBuy) (#910)
- feeDenominator = _feeDenominator (#911)
BabyCheems2022.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256) (#915-923) should emit an event for:
- liquidityFeeSell = _liquidityFeeSell (#916)
- buybackFeeSell = _buybackFeeSell (#917)
- reflectionFeeSell = _reflectionFeeSell (#918)
- marketingFeeSell = _marketingFeeSell (#919)
- devFeeSell = _devFeeSell (#920)
- totalFeeSell = _liquidityFeeSell.add(_buybackFeeSell).add(_reflectionFeeSell).add(_marketingFeeSell).add(_devFeeSell) (#921)
- feeDenominator = _feeDenominator (#922)
BabyCheems2022.setSwapBackSettings(bool,uint256) (#932-935) should emit an event for:
- swapThreshold = _totalSupply * _amount / 10000 (#934)
BabyCheems2022.setTargetLiquidity(uint256,uint256) (#938-941) should emit an event for:
- targetLiquidity = _target (#939)
- targetLiquidityDenominator = _denominator (#940)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).account (#126) lacks a zero-check on :
- owner = account (#127)
BabyCheems2022.setFeeReceivers(address,address)._autoLiquidityReceiver (#926) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#927)
BabyCheems2022.setFeeReceivers(address,address)._marketingFeeReceiver (#926) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#928)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#321-332) has external calls inside a loop: CAKE.transfer(shareholder,amount) (#327)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BabyCheems2022.constructor() (#473-503):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#476)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#477)
- _balances[_presaler] = _totalSupply (#501)
- autoLiquidityReceiver = msg.sender (#498)
- distributor = new DividendDistributor(address(router)) (#479)
- isDividendExempt[pair] = true (#493)
- isDividendExempt[address(this)] = true (#494)
- isDividendExempt[DEAD] = true (#495)
- isFeeExempt[_presaler] = true (#483)
- isTimelockExempt[msg.sender] = true (#487)
- isTimelockExempt[DEAD] = true (#488)
- isTimelockExempt[address(this)] = true (#489)
- isTimelockExempt[DEV] = true (#490)
- isTxLimitExempt[_presaler] = true (#484)
- marketingFeeReceiver = msg.sender (#499)
Reentrancy in DividendDistributor.deposit() (#270-288):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#277-282)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#287)
- totalDividends = totalDividends.add(amount) (#286)
Reentrancy in DividendDistributor.distributeDividend(address) (#321-332):
External calls:
- CAKE.transfer(shareholder,amount) (#327)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#328)
Reentrancy in DividendDistributor.setShare(address,uint256) (#254-268):
External calls:
- distributeDividend(shareholder) (#256)
- CAKE.transfer(shareholder,amount) (#327)
State variables written after the call(s):
- addShareholder(shareholder) (#260)
- shareholderIndexes[shareholder] = shareholders.length (#354)
- removeShareholder(shareholder) (#262)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#360)
- addShareholder(shareholder) (#260)
- shareholders.push(shareholder) (#355)
- removeShareholder(shareholder) (#262)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#359)
- shareholders.pop() (#361)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#265)
Reentrancy in BabyCheems2022.triggerAutoBuyback() (#813-822):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#814)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#830-835)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#820)
- autoBuybackBlockLast = block.number (#819)
- autoBuybackEnabled = false (#821)
- buybackMultiplierTriggeredAt = block.timestamp (#816)
Reentrancy in BabyCheems2022.triggerManualBuyback(uint256,bool) (#797-805):
External calls:
- buyTokens(amountToBuy,DEAD) (#800)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#830-835)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#802)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BabyCheems2022._transferFrom(address,address,uint256) (#544-595):
External calls:
- swapBack() (#574)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#753-759)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
- distributor.setShare(sender,_balances[sender]) (#584)
- distributor.setShare(recipient,_balances[recipient]) (#588)
- distributor.process(distributorGas) (#591)
External calls sending eth:
- swapBack() (#574)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#593)
Reentrancy in BabyCheems2022._transferFrom(address,address,uint256) (#544-595):
External calls:
- swapBack() (#574)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#753-759)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
External calls sending eth:
- swapBack() (#574)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#700)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#579)
Reentrancy in BabyCheems2022.constructor() (#473-503):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#476)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#502)
Reentrancy in BabyCheems2022.swapBack() (#742-785):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#753-759)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#768)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#783)
Reentrancy in BabyCheems2022.triggerAutoBuyback() (#813-822):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#814)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#830-835)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#817)
Reentrancy in BabyCheems2022.triggerManualBuyback(uint256,bool) (#797-805):
External calls:
- buyTokens(amountToBuy,DEAD) (#800)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#830-835)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#803)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#316-319) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#317-318)
BabyCheems2022.inGREEDTime() (#625-631) uses timestamp for comparisons
Dangerous comparisons:
- GREEDTriggeredAt.add(GREEDDuration) > block.timestamp (#626)
BabyCheems2022.checkBuyCooldown(address,address) (#646-653) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait between two buys) (#650)
BabyCheems2022.getTotalFee(bool) (#669-673) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#671)
Avoid relying on block.timestamp.

Additional information: link

Function IDEXRouter.WETH() (#143) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#249) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#249) is not in mixedCase
Variable DividendDistributor._token (#201) is not in mixedCase
Variable DividendDistributor.CAKE (#210) is not in mixedCase
Variable DividendDistributor.WBNB (#211) is not in mixedCase
Parameter BabyCheems2022.takeFee(address,uint256,bool,bool).GREEDMode (#683) is not in mixedCase
Parameter BabyCheems2022.tradingStatus(bool)._status (#714) is not in mixedCase
Parameter BabyCheems2022.enableGREED(uint256)._seconds (#720) is not in mixedCase
Parameter BabyCheems2022.cooldownEnabled(bool,uint8)._status (#731) is not in mixedCase
Parameter BabyCheems2022.cooldownEnabled(bool,uint8)._interval (#731) is not in mixedCase
Parameter BabyCheems2022.blacklistAddress(address,bool)._address (#737) is not in mixedCase
Parameter BabyCheems2022.blacklistAddress(address,bool)._value (#737) is not in mixedCase
Parameter BabyCheems2022.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#839) is not in mixedCase
Parameter BabyCheems2022.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#839) is not in mixedCase
Parameter BabyCheems2022.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#839) is not in mixedCase
Parameter BabyCheems2022.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#839) is not in mixedCase
Parameter BabyCheems2022.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#839) is not in mixedCase
Parameter BabyCheems2022.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeBuy (#904) is not in mixedCase
Parameter BabyCheems2022.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeBuy (#904) is not in mixedCase
Parameter BabyCheems2022.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeBuy (#904) is not in mixedCase
Parameter BabyCheems2022.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeBuy (#904) is not in mixedCase
Parameter BabyCheems2022.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeBuy (#904) is not in mixedCase
Parameter BabyCheems2022.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#904) is not in mixedCase
Parameter BabyCheems2022.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeSell (#915) is not in mixedCase
Parameter BabyCheems2022.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeSell (#915) is not in mixedCase
Parameter BabyCheems2022.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeSell (#915) is not in mixedCase
Parameter BabyCheems2022.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeSell (#915) is not in mixedCase
Parameter BabyCheems2022.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeSell (#915) is not in mixedCase
Parameter BabyCheems2022.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#915) is not in mixedCase
Parameter BabyCheems2022.setFeeReceivers(address,address)._autoLiquidityReceiver (#926) is not in mixedCase
Parameter BabyCheems2022.setFeeReceivers(address,address)._marketingFeeReceiver (#926) is not in mixedCase
Parameter BabyCheems2022.setSwapBackSettings(bool,uint256)._enabled (#932) is not in mixedCase
Parameter BabyCheems2022.setSwapBackSettings(bool,uint256)._amount (#932) is not in mixedCase
Parameter BabyCheems2022.setTargetLiquidity(uint256,uint256)._target (#938) is not in mixedCase
Parameter BabyCheems2022.setTargetLiquidity(uint256,uint256)._denominator (#938) is not in mixedCase
Parameter BabyCheems2022.setDistributionCriteria(uint256,uint256)._minPeriod (#950) is not in mixedCase
Parameter BabyCheems2022.setDistributionCriteria(uint256,uint256)._minDistribution (#950) is not in mixedCase
Variable BabyCheems2022.CAKE (#370) is not in mixedCase
Variable BabyCheems2022.WBNB (#371) is not in mixedCase
Variable BabyCheems2022.DEAD (#372) is not in mixedCase
Variable BabyCheems2022.ZERO (#373) is not in mixedCase
Variable BabyCheems2022.DEV (#374) is not in mixedCase
Constant BabyCheems2022._name (#381) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyCheems2022._symbol (#382) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyCheems2022._decimals (#383) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BabyCheems2022._totalSupply (#386) is not in mixedCase
Variable BabyCheems2022._maxBuyTxAmount (#389) is not in mixedCase
Variable BabyCheems2022._maxSellTxAmount (#390) is not in mixedCase
Variable BabyCheems2022._maxWalletToken (#391) is not in mixedCase
Variable BabyCheems2022._balances (#394) is not in mixedCase
Variable BabyCheems2022._allowances (#395) is not in mixedCase
Variable BabyCheems2022.GREEDTriggeredAt (#428) is not in mixedCase
Variable BabyCheems2022.GREEDDuration (#429) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

BabyCheems2022.slitherConstructorVariables() (#366-988) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#372)
BabyCheems2022.slitherConstructorVariables() (#366-988) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#373)
BabyCheems2022.slitherConstructorVariables() (#366-988) uses literals with too many digits:
- _totalSupply = 100000000 * (10 ** _decimals) (#386)
BabyCheems2022.slitherConstructorVariables() (#366-988) uses literals with too many digits:
- distributorGas = 500000 (#456)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BabyCheems2022.CAKE (#370) is never used in BabyCheems2022 (#366-988)
Remove unused state variables.

Additional information: link

BabyCheems2022.CAKE (#370) should be constant
BabyCheems2022.DEAD (#372) should be constant
BabyCheems2022.DEV (#374) should be constant
BabyCheems2022.WBNB (#371) should be constant
BabyCheems2022.ZERO (#373) should be constant
BabyCheems2022._totalSupply (#386) should be constant
BabyCheems2022.deadBlocks (#432) should be constant
DividendDistributor.WBNB (#211) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#224) 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) (#98-100)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#105-107)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#126-130)
getTotalFee(bool) should be declared external:
- BabyCheems2022.getTotalFee(bool) (#669-673)
tradingStatus(bool) should be declared external:
- BabyCheems2022.tradingStatus(bool) (#714-717)
enableGREED(uint256) should be declared external:
- BabyCheems2022.enableGREED(uint256) (#720-723)
cooldownEnabled(bool,uint8) should be declared external:
- BabyCheems2022.cooldownEnabled(bool,uint8) (#731-734)
blacklistAddress(address,bool) should be declared external:
- BabyCheems2022.blacklistAddress(address,bool) (#737-739)
getUnpaidEarnings(address) should be declared external:
- BabyCheems2022.getUnpaidEarnings(address) (#960-962)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Number of Binance Smart Chain (BSC) token holders is low.


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 Telegram and Twitter accounts


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

Price for BabyCheems2022