Baby Doge Coin BUSD is a highly ambitious new project on the Binance Smart Chain Network. Our primary mission is the development of a decentralized ecosystem that will provide low-cost solutions to various markets across the BSC, while simultaneously rewarding our holders with BUSD. Come follow our dedicated and transparent team on a journey to financial freedom.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
BabyDogeCoin_BUSD.swapBack() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#581-625) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#609)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in BabyDogeCoin_BUSD._transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#487-532):
External calls:
- swapBack() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#511)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#592-598)
- distributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#609)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#615-622)
External calls sending eth:
- swapBack() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#511)
- distributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#609)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#615-622)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#514)
- _balances[recipient] = _balances[recipient].add(amountReceived) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#517)
- amountReceived = takeFee(sender,amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#516)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#552)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#316-327) ignores return value by ADA.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#322)
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.
BabyDogeCoin_BUSD.swapBack().tmpSuccess (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#609) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#609)
tmpSuccess = false (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#612)
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.
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
Reentrancy in DividendDistributor.distributeDividend(address) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#316-327):
External calls:
- ADA.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#322)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#324)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#325)
Reentrancy in DividendDistributor.process(uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#285-309):
External calls:
- distributeDividend(shareholders[currentIndex]) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#301)
- ADA.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#322)
State variables written after the call(s):
- currentIndex ++ (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#306)
Reentrancy in DividendDistributor.setShare(address,uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#249-263):
External calls:
- distributeDividend(shareholder) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#251)
- ADA.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#322)
State variables written after the call(s):
- shares[shareholder].amount = amount (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#261)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#262)
Apply the check-effects-interactions pattern.
Additional information: link
BabyDogeCoin_BUSD.swapBack() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#581-625) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#615-622)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#244-247) should emit an event for:
- minPeriod = _minPeriod (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#245)
- minDistribution = _minDistribution (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#246)
BabyDogeCoin_BUSD.setTxLimit(uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#627-629) should emit an event for:
- _maxTxAmount = amount (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#628)
BabyDogeCoin_BUSD.setFees(uint256,uint256,uint256,uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#653-660) should emit an event for:
- liquidityFee = _liquidityFee (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#654)
- reflectionFee = _reflectionFee (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#655)
- marketingFee = _marketingFee (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#656)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#657)
- feeDenominator = _feeDenominator (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#658)
BabyDogeCoin_BUSD.setTargetLiquidity(uint256,uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#672-675) should emit an event for:
- targetLiquidity = _target (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#673)
- targetLiquidityDenominator = _denominator (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#674)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#125) lacks a zero-check on :
- owner = adr (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#126)
BabyDogeCoin_BUSD.setFeeReceivers(address,address)._autoLiquidityReceiver (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#662) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#663)
BabyDogeCoin_BUSD.setFeeReceivers(address,address)._marketingFeeReceiver (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#662) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#664)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#316-327) has external calls inside a loop: ADA.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#322)
BabyDogeCoin_BUSD.airdrop(address,address[],uint256[]) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#700-723) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#715)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in BabyDogeCoin_BUSD.constructor() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#417-448):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#419)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#420)
- _balances[msg.sender] = _totalSupply (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#446)
- autoLiquidityReceiver = DEAD (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#443)
- distributor = new DividendDistributor(address(router)) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#422)
- isDividendExempt[pair] = true (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#438)
- isDividendExempt[address(this)] = true (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#439)
- isDividendExempt[DEAD] = true (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#440)
- isFeeExempt[msg.sender] = true (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#424)
- isTimelockExempt[msg.sender] = true (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#429)
- isTimelockExempt[DEAD] = true (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#430)
- isTimelockExempt[address(this)] = true (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#431)
- isTxLimitExempt[msg.sender] = true (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#425)
- isTxLimitExempt[DEAD] = true (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#426)
- marketingFeeReceiver = msg.sender (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#444)
Reentrancy in DividendDistributor.deposit() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#265-283):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#272-277)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#282)
- totalDividends = totalDividends.add(amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#281)
Reentrancy in DividendDistributor.distributeDividend(address) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#316-327):
External calls:
- ADA.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#322)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#323)
Reentrancy in DividendDistributor.setShare(address,uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#249-263):
External calls:
- distributeDividend(shareholder) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#251)
- ADA.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#322)
State variables written after the call(s):
- addShareholder(shareholder) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#255)
- shareholderIndexes[shareholder] = shareholders.length (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#349)
- removeShareholder(shareholder) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#257)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#355)
- addShareholder(shareholder) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#255)
- shareholders.push(shareholder) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#350)
- removeShareholder(shareholder) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#257)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#354)
- shareholders.pop() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#356)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#260)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BabyDogeCoin_BUSD._transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#487-532):
External calls:
- swapBack() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#511)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#592-598)
- distributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#609)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#615-622)
- distributor.setShare(sender,_balances[sender]) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#521)
- distributor.setShare(recipient,_balances[recipient]) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#525)
- distributor.process(distributorGas) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#528)
External calls sending eth:
- swapBack() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#511)
- distributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#609)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#615-622)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#530)
Reentrancy in BabyDogeCoin_BUSD._transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#487-532):
External calls:
- swapBack() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#511)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#592-598)
- distributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#609)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#615-622)
External calls sending eth:
- swapBack() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#511)
- distributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#609)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#615-622)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#553)
- amountReceived = takeFee(sender,amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#516)
Reentrancy in BabyDogeCoin_BUSD.constructor() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#417-448):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#419)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#447)
Reentrancy in BabyDogeCoin_BUSD.swapBack() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#581-625):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#592-598)
- distributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#609)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#615-622)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#609)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#615-622)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#623)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#311-314) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#312-313)
BabyDogeCoin_BUSD._transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#487-532) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for cooldown between buys) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#503)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#285-309) has costly operations inside a loop:
- currentIndex = 0 (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#297)
DividendDistributor.distributeDividend(address) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#316-327) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#321)
DividendDistributor.process(uint256) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#285-309) has costly operations inside a loop:
- currentIndex ++ (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#306)
Use a local variable to hold the loop computation result.
Additional information: link
BabyDogeCoin_BUSD._maxTxAmount (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#373) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 2) / 100
BabyDogeCoin_BUSD._maxWalletToken (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#376) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 3) / 100
BabyDogeCoin_BUSD.swapThreshold (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#413) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 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 (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#9) allows old versions
solc-0.7.4 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 BabyDogeCoin_BUSD.swapBack() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#581-625):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#609)
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() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#140) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#244) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#244) is not in mixedCase
Variable DividendDistributor._token (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#196) is not in mixedCase
Variable DividendDistributor.ADA (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#204) is not in mixedCase
Variable DividendDistributor.WBNB (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#205) is not in mixedCase
Contract BabyDogeCoin_BUSD (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#360-728) is not in CapWords
Parameter BabyDogeCoin_BUSD.tradingStatus(bool)._status (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#571) is not in mixedCase
Parameter BabyDogeCoin_BUSD.cooldownEnabled(bool,uint8)._status (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#576) is not in mixedCase
Parameter BabyDogeCoin_BUSD.cooldownEnabled(bool,uint8)._interval (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#576) is not in mixedCase
Parameter BabyDogeCoin_BUSD.setFees(uint256,uint256,uint256,uint256)._liquidityFee (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#653) is not in mixedCase
Parameter BabyDogeCoin_BUSD.setFees(uint256,uint256,uint256,uint256)._reflectionFee (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#653) is not in mixedCase
Parameter BabyDogeCoin_BUSD.setFees(uint256,uint256,uint256,uint256)._marketingFee (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#653) is not in mixedCase
Parameter BabyDogeCoin_BUSD.setFees(uint256,uint256,uint256,uint256)._feeDenominator (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#653) is not in mixedCase
Parameter BabyDogeCoin_BUSD.setFeeReceivers(address,address)._autoLiquidityReceiver (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#662) is not in mixedCase
Parameter BabyDogeCoin_BUSD.setFeeReceivers(address,address)._marketingFeeReceiver (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#662) is not in mixedCase
Parameter BabyDogeCoin_BUSD.setSwapBackSettings(bool,uint256)._enabled (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#667) is not in mixedCase
Parameter BabyDogeCoin_BUSD.setSwapBackSettings(bool,uint256)._amount (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#667) is not in mixedCase
Parameter BabyDogeCoin_BUSD.setTargetLiquidity(uint256,uint256)._target (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#672) is not in mixedCase
Parameter BabyDogeCoin_BUSD.setTargetLiquidity(uint256,uint256)._denominator (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#672) is not in mixedCase
Parameter BabyDogeCoin_BUSD.setDistributionCriteria(uint256,uint256)._minPeriod (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#677) is not in mixedCase
Parameter BabyDogeCoin_BUSD.setDistributionCriteria(uint256,uint256)._minDistribution (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#677) is not in mixedCase
Variable BabyDogeCoin_BUSD.ADA (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#363) is not in mixedCase
Variable BabyDogeCoin_BUSD.WBNB (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#364) is not in mixedCase
Variable BabyDogeCoin_BUSD.DEAD (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#365) is not in mixedCase
Variable BabyDogeCoin_BUSD.ZERO (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#366) is not in mixedCase
Constant BabyDogeCoin_BUSD._name (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#368) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyDogeCoin_BUSD._symbol (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#369) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyDogeCoin_BUSD._decimals (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#370) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BabyDogeCoin_BUSD._totalSupply (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#372) is not in mixedCase
Variable BabyDogeCoin_BUSD._maxTxAmount (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#373) is not in mixedCase
Variable BabyDogeCoin_BUSD._maxWalletToken (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#376) is not in mixedCase
Variable BabyDogeCoin_BUSD._balances (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#378) is not in mixedCase
Variable BabyDogeCoin_BUSD._allowances (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#379) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#145) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#146)
Prevent variables from having similar names.
Additional information: link
BabyDogeCoin_BUSD.slitherConstructorVariables() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#360-728) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#365)
BabyDogeCoin_BUSD.slitherConstructorVariables() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#360-728) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#366)
BabyDogeCoin_BUSD.slitherConstructorVariables() (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#360-728) uses literals with too many digits:
- distributorGas = 500000 (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#405)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BabyDogeCoin_BUSD.ADA (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#363) is never used in BabyDogeCoin_BUSD (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#360-728)
Remove unused state variables.
Additional information: link
BabyDogeCoin_BUSD.ADA (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#363) should be constant
BabyDogeCoin_BUSD.DEAD (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#365) should be constant
BabyDogeCoin_BUSD.WBNB (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#364) should be constant
BabyDogeCoin_BUSD.ZERO (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#366) should be constant
BabyDogeCoin_BUSD._totalSupply (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#372) should be constant
BabyDogeCoin_BUSD.launchedAt (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#401) should be constant
DividendDistributor.WBNB (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#205) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#218) 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) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#97-99)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#104-106)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#125-129)
tradingStatus(bool) should be declared external:
- BabyDogeCoin_BUSD.tradingStatus(bool) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#571-573)
cooldownEnabled(bool,uint8) should be declared external:
- BabyDogeCoin_BUSD.cooldownEnabled(bool,uint8) (crytic-export/etherscan-contracts/0x816fc6764c1b851973bddbce3a59f298650b1b99.bscscan.com-BabyDogeCoin_BUSD.sol#576-579)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Contract has 15% buy tax and 15% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
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