Baby Super Doge is a deflationary token specifically designed to achieve scarcity over time. All holders of Baby Super Doge will earn more baby super doge that is automatically sent to your wallet by simply by holding Baby Doge coins in your wallet. Watch your amount of baby super doge grow in your wallet as all holders will automatically receive a 5% fee from every transaction that happens in our network.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#496-499)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#505-512)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#514-516)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#519-524)
unlock() should be declared external:
- Ownable.unlock() (#527-535)
name() should be declared external:
- BabySuperDoge.name() (#624-626)
changeAdvestisementWallets(address) should be declared external:
- BabySuperDoge.changeAdvestisementWallets(address) (#628-630)
symbol() should be declared external:
- BabySuperDoge.symbol() (#632-634)
decimals() should be declared external:
- BabySuperDoge.decimals() (#636-638)
totalSupply() should be declared external:
- BabySuperDoge.totalSupply() (#640-642)
balanceOf(address) should be declared external:
- BabySuperDoge.balanceOf(address) (#644-647)
transfer(address,uint256) should be declared external:
- BabySuperDoge.transfer(address,uint256) (#649-656)
allowance(address,address) should be declared external:
- BabySuperDoge.allowance(address,address) (#658-665)
approve(address,uint256) should be declared external:
- BabySuperDoge.approve(address,uint256) (#667-674)
transferFrom(address,address,uint256) should be declared external:
- BabySuperDoge.transferFrom(address,address,uint256) (#676-691)
increaseAllowance(address,uint256) should be declared external:
- BabySuperDoge.increaseAllowance(address,uint256) (#693-704)
decreaseAllowance(address,uint256) should be declared external:
- BabySuperDoge.decreaseAllowance(address,uint256) (#706-720)
isExcludedFromReward(address) should be declared external:
- BabySuperDoge.isExcludedFromReward(address) (#722-724)
totalFees() should be declared external:
- BabySuperDoge.totalFees() (#726-728)
reflectionFromToken(uint256,bool) should be declared external:
- BabySuperDoge.reflectionFromToken(uint256,bool) (#730-743)
excludeFromFee(address) should be declared external:
- BabySuperDoge.excludeFromFee(address) (#804-806)
manageAmmPairs(address,bool) should be declared external:
- BabySuperDoge.manageAmmPairs(address,bool) (#808-810)
includeInFee(address) should be declared external:
- BabySuperDoge.includeInFee(address) (#812-814)
isExcludedFromFee(address) should be declared external:
- BabySuperDoge.isExcludedFromFee(address) (#1025-1027)
turnOffAntibotMode() should be declared external:
- BabySuperDoge.turnOffAntibotMode() (#1041-1043)
setAirdropContract(address) should be declared external:
- BabySuperDoge.setAirdropContract(address) (#1045-1047)
setAntibotModeWhitelist(address[],address[]) should be declared external:
- BabySuperDoge.setAntibotModeWhitelist(address[],address[]) (#1049-1057)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
BabySuperDoge.allowance(address,address).owner (#658) shadows:
- Ownable.owner() (#477-479) (function)
BabySuperDoge._approve(address,address,uint256).owner (#1030) shadows:
- Ownable.owner() (#477-479) (function)
Rename the local variables that shadow another component.
Additional information: link
BabySuperDoge.setTaxFeePercent(uint256,uint256) (#816-822) should emit an event for:
- _buyTaxFee = buyTaxFee (#820)
- _sellTaxFee = sellTaxFee (#821)
BabySuperDoge.setBurnFee(uint256) (#824-826) should emit an event for:
- _burnFee = fee (#825)
BabySuperDoge.setAdvestisementFeePercent(uint256,uint256) (#828-834) should emit an event for:
- _sellAdvestisementFee = sellAdvestisementFee (#832)
- _buyAdvestisementFee = buyAdvestisementFee (#833)
BabySuperDoge.setMaxTxPercent(uint256) (#836-838) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#837)
Emit an event for critical parameter changes.
Additional information: link
BabySuperDoge.changeAdvestisementWallets(address).wallet (#628) lacks a zero-check on :
- advertisementWallet = wallet (#629)
BabySuperDoge.setAirdropContract(address)._airdropContract (#1045) lacks a zero-check on :
- airdropContract = _airdropContract (#1046)
Check that the address is not zero.
Additional information: link
Reentrancy in BabySuperDoge.constructor() (#604-622):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#611-612)
State variables written after the call(s):
- excludeFromReward(DEAD_ADDRESS) (#619)
- _excluded.push(account) (#764)
- excludeFromReward(DEAD_ADDRESS) (#619)
- _isExcluded[account] = true (#763)
- _isExcludedFromFee[owner()] = true (#616)
- _isExcludedFromFee[address(this)] = true (#617)
- excludeFromReward(DEAD_ADDRESS) (#619)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#761)
- ammPairs[_uniswapV2Pair] = true (#614)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BabySuperDoge.constructor() (#604-622):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#611-612)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#621)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#527-535) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#532)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#286-297) uses assembly
- INLINE ASM (#293-295)
Address._functionCallWithValue(address,bytes,uint256,string) (#412-440) uses assembly
- INLINE ASM (#432-435)
Do not use evm assembly.
Additional information: link
BabySuperDoge.includeInReward(address) (#767-778) has costly operations inside a loop:
- _excluded.pop() (#774)
BabySuperDoge._reflectFee(uint256,uint256) (#840-843) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#841)
BabySuperDoge._reflectFee(uint256,uint256) (#840-843) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#842)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#412-440) is never used and should be removed
Address.functionCall(address,bytes) (#347-352) is never used and should be removed
Address.functionCall(address,bytes,string) (#360-366) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#379-391) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#399-410) is never used and should be removed
Address.isContract(address) (#286-297) is never used and should be removed
Address.sendValue(address,uint256) (#315-327) is never used and should be removed
Context._msgData() (#259-262) is never used and should be removed
SafeMath.mod(uint256,uint256) (#228-230) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#244-251) is never used and should be removed
Remove unused functions.
Additional information: link
BabySuperDoge._rTotal (#570) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BabySuperDoge._taxFee (#583) is set pre-construction with a non-constant function or state variable:
- _buyTaxFee
BabySuperDoge._previousTaxFee (#584) is set pre-construction with a non-constant function or state variable:
- _taxFee
BabySuperDoge._previousBurn (#587) is set pre-construction with a non-constant function or state variable:
- _burnFee
BabySuperDoge._advestisementFee (#592) is set pre-construction with a non-constant function or state variable:
- _buyAdvestisementFee
BabySuperDoge._previousAdvestisementFee (#593) is set pre-construction with a non-constant function or state variable:
- _advestisementFee
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 Address.sendValue(address,uint256) (#315-327):
- (success) = recipient.call{value: amount}() (#322)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#412-440):
- (success,returndata) = target.call{value: weiValue}(data) (#421-423)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Router01.WETH() (#551) is not in mixedCase
Parameter BabySuperDoge.calculateTaxFee(uint256)._amount (#988) is not in mixedCase
Parameter BabySuperDoge.calculateAdvestisementFee(uint256)._amount (#992) is not in mixedCase
Parameter BabySuperDoge.calculateBurnFee(uint256)._amount (#1000) is not in mixedCase
Parameter BabySuperDoge.setAirdropContract(address)._airdropContract (#1045) is not in mixedCase
Variable BabySuperDoge._buyTaxFee (#577) is not in mixedCase
Variable BabySuperDoge._buyAdvestisementFee (#578) is not in mixedCase
Variable BabySuperDoge._sellTaxFee (#580) is not in mixedCase
Variable BabySuperDoge._sellAdvestisementFee (#581) is not in mixedCase
Variable BabySuperDoge._advestisementFee (#592) is not in mixedCase
Variable BabySuperDoge._maxTxAmount (#598) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#260)" inContext (#254-263)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#920) is too similar to BabySuperDoge._getValues(uint256).tAdvertisement (#861)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#920) is too similar to BabySuperDoge._getTValues(uint256).tAdvertisement (#893)
Variable BabySuperDoge._takeAdvertisement(uint256).rAdvertisement (#970) is too similar to BabySuperDoge._getTValues(uint256).tAdvertisement (#893)
Variable BabySuperDoge._takeAdvertisement(uint256).rAdvertisement (#970) is too similar to BabySuperDoge._getValues(uint256).tAdvertisement (#861)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#920) is too similar to BabySuperDoge._takeAdvertisement(uint256).tAdvertisement (#968)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#920) is too similar to BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).tAdvertisement (#906)
Variable BabySuperDoge._takeAdvertisement(uint256).rAdvertisement (#970) is too similar to BabySuperDoge._takeAdvertisement(uint256).tAdvertisement (#968)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#920) is too similar to BabySuperDoge._transferStandard(address,address,uint256).tAdvertisement (#1146)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#920) is too similar to BabySuperDoge._transferToExcluded(address,address,uint256).tAdvertisement (#1169)
Variable BabySuperDoge._takeAdvertisement(uint256).rAdvertisement (#970) is too similar to BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).tAdvertisement (#906)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#920) is too similar to BabySuperDoge._transferFromExcluded(address,address,uint256).tAdvertisement (#1193)
Variable BabySuperDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#1189) is too similar to BabySuperDoge._getTValues(uint256).tTransferAmount (#896-898)
Variable BabySuperDoge._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BabySuperDoge._transferStandard(address,address,uint256).tTransferAmount (#1144)
Variable BabySuperDoge.reflectionFromToken(uint256,bool).rTransferAmount (#740) is too similar to BabySuperDoge._getTValues(uint256).tTransferAmount (#896-898)
Variable BabySuperDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#1189) is too similar to BabySuperDoge._transferStandard(address,address,uint256).tTransferAmount (#1144)
Variable BabySuperDoge.reflectionFromToken(uint256,bool).rTransferAmount (#740) is too similar to BabySuperDoge._transferStandard(address,address,uint256).tTransferAmount (#1144)
Variable BabySuperDoge._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BabySuperDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1167)
Variable BabySuperDoge._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BabySuperDoge._getTValues(uint256).tTransferAmount (#896-898)
Variable BabySuperDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#1189) is too similar to BabySuperDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1167)
Variable BabySuperDoge.reflectionFromToken(uint256,bool).rTransferAmount (#740) is too similar to BabySuperDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1167)
Variable BabySuperDoge._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to BabySuperDoge._getValues(uint256).tTransferAmount (#859)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#922-924) is too similar to BabySuperDoge._getValues(uint256).tTransferAmount (#859)
Variable BabySuperDoge._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BabySuperDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1191)
Variable BabySuperDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#1189) is too similar to BabySuperDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1191)
Variable BabySuperDoge.reflectionFromToken(uint256,bool).rTransferAmount (#740) is too similar to BabySuperDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1191)
Variable BabySuperDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#787) is too similar to BabySuperDoge._getValues(uint256).tTransferAmount (#859)
Variable BabySuperDoge.reflectionFromToken(uint256,bool).rTransferAmount (#740) is too similar to BabySuperDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable BabySuperDoge._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to BabySuperDoge._transferStandard(address,address,uint256).tTransferAmount (#1144)
Variable BabySuperDoge._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to BabySuperDoge._getTValues(uint256).tTransferAmount (#896-898)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#922-924) is too similar to BabySuperDoge._getTValues(uint256).tTransferAmount (#896-898)
Variable BabySuperDoge._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to BabySuperDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1191)
Variable BabySuperDoge._getValues(uint256).rTransferAmount (#864) is too similar to BabySuperDoge._getTValues(uint256).tTransferAmount (#896-898)
Variable BabySuperDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#787) is too similar to BabySuperDoge._getTValues(uint256).tTransferAmount (#896-898)
Variable BabySuperDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#787) is too similar to BabySuperDoge._transferStandard(address,address,uint256).tTransferAmount (#1144)
Variable BabySuperDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#1189) is too similar to BabySuperDoge._getValues(uint256).tTransferAmount (#859)
Variable BabySuperDoge.reflectionFromToken(uint256,bool).rTransferAmount (#740) is too similar to BabySuperDoge._getValues(uint256).tTransferAmount (#859)
Variable BabySuperDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#787) is too similar to BabySuperDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1167)
Variable BabySuperDoge._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BabySuperDoge._getValues(uint256).tTransferAmount (#859)
Variable BabySuperDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#787) is too similar to BabySuperDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1191)
Variable BabySuperDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#787) is too similar to BabySuperDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable BabySuperDoge._takeAdvertisement(uint256).rAdvertisement (#970) is too similar to BabySuperDoge._transferFromExcluded(address,address,uint256).tAdvertisement (#1193)
Variable BabySuperDoge._takeAdvertisement(uint256).rAdvertisement (#970) is too similar to BabySuperDoge._transferStandard(address,address,uint256).tAdvertisement (#1146)
Variable BabySuperDoge._takeAdvertisement(uint256).rAdvertisement (#970) is too similar to BabySuperDoge._transferBothExcluded(address,address,uint256).tAdvertisement (#791)
Variable BabySuperDoge._takeAdvertisement(uint256).rAdvertisement (#970) is too similar to BabySuperDoge._transferToExcluded(address,address,uint256).tAdvertisement (#1169)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rAdvertisement (#920) is too similar to BabySuperDoge._transferBothExcluded(address,address,uint256).tAdvertisement (#791)
Variable BabySuperDoge._getValues(uint256).rTransferAmount (#864) is too similar to BabySuperDoge._getValues(uint256).tTransferAmount (#859)
Variable BabySuperDoge._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BabySuperDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#922-924) is too similar to BabySuperDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1167)
Variable BabySuperDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#1189) is too similar to BabySuperDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#922-924) is too similar to BabySuperDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1191)
Variable BabySuperDoge._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to BabySuperDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1167)
Variable BabySuperDoge._getValues(uint256).rTransferAmount (#864) is too similar to BabySuperDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#922-924) is too similar to BabySuperDoge._transferStandard(address,address,uint256).tTransferAmount (#1144)
Variable BabySuperDoge._getValues(uint256).rTransferAmount (#864) is too similar to BabySuperDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1167)
Variable BabySuperDoge._getValues(uint256).rTransferAmount (#864) is too similar to BabySuperDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1191)
Variable BabySuperDoge._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#922-924) is too similar to BabySuperDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable BabySuperDoge._getValues(uint256).rTransferAmount (#864) is too similar to BabySuperDoge._transferStandard(address,address,uint256).tTransferAmount (#1144)
Variable BabySuperDoge._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to BabySuperDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Prevent variables from having similar names.
Additional information: link
BabySuperDoge.slitherConstructorConstantVariables() (#554-1206) uses literals with too many digits:
- DEAD_ADDRESS = 0x000000000000000000000000000000000000dEaD (#595-596)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BabySuperDoge._decimals (#575) should be constant
BabySuperDoge._name (#573) should be constant
BabySuperDoge._symbol (#574) should be constant
BabySuperDoge._tTotal (#569) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Contract has 5% buy tax and 25% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.
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.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Token has only one trading pair
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 find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
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
Twitter account has relatively few followers
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts