Booty Token Logo

BOOTY Token

ALERT: dead

About BOOTY

Listings

Not Found
Token 2 years

Booty is a socially viral protocol where holders vote on the best booty daily and get paid to do so. Booty is the most rewarded coin on BSC, and is supported by tier 1 influencers. daily.

Social

Laser Scorebeta Last Audit: 14 May 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

Anti-Scam

Links

Booty.addLiquidity(uint256,uint256) (contracts/Booty.sol#500-513) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in Booty._transfer(address,address,uint256) (contracts/Booty.sol#412-457):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/Booty.sol#444)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Booty.sol#491-497)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/Booty.sol#444)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- _rOwned[rewardsFeeAddress] = _rOwned[rewardsFeeAddress].add(rRewardsFee) (contracts/Booty.sol#346)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/Booty.sol#337)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Booty.sol#551)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Booty.sol#539)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Booty.sol#578)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Booty.sol#565)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Booty.sol#540)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Booty.sol#566)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Booty.sol#553)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Booty.sol#580)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- _rTotal = _rTotal.sub(rFee) (contracts/Booty.sol#290)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- _tOwned[rewardsFeeAddress] = _tOwned[rewardsFeeAddress].add(tRewardsFee) (contracts/Booty.sol#348)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/Booty.sol#339)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Booty.sol#577)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Booty.sol#564)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Booty.sol#552)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Booty.sol#579)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Booty.addLiquidity(uint256,uint256) (contracts/Booty.sol#500-513) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
Ensure that all the return values of the function calls are used.

Additional information: link

Booty.constructor(address,address)._rewardsFeeAddress (contracts/Booty.sol#119) lacks a zero-check on :
- rewardsFeeAddress = _rewardsFeeAddress (contracts/Booty.sol#121)
Booty.setRewardsFeeAddress(address)._rewardsFeeAddress (contracts/Booty.sol#270) lacks a zero-check on :
- rewardsFeeAddress = _rewardsFeeAddress (contracts/Booty.sol#271)
Check that the address is not zero.

Additional information: link

Variable Booty._rewardsFee (contracts/Booty.sol#85) is too similar to Booty._takeRewardsFee(uint256).rRewardsFee (contracts/Booty.sol#345)
Variable Booty._rewardsFee (contracts/Booty.sol#85) is too similar to Booty._takeRewardsFee(uint256).tRewardsFee (contracts/Booty.sol#343)
Variable Booty._takeRewardsFee(uint256).rRewardsFee (contracts/Booty.sol#345) is too similar to Booty._takeRewardsFee(uint256).tRewardsFee (contracts/Booty.sol#343)
Variable Booty.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Booty.sol#217) is too similar to Booty._transferStandard(address,address,uint256).tTransferAmount (contracts/Booty.sol#538)
Variable Booty._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (contracts/Booty.sol#313) is too similar to Booty._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#550)
Variable Booty.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Booty.sol#217) is too similar to Booty._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#550)
Variable Booty._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#576) is too similar to Booty._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#563)
Variable Booty._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#563) is too similar to Booty._transferStandard(address,address,uint256).tTransferAmount (contracts/Booty.sol#538)
Variable Booty._getValues(uint256).rTransferAmount (contracts/Booty.sol#296) is too similar to Booty._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#550)
Variable Booty._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#576) is too similar to Booty._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#576)
Variable Booty._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#576) is too similar to Booty._transferStandard(address,address,uint256).tTransferAmount (contracts/Booty.sol#538)
Variable Booty._getValues(uint256).rTransferAmount (contracts/Booty.sol#296) is too similar to Booty._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#563)
Variable Booty._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (contracts/Booty.sol#313) is too similar to Booty._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#563)
Variable Booty.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Booty.sol#217) is too similar to Booty._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#563)
Variable Booty._getValues(uint256).rTransferAmount (contracts/Booty.sol#296) is too similar to Booty._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#576)
Variable Booty._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#576) is too similar to Booty._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#550)
Variable Booty._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (contracts/Booty.sol#313) is too similar to Booty._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#576)
Variable Booty.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Booty.sol#217) is too similar to Booty._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#576)
Variable Booty._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#563) is too similar to Booty._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#563)
Variable Booty._transferStandard(address,address,uint256).rTransferAmount (contracts/Booty.sol#538) is too similar to Booty._transferStandard(address,address,uint256).tTransferAmount (contracts/Booty.sol#538)
Variable Booty.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Booty.sol#217) is too similar to Booty._getValues(uint256).tTransferAmount (contracts/Booty.sol#295)
Variable Booty._getValues(uint256).rTransferAmount (contracts/Booty.sol#296) is too similar to Booty._transferStandard(address,address,uint256).tTransferAmount (contracts/Booty.sol#538)
Variable Booty._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (contracts/Booty.sol#313) is too similar to Booty._getValues(uint256).tTransferAmount (contracts/Booty.sol#295)
Variable Booty._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (contracts/Booty.sol#313) is too similar to Booty._transferStandard(address,address,uint256).tTransferAmount (contracts/Booty.sol#538)
Variable Booty._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#550) is too similar to Booty._getTValues(uint256).tTransferAmount (contracts/Booty.sol#304)
Variable Booty._transferStandard(address,address,uint256).rTransferAmount (contracts/Booty.sol#538) is too similar to Booty._getValues(uint256).tTransferAmount (contracts/Booty.sol#295)
Variable Booty._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#563) is too similar to Booty._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#550)
Variable Booty._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#550) is too similar to Booty._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#576)
Variable Booty.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Booty.sol#217) is too similar to Booty._getTValues(uint256).tTransferAmount (contracts/Booty.sol#304)
Variable Booty._transferStandard(address,address,uint256).rTransferAmount (contracts/Booty.sol#538) is too similar to Booty._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#563)
Variable Booty._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#550) is too similar to Booty._transferStandard(address,address,uint256).tTransferAmount (contracts/Booty.sol#538)
Variable Booty._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#550) is too similar to Booty._getValues(uint256).tTransferAmount (contracts/Booty.sol#295)
Variable Booty._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#563) is too similar to Booty._getTValues(uint256).tTransferAmount (contracts/Booty.sol#304)
Variable Booty._getValues(uint256).rTransferAmount (contracts/Booty.sol#296) is too similar to Booty._getTValues(uint256).tTransferAmount (contracts/Booty.sol#304)
Variable Booty._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#563) is too similar to Booty._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#576)
Variable Booty._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#576) is too similar to Booty._getTValues(uint256).tTransferAmount (contracts/Booty.sol#304)
Variable Booty._transferStandard(address,address,uint256).rTransferAmount (contracts/Booty.sol#538) is too similar to Booty._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#550)
Variable Booty._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#550) is too similar to Booty._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#563)
Variable Booty._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (contracts/Booty.sol#313) is too similar to Booty._getTValues(uint256).tTransferAmount (contracts/Booty.sol#304)
Variable Booty._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#563) is too similar to Booty._getValues(uint256).tTransferAmount (contracts/Booty.sol#295)
Variable Booty._getValues(uint256).rTransferAmount (contracts/Booty.sol#296) is too similar to Booty._getValues(uint256).tTransferAmount (contracts/Booty.sol#295)
Variable Booty._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#576) is too similar to Booty._getValues(uint256).tTransferAmount (contracts/Booty.sol#295)
Variable Booty._transferStandard(address,address,uint256).rTransferAmount (contracts/Booty.sol#538) is too similar to Booty._getTValues(uint256).tTransferAmount (contracts/Booty.sol#304)
Variable Booty._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Booty.sol#550) is too similar to Booty._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#550)
Variable Booty._transferStandard(address,address,uint256).rTransferAmount (contracts/Booty.sol#538) is too similar to Booty._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Booty.sol#576)
Prevent variables from having similar names.

Additional information: link

Booty.burnHalf() (contracts/Booty.sol#198-200) uses literals with too many digits:
- _tokenTransfer(owner(),0x000000000000000000000000000000000000dEaD,_tTotal / 2,false) (contracts/Booty.sol#199)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Booty.allowance(address,address).owner (contracts/Booty.sol#165) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
Booty._approve(address,address,uint256).owner (contracts/Booty.sol#392) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
BEP20.constructor(string,string).name (contracts/libs/BEP20.sol#55) shadows:
- BEP20.name() (contracts/libs/BEP20.sol#64-66) (function)
- IBEP20.name() (contracts/libs/IBEP20.sol#24) (function)
BEP20.constructor(string,string).symbol (contracts/libs/BEP20.sol#55) shadows:
- BEP20.symbol() (contracts/libs/BEP20.sol#72-74) (function)
- IBEP20.symbol() (contracts/libs/IBEP20.sol#19) (function)
Rename the local variables that shadow another component.

Additional information: link

Booty.setTaxFeePercent(uint256) (contracts/Booty.sol#258-260) should emit an event for:
- _taxFee = taxFee (contracts/Booty.sol#259)
Booty.setLiquidityFeePercent(uint256) (contracts/Booty.sol#262-264) should emit an event for:
- _liquidityFee = liquidityFee (contracts/Booty.sol#263)
Booty.setRewardsFeePercent(uint256) (contracts/Booty.sol#266-268) should emit an event for:
- _rewardsFee = rewardsFee (contracts/Booty.sol#267)
Booty.setMaxTxPercent(uint256) (contracts/Booty.sol#274-278) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 4) (contracts/Booty.sol#275-277)
Booty.setNumTokensSellToAddToLiquidity(uint256) (contracts/Booty.sol#280-282) should emit an event for:
- numTokensSellToAddToLiquidity = _numTokensSellToAddToLiquidity (contracts/Booty.sol#281)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in Booty._transfer(address,address,uint256) (contracts/Booty.sol#412-457):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/Booty.sol#444)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Booty.sol#491-497)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/Booty.sol#444)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- _liquidityFee = _previousLiquidityFee (contracts/Booty.sol#384)
- _liquidityFee = 0 (contracts/Booty.sol#378)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- _previousLiquidityFee = _liquidityFee (contracts/Booty.sol#374)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- _previousRewardsFee = _rewardsFee (contracts/Booty.sol#375)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- _previousTaxFee = _taxFee (contracts/Booty.sol#373)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- _rewardsFee = _previousRewardsFee (contracts/Booty.sol#385)
- _rewardsFee = 0 (contracts/Booty.sol#379)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/Booty.sol#291)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- _taxFee = _previousTaxFee (contracts/Booty.sol#383)
- _taxFee = 0 (contracts/Booty.sol#377)
Reentrancy in Booty.constructor(address,address) (contracts/Booty.sol#119-137):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/Booty.sol#125-126)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (contracts/Booty.sol#132)
- _isExcludedFromFee[address(this)] = true (contracts/Booty.sol#133)
- _isExcludedFromFee[rewardsFeeAddress] = true (contracts/Booty.sol#134)
- uniswapV2Router = _uniswapV2Router (contracts/Booty.sol#129)
Reentrancy in Booty.swapAndLiquify(uint256) (contracts/Booty.sol#459-480):
External calls:
- swapTokensForEth(half) (contracts/Booty.sol#471)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Booty.sol#491-497)
- addLiquidity(otherHalf,newBalance) (contracts/Booty.sol#477)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/Booty.sol#477)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (contracts/Booty.sol#477)
- _allowances[owner][spender] = amount (contracts/Booty.sol#396)
Reentrancy in Booty.transferFrom(address,address,uint256) (contracts/Booty.sol#174-178):
External calls:
- _transfer(sender,recipient,amount) (contracts/Booty.sol#175)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Booty.sol#491-497)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/Booty.sol#175)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/Booty.sol#176)
- _allowances[owner][spender] = amount (contracts/Booty.sol#396)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Booty._transfer(address,address,uint256) (contracts/Booty.sol#412-457):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/Booty.sol#444)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Booty.sol#491-497)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/Booty.sol#444)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
Event emitted after the call(s):
- Transfer(sender,address(this),tLiquidity) (contracts/Booty.sol#544)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- Transfer(sender,address(this),tLiquidity) (contracts/Booty.sol#570)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- Transfer(sender,rewardsFeeAddress,tRewards) (contracts/Booty.sol#545)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- Transfer(sender,address(this),tLiquidity) (contracts/Booty.sol#557)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- Transfer(sender,recipient,tTransferAmount) (contracts/Booty.sol#546)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- Transfer(sender,rewardsFeeAddress,tRewards) (contracts/Booty.sol#571)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- Transfer(sender,address(this),tLiquidity) (contracts/Booty.sol#584)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- Transfer(sender,rewardsFeeAddress,tRewards) (contracts/Booty.sol#558)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- Transfer(sender,recipient,tTransferAmount) (contracts/Booty.sol#559)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- Transfer(sender,recipient,tTransferAmount) (contracts/Booty.sol#572)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- Transfer(sender,rewardsFeeAddress,tRewards) (contracts/Booty.sol#585)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
- Transfer(sender,recipient,tTransferAmount) (contracts/Booty.sol#586)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Booty.sol#456)
Reentrancy in Booty.constructor(address,address) (contracts/Booty.sol#119-137):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/Booty.sol#125-126)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (contracts/Booty.sol#136)
Reentrancy in Booty.swapAndLiquify(uint256) (contracts/Booty.sol#459-480):
External calls:
- swapTokensForEth(half) (contracts/Booty.sol#471)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Booty.sol#491-497)
- addLiquidity(otherHalf,newBalance) (contracts/Booty.sol#477)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/Booty.sol#477)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/Booty.sol#397)
- addLiquidity(otherHalf,newBalance) (contracts/Booty.sol#477)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/Booty.sol#479)
Reentrancy in Booty.transferFrom(address,address,uint256) (contracts/Booty.sol#174-178):
External calls:
- _transfer(sender,recipient,amount) (contracts/Booty.sol#175)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Booty.sol#491-497)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/Booty.sol#175)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/Booty.sol#505-512)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/Booty.sol#397)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/Booty.sol#176)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (@openzeppelin/contracts/utils/Address.sol#26-35) uses assembly
- INLINE ASM (@openzeppelin/contracts/utils/Address.sol#33)
Address._verifyCallResult(bool,bytes,string) (@openzeppelin/contracts/utils/Address.sol#171-188) uses assembly
- INLINE ASM (@openzeppelin/contracts/utils/Address.sol#180-183)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.6.12', '>=0.4.0', '>=0.6.0<0.8.0', '>=0.6.2<0.8.0', '>=0.6.4']
- >=0.6.0<0.8.0 (@openzeppelin/contracts/GSN/Context.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/access/Ownable.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/math/SafeMath.sol#3)
- >=0.6.2<0.8.0 (@openzeppelin/contracts/utils/Address.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/utils/Context.sol#3)
- 0.6.12 (contracts/Booty.sol#1)
- >=0.4.0 (contracts/libs/BEP20.sol#3)
- >=0.6.4 (contracts/libs/IBEP20.sol#3)
Use one Solidity version.

Additional information: link

Booty.includeInReward(address) (contracts/Booty.sol#237-248) has costly operations inside a loop:
- _excluded.pop() (contracts/Booty.sol#244)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (@openzeppelin/contracts/utils/Address.sol#171-188) is never used and should be removed
Address.functionCall(address,bytes) (@openzeppelin/contracts/utils/Address.sol#79-81) is never used and should be removed
Address.functionCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#89-91) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (@openzeppelin/contracts/utils/Address.sol#104-106) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (@openzeppelin/contracts/utils/Address.sol#114-121) is never used and should be removed
Address.functionDelegateCall(address,bytes) (@openzeppelin/contracts/utils/Address.sol#153-155) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#163-169) is never used and should be removed
Address.functionStaticCall(address,bytes) (@openzeppelin/contracts/utils/Address.sol#129-131) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#139-145) is never used and should be removed
Address.isContract(address) (@openzeppelin/contracts/utils/Address.sol#26-35) is never used and should be removed
Address.sendValue(address,uint256) (@openzeppelin/contracts/utils/Address.sol#53-59) is never used and should be removed
BEP20._burn(address,uint256) (contracts/libs/BEP20.sol#238-244) is never used and should be removed
BEP20._burnFrom(address,uint256) (contracts/libs/BEP20.sol#273-276) is never used and should be removed
BEP20._mint(address,uint256) (contracts/libs/BEP20.sol#219-225) is never used and should be removed
Context._msgData() (@openzeppelin/contracts/utils/Context.sol#20-23) is never used and should be removed
SafeMath.div(uint256,uint256,string) (@openzeppelin/contracts/math/SafeMath.sol#190-193) is never used and should be removed
SafeMath.mod(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#152-155) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@openzeppelin/contracts/math/SafeMath.sol#210-213) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#24-28) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#60-63) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#70-73) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#45-53) is never used and should be removed
SafeMath.trySub(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#35-38) is never used and should be removed
Remove unused functions.

Additional information: link

Booty._rTotal (contracts/Booty.sol#75) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Booty._previousLiquidityFee (contracts/Booty.sol#83) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Booty._previousRewardsFee (contracts/Booty.sol#86) is set pre-construction with a non-constant function or state variable:
- _rewardsFee
Booty._previousTaxFee (contracts/Booty.sol#89) is set pre-construction with a non-constant function or state variable:
- _taxFee
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.6.0<0.8.0 (@openzeppelin/contracts/GSN/Context.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/access/Ownable.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/math/SafeMath.sol#3) is too complex
Pragma version>=0.6.2<0.8.0 (@openzeppelin/contracts/utils/Address.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/utils/Context.sol#3) is too complex
Pragma version>=0.4.0 (contracts/libs/BEP20.sol#3) allows old versions
Pragma version>=0.6.4 (contracts/libs/IBEP20.sol#3) 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

Low level call in Address.sendValue(address,uint256) (@openzeppelin/contracts/utils/Address.sol#53-59):
- (success) = recipient.call{value: amount}() (@openzeppelin/contracts/utils/Address.sol#57)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (@openzeppelin/contracts/utils/Address.sol#114-121):
- (success,returndata) = target.call{value: value}(data) (@openzeppelin/contracts/utils/Address.sol#119)
Low level call in Address.functionStaticCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#139-145):
- (success,returndata) = target.staticcall(data) (@openzeppelin/contracts/utils/Address.sol#143)
Low level call in Address.functionDelegateCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#163-169):
- (success,returndata) = target.delegatecall(data) (@openzeppelin/contracts/utils/Address.sol#167)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router02.WETH() (contracts/Booty.sol#38) is not in mixedCase
Parameter Booty.setRewardsFeeAddress(address)._rewardsFeeAddress (contracts/Booty.sol#270) is not in mixedCase
Parameter Booty.setNumTokensSellToAddToLiquidity(uint256)._numTokensSellToAddToLiquidity (contracts/Booty.sol#280) is not in mixedCase
Parameter Booty.setSwapAndLiquifyEnabled(bool)._enabled (contracts/Booty.sol#284) is not in mixedCase
Parameter Booty.calculateTaxFee(uint256)._amount (contracts/Booty.sol#352) is not in mixedCase
Parameter Booty.calculateLiquidityFee(uint256)._amount (contracts/Booty.sol#358) is not in mixedCase
Parameter Booty.calculateRewardsFee(uint256)._amount (contracts/Booty.sol#364) is not in mixedCase
Parameter Booty.setVirgins(address[],bool)._virgins (contracts/Booty.sol#405) is not in mixedCase
Parameter Booty.setVirgins(address[],bool)._isVirgin (contracts/Booty.sol#405) is not in mixedCase
Variable Booty._liquidityFee (contracts/Booty.sol#82) is not in mixedCase
Variable Booty._rewardsFee (contracts/Booty.sol#85) is not in mixedCase
Variable Booty._taxFee (contracts/Booty.sol#88) is not in mixedCase
Variable Booty._maxTxAmount (contracts/Booty.sol#99) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (@openzeppelin/contracts/utils/Context.sol#21)" inContext (@openzeppelin/contracts/utils/Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Booty._decimals (contracts/Booty.sol#80) should be constant
Booty._name (contracts/Booty.sol#78) should be constant
Booty._symbol (contracts/Booty.sol#79) should be constant
Booty._tTotal (contracts/Booty.sol#74) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (@openzeppelin/contracts/access/Ownable.sol#54-57)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (@openzeppelin/contracts/access/Ownable.sol#63-67)
name() should be declared external:
- BEP20.name() (contracts/libs/BEP20.sol#64-66)
- Booty.name() (contracts/Booty.sol#139-141)
symbol() should be declared external:
- BEP20.symbol() (contracts/libs/BEP20.sol#72-74)
- Booty.symbol() (contracts/Booty.sol#143-145)
decimals() should be declared external:
- BEP20.decimals() (contracts/libs/BEP20.sol#79-81)
- Booty.decimals() (contracts/Booty.sol#147-149)
totalSupply() should be declared external:
- BEP20.totalSupply() (contracts/libs/BEP20.sol#86-88)
- Booty.totalSupply() (contracts/Booty.sol#151-153)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (contracts/libs/BEP20.sol#105-108)
- Booty.transfer(address,uint256) (contracts/Booty.sol#160-163)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (contracts/libs/BEP20.sol#113-115)
- Booty.allowance(address,address) (contracts/Booty.sol#165-167)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (contracts/libs/BEP20.sol#124-127)
- Booty.approve(address,uint256) (contracts/Booty.sol#169-172)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (contracts/libs/BEP20.sol#141-149)
- Booty.transferFrom(address,address,uint256) (contracts/Booty.sol#174-178)
increaseAllowance(address,uint256) should be declared external:
- Booty.increaseAllowance(address,uint256) (contracts/Booty.sol#180-183)
decreaseAllowance(address,uint256) should be declared external:
- Booty.decreaseAllowance(address,uint256) (contracts/Booty.sol#185-188)
isExcludedFromReward(address) should be declared external:
- Booty.isExcludedFromReward(address) (contracts/Booty.sol#190-192)
totalFees() should be declared external:
- Booty.totalFees() (contracts/Booty.sol#194-196)
burnHalf() should be declared external:
- Booty.burnHalf() (contracts/Booty.sol#198-200)
deliver(uint256) should be declared external:
- Booty.deliver(uint256) (contracts/Booty.sol#202-209)
reflectionFromToken(uint256,bool) should be declared external:
- Booty.reflectionFromToken(uint256,bool) (contracts/Booty.sol#211-220)
excludeFromReward(address) should be declared external:
- Booty.excludeFromReward(address) (contracts/Booty.sol#228-235)
excludeFromFee(address) should be declared external:
- Booty.excludeFromFee(address) (contracts/Booty.sol#250-252)
includeInFee(address) should be declared external:
- Booty.includeInFee(address) (contracts/Booty.sol#254-256)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Booty.setSwapAndLiquifyEnabled(bool) (contracts/Booty.sol#284-287)
isExcludedFromFee(address) should be declared external:
- Booty.isExcludedFromFee(address) (contracts/Booty.sol#388-390)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (contracts/libs/BEP20.sol#163-166)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (contracts/libs/BEP20.sol#182-185)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.

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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Token has a considerable age, but we're still unable to find its website


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death

Price for BOOTY

News for BOOTY