BabyPitbull is the first fully decentralized and deflationary token that unites BabyPitbull dog lovers. With mission to help wild animals and protect environment, BabyPitbull is the coolest BSC token which uses auto-boost to bring in rewards make profits for holders
Reentrancy in BABYPITBULL._transfer(address,address,uint256) (#998-1042):
External calls:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#954)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1123)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1132)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1143)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#870)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1124)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1134)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1144)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#872)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _rTotal = _rTotal.sub(rFee) (#909)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#956)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#869)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1142)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1133)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#871)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
BABYPITBULL.addLiquidity(uint256,uint256) (#1085-1098) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
Ensure that all the return values of the function calls are used.
Additional information: link
BABYPITBULL._approve(address,address,uint256).owner (#990) shadows:
- Ownable.owner() (#422-424) (function)
Rename the local variables that shadow another component.
Additional information: link
BABYPITBULL.setMaxTxPercent(uint256) (#894-898) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#895-897)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in BABYPITBULL.transferFrom(address,address,uint256) (#795-799):
External calls:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
External calls sending eth:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#797)
- _allowances[owner][spender] = amount (#994)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BABYPITBULL.transferFrom(address,address,uint256) (#795-799):
External calls:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
External calls sending eth:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#995)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#797)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#469-474) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#471)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#367-388) uses assembly
- INLINE ASM (#380-383)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#235-238) is never used and should be removed
Remove unused functions.
Additional information: link
BABYPITBULL._previousLiquidityFee (#717) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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._functionCallWithValue(address,bytes,uint256,string) (#367-388):
- (success,returndata) = target.call{value: weiValue}(data) (#371)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable BABYPITBULL._maxTxAmount (#725) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#247)" inContext (#241-250)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable BABYPITBULL._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to BABYPITBULL._getValues(uint256).tTransferAmount (#914)
Prevent variables from having similar names.
Additional information: link
BABYPITBULL.slitherConstructorVariables() (#691-1154) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000000000000 * 10 ** 9 (#726)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BABYPITBULL.numTokensSellToAddToLiquidity (#726) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
isExcludedFromFee(address) should be declared external:
- BABYPITBULL.isExcludedFromFee(address) (#986-988)
Use the external attribute for functions never called from the contract.
Additional information: link
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
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
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to find website, listings and other project-related information
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account link seems to be invalid
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account