Baby Loop Token Logo

BLOOP [Baby Loop] Token

About BLOOP

Listings

Token 3 years
CoinGecko 3 years
white paper

We are the fastest growing rewards token on BSC providing 3% auto LOOP Network rewards to our holders. We offer the cheapest gas fees of any swap on BSC and we are using the Google(Search) Business model of providing a valuable service to the masses - for free with the intent of becoming the go to place for people to swap any tokens for a fraction of the cost. We will continue to provide this valuable service indefinitely and expand on it offering cheap cross change swapping while being innovative along the way. We expect this business model to be very successful with word of mouth advertising and we believe that we can generate revenue with this model down the road.
Our tokenomics are simple. 1% AutoBurn, 3% LP Allocation, 3% Rewards & 5% Marketing and we had a 200,000,000,000,000 initial supply with 6.35% of the total supply now burned as of this writing.
We have live staking with high APRs and a very intuitive rewards dashboard where holders can check the total rewards paid out, their individual rewards earned to date and they can also claim their rewards at any time. We also have collectible NFTs featuring a lottery system where if someone gets one of our more rare NFTs they will receive an instant prize.
Our biggest investor value will come when we will be bridging to the LOOP Network in the coming weeks and providing valuable utility on that, up and coming, blockchain. This unique utility, while not disclosed, is extremely promising in that no one else has done it before and there is no competition.
Our team is based out of Halifax, Nova Scotia Canada and is led by a very successful real estate broker/investor who has the marketing skills and the innovation to make Baby Loop the biggest project of 2022! We are fully DOXXED and Pinksale KYC certified and have formed formal partnerships with some of the biggest and most honest influencers in the industry - Including Achilles, Predator & Ding Dang(Large Chinese Community).

Social

Laser Scorebeta Last Audit: 1 September 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links

BabyLoop.swapBack() (#669-715) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#698)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#699)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BabyLoop._transferFrom(address,address,uint256) (#551-600):
External calls:
- swapBack() (#579)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#680-686)
- distributor.deposit{value: amountBNBReflection}() (#697)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#698)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#699)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#705-712)
External calls sending eth:
- swapBack() (#579)
- distributor.deposit{value: amountBNBReflection}() (#697)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#698)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#699)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#705-712)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#582)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#585)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#584)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#625)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#626)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#369-380) ignores return value by RWRD.transfer(shareholder,amount) (#375)
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...)

BabyLoop.swapBack().tmpSuccess (#698) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#698)
(tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#699)
BabyLoop.swapBack().tmpSuccess (#698) is written in both
(tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#699)
tmpSuccess = false (#702)
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)

BabyLoop.manage_blacklist(address[],bool).i (#733) 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

BabyLoop.swapBack() (#669-715) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#705-712)
Ensure that all the return values of the function calls are used.

Additional information: link

Auth.transferOwnership(address).adr (#179) lacks a zero-check on :
- owner = adr (#180)
BabyLoop.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#762) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#763)
BabyLoop.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#762) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#764)
BabyLoop.setFeeReceivers(address,address,address,address)._ecosystemfeeReceiver (#762) lacks a zero-check on :
- ecosystemfeeReceiver = _ecosystemfeeReceiver (#765)
BabyLoop.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#762) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#766)
Check that the address is not zero.

Additional information: link

Pragma version^0.7.4 (#89) 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

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

Additional information: link

BabyLoop.takeFee(address,uint256,bool) (#617-634) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#620)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#622)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#369-380):
External calls:
- RWRD.transfer(shareholder,amount) (#375)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#377)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#378)
Reentrancy in DividendDistributor.process(uint256) (#338-362):
External calls:
- distributeDividend(shareholders[currentIndex]) (#354)
- RWRD.transfer(shareholder,amount) (#375)
State variables written after the call(s):
- currentIndex ++ (#359)
Reentrancy in DividendDistributor.setShare(address,uint256) (#302-316):
External calls:
- distributeDividend(shareholder) (#304)
- RWRD.transfer(shareholder,amount) (#375)
State variables written after the call(s):
- shares[shareholder].amount = amount (#314)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#315)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#297-300) should emit an event for:
- minPeriod = _minPeriod (#298)
- minDistribution = _minDistribution (#299)
BabyLoop.setMaxTxPercent_base1000(uint256) (#542-544) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#543)
BabyLoop.setTxLimit(uint256) (#546-548) should emit an event for:
- _maxTxAmount = amount (#547)
BabyLoop.set_sell_multiplier(uint256) (#653-655) should emit an event for:
- sellMultiplier = Multiplier (#654)
BabyLoop.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#751-760) should emit an event for:
- liquidityFee = _liquidityFee (#752)
- reflectionFee = _reflectionFee (#753)
- marketingFee = _marketingFee (#754)
- ecosystemfee = _ecosystemfee (#755)
- burnFee = _burnFee (#756)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_ecosystemfee).add(_burnFee) (#757)
- feeDenominator = _feeDenominator (#758)
BabyLoop.setSwapBackSettings(bool,uint256) (#769-772) should emit an event for:
- swapThreshold = _amount (#771)
BabyLoop.setTargetLiquidity(uint256,uint256) (#774-777) should emit an event for:
- targetLiquidity = _target (#775)
- targetLiquidityDenominator = _denominator (#776)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.distributeDividend(address) (#369-380) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#375)
BabyLoop.multiTransfer(address,address[],uint256[]) (#803-827) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#819)
BabyLoop.multiTransfer_fixed(address,address[],uint256) (#829-848) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#840)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BabyLoop.constructor() (#480-505):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#482)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#483)
- _balances[msg.sender] = _totalSupply (#503)
- autoLiquidityReceiver = msg.sender (#498)
- burnFeeReceiver = DEAD (#501)
- distributor = new DividendDistributor(address(router)) (#485)
- ecosystemfeeReceiver = 0xeFEB579e618d64E6d5588d41B1C5aA5c5C6B69ED (#500)
- isDividendExempt[pair] = true (#494)
- isDividendExempt[address(this)] = true (#495)
- isDividendExempt[DEAD] = true (#496)
- isFeeExempt[msg.sender] = true (#487)
- isTimelockExempt[msg.sender] = true (#490)
- isTimelockExempt[DEAD] = true (#491)
- isTimelockExempt[address(this)] = true (#492)
- isTxLimitExempt[msg.sender] = true (#488)
- marketingFeeReceiver = 0xeFEB579e618d64E6d5588d41B1C5aA5c5C6B69ED (#499)
Reentrancy in DividendDistributor.deposit() (#318-336):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#325-330)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#335)
- totalDividends = totalDividends.add(amount) (#334)
Reentrancy in DividendDistributor.distributeDividend(address) (#369-380):
External calls:
- RWRD.transfer(shareholder,amount) (#375)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#376)
Reentrancy in DividendDistributor.setShare(address,uint256) (#302-316):
External calls:
- distributeDividend(shareholder) (#304)
- RWRD.transfer(shareholder,amount) (#375)
State variables written after the call(s):
- addShareholder(shareholder) (#308)
- shareholderIndexes[shareholder] = shareholders.length (#402)
- removeShareholder(shareholder) (#310)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#408)
- addShareholder(shareholder) (#308)
- shareholders.push(shareholder) (#403)
- removeShareholder(shareholder) (#310)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#407)
- shareholders.pop() (#409)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#313)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BabyLoop._transferFrom(address,address,uint256) (#551-600):
External calls:
- swapBack() (#579)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#680-686)
- distributor.deposit{value: amountBNBReflection}() (#697)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#698)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#699)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#705-712)
- distributor.setShare(sender,_balances[sender]) (#589)
- distributor.setShare(recipient,_balances[recipient]) (#593)
- distributor.process(distributorGas) (#596)
External calls sending eth:
- swapBack() (#579)
- distributor.deposit{value: amountBNBReflection}() (#697)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#698)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#699)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#705-712)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#598)
Reentrancy in BabyLoop._transferFrom(address,address,uint256) (#551-600):
External calls:
- swapBack() (#579)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#680-686)
- distributor.deposit{value: amountBNBReflection}() (#697)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#698)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#699)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#705-712)
External calls sending eth:
- swapBack() (#579)
- distributor.deposit{value: amountBNBReflection}() (#697)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#698)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#699)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#705-712)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#627)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#584)
- Transfer(sender,burnFeeReceiver,burnTokens) (#630)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#584)
Reentrancy in BabyLoop.constructor() (#480-505):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#482)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#504)
Reentrancy in BabyLoop.swapBack() (#669-715):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#680-686)
- distributor.deposit{value: amountBNBReflection}() (#697)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#698)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#699)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#705-712)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#697)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#698)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#699)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#705-712)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#713)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#364-367) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#365-366)
BabyLoop._transferFrom(address,address,uint256) (#551-600) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#572)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#338-362) has costly operations inside a loop:
- currentIndex = 0 (#350)
DividendDistributor.distributeDividend(address) (#369-380) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#374)
DividendDistributor.process(uint256) (#338-362) has costly operations inside a loop:
- currentIndex ++ (#359)
Use a local variable to hold the loop computation result.

Additional information: link

BabyLoop._maxTxAmount (#426) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(1).div(100)
BabyLoop._maxWalletToken (#427) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(1).div(100)
BabyLoop.totalFee (#446) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + ecosystemfee + burnFee
BabyLoop.swapThreshold (#476) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 8000
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Low level call in BabyLoop.swapBack() (#669-715):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#698)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#699)
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() (#194) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#297) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#297) is not in mixedCase
Variable DividendDistributor._token (#250) is not in mixedCase
Variable DividendDistributor.RWRD (#258) is not in mixedCase
Variable DividendDistributor.WBNB (#259) is not in mixedCase
Function BabyLoop.setMaxWalletPercent_base1000(uint256) (#539-541) is not in mixedCase
Parameter BabyLoop.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#539) is not in mixedCase
Function BabyLoop.setMaxTxPercent_base1000(uint256) (#542-544) is not in mixedCase
Parameter BabyLoop.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#542) is not in mixedCase
Function BabyLoop.clearStuckBalance_sender(uint256) (#648-651) is not in mixedCase
Function BabyLoop.set_sell_multiplier(uint256) (#653-655) is not in mixedCase
Parameter BabyLoop.set_sell_multiplier(uint256).Multiplier (#653) is not in mixedCase
Parameter BabyLoop.cooldownEnabled(bool,uint8)._status (#664) is not in mixedCase
Parameter BabyLoop.cooldownEnabled(bool,uint8)._interval (#664) is not in mixedCase
Function BabyLoop.enable_blacklist(bool) (#728-730) is not in mixedCase
Parameter BabyLoop.enable_blacklist(bool)._status (#728) is not in mixedCase
Function BabyLoop.manage_blacklist(address[],bool) (#732-736) is not in mixedCase
Parameter BabyLoop.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#751) is not in mixedCase
Parameter BabyLoop.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#751) is not in mixedCase
Parameter BabyLoop.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#751) is not in mixedCase
Parameter BabyLoop.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._ecosystemfee (#751) is not in mixedCase
Parameter BabyLoop.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#751) is not in mixedCase
Parameter BabyLoop.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#751) is not in mixedCase
Parameter BabyLoop.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#762) is not in mixedCase
Parameter BabyLoop.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#762) is not in mixedCase
Parameter BabyLoop.setFeeReceivers(address,address,address,address)._ecosystemfeeReceiver (#762) is not in mixedCase
Parameter BabyLoop.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#762) is not in mixedCase
Parameter BabyLoop.setSwapBackSettings(bool,uint256)._enabled (#769) is not in mixedCase
Parameter BabyLoop.setSwapBackSettings(bool,uint256)._amount (#769) is not in mixedCase
Parameter BabyLoop.setTargetLiquidity(uint256,uint256)._target (#774) is not in mixedCase
Parameter BabyLoop.setTargetLiquidity(uint256,uint256)._denominator (#774) is not in mixedCase
Parameter BabyLoop.setDistributionCriteria(uint256,uint256)._minPeriod (#779) is not in mixedCase
Parameter BabyLoop.setDistributionCriteria(uint256,uint256)._minDistribution (#779) is not in mixedCase
Function BabyLoop.multiTransfer_fixed(address,address[],uint256) (#829-848) is not in mixedCase
Variable BabyLoop.WBNB (#416) is not in mixedCase
Variable BabyLoop.DEAD (#417) is not in mixedCase
Variable BabyLoop.ZERO (#418) is not in mixedCase
Constant BabyLoop._name (#420) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyLoop._symbol (#421) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyLoop._decimals (#422) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BabyLoop._totalSupply (#424) is not in mixedCase
Variable BabyLoop._maxTxAmount (#426) is not in mixedCase
Variable BabyLoop._maxWalletToken (#427) is not in mixedCase
Variable BabyLoop._balances (#429) is not in mixedCase
Variable BabyLoop._allowances (#430) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

BabyLoop.slitherConstructorVariables() (#413-852) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#417)
BabyLoop.slitherConstructorVariables() (#413-852) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#418)
BabyLoop.slitherConstructorVariables() (#413-852) uses literals with too many digits:
- _totalSupply = 200000000000000 * (10 ** _decimals) (#424)
BabyLoop.slitherConstructorVariables() (#413-852) uses literals with too many digits:
- distributorGas = 500000 (#469)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BabyLoop.DEAD (#417) should be constant
BabyLoop.WBNB (#416) should be constant
BabyLoop.ZERO (#418) should be constant
BabyLoop._totalSupply (#424) should be constant
BabyLoop.gweiLimit (#465) should be constant
BabyLoop.gweiLimitBlocksAffected (#466) should be constant
DividendDistributor.WBNB (#259) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#272) 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) (#163-165)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#167-169)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#179-183)
tradingAllowed() should be declared external:
- BabyLoop.tradingAllowed() (#658-661)
cooldownEnabled(bool,uint8) should be declared external:
- BabyLoop.cooldownEnabled(bool,uint8) (#664-667)
enable_blacklist(bool) should be declared external:
- BabyLoop.enable_blacklist(bool) (#728-730)
manage_blacklist(address[],bool) should be declared external:
- BabyLoop.manage_blacklist(address[],bool) (#732-736)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 12% buy tax and 12% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


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


Token is deployed only at one blockchain


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to find audit link on the website


Unable to find Twitter link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for BLOOP

News for BLOOP