Baby Shiba Rocket is a new pup in the crypto world. Community-driven Project equipped with The Beast Buy Back, is a Hyper Deflationary token and Rewards hodlers with every transaction!
Tokenomics;
6% The Beast Buy Back
5% Holder Redistribution Rewards
4% Token Development and Marketing
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in BabyShibaRocket._transfer(address,address,uint256) (#643-681):
External calls:
- swapTokens(contractTokenBalance) (#661)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#710-716)
- buyBackTokens(balance.div(100)) (#669)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
External calls sending eth:
- swapTokens(contractTokenBalance) (#661)
- recipient.transfer(amount) (#954)
- buyBackTokens(balance.div(100)) (#669)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _liquidityFee = _previousLiquidityFee (#886)
- _liquidityFee = 0 (#881)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#857)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#773)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#782)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#793)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#803)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#774)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#784)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#794)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#805)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _rTotal = _rTotal.sub(rFee) (#812)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#859)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#802)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#792)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#783)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#804)
- buyBackTokens(balance.div(100)) (#669)
- inSwapAndLiquify = true (#497)
- inSwapAndLiquify = false (#499)
Apply the check-effects-interactions pattern.
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.
BabyShibaRocket.swapTokens(uint256) (#683-692) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#690)
Consider ordering multiplication before division.
Additional information: link
BabyShibaRocket.addLiquidity(uint256,uint256) (#738-751) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
Ensure that all the return values of the function calls are used.
Additional information: link
BabyShibaRocket.allowance(address,address).owner (#544) shadows:
- Ownable.owner() (#178-180) (function)
BabyShibaRocket._approve(address,address,uint256).owner (#635) shadows:
- Ownable.owner() (#178-180) (function)
Rename the local variables that shadow another component.
Additional information: link
BabyShibaRocket.setTaxFeePercent(uint256) (#901-903) should emit an event for:
- _taxFee = taxFee (#902)
BabyShibaRocket.setLiquidityFeePercent(uint256) (#905-907) should emit an event for:
- _liquidityFee = liquidityFee (#906)
BabyShibaRocket.setMaxTxAmount(uint256) (#909-911) should emit an event for:
- _maxTxAmount = maxTxAmount (#910)
BabyShibaRocket.setMarketingDivisor(uint256) (#913-915) should emit an event for:
- marketingDivisor = divisor (#914)
BabyShibaRocket.setNumTokensSellToAddToLiquidity(uint256) (#917-919) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#918)
BabyShibaRocket.setBuybackUpperLimit(uint256) (#921-923) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#922)
Emit an event for critical parameter changes.
Additional information: link
BabyShibaRocket.setMarketingAddress(address)._marketingAddress (#925) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#926)
Check that the address is not zero.
Additional information: link
Reentrancy in BabyShibaRocket._transfer(address,address,uint256) (#643-681):
External calls:
- swapTokens(contractTokenBalance) (#661)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#710-716)
- buyBackTokens(balance.div(100)) (#669)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
External calls sending eth:
- swapTokens(contractTokenBalance) (#661)
- recipient.transfer(amount) (#954)
- buyBackTokens(balance.div(100)) (#669)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _previousLiquidityFee = _liquidityFee (#878)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _previousTaxFee = _taxFee (#877)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _tFeeTotal = _tFeeTotal.add(tFee) (#813)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _taxFee = _previousTaxFee (#885)
- _taxFee = 0 (#880)
Reentrancy in BabyShibaRocket.constructor() (#502-516):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#506-507)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#512)
- _isExcludedFromFee[address(this)] = true (#513)
- uniswapV2Router = _uniswapV2Router (#509)
Reentrancy in BabyShibaRocket.transferFrom(address,address,uint256) (#553-557):
External calls:
- _transfer(sender,recipient,amount) (#554)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#710-716)
External calls sending eth:
- _transfer(sender,recipient,amount) (#554)
- recipient.transfer(amount) (#954)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#555)
- _allowances[owner][spender] = amount (#639)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BabyShibaRocket._transfer(address,address,uint256) (#643-681):
External calls:
- swapTokens(contractTokenBalance) (#661)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#710-716)
- buyBackTokens(balance.div(100)) (#669)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
External calls sending eth:
- swapTokens(contractTokenBalance) (#661)
- recipient.transfer(amount) (#954)
- buyBackTokens(balance.div(100)) (#669)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#735)
- buyBackTokens(balance.div(100)) (#669)
- Transfer(sender,recipient,tTransferAmount) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- Transfer(sender,recipient,tTransferAmount) (#787)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- Transfer(sender,recipient,tTransferAmount) (#797)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- Transfer(sender,recipient,tTransferAmount) (#808)
- _tokenTransfer(from,to,amount,takeFee) (#680)
Reentrancy in BabyShibaRocket.constructor() (#502-516):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#506-507)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#515)
Reentrancy in BabyShibaRocket.swapETHForTokens(uint256) (#721-736):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#735)
Reentrancy in BabyShibaRocket.swapTokensForEth(uint256) (#701-719):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#710-716)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#718)
Reentrancy in BabyShibaRocket.transferFrom(address,address,uint256) (#553-557):
External calls:
- _transfer(sender,recipient,amount) (#554)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#710-716)
External calls sending eth:
- _transfer(sender,recipient,amount) (#554)
- recipient.transfer(amount) (#954)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#640)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#555)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#213-218) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#215)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#108-117) uses assembly
- INLINE ASM (#115)
Address._functionCallWithValue(address,bytes,uint256,string) (#145-162) uses assembly
- INLINE ASM (#154-157)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#145-162) is never used and should be removed
Address.functionCall(address,bytes) (#128-130) is never used and should be removed
Address.functionCall(address,bytes,string) (#132-134) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#136-138) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#140-143) is never used and should be removed
Address.isContract(address) (#108-117) is never used and should be removed
Address.sendValue(address,uint256) (#119-125) is never used and should be removed
BabyShibaRocket.addLiquidity(uint256,uint256) (#738-751) is never used and should be removed
Context._msgData() (#31-34) is never used and should be removed
SafeMath.mod(uint256,uint256) (#96-98) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#100-103) is never used and should be removed
Remove unused functions.
Additional information: link
BabyShibaRocket._rTotal (#449) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BabyShibaRocket._previousTaxFee (#458) is set pre-construction with a non-constant function or state variable:
- _taxFee
BabyShibaRocket._previousLiquidityFee (#461) 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
Pragma version^0.8.4 (#24) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
solc-0.8.4 is not recommended for deployment
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
Low level call in Address.sendValue(address,uint256) (#119-125):
- (success) = recipient.call{value: amount}() (#123)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#145-162):
- (success,returndata) = target.call{value: weiValue}(data) (#148)
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() (#257) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#258) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#274) is not in mixedCase
Function IUniswapV2Router01.WETH() (#295) is not in mixedCase
Parameter BabyShibaRocket.calculateTaxFee(uint256)._amount (#862) is not in mixedCase
Parameter BabyShibaRocket.calculateLiquidityFee(uint256)._amount (#868) is not in mixedCase
Parameter BabyShibaRocket.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#917) is not in mixedCase
Parameter BabyShibaRocket.setMarketingAddress(address)._marketingAddress (#925) is not in mixedCase
Parameter BabyShibaRocket.setSwapAndLiquifyEnabled(bool)._enabled (#929) is not in mixedCase
Parameter BabyShibaRocket.setBuyBackEnabled(bool)._enabled (#934) is not in mixedCase
Variable BabyShibaRocket._taxFee (#457) is not in mixedCase
Variable BabyShibaRocket._liquidityFee (#460) is not in mixedCase
Variable BabyShibaRocket._maxTxAmount (#465) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#32)" inContext (#26-35)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in BabyShibaRocket._transfer(address,address,uint256) (#643-681):
External calls:
- swapTokens(contractTokenBalance) (#661)
- recipient.transfer(amount) (#954)
External calls sending eth:
- swapTokens(contractTokenBalance) (#661)
- recipient.transfer(amount) (#954)
- buyBackTokens(balance.div(100)) (#669)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _liquidityFee = _previousLiquidityFee (#886)
- _liquidityFee = 0 (#881)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _previousLiquidityFee = _liquidityFee (#878)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _previousTaxFee = _taxFee (#877)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#857)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#773)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#782)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#793)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#803)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#774)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#784)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#794)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#805)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _rTotal = _rTotal.sub(rFee) (#812)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _tFeeTotal = _tFeeTotal.add(tFee) (#813)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#859)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#802)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#792)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#783)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#804)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- _taxFee = _previousTaxFee (#885)
- _taxFee = 0 (#880)
- buyBackTokens(balance.div(100)) (#669)
- inSwapAndLiquify = true (#497)
- inSwapAndLiquify = false (#499)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#735)
- buyBackTokens(balance.div(100)) (#669)
- Transfer(sender,recipient,tTransferAmount) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- Transfer(sender,recipient,tTransferAmount) (#787)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- Transfer(sender,recipient,tTransferAmount) (#797)
- _tokenTransfer(from,to,amount,takeFee) (#680)
- Transfer(sender,recipient,tTransferAmount) (#808)
- _tokenTransfer(from,to,amount,takeFee) (#680)
Reentrancy in BabyShibaRocket.transferFrom(address,address,uint256) (#553-557):
External calls:
- _transfer(sender,recipient,amount) (#554)
- recipient.transfer(amount) (#954)
External calls sending eth:
- _transfer(sender,recipient,amount) (#554)
- recipient.transfer(amount) (#954)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#728-733)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#555)
- _allowances[owner][spender] = amount (#639)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#640)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#555)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#300) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#301)
Variable BabyShibaRocket._transferFromExcluded(address,address,uint256).rTransferAmount (#791) is too similar to BabyShibaRocket._transferStandard(address,address,uint256).tTransferAmount (#772)
Variable BabyShibaRocket._transferBothExcluded(address,address,uint256).rTransferAmount (#801) is too similar to BabyShibaRocket._getTValues(uint256).tTransferAmount (#825)
Variable BabyShibaRocket._transferBothExcluded(address,address,uint256).rTransferAmount (#801) is too similar to BabyShibaRocket._transferFromExcluded(address,address,uint256).tTransferAmount (#791)
Variable BabyShibaRocket._transferFromExcluded(address,address,uint256).rTransferAmount (#791) is too similar to BabyShibaRocket._getTValues(uint256).tTransferAmount (#825)
Variable BabyShibaRocket._transferFromExcluded(address,address,uint256).rTransferAmount (#791) is too similar to BabyShibaRocket._transferFromExcluded(address,address,uint256).tTransferAmount (#791)
Variable BabyShibaRocket._transferToExcluded(address,address,uint256).rTransferAmount (#781) is too similar to BabyShibaRocket._transferToExcluded(address,address,uint256).tTransferAmount (#781)
Variable BabyShibaRocket._transferToExcluded(address,address,uint256).rTransferAmount (#781) is too similar to BabyShibaRocket._getValues(uint256).tTransferAmount (#817)
Variable BabyShibaRocket._transferStandard(address,address,uint256).rTransferAmount (#772) is too similar to BabyShibaRocket._getValues(uint256).tTransferAmount (#817)
Variable BabyShibaRocket._transferBothExcluded(address,address,uint256).rTransferAmount (#801) is too similar to BabyShibaRocket._transferBothExcluded(address,address,uint256).tTransferAmount (#801)
Variable BabyShibaRocket._transferFromExcluded(address,address,uint256).rTransferAmount (#791) is too similar to BabyShibaRocket._transferBothExcluded(address,address,uint256).tTransferAmount (#801)
Variable BabyShibaRocket._transferToExcluded(address,address,uint256).rTransferAmount (#781) is too similar to BabyShibaRocket._transferStandard(address,address,uint256).tTransferAmount (#772)
Variable BabyShibaRocket._transferStandard(address,address,uint256).rTransferAmount (#772) is too similar to BabyShibaRocket._transferStandard(address,address,uint256).tTransferAmount (#772)
Variable BabyShibaRocket._transferBothExcluded(address,address,uint256).rTransferAmount (#801) is too similar to BabyShibaRocket._transferToExcluded(address,address,uint256).tTransferAmount (#781)
Variable BabyShibaRocket._transferBothExcluded(address,address,uint256).rTransferAmount (#801) is too similar to BabyShibaRocket._getValues(uint256).tTransferAmount (#817)
Variable BabyShibaRocket._transferToExcluded(address,address,uint256).rTransferAmount (#781) is too similar to BabyShibaRocket._getTValues(uint256).tTransferAmount (#825)
Variable BabyShibaRocket._transferStandard(address,address,uint256).rTransferAmount (#772) is too similar to BabyShibaRocket._getTValues(uint256).tTransferAmount (#825)
Variable BabyShibaRocket._transferFromExcluded(address,address,uint256).rTransferAmount (#791) is too similar to BabyShibaRocket._transferToExcluded(address,address,uint256).tTransferAmount (#781)
Variable BabyShibaRocket._transferToExcluded(address,address,uint256).rTransferAmount (#781) is too similar to BabyShibaRocket._transferFromExcluded(address,address,uint256).tTransferAmount (#791)
Variable BabyShibaRocket._transferFromExcluded(address,address,uint256).rTransferAmount (#791) is too similar to BabyShibaRocket._getValues(uint256).tTransferAmount (#817)
Variable BabyShibaRocket._transferBothExcluded(address,address,uint256).rTransferAmount (#801) is too similar to BabyShibaRocket._transferStandard(address,address,uint256).tTransferAmount (#772)
Variable BabyShibaRocket.reflectionFromToken(uint256,bool).rTransferAmount (#601) is too similar to BabyShibaRocket._getTValues(uint256).tTransferAmount (#825)
Variable BabyShibaRocket._transferStandard(address,address,uint256).rTransferAmount (#772) is too similar to BabyShibaRocket._transferBothExcluded(address,address,uint256).tTransferAmount (#801)
Variable BabyShibaRocket._getValues(uint256).rTransferAmount (#818) is too similar to BabyShibaRocket._transferToExcluded(address,address,uint256).tTransferAmount (#781)
Variable BabyShibaRocket._transferStandard(address,address,uint256).rTransferAmount (#772) is too similar to BabyShibaRocket._transferFromExcluded(address,address,uint256).tTransferAmount (#791)
Variable BabyShibaRocket._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#833) is too similar to BabyShibaRocket._transferToExcluded(address,address,uint256).tTransferAmount (#781)
Variable BabyShibaRocket._getValues(uint256).rTransferAmount (#818) is too similar to BabyShibaRocket._transferStandard(address,address,uint256).tTransferAmount (#772)
Variable BabyShibaRocket.reflectionFromToken(uint256,bool).rTransferAmount (#601) is too similar to BabyShibaRocket._transferToExcluded(address,address,uint256).tTransferAmount (#781)
Variable BabyShibaRocket._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#833) is too similar to BabyShibaRocket._transferStandard(address,address,uint256).tTransferAmount (#772)
Variable BabyShibaRocket._getValues(uint256).rTransferAmount (#818) is too similar to BabyShibaRocket._getValues(uint256).tTransferAmount (#817)
Variable BabyShibaRocket.reflectionFromToken(uint256,bool).rTransferAmount (#601) is too similar to BabyShibaRocket._transferStandard(address,address,uint256).tTransferAmount (#772)
Variable BabyShibaRocket._getValues(uint256).rTransferAmount (#818) is too similar to BabyShibaRocket._transferBothExcluded(address,address,uint256).tTransferAmount (#801)
Variable BabyShibaRocket._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#833) is too similar to BabyShibaRocket._getValues(uint256).tTransferAmount (#817)
Variable BabyShibaRocket.reflectionFromToken(uint256,bool).rTransferAmount (#601) is too similar to BabyShibaRocket._getValues(uint256).tTransferAmount (#817)
Variable BabyShibaRocket._getValues(uint256).rTransferAmount (#818) is too similar to BabyShibaRocket._transferFromExcluded(address,address,uint256).tTransferAmount (#791)
Variable BabyShibaRocket._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#833) is too similar to BabyShibaRocket._transferBothExcluded(address,address,uint256).tTransferAmount (#801)
Variable BabyShibaRocket.reflectionFromToken(uint256,bool).rTransferAmount (#601) is too similar to BabyShibaRocket._transferBothExcluded(address,address,uint256).tTransferAmount (#801)
Variable BabyShibaRocket._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#833) is too similar to BabyShibaRocket._transferFromExcluded(address,address,uint256).tTransferAmount (#791)
Variable BabyShibaRocket.reflectionFromToken(uint256,bool).rTransferAmount (#601) is too similar to BabyShibaRocket._transferFromExcluded(address,address,uint256).tTransferAmount (#791)
Variable BabyShibaRocket._transferStandard(address,address,uint256).rTransferAmount (#772) is too similar to BabyShibaRocket._transferToExcluded(address,address,uint256).tTransferAmount (#781)
Variable BabyShibaRocket._transferToExcluded(address,address,uint256).rTransferAmount (#781) is too similar to BabyShibaRocket._transferBothExcluded(address,address,uint256).tTransferAmount (#801)
Variable BabyShibaRocket._getValues(uint256).rTransferAmount (#818) is too similar to BabyShibaRocket._getTValues(uint256).tTransferAmount (#825)
Variable BabyShibaRocket._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#833) is too similar to BabyShibaRocket._getTValues(uint256).tTransferAmount (#825)
Prevent variables from having similar names.
Additional information: link
BabyShibaRocket.prepareForPreSale() (#939-944) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 9 (#943)
BabyShibaRocket.afterPreSale() (#946-951) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#950)
BabyShibaRocket.slitherConstructorVariables() (#432-960) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#437)
BabyShibaRocket.slitherConstructorVariables() (#432-960) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#448)
BabyShibaRocket.slitherConstructorVariables() (#432-960) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#465)
BabyShibaRocket.slitherConstructorVariables() (#432-960) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 6 * 10 ** 9 (#466)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BabyShibaRocket._decimals (#454) should be constant
BabyShibaRocket._name (#452) should be constant
BabyShibaRocket._symbol (#453) should be constant
BabyShibaRocket._tTotal (#448) should be constant
BabyShibaRocket.deadAddress (#437) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#187-190)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#192-196)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#198-200)
getTime() should be declared external:
- Ownable.getTime() (#202-204)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#206-211)
unlock() should be declared external:
- Ownable.unlock() (#213-218)
name() should be declared external:
- BabyShibaRocket.name() (#518-520)
symbol() should be declared external:
- BabyShibaRocket.symbol() (#522-524)
decimals() should be declared external:
- BabyShibaRocket.decimals() (#526-528)
totalSupply() should be declared external:
- BabyShibaRocket.totalSupply() (#530-532)
transfer(address,uint256) should be declared external:
- BabyShibaRocket.transfer(address,uint256) (#539-542)
allowance(address,address) should be declared external:
- BabyShibaRocket.allowance(address,address) (#544-546)
approve(address,uint256) should be declared external:
- BabyShibaRocket.approve(address,uint256) (#548-551)
transferFrom(address,address,uint256) should be declared external:
- BabyShibaRocket.transferFrom(address,address,uint256) (#553-557)
increaseAllowance(address,uint256) should be declared external:
- BabyShibaRocket.increaseAllowance(address,uint256) (#559-562)
decreaseAllowance(address,uint256) should be declared external:
- BabyShibaRocket.decreaseAllowance(address,uint256) (#564-567)
isExcludedFromReward(address) should be declared external:
- BabyShibaRocket.isExcludedFromReward(address) (#569-571)
totalFees() should be declared external:
- BabyShibaRocket.totalFees() (#573-575)
minimumTokensBeforeSwapAmount() should be declared external:
- BabyShibaRocket.minimumTokensBeforeSwapAmount() (#577-579)
buyBackUpperLimitAmount() should be declared external:
- BabyShibaRocket.buyBackUpperLimitAmount() (#581-583)
deliver(uint256) should be declared external:
- BabyShibaRocket.deliver(uint256) (#585-592)
reflectionFromToken(uint256,bool) should be declared external:
- BabyShibaRocket.reflectionFromToken(uint256,bool) (#595-604)
excludeFromReward(address) should be declared external:
- BabyShibaRocket.excludeFromReward(address) (#612-620)
isExcludedFromFee(address) should be declared external:
- BabyShibaRocket.isExcludedFromFee(address) (#889-891)
excludeFromFee(address) should be declared external:
- BabyShibaRocket.excludeFromFee(address) (#893-895)
includeInFee(address) should be declared external:
- BabyShibaRocket.includeInFee(address) (#897-899)
setBuyBackEnabled(bool) should be declared external:
- BabyShibaRocket.setBuyBackEnabled(bool) (#934-937)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from 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
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Twitter account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account