BABYNFTART Token Logo

BBNFT [BABYNFTART] Token

About BBNFT

Listings

Token 3 years
white paper

BabyNFTart aims to build a bridge between top-notch artists and blockchain and support the growth of native crypto NFT artists.

Laser Scorebeta Last Audit: 30 November 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

BABYNFTART.swapBack() (#548-587) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#573)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BABYNFTART._transferFrom(address,address,uint256) (#480-503):
External calls:
- swapBack() (#485)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#559-565)
- distributor.deposit{value: amountBNBReflection}() (#572)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#573)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#577-584)
- triggerAutoBuyback() (#486)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#625-630)
External calls sending eth:
- swapBack() (#485)
- distributor.deposit{value: amountBNBReflection}() (#572)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#573)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#577-584)
- triggerAutoBuyback() (#486)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#625-630)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#490)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#494)
- amountReceived = takeFee(sender,recipient,amount) (#492)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#535)
- triggerAutoBuyback() (#486)
- inSwap = true (#425)
- inSwap = false (#425)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#321-332) ignores return value by BUSD.transfer(shareholder,amount) (#327)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

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

Additional information: link

BABYNFTART.slitherConstructorVariables() (#365-743) uses literals with too many digits:
- distributorGas = 500000 (#420)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BABYNFTART.BUSD (#368) is never used in BABYNFTART (#365-743)
Remove unused state variables.

Additional information: link

DividendDistributor.dividendsPerShareAccuracyFactor (#222) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

getUnpaidEarnings(address) should be declared external:
- BABYNFTART.getUnpaidEarnings(address) (#719-721)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#252-266):
External calls:
- distributeDividend(shareholder) (#254)
- BUSD.transfer(shareholder,amount) (#327)
State variables written after the call(s):
- shares[shareholder].amount = amount (#264)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#265)
Apply the check-effects-interactions pattern.

Additional information: link

BABYNFTART.swapBack() (#548-587) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#577-584)
Ensure that all the return values of the function calls are used.

Additional information: link

BABYNFTART.setTargetLiquidity(uint256,uint256) (#701-704) should emit an event for:
- targetLiquidity = _target (#702)
- targetLiquidityDenominator = _denominator (#703)
Emit an event for critical parameter changes.

Additional information: link

BABYNFTART.setFeeReceivers(address,address)._marketingFeeReceiver (#690) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#692)
Check that the address is not zero.

Additional information: link

Reentrancy in BABYNFTART.triggerManualBuyback(uint256,bool) (#597-603):
External calls:
- buyTokens(amount,DEAD) (#598)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#625-630)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#600)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BABYNFTART.triggerManualBuyback(uint256,bool) (#597-603):
External calls:
- buyTokens(amount,DEAD) (#598)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#625-630)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#601)
Apply the check-effects-interactions pattern.

Additional information: link

BABYNFTART.isOverLiquified(uint256,uint256) (#736-738) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#737)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#290-314) has costly operations inside a loop:
- currentIndex ++ (#311)
Use a local variable to hold the loop computation result.

Additional information: link

BABYNFTART.swapThreshold (#423) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 200
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

solc-0.8.5 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 BABYNFTART.swapBack() (#548-587):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#573)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable BABYNFTART._allowances (#381) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average 30d PancakeSwap volume is low.


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Telegram account link seems to be invalid


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to crawl data from the website


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for BBNFT