Bmooge
BabyMooge.com
The cutest baby in the BSC space.
Reentrancy in BabyMooge._transfer(address,address,uint256) (#811-847):
External calls:
- swapAndSendToFee(sellTokens) (#833)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#881-887)
External calls sending eth:
- swapAndSendToFee(sellTokens) (#833)
- address(_marketingWallet).transfer(ethToSend) (#854)
State variables written after the call(s):
- _tOwned[from] -= amount (#837)
- transferAmount = _getValues(amount,from) (#842)
- _tOwned[address(this)] += marketingFee + liquidityFee (#793)
- _tOwned[to] += transferAmount (#845)
- swapping = false (#834)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in BabyMooge._transfer(address,address,uint256) (#811-847):
External calls:
- swapAndSendToFee(sellTokens) (#833)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#881-887)
External calls sending eth:
- swapAndSendToFee(sellTokens) (#833)
- address(_marketingWallet).transfer(ethToSend) (#854)
Event emitted after the call(s):
- Transfer(from,address(this),marketingFee + liquidityFee) (#794)
- transferAmount = _getValues(amount,from) (#842)
- Transfer(from,to,transferAmount) (#846)
Reentrancy in BabyMooge.constructor() (#709-725):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#714)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#724)
Reentrancy in BabyMooge.swapAndLiquify() (#857-869):
External calls:
- newBalance = swapTokensForEth(half) (#862)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#881-887)
- addLiquidity(otherHalf,newBalance) (#866)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#896-903)
- (success) = recipient.call{value: amount}() (#316)
- address(_marketingWallet).sendValue(ethAmount - ethFromLiquidity) (#906)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#866)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#896-903)
- (success) = recipient.call{value: amount}() (#316)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#808)
- addLiquidity(otherHalf,newBalance) (#866)
- SwapAndLiquify(half,newBalance,otherHalf) (#867)
Reentrancy in BabyMooge.transferFrom(address,address,uint256) (#761-765):
External calls:
- _transfer(sender,recipient,amount) (#762)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#881-887)
External calls sending eth:
- _transfer(sender,recipient,amount) (#762)
- address(_marketingWallet).transfer(ethToSend) (#854)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#808)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#763)
Apply the check-effects-interactions pattern.
Additional information: link
BabyMooge.allowance(address,address).owner (#752) shadows:
- Ownable.owner() (#431-433) (function)
BabyMooge._approve(address,address,uint256).owner (#803) shadows:
- Ownable.owner() (#431-433) (function)
Rename the local variables that shadow another component.
Additional information: link
Reentrancy in BabyMooge.constructor() (#709-725):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#714)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#720)
- _isExcludedFromFee[address(this)] = true (#721)
- _isExcludedFromFee[_marketingWallet] = true (#722)
- uniswapV2Pair = _uniswapV2Pair (#717)
- uniswapV2Router = _uniswapV2Router (#716)
Reentrancy in BabyMooge.swapAndLiquify() (#857-869):
External calls:
- newBalance = swapTokensForEth(half) (#862)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#881-887)
- addLiquidity(otherHalf,newBalance) (#866)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#896-903)
- (success) = recipient.call{value: amount}() (#316)
- address(_marketingWallet).sendValue(ethAmount - ethFromLiquidity) (#906)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#866)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#896-903)
- (success) = recipient.call{value: amount}() (#316)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#866)
- _allowances[owner][spender] = amount (#807)
Reentrancy in BabyMooge.transferFrom(address,address,uint256) (#761-765):
External calls:
- _transfer(sender,recipient,amount) (#762)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#881-887)
External calls sending eth:
- _transfer(sender,recipient,amount) (#762)
- address(_marketingWallet).transfer(ethToSend) (#854)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#763)
- _allowances[owner][spender] = amount (#807)
Apply the check-effects-interactions pattern.
Additional information: link
BabyMooge._transfer(address,address,uint256) (#811-847) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_lastBuy[to] + _buyCooldown < block.timestamp,Must wait til after coooldown to buy) (#825)
BabyMooge.addLiquidity(uint256,uint256) (#891-907) uses timestamp for comparisons
Dangerous comparisons:
- ethAmount - ethFromLiquidity > 0 (#905)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#285-294) uses assembly
- INLINE ASM (#292)
Address._functionCallWithValue(address,bytes,uint256,string) (#378-399) uses assembly
- INLINE ASM (#391-394)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#378-399) is never used and should be removed
Address.functionCall(address,bytes) (#338-340) is never used and should be removed
Address.functionCall(address,bytes,string) (#348-350) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#363-365) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#373-376) is never used and should be removed
Address.isContract(address) (#285-294) is never used and should be removed
Address.sendValue(address,uint256) (#312-318) is never used and should be removed
BabyMooge.addLiquidity(uint256,uint256) (#891-907) is never used and should be removed
BabyMooge.swapAndLiquify() (#857-869) is never used and should be removed
Context._msgData() (#257-260) is never used and should be removed
SafeMath.add(uint256,uint256) (#120-125) is never used and should be removed
SafeMath.div(uint256,uint256) (#194-196) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#210-216) is never used and should be removed
SafeMath.mod(uint256,uint256) (#230-232) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#246-249) is never used and should be removed
SafeMath.mul(uint256,uint256) (#168-180) is never used and should be removed
SafeMath.sub(uint256,uint256) (#137-139) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#151-156) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#312-318):
- (success) = recipient.call{value: amount}() (#316)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#378-399):
- (success,returndata) = target.call{value: weiValue}(data) (#382)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#502) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#503) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#520) is not in mixedCase
Function IUniswapV2Router01.WETH() (#542) is not in mixedCase
Variable BabyMooge._maxTxAmount (#692) is not in mixedCase
Constant BabyMooge._name (#694) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyMooge._symbol (#695) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyMooge._decimals (#696) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BabyMooge._marketingFee (#698) is not in mixedCase
Variable BabyMooge._liquidityFee (#699) is not in mixedCase
Variable BabyMooge._marketingWallet (#700) is not in mixedCase
Variable BabyMooge._buyCooldown (#702) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#258)" inContext (#252-261)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in BabyMooge._transfer(address,address,uint256) (#811-847):
External calls:
- swapAndSendToFee(sellTokens) (#833)
- address(_marketingWallet).transfer(ethToSend) (#854)
State variables written after the call(s):
- _tOwned[from] -= amount (#837)
- transferAmount = _getValues(amount,from) (#842)
- _tOwned[address(this)] += marketingFee + liquidityFee (#793)
- _tOwned[to] += transferAmount (#845)
- swapping = false (#834)
Event emitted after the call(s):
- Transfer(from,address(this),marketingFee + liquidityFee) (#794)
- transferAmount = _getValues(amount,from) (#842)
- Transfer(from,to,transferAmount) (#846)
Reentrancy in BabyMooge.transferFrom(address,address,uint256) (#761-765):
External calls:
- _transfer(sender,recipient,amount) (#762)
- address(_marketingWallet).transfer(ethToSend) (#854)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#763)
- _allowances[owner][spender] = amount (#807)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#808)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#763)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#547) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#548)
Prevent variables from having similar names.
Additional information: link
Address.sendValue(address,uint256) (#312-318) uses literals with too many digits:
- recipient = address(0x000000000000000000000000000000000000dEaD) (#314)
BabyMooge.slitherConstructorVariables() (#679-909) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 9 (#691)
BabyMooge.slitherConstructorVariables() (#679-909) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 9 (#692)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BabyMooge._buyCooldown (#702) should be constant
BabyMooge._liquidityFee (#699) should be constant
BabyMooge._marketingFee (#698) should be constant
BabyMooge._marketingWallet (#700) should be constant
BabyMooge._maxTxAmount (#692) should be constant
BabyMooge._tTotal (#691) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#450-453)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#459-463)
name() should be declared external:
- BabyMooge.name() (#727-729)
symbol() should be declared external:
- BabyMooge.symbol() (#731-733)
decimals() should be declared external:
- BabyMooge.decimals() (#735-737)
totalSupply() should be declared external:
- BabyMooge.totalSupply() (#739-741)
transfer(address,uint256) should be declared external:
- BabyMooge.transfer(address,uint256) (#747-750)
allowance(address,address) should be declared external:
- BabyMooge.allowance(address,address) (#752-754)
approve(address,uint256) should be declared external:
- BabyMooge.approve(address,uint256) (#756-759)
transferFrom(address,address,uint256) should be declared external:
- BabyMooge.transferFrom(address,address,uint256) (#761-765)
increaseAllowance(address,uint256) should be declared external:
- BabyMooge.increaseAllowance(address,uint256) (#767-770)
decreaseAllowance(address,uint256) should be declared external:
- BabyMooge.decreaseAllowance(address,uint256) (#772-775)
excludeFromFee(address) should be declared external:
- BabyMooge.excludeFromFee(address) (#777-779)
includeInFee(address) should be declared external:
- BabyMooge.includeInFee(address) (#781-783)
isExcludedFromFee(address) should be declared external:
- BabyMooge.isExcludedFromFee(address) (#799-801)
Use the external attribute for functions never called from the contract.
Additional information: link
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
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
Twitter account has less than 100 followers
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account