Baby StepD Token Logo

BSTEPD [Baby StepD] Token

About BSTEPD

Listings

Not Found
Token 19 months

The BabyStepD App converts steps into a token BSTEPD, offering millions easy access to the world of cryptocurrencies. Move2Earn web3 fitness and lifestyle for family with inbuilt NFT support on the BSC chain.

Social

Laser Scorebeta Last Audit: 8 May 2022

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


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

Contract locking ether found:
Contract BabyStepD (#340-499) has payable functions:
- BabyStepD.receive() (#379)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

BabyStepD.setTaxShares(uint256,uint256,uint256) (#472-481) should emit an event for:
- marketingShare = _marketingShare (#477)
- teamShare = _teamShare (#478)
- charityShare = _charityShare (#479)
- totalShare = marketingShare.add(teamShare).add(charityShare) (#480)
BabyStepD.setTriggerShareTax(uint256) (#487-489) should emit an event for:
- triggerShareTax = _amount (#488)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#323) lacks a zero-check on :
- owner = adr (#324)
BabyStepD.setReceivers(address,address,address)._marketingReceiver (#463) lacks a zero-check on :
- marketingReceiver = _marketingReceiver (#467)
BabyStepD.setReceivers(address,address,address)._teamReceiver (#464) lacks a zero-check on :
- teamReceiver = _teamReceiver (#468)
BabyStepD.setReceivers(address,address,address)._charityReceiver (#465) lacks a zero-check on :
- charityReceiver = _charityReceiver (#469)
BabyStepD.setPair(address)._pair (#483) lacks a zero-check on :
- pair = _pair (#484)
Check that the address is not zero.

Additional information: link

Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.5']
- ^0.8.0 (#8)
- ^0.8.5 (#237)
- ^0.8.5 (#259)
- ^0.8.5 (#336)
Use one Solidity version.

Additional information: link

SafeMath.div(uint256,uint256,string) (#195-204) is never used and should be removed
SafeMath.mod(uint256,uint256) (#155-157) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#221-230) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#26-32) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#68-73) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#80-85) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#51-61) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#39-44) is never used and should be removed
Remove unused functions.

Additional information: link

BabyStepD.totalShare (#362) is set pre-construction with a non-constant function or state variable:
- marketingShare + teamShare + charityShare
BabyStepD.triggerShareTax (#364) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 5000
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.8.0 (#8) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Parameter BabyStepD.setReceivers(address,address,address)._marketingReceiver (#463) is not in mixedCase
Parameter BabyStepD.setReceivers(address,address,address)._teamReceiver (#464) is not in mixedCase
Parameter BabyStepD.setReceivers(address,address,address)._charityReceiver (#465) is not in mixedCase
Parameter BabyStepD.setTaxShares(uint256,uint256,uint256)._marketingShare (#473) is not in mixedCase
Parameter BabyStepD.setTaxShares(uint256,uint256,uint256)._teamShare (#474) is not in mixedCase
Parameter BabyStepD.setTaxShares(uint256,uint256,uint256)._charityShare (#475) is not in mixedCase
Parameter BabyStepD.setPair(address)._pair (#483) is not in mixedCase
Parameter BabyStepD.setTriggerShareTax(uint256)._amount (#487) is not in mixedCase
Variable BabyStepD.DEAD (#343) is not in mixedCase
Variable BabyStepD.ZERO (#344) is not in mixedCase
Constant BabyStepD._name (#346) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyStepD._symbol (#347) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyStepD._decimals (#348) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BabyStepD._totalSupply (#349) is not in mixedCase
Variable BabyStepD._balances (#350) is not in mixedCase
Variable BabyStepD._allowances (#351) is not in mixedCase
Constant BabyStepD.taxDenominator (#355) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

BabyStepD.slitherConstructorVariables() (#340-499) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#343)
BabyStepD.slitherConstructorVariables() (#340-499) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#344)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BabyStepD.DEAD (#343) should be constant
BabyStepD.ZERO (#344) should be constant
BabyStepD._totalSupply (#349) should be constant
BabyStepD.buyTax (#353) should be constant
BabyStepD.sellTax (#354) 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) (#291-293)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#298-300)
selfUnauthorize() should be declared external:
- Auth.selfUnauthorize() (#302-304)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#323-327)
getCirculatingSupply() should be declared external:
- BabyStepD.getCirculatingSupply() (#495-497)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 3% buy tax and 3% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


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 Twitter account


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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 token/project description on the website or on BscScan, CoinMarketCap


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for BSTEPD