Baby Luna Coin Token Logo

BabyLuna [Baby Luna Coin] Token

About BabyLuna

Listings

Token 23 months

Website

Not Found

Baby Luna Coin is destined to follow it's dad steps, with an amazing 5% reward of $LUNA on each transaction. Multiple promotions and partnership are being planned and exposure will keep growing !!!

This is only the beginning for an amazing journey, make sure to join our TG to know more about us !

Social

Laser Scorebeta Last Audit: 21 May 2022

report
Token seems to be a scam (type: honeypot scam).

BabyLuna.swapBack() (#585-631) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#614)
- (tmpSuccess,None) = address(devfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#615)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BabyLuna._transferFrom(address,address,uint256) (#465-514):
External calls:
- swapBack() (#493)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#596-602)
- distributor.deposit{value: amountBNBReflection}() (#613)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#614)
- (tmpSuccess,None) = address(devfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
External calls sending eth:
- swapBack() (#493)
- distributor.deposit{value: amountBNBReflection}() (#613)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#614)
- (tmpSuccess,None) = address(devfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#496)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#499)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#498)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#539)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#540)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#283-294) ignores return value by RWRD.transfer(shareholder,amount) (#289)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.


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

BabyLuna.swapBack().tmpSuccess (#614) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#614)
(tmpSuccess,None) = address(devfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#615)
BabyLuna.swapBack().tmpSuccess (#614) is written in both
(tmpSuccess,None) = address(devfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#615)
tmpSuccess = false (#618)
Fix or remove the writes.

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.


Contract ownership is not renounced (belongs to a wallet)

BabyLuna.takeFee(address,uint256,bool) (#531-548) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#534)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#536)
Consider ordering multiplication before division.

Additional information: link

BabyLuna._maxTxAmount (#340) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(2).div(100)
BabyLuna._maxWalletToken (#341) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(2).div(100)
BabyLuna.totalFee (#360) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devfee + burnFee
BabyLuna.swapThreshold (#390) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 15 / 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

Pragma version^0.7.4 (#3) allows old versions
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) (#283-294):
External calls:
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#291)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#292)
Reentrancy in DividendDistributor.process(uint256) (#252-276):
External calls:
- distributeDividend(shareholders[currentIndex]) (#268)
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- currentIndex ++ (#273)
Reentrancy in DividendDistributor.setShare(address,uint256) (#216-230):
External calls:
- distributeDividend(shareholder) (#218)
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- shares[shareholder].amount = amount (#228)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#229)
Apply the check-effects-interactions pattern.

Additional information: link

BabyLuna.manage_blacklist(address[],bool).i (#649) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

BabyLuna.swapBack() (#585-631) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#211-214) should emit an event for:
- minPeriod = _minPeriod (#212)
- minDistribution = _minDistribution (#213)
BabyLuna.setMaxTxPercent_base1000(uint256) (#456-458) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#457)
BabyLuna.setTxLimit(uint256) (#460-462) should emit an event for:
- _maxTxAmount = amount (#461)
BabyLuna.set_sell_multiplier(uint256) (#567-569) should emit an event for:
- sellMultiplier = Multiplier (#568)
BabyLuna.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#667-676) should emit an event for:
- liquidityFee = _liquidityFee (#668)
- reflectionFee = _reflectionFee (#669)
- marketingFee = _marketingFee (#670)
- devfee = _devfee (#671)
- burnFee = _burnFee (#672)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_devfee).add(_burnFee) (#673)
- feeDenominator = _feeDenominator (#674)
BabyLuna.setSwapBackSettings(bool,uint256) (#685-688) should emit an event for:
- swapThreshold = _amount (#687)
BabyLuna.setTargetLiquidity(uint256,uint256) (#690-693) should emit an event for:
- targetLiquidity = _target (#691)
- targetLiquidityDenominator = _denominator (#692)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#93) lacks a zero-check on :
- owner = adr (#94)
BabyLuna.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#678) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#679)
BabyLuna.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#678) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#680)
BabyLuna.setFeeReceivers(address,address,address,address)._devfeeReceiver (#678) lacks a zero-check on :
- devfeeReceiver = _devfeeReceiver (#681)
BabyLuna.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#678) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#682)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#283-294) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#289)
BabyLuna.multiTransfer(address,address[],uint256[]) (#719-743) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#735)
BabyLuna.multiTransfer_fixed(address,address[],uint256) (#745-764) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#756)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BabyLuna.constructor() (#394-419):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#396)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#397)
- _balances[msg.sender] = _totalSupply (#417)
- autoLiquidityReceiver = msg.sender (#412)
- burnFeeReceiver = DEAD (#415)
- devfeeReceiver = DEAD (#414)
- distributor = new DividendDistributor(address(router)) (#399)
- isDividendExempt[pair] = true (#408)
- isDividendExempt[address(this)] = true (#409)
- isDividendExempt[DEAD] = true (#410)
- isFeeExempt[msg.sender] = true (#401)
- isTimelockExempt[msg.sender] = true (#404)
- isTimelockExempt[DEAD] = true (#405)
- isTimelockExempt[address(this)] = true (#406)
- isTxLimitExempt[msg.sender] = true (#402)
- marketingFeeReceiver = 0x8bF5A3E2da18d2dc23c795196b41454A551310Ee (#413)
Reentrancy in DividendDistributor.deposit() (#232-250):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#239-244)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#249)
- totalDividends = totalDividends.add(amount) (#248)
Reentrancy in DividendDistributor.distributeDividend(address) (#283-294):
External calls:
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#290)
Reentrancy in DividendDistributor.setShare(address,uint256) (#216-230):
External calls:
- distributeDividend(shareholder) (#218)
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- addShareholder(shareholder) (#222)
- shareholderIndexes[shareholder] = shareholders.length (#316)
- removeShareholder(shareholder) (#224)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#322)
- addShareholder(shareholder) (#222)
- shareholders.push(shareholder) (#317)
- removeShareholder(shareholder) (#224)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#321)
- shareholders.pop() (#323)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#227)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BabyLuna._transferFrom(address,address,uint256) (#465-514):
External calls:
- swapBack() (#493)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#596-602)
- distributor.deposit{value: amountBNBReflection}() (#613)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#614)
- (tmpSuccess,None) = address(devfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
- distributor.setShare(sender,_balances[sender]) (#503)
- distributor.setShare(recipient,_balances[recipient]) (#507)
- distributor.process(distributorGas) (#510)
External calls sending eth:
- swapBack() (#493)
- distributor.deposit{value: amountBNBReflection}() (#613)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#614)
- (tmpSuccess,None) = address(devfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#512)
Reentrancy in BabyLuna._transferFrom(address,address,uint256) (#465-514):
External calls:
- swapBack() (#493)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#596-602)
- distributor.deposit{value: amountBNBReflection}() (#613)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#614)
- (tmpSuccess,None) = address(devfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
External calls sending eth:
- swapBack() (#493)
- distributor.deposit{value: amountBNBReflection}() (#613)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#614)
- (tmpSuccess,None) = address(devfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#541)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#498)
- Transfer(sender,burnFeeReceiver,burnTokens) (#544)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#498)
Reentrancy in BabyLuna.constructor() (#394-419):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#396)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#418)
Reentrancy in BabyLuna.swapBack() (#585-631):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#596-602)
- distributor.deposit{value: amountBNBReflection}() (#613)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#614)
- (tmpSuccess,None) = address(devfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#613)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#614)
- (tmpSuccess,None) = address(devfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#629)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#278-281) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#279-280)
BabyLuna._transferFrom(address,address,uint256) (#465-514) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#486)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#252-276) has costly operations inside a loop:
- currentIndex = 0 (#264)
DividendDistributor.distributeDividend(address) (#283-294) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#288)
DividendDistributor.process(uint256) (#252-276) has costly operations inside a loop:
- currentIndex ++ (#273)
Use a local variable to hold the loop computation result.

Additional information: link

Low level call in BabyLuna.swapBack() (#585-631):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#614)
- (tmpSuccess,None) = address(devfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#615)
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() (#108) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#211) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#211) is not in mixedCase
Variable DividendDistributor._token (#164) is not in mixedCase
Variable DividendDistributor.RWRD (#172) is not in mixedCase
Variable DividendDistributor.WBNB (#173) is not in mixedCase
Function BabyLuna.setMaxWalletPercent_base1000(uint256) (#453-455) is not in mixedCase
Parameter BabyLuna.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#453) is not in mixedCase
Function BabyLuna.setMaxTxPercent_base1000(uint256) (#456-458) is not in mixedCase
Parameter BabyLuna.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#456) is not in mixedCase
Function BabyLuna.clearStuckBalance_sender(uint256) (#562-565) is not in mixedCase
Function BabyLuna.set_sell_multiplier(uint256) (#567-569) is not in mixedCase
Parameter BabyLuna.set_sell_multiplier(uint256).Multiplier (#567) is not in mixedCase
Parameter BabyLuna.tradingAllowed(uint256,uint256)._swapAt (#572) is not in mixedCase
Parameter BabyLuna.tradingAllowed(uint256,uint256)._swapDelay (#572) is not in mixedCase
Parameter BabyLuna.cooldownEnabled(bool,uint8)._status (#580) is not in mixedCase
Parameter BabyLuna.cooldownEnabled(bool,uint8)._interval (#580) is not in mixedCase
Function BabyLuna.enable_blacklist(bool) (#644-646) is not in mixedCase
Parameter BabyLuna.enable_blacklist(bool)._status (#644) is not in mixedCase
Function BabyLuna.manage_blacklist(address[],bool) (#648-652) is not in mixedCase
Parameter BabyLuna.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#667) is not in mixedCase
Parameter BabyLuna.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#667) is not in mixedCase
Parameter BabyLuna.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#667) is not in mixedCase
Parameter BabyLuna.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._devfee (#667) is not in mixedCase
Parameter BabyLuna.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#667) is not in mixedCase
Parameter BabyLuna.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#667) is not in mixedCase
Parameter BabyLuna.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#678) is not in mixedCase
Parameter BabyLuna.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#678) is not in mixedCase
Parameter BabyLuna.setFeeReceivers(address,address,address,address)._devfeeReceiver (#678) is not in mixedCase
Parameter BabyLuna.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#678) is not in mixedCase
Parameter BabyLuna.setSwapBackSettings(bool,uint256)._enabled (#685) is not in mixedCase
Parameter BabyLuna.setSwapBackSettings(bool,uint256)._amount (#685) is not in mixedCase
Parameter BabyLuna.setTargetLiquidity(uint256,uint256)._target (#690) is not in mixedCase
Parameter BabyLuna.setTargetLiquidity(uint256,uint256)._denominator (#690) is not in mixedCase
Parameter BabyLuna.setDistributionCriteria(uint256,uint256)._minPeriod (#695) is not in mixedCase
Parameter BabyLuna.setDistributionCriteria(uint256,uint256)._minDistribution (#695) is not in mixedCase
Function BabyLuna.multiTransfer_fixed(address,address[],uint256) (#745-764) is not in mixedCase
Variable BabyLuna.WBNB (#330) is not in mixedCase
Variable BabyLuna.DEAD (#331) is not in mixedCase
Variable BabyLuna.ZERO (#332) is not in mixedCase
Constant BabyLuna._name (#334) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyLuna._symbol (#335) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyLuna._decimals (#336) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BabyLuna._totalSupply (#338) is not in mixedCase
Variable BabyLuna._maxTxAmount (#340) is not in mixedCase
Variable BabyLuna._maxWalletToken (#341) is not in mixedCase
Variable BabyLuna._balances (#343) is not in mixedCase
Variable BabyLuna._allowances (#344) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

BabyLuna.slitherConstructorVariables() (#327-768) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#331)
BabyLuna.slitherConstructorVariables() (#327-768) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#332)
BabyLuna.slitherConstructorVariables() (#327-768) uses literals with too many digits:
- distributorGas = 500000 (#383)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BabyLuna.DEAD (#331) should be constant
BabyLuna.WBNB (#330) should be constant
BabyLuna.ZERO (#332) should be constant
BabyLuna._totalSupply (#338) should be constant
DividendDistributor.WBNB (#173) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#186) 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) (#77-79)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#81-83)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#93-97)
tradingAllowed(uint256,uint256) should be declared external:
- BabyLuna.tradingAllowed(uint256,uint256) (#572-577)
cooldownEnabled(bool,uint8) should be declared external:
- BabyLuna.cooldownEnabled(bool,uint8) (#580-583)
enable_blacklist(bool) should be declared external:
- BabyLuna.enable_blacklist(bool) (#644-646)
manage_blacklist(address[],bool) should be declared external:
- BabyLuna.manage_blacklist(address[],bool) (#648-652)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d PancakeSwap liquidity is low.


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


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account link seems to be invalid


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Price for BabyLuna