Baby Stepn Token Logo

$BABYSTEPN [Baby Stepn] Token

About $BABYSTEPN

Listings

Token 4 years
white paper

Baby STEPN is a meme token based on the cutest baby on the BSC blockchain 👶

We are a rewards token based on $GMT (STEPN). You are able to fully track your rewards on the custom built DAPP, along with many other features. Future plans include an NFT collection and real life utilities.

The team is fully audited and KYC’d ✅

Social

Laser Scorebeta Last Audit: 27 June 2022

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

BABYSTEPN.swapBack() (#612-663) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{value: amountBNBMarketing}() (#645)
- (tmpSuccess,None) = address(opsFeeReceiver).call{value: amountBNBOps}() (#646)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BABYSTEPN._transferFrom(address,address,uint256) (#487-536):
External calls:
- swapBack() (#495)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#626-632)
- dividendDistributor.deposit{value: amountBNBReflection}() (#643)
- (tmpSuccess) = address(marketingFeeReceiver).call{value: amountBNBMarketing}() (#645)
- (tmpSuccess,None) = address(opsFeeReceiver).call{value: amountBNBOps}() (#646)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#651-658)
External calls sending eth:
- swapBack() (#495)
- dividendDistributor.deposit{value: amountBNBReflection}() (#643)
- (tmpSuccess) = address(marketingFeeReceiver).call{value: amountBNBMarketing}() (#645)
- (tmpSuccess,None) = address(opsFeeReceiver).call{value: amountBNBOps}() (#646)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#651-658)
State variables written after the call(s):
- amountReceived = takeBuyFee(sender,recipient,amount) (#504)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#556)
- amountReceived = takeSellFee(sender,amount) (#510)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#567)
- amountReceived = takeTransferFee(sender,amount) (#516)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#579)
- _balances[sender] = _balances[sender].sub(amount) (#520)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#521)
Apply the check-effects-interactions pattern.

Additional information: link

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

BABYSTEPN.swapBack().tmpSuccess (#645) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{value: amountBNBMarketing}() (#645)
(tmpSuccess,None) = address(opsFeeReceiver).call{value: amountBNBOps}() (#646)
BABYSTEPN.swapBack().tmpSuccess (#645) is written in both
(tmpSuccess,None) = address(opsFeeReceiver).call{value: amountBNBOps}() (#646)
tmpSuccess = false (#648)
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.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

Reentrancy in DividendDistributor.distributeDividend(address) (#280-291):
External calls:
- RWRD.transfer(shareholder,amount) (#286)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#288)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#289)
Reentrancy in DividendDistributor.process(uint256) (#249-273):
External calls:
- distributeDividend(shareholders[currentIndex]) (#265)
- RWRD.transfer(shareholder,amount) (#286)
State variables written after the call(s):
- currentIndex ++ (#270)
Reentrancy in DividendDistributor.setShare(address,uint256) (#213-227):
External calls:
- distributeDividend(shareholder) (#215)
- RWRD.transfer(shareholder,amount) (#286)
State variables written after the call(s):
- shares[shareholder].amount = amount (#225)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#226)
Apply the check-effects-interactions pattern.

Additional information: link

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

BABYSTEPN.swapBack() (#612-663) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#651-658)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#208-211) should emit an event for:
- minPeriod = _minPeriod (#209)
- minDistribution = _minDistribution (#210)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#91) lacks a zero-check on :
- owner = adr (#92)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#280-291) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#286)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BABYSTEPN.constructor() (#422-453):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#425)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#431)
- _balances[msg.sender] = _totalSupply (#451)
- setAutomatedMarketMakerPair(pair,true) (#429)
- _markerPairs.push(_pair) (#778)
- _markerPairs[i] = _markerPairs[_markerPairs.length - 1] (#783)
- _markerPairs.pop() (#784)
- autoLiquidityReceiver = msg.sender (#449)
- setAutomatedMarketMakerPair(pair,true) (#429)
- automatedMarketMakerPairs[_pair] = _value (#775)
- dividendDistributor = new DividendDistributor(address(router)) (#427)
- isDividendExempt[pair] = true (#443)
- isDividendExempt[msg.sender] = true (#444)
- isDividendExempt[address(this)] = true (#445)
- isDividendExempt[DEAD] = true (#446)
- isDividendExempt[ZERO] = true (#447)
- isFeeExempt[msg.sender] = true (#433)
- isFeeExempt[address(this)] = true (#437)
- isMaxWalletExempt[msg.sender] = true (#435)
- isMaxWalletExempt[address(this)] = true (#439)
- isMaxWalletExempt[pair] = true (#441)
- isTxLimitExempt[msg.sender] = true (#434)
- isTxLimitExempt[address(this)] = true (#438)
Reentrancy in DividendDistributor.deposit() (#229-247):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#236-241)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#246)
- totalDividends = totalDividends.add(amount) (#245)
Reentrancy in DividendDistributor.distributeDividend(address) (#280-291):
External calls:
- RWRD.transfer(shareholder,amount) (#286)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#287)
Reentrancy in DividendDistributor.setShare(address,uint256) (#213-227):
External calls:
- distributeDividend(shareholder) (#215)
- RWRD.transfer(shareholder,amount) (#286)
State variables written after the call(s):
- addShareholder(shareholder) (#219)
- shareholderIndexes[shareholder] = shareholders.length (#313)
- removeShareholder(shareholder) (#221)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#319)
- addShareholder(shareholder) (#219)
- shareholders.push(shareholder) (#314)
- removeShareholder(shareholder) (#221)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#318)
- shareholders.pop() (#320)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#224)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BABYSTEPN._transferFrom(address,address,uint256) (#487-536):
External calls:
- swapBack() (#495)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#626-632)
- dividendDistributor.deposit{value: amountBNBReflection}() (#643)
- (tmpSuccess) = address(marketingFeeReceiver).call{value: amountBNBMarketing}() (#645)
- (tmpSuccess,None) = address(opsFeeReceiver).call{value: amountBNBOps}() (#646)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#651-658)
External calls sending eth:
- swapBack() (#495)
- dividendDistributor.deposit{value: amountBNBReflection}() (#643)
- (tmpSuccess) = address(marketingFeeReceiver).call{value: amountBNBMarketing}() (#645)
- (tmpSuccess,None) = address(opsFeeReceiver).call{value: amountBNBOps}() (#646)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#651-658)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#568)
- amountReceived = takeSellFee(sender,amount) (#510)
- Transfer(sender,address(this),feeAmount) (#580)
- amountReceived = takeTransferFee(sender,amount) (#516)
- Transfer(sender,address(this),feeAmount) (#557)
- amountReceived = takeBuyFee(sender,recipient,amount) (#504)
Reentrancy in BABYSTEPN._transferFrom(address,address,uint256) (#487-536):
External calls:
- swapBack() (#495)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#626-632)
- dividendDistributor.deposit{value: amountBNBReflection}() (#643)
- (tmpSuccess) = address(marketingFeeReceiver).call{value: amountBNBMarketing}() (#645)
- (tmpSuccess,None) = address(opsFeeReceiver).call{value: amountBNBOps}() (#646)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#651-658)
- dividendDistributor.setShare(sender,_balances[sender]) (#525)
- dividendDistributor.setShare(recipient,_balances[recipient]) (#529)
- dividendDistributor.process(distributorGas) (#532)
External calls sending eth:
- swapBack() (#495)
- dividendDistributor.deposit{value: amountBNBReflection}() (#643)
- (tmpSuccess) = address(marketingFeeReceiver).call{value: amountBNBMarketing}() (#645)
- (tmpSuccess,None) = address(opsFeeReceiver).call{value: amountBNBOps}() (#646)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#651-658)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#534)
Reentrancy in BABYSTEPN.changeDistributionCriteria(uint256,uint256) (#807-811):
External calls:
- dividendDistributor.setDistributionCriteria(newinPeriod,newMinDistribution) (#808)
Event emitted after the call(s):
- ChangedDistributionCriteria(newinPeriod,newMinDistribution) (#810)
Reentrancy in BABYSTEPN.changeIsDividendExempt(address,bool) (#793-805):
External calls:
- dividendDistributor.setShare(holder,0) (#798)
- dividendDistributor.setShare(holder,_balances[holder]) (#800)
Event emitted after the call(s):
- ChangedDividendExempt(holder,exempt) (#803)
Reentrancy in BABYSTEPN.constructor() (#422-453):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#425)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(_pair,_value) (#790)
- setAutomatedMarketMakerPair(pair,true) (#429)
- Transfer(address(0),msg.sender,_totalSupply) (#452)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#275-278) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#276-277)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#249-273) has costly operations inside a loop:
- currentIndex = 0 (#261)
DividendDistributor.distributeDividend(address) (#280-291) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#285)
DividendDistributor.process(uint256) (#249-273) has costly operations inside a loop:
- currentIndex ++ (#270)
BABYSTEPN.setAutomatedMarketMakerPair(address,bool) (#772-791) has costly operations inside a loop:
- _markerPairs.pop() (#784)
Use a local variable to hold the loop computation result.

Additional information: link

BABYSTEPN.totalBuyFee (#403) is set pre-construction with a non-constant function or state variable:
- liquidityFee.add(marketingFee).add(opsFee).add(rewardsFee)
BABYSTEPN.totalSellFee (#404) is set pre-construction with a non-constant function or state variable:
- sellFeeLiquidity.add(sellFeeMarketing).add(sellFeeOps).add(sellFeeRewards)
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 BABYSTEPN.swapBack() (#612-663):
- (tmpSuccess) = address(marketingFeeReceiver).call{value: amountBNBMarketing}() (#645)
- (tmpSuccess,None) = address(opsFeeReceiver).call{value: amountBNBOps}() (#646)
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() (#106) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#208) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#208) is not in mixedCase
Variable DividendDistributor._token (#161) is not in mixedCase
Variable DividendDistributor.RWRD (#169) is not in mixedCase
Constant DividendDistributor.dividendsPerShareAccuracyFactor (#183) is not in UPPER_CASE_WITH_UNDERSCORES
Event BABYSTEPNupdateMinPeriod(uint256) (#346) is not in CapWords
Parameter BABYSTEPN.tradingStatus(bool)._status (#603) is not in mixedCase
Function BABYSTEPN.manage_blacklist(address[],bool) (#681-688) is not in mixedCase
Parameter BABYSTEPN.setBL(address,bool)._address (#690) is not in mixedCase
Parameter BABYSTEPN.setBL(address,bool)._bool (#690) is not in mixedCase
Parameter BABYSTEPN.updateF(uint256)._number (#696) is not in mixedCase
Parameter BABYSTEPN.setBuyFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#722) is not in mixedCase
Parameter BABYSTEPN.setBuyFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#722) is not in mixedCase
Parameter BABYSTEPN.setBuyFees(uint256,uint256,uint256,uint256,uint256)._opsFee (#722) is not in mixedCase
Parameter BABYSTEPN.setBuyFees(uint256,uint256,uint256,uint256,uint256)._rewardsFee (#722) is not in mixedCase
Parameter BABYSTEPN.setBuyFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#722) is not in mixedCase
Parameter BABYSTEPN.setSellFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#735) is not in mixedCase
Parameter BABYSTEPN.setSellFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#735) is not in mixedCase
Parameter BABYSTEPN.setSellFees(uint256,uint256,uint256,uint256,uint256)._opsFee (#735) is not in mixedCase
Parameter BABYSTEPN.setSellFees(uint256,uint256,uint256,uint256,uint256)._rewardsFee (#735) is not in mixedCase
Parameter BABYSTEPN.setSellFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#735) is not in mixedCase
Parameter BABYSTEPN.setTransferFee(uint256)._transferFee (#748) is not in mixedCase
Parameter BABYSTEPN.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#756) is not in mixedCase
Parameter BABYSTEPN.setFeeReceivers(address,address,address)._marketingFeeReceiver (#756) is not in mixedCase
Parameter BABYSTEPN.setFeeReceivers(address,address,address)._opsFeeReceiver (#756) is not in mixedCase
Parameter BABYSTEPN.setSwapBackSettings(bool,uint256)._enabled (#765) is not in mixedCase
Parameter BABYSTEPN.setSwapBackSettings(bool,uint256)._amount (#765) is not in mixedCase
Parameter BABYSTEPN.setAutomatedMarketMakerPair(address,bool)._pair (#772) is not in mixedCase
Parameter BABYSTEPN.setAutomatedMarketMakerPair(address,bool)._value (#772) is not in mixedCase
Variable BABYSTEPN.WBNB (#348) is not in mixedCase
Constant BABYSTEPN._name (#352) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BABYSTEPN._symbol (#353) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BABYSTEPN._decimals (#354) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BABYSTEPN._totalSupply (#356) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BABYSTEPN._maxTxAmount (#358) is not in mixedCase
Variable BABYSTEPN._maxWalletAmount (#359) is not in mixedCase
Variable BABYSTEPN._markerPairs (#364) is not in mixedCase
Constant BABYSTEPN.maxFee (#400) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

BABYSTEPN.slitherConstructorVariables() (#324-827) uses literals with too many digits:
- distributorGas = 500000 (#376)
BABYSTEPN.slitherConstructorConstantVariables() (#324-827) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#349)
BABYSTEPN.slitherConstructorConstantVariables() (#324-827) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#350)
BABYSTEPN.slitherConstructorConstantVariables() (#324-827) uses literals with too many digits:
- _totalSupply = 1000000000 * 10 ** _decimals (#356)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Contract ticker ($BABYSTEPN) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Holders:

Contract has 10% buy tax and 15% 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.


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


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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 on CoinMarketCap

Additional information: link


Unable to find audit 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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for $BABYSTEPN

News for $BABYSTEPN