Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
_CatWARS.swapBack() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#642-691) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
- (tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in _CatWARS._transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#577-618):
External calls:
- swapBack() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#587)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#652-658)
- dividendDistributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#668)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
- (tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#681-688)
External calls sending eth:
- swapBack() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#587)
- dividendDistributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#668)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
- (tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#681-688)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#595)
- _balances[recipient] = _balances[recipient].add(finalAmount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#603)
- finalAmount = takeFee(sender,recipient,amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#602)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#632)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#263-275) ignores return value by RewardToken.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#269)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
_CatWARS.swapBack().tmpSuccess (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673) is written in both
(tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
tmpSuccess = false (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#677)
_CatWARS.swapBack().tmpSuccess1 (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674) is written in both
(tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
tmpSuccess1 = false (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#678)
Fix or remove the writes.
Additional information: link
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.
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Contract ticker (CAT WARS) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
Reentrancy in DividendDistributor.distributeDividend(address) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#263-275):
External calls:
- RewardToken.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#269)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#271)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#272)
Reentrancy in DividendDistributor.process(uint256) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#234-256):
External calls:
- distributeDividend(shareholders[currentIndex]) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#248)
- RewardToken.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#269)
State variables written after the call(s):
- currentIndex ++ (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#253)
Reentrancy in DividendDistributor.setShare(address,uint256) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#197-212):
External calls:
- distributeDividend(shareholder) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#200)
- RewardToken.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#269)
State variables written after the call(s):
- shares[shareholder].amount = amount (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#210)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#211)
Apply the check-effects-interactions pattern.
Additional information: link
_CatWARS.swapBack() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#642-691) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#681-688)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#192-195) should emit an event for:
- minPeriod = newMinPeriod (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#193)
- minDistribution = newMinDistribution (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#194)
_CatWARS.changeFees(uint256,uint256,uint256,uint256) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#534-542) should emit an event for:
- liquidityFee = newLiqFee (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#535)
- rewardsFee = newRewardFee (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#536)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#540)
- totalFeeIfSelling = totalFee.add(extraFeeOnSell) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#541)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#362) lacks a zero-check on :
- owner = adr (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#363)
_CatWARS.changeFeeReceivers(address,address,address).newLiquidityReceiver (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#544) lacks a zero-check on :
- autoLiquidityReceiver = newLiquidityReceiver (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#545)
_CatWARS.changeFeeReceivers(address,address,address).newMarketingWallet (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#544) lacks a zero-check on :
- marketingWallet = newMarketingWallet (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#546)
_CatWARS.changeFeeReceivers(address,address,address).newanothermarketingWallet (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#544) lacks a zero-check on :
- anothermarketingWallet = newanothermarketingWallet (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#547)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#263-275) has external calls inside a loop: RewardToken.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#269)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in _CatWARS._transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#577-618):
External calls:
- swapBack() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#587)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#652-658)
- dividendDistributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#668)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
- (tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#681-688)
External calls sending eth:
- swapBack() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#587)
- dividendDistributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#668)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
- (tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#681-688)
State variables written after the call(s):
- launch() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#591)
- launchedAt = block.number (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#500)
Reentrancy in _CatWARS.constructor() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#430-462):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#433)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#434)
- _balances[msg.sender] = _totalSupply (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#460)
- anothermarketingWallet = 0x848351fb830dab90dfa0a5C64FE3464777Ced130 (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#455)
- autoLiquidityReceiver = msg.sender (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#453)
- dividendDistributor = new DividendDistributor(address(router)) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#436)
- isDividendExempt[pair] = true (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#446)
- isDividendExempt[address(this)] = true (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#448)
- isDividendExempt[DEAD] = true (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#449)
- isDividendExempt[ZERO] = true (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#450)
- isFeeExempt[msg.sender] = true (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#438)
- isFeeExempt[address(this)] = true (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#439)
- isFeeExempt[anothermarketingWallet] = true (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#440)
- isTxLimitExempt[msg.sender] = true (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#442)
- isTxLimitExempt[pair] = true (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#443)
- isTxLimitExempt[DEAD] = true (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#444)
- marketingWallet = msg.sender (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#454)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#457)
- totalFeeIfSelling = totalFee.add(extraFeeOnSell) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#458)
Reentrancy in DividendDistributor.deposit() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#214-232):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#222-227)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#231)
- totalDividends = totalDividends.add(amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#230)
Reentrancy in DividendDistributor.distributeDividend(address) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#263-275):
External calls:
- RewardToken.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#269)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#270)
Reentrancy in DividendDistributor.setShare(address,uint256) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#197-212):
External calls:
- distributeDividend(shareholder) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#200)
- RewardToken.transfer(shareholder,amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#269)
State variables written after the call(s):
- addShareholder(shareholder) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#204)
- shareholderIndexes[shareholder] = shareholders.length (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#293)
- removeShareholder(shareholder) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#206)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#299)
- addShareholder(shareholder) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#204)
- shareholders.push(shareholder) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#294)
- removeShareholder(shareholder) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#206)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#298)
- shareholders.pop() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#300)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#209)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in _CatWARS._transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#577-618):
External calls:
- swapBack() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#587)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#652-658)
- dividendDistributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#668)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
- (tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#681-688)
- dividendDistributor.setShare(sender,_balances[sender]) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#607)
- dividendDistributor.setShare(recipient,_balances[recipient]) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#611)
- dividendDistributor.process(distributorGas) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#614)
External calls sending eth:
- swapBack() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#587)
- dividendDistributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#668)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
- (tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#681-688)
Event emitted after the call(s):
- Transfer(sender,recipient,finalAmount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#616)
Reentrancy in _CatWARS._transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#577-618):
External calls:
- swapBack() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#587)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#652-658)
- dividendDistributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#668)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
- (tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#681-688)
External calls sending eth:
- swapBack() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#587)
- dividendDistributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#668)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
- (tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#681-688)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#633)
- finalAmount = takeFee(sender,recipient,amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#602)
Reentrancy in _CatWARS.constructor() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#430-462):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#433)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#461)
Reentrancy in _CatWARS.swapBack() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#642-691):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#652-658)
- dividendDistributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#668)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
- (tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#681-688)
External calls sending eth:
- dividendDistributor.deposit{value: amountBNBReflection}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#668)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
- (tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#681-688)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#689)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#258-261) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#259-260)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#234-256) has costly operations inside a loop:
- currentIndex = 0 (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#245)
DividendDistributor.distributeDividend(address) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#263-275) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#268)
DividendDistributor.process(uint256) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#234-256) has costly operations inside a loop:
- currentIndex ++ (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#253)
Use a local variable to hold the loop computation result.
Additional information: link
_CatWARS._maxTxAmount (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#385) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 100 / 100
_CatWARS._walletMax (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#386) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 100 / 100
_CatWARS.swapThreshold (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#422) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 5 / 2000
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.7.4 (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#32) allows old versions
solc-0.7.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 _CatWARS.swapBack() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#642-691):
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#673)
- (tmpSuccess1) = address(anothermarketingWallet).call{gas: 30000,value: anothermarketingShare}() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#674)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IDEXRouter.WETH() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#91) is not in mixedCase
Variable DividendDistributor._token (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#148) is not in mixedCase
Variable DividendDistributor.RewardToken (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#158) is not in mixedCase
Contract _CatWARS (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#371-696) is not in CapWords
Constant _CatWARS._name (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#375) is not in UPPER_CASE_WITH_UNDERSCORES
Constant _CatWARS._symbol (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#376) is not in UPPER_CASE_WITH_UNDERSCORES
Constant _CatWARS._decimals (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#377) is not in UPPER_CASE_WITH_UNDERSCORES
Variable _CatWARS.DEAD (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#379) is not in mixedCase
Variable _CatWARS.ZERO (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#380) is not in mixedCase
Variable _CatWARS.RewardToken (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#382) is not in mixedCase
Variable _CatWARS._totalSupply (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#384) is not in mixedCase
Variable _CatWARS._maxTxAmount (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#385) is not in mixedCase
Variable _CatWARS._walletMax (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#386) is not in mixedCase
Variable _CatWARS._balances (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#390) is not in mixedCase
Variable _CatWARS._allowances (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#391) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#96) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#97)
Prevent variables from having similar names.
Additional information: link
_CatWARS.slitherConstructorVariables() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#371-696) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#379)
_CatWARS.slitherConstructorVariables() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#371-696) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#380)
_CatWARS.slitherConstructorVariables() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#371-696) uses literals with too many digits:
- _totalSupply = 100000000 * (10 ** _decimals) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#384)
_CatWARS.slitherConstructorVariables() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#371-696) uses literals with too many digits:
- distributorGas = 300000 (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#416)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
_CatWARS.RewardToken (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#382) is never used in _CatWARS (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#371-696)
Remove unused state variables.
Additional information: link
DividendDistributor.dividendsPerShareAccuracyFactor (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#169) should be constant
DividendDistributor.routerAddress (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#157) should be constant
_CatWARS.DEAD (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#379) should be constant
_CatWARS.RewardToken (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#382) should be constant
_CatWARS.ZERO (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#380) should be constant
_CatWARS._totalSupply (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#384) should be constant
_CatWARS.routerAddress (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#381) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
authorize(address) should be declared external:
- Auth.authorize(address) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#334-336)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#341-343)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#362-366)
getCirculatingSupply() should be declared external:
- _CatWARS.getCirculatingSupply() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#472-474)
claim() should be declared external:
- _CatWARS.claim() (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#490-493)
tradingStatus(bool) should be declared external:
- _CatWARS.tradingStatus(bool) (crytic-export/etherscan-contracts/0x598d5da4682b01e9da21566d1f6843dfacc6a732.bscscan.com-_CatWARS.sol#638-640)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 5% buy tax and 99% sell tax.
Taxes are extremely high (over 30%)
Additional information: link
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.
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 website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts