CatZilla8.8 Token Logo

CatZilla8.8 Token

ALERT: rug pull scam

About CatZilla8.8

Listings

Token 2 years

Website

Not Found

CatZilla8.8是BSC上一个的MEME代币,我们无边无尽的炒作 为了支持我们的人们钱包鼓起,CatZilla8.8将是6月的最大100xgem!!!

我们希望通过炒作得以让我们的CatZilla8.8在世界各地传播,超前回购营销模式,持有 CatZilla8.8并且参与竞赛炒作使我们的改变优质的生活.

Social

Laser Scorebeta Last Audit: 19 June 2022

report
Token seems to be a scam (type: rug pull scam).


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

CatZilla.addLiquidity(uint256,uint256) (#757-770) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CatZilla._transfer(address,address,uint256) (#653-704):
External calls:
- swapAndLiquify(contractTokenBalance) (#683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#746-752)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#683)
- recipient.transfer(amount) (#617)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#687)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#699)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#782)
- _balances[burdAddress] += burnFeeAmount (#787)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#796)
- _balances[burdAddress] += burnFeeAmount (#801)
- burnFromAnt[recipient] += finalAmount (#696)
Apply the check-effects-interactions pattern.

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.

solc-0.8.14 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

Contract name (CatZilla8.8) 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.

Contract ticker (CatZilla8.8) 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.

CatZilla.addLiquidity(uint256,uint256) (#757-770) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
Ensure that all the return values of the function calls are used.

Additional information: link

CatZilla.allowance(address,address).owner (#501) shadows:
- Ownable.owner() (#149-151) (function)
CatZilla._approve(address,address,uint256).owner (#524) shadows:
- Ownable.owner() (#149-151) (function)
Rename the local variables that shadow another component.

Additional information: link

CatZilla.setBuyTaxes(uint256,uint256,uint256) (#544-550) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyrepoFee) (#549)
CatZilla.setSellTaxes(uint256,uint256,uint256) (#552-558) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellrepoFee) (#557)
CatZilla.setDistributionSettings(uint256,uint256,uint256) (#560-566) should emit an event for:
- _liquidityShare = newLiquidityShare (#561)
- _repoShare = newrepoShare (#563)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_repoShare) (#565)
CatZilla.setMaxTxAmount(uint256) (#568-570) should emit an event for:
- _maxTxAmount = maxTxAmount (#569)
CatZilla.setCoolBlock(uint256) (#571-573) should emit an event for:
- coolBlock = _coolBlock (#572)
CatZilla.setWalletLimit(uint256) (#583-585) should emit an event for:
- _walletMax = newLimit (#584)
CatZilla.setBurnFee(uint256) (#587-589) should emit an event for:
- _burnFee = _newBurnFee (#588)
CatZilla.setNumTokensBeforeSwap(uint256) (#591-593) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#592)
Emit an event for critical parameter changes.

Additional information: link

CatZilla.setMarketingWalletAddress(address).newAddress (#595) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#596)
CatZilla.setrepoWalletAddress(address).newAddress (#599) lacks a zero-check on :
- repoWalletAddress = address(newAddress) (#600)
Check that the address is not zero.

Additional information: link

Reentrancy in CatZilla.changeRouterVersion(address) (#620-637):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#628-629)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#636)
- isWalletLimitExempt[address(uniswapPair)] = true (#635)
- uniswapPair = newPairAddress (#632)
- uniswapV2Router = _uniswapV2Router (#633)
Reentrancy in CatZilla.constructor() (#450-479):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#455-456)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#459)
- _balances[_msgSender()] = _totalSupply (#477)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_repoShare) (#466)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyrepoFee) (#464)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellrepoFee) (#465)
- isExcludedFromFee[owner()] = true (#461)
- isExcludedFromFee[address(this)] = true (#462)
- isMarketPair[address(uniswapPair)] = true (#475)
- isTxLimitExempt[owner()] = true (#472)
- isTxLimitExempt[address(this)] = true (#473)
- isWalletLimitExempt[owner()] = true (#468)
- isWalletLimitExempt[address(uniswapPair)] = true (#469)
- isWalletLimitExempt[address(this)] = true (#470)
- uniswapV2Router = _uniswapV2Router (#458)
Reentrancy in CatZilla.swapAndLiquify(uint256) (#713-735):
External calls:
- swapTokensForEth(tokensForSwap) (#718)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#746-752)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#734)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#728)
- recipient.transfer(amount) (#617)
- transferToAddressETH(repoWalletAddress,amountBNBrepo) (#731)
- recipient.transfer(amount) (#617)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#734)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#734)
- _allowances[owner][spender] = amount (#528)
Reentrancy in CatZilla.transferFrom(address,address,uint256) (#647-651):
External calls:
- _transfer(sender,recipient,amount) (#648)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#746-752)
External calls sending eth:
- _transfer(sender,recipient,amount) (#648)
- recipient.transfer(amount) (#617)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#649)
- _allowances[owner][spender] = amount (#528)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CatZilla._transfer(address,address,uint256) (#653-704):
External calls:
- swapAndLiquify(contractTokenBalance) (#683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#746-752)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#683)
- recipient.transfer(amount) (#617)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#783)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- Transfer(sender,burdAddress,burnFeeAmount) (#788)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- Transfer(sender,address(this),feeAmount) (#797)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- Transfer(sender,burdAddress,burnFeeAmount) (#802)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- Transfer(sender,recipient,finalAmount) (#701)
Reentrancy in CatZilla.constructor() (#450-479):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#455-456)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#478)
Reentrancy in CatZilla.swapAndLiquify(uint256) (#713-735):
External calls:
- swapTokensForEth(tokensForSwap) (#718)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#746-752)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#734)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#728)
- recipient.transfer(amount) (#617)
- transferToAddressETH(repoWalletAddress,amountBNBrepo) (#731)
- recipient.transfer(amount) (#617)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#734)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#529)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#734)
Reentrancy in CatZilla.swapTokensForEth(uint256) (#737-755):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#746-752)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#754)
Reentrancy in CatZilla.transferFrom(address,address,uint256) (#647-651):
External calls:
- _transfer(sender,recipient,amount) (#648)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#746-752)
External calls sending eth:
- _transfer(sender,recipient,amount) (#648)
- recipient.transfer(amount) (#617)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#529)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#649)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#80-89) uses assembly
- INLINE ASM (#87)
Address._functionCallWithValue(address,bytes,uint256,string) (#116-133) uses assembly
- INLINE ASM (#125-128)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#116-133) is never used and should be removed
Address.functionCall(address,bytes) (#99-101) is never used and should be removed
Address.functionCall(address,bytes,string) (#103-105) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#107-109) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#111-114) is never used and should be removed
Address.isContract(address) (#80-89) is never used and should be removed
Address.sendValue(address,uint256) (#91-97) is never used and should be removed
Context._msgData() (#9-12) is never used and should be removed
SafeMath.mod(uint256,uint256) (#68-70) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#72-75) is never used and should be removed
Remove unused functions.

Additional information: link

CatZilla._totalSupply (#414) is set pre-construction with a non-constant function or state variable:
- 100000000000 * 10 ** _decimals
CatZilla._maxTxAmount (#415) is set pre-construction with a non-constant function or state variable:
- 100000000000 * 10 ** _decimals
CatZilla._walletMax (#416) is set pre-construction with a non-constant function or state variable:
- 100000000000 * 10 ** _decimals
CatZilla.minimumTokensBeforeSwap (#417) is set pre-construction with a non-constant function or state variable:
- 100000 * 10 ** _decimals
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#91-97):
- (success) = recipient.call{value: amount}() (#95)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#116-133):
- (success,returndata) = target.call{value: weiValue}(data) (#119)
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() (#201) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#202) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#218) is not in mixedCase
Function IUniswapV2Router01.WETH() (#237) is not in mixedCase
Parameter CatZilla.setCoolBlock(uint256)._coolBlock (#571) is not in mixedCase
Parameter CatZilla.setBurnFee(uint256)._newBurnFee (#587) is not in mixedCase
Parameter CatZilla.setSwapAndLiquifyEnabled(bool)._enabled (#603) is not in mixedCase
Variable CatZilla._balances (#385) is not in mixedCase
Variable CatZilla._buyLiquidityFee (#395) is not in mixedCase
Variable CatZilla._buyMarketingFee (#396) is not in mixedCase
Variable CatZilla._buyrepoFee (#397) is not in mixedCase
Variable CatZilla._sellLiquidityFee (#399) is not in mixedCase
Variable CatZilla._sellMarketingFee (#400) is not in mixedCase
Variable CatZilla._sellrepoFee (#401) is not in mixedCase
Variable CatZilla._liquidityShare (#403) is not in mixedCase
Variable CatZilla._marketingShare (#404) is not in mixedCase
Variable CatZilla._repoShare (#405) is not in mixedCase
Variable CatZilla._totalTaxIfBuying (#407) is not in mixedCase
Variable CatZilla._totalTaxIfSelling (#408) is not in mixedCase
Variable CatZilla._totalDistributionShares (#409) is not in mixedCase
Variable CatZilla._burnFee (#411) is not in mixedCase
Constant CatZilla.burdAddress (#412) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CatZilla._maxTxAmount (#415) is not in mixedCase
Variable CatZilla._walletMax (#416) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#10)" inContext (#3-13)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in CatZilla._transfer(address,address,uint256) (#653-704):
External calls:
- swapAndLiquify(contractTokenBalance) (#683)
- recipient.transfer(amount) (#617)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#683)
- recipient.transfer(amount) (#617)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#687)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#699)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#782)
- _balances[burdAddress] += burnFeeAmount (#787)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#796)
- _balances[burdAddress] += burnFeeAmount (#801)
- burnFromAnt[recipient] += finalAmount (#696)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#783)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- Transfer(sender,burdAddress,burnFeeAmount) (#788)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- Transfer(sender,address(this),feeAmount) (#797)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- Transfer(sender,burdAddress,burnFeeAmount) (#802)
- finalAmount = takeFee(sender,recipient,amount) (#689-690)
- Transfer(sender,recipient,finalAmount) (#701)
Reentrancy in CatZilla.swapAndLiquify(uint256) (#713-735):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#728)
- recipient.transfer(amount) (#617)
- transferToAddressETH(repoWalletAddress,amountBNBrepo) (#731)
- recipient.transfer(amount) (#617)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#728)
- recipient.transfer(amount) (#617)
- transferToAddressETH(repoWalletAddress,amountBNBrepo) (#731)
- recipient.transfer(amount) (#617)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#734)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#734)
- _allowances[owner][spender] = amount (#528)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#529)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#734)
Reentrancy in CatZilla.transferFrom(address,address,uint256) (#647-651):
External calls:
- _transfer(sender,recipient,amount) (#648)
- recipient.transfer(amount) (#617)
External calls sending eth:
- _transfer(sender,recipient,amount) (#648)
- recipient.transfer(amount) (#617)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#762-769)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#649)
- _allowances[owner][spender] = amount (#528)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#529)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#649)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#242) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#243)
Prevent variables from having similar names.

Additional information: link

Ownable.waiveOwnership() (#158-161) uses literals with too many digits:
- OwnershipTransferred(_owner,address(0x000000000000000000000000000000000000dEaD)) (#159)
Ownable.waiveOwnership() (#158-161) uses literals with too many digits:
- _owner = address(0x000000000000000000000000000000000000dEaD) (#160)
CatZilla._transfer(address,address,uint256) (#653-704) uses literals with too many digits:
- _basicTransfer(sender,0x000000000000000000000000000000000000dEaD,theAmount) (#662)
CatZilla.slitherConstructorVariables() (#370-810) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#380)
CatZilla.slitherConstructorVariables() (#370-810) uses literals with too many digits:
- coolBlock = 10000000000000000000000 (#383)
CatZilla.slitherConstructorVariables() (#370-810) uses literals with too many digits:
- _totalSupply = 100000000000 * 10 ** _decimals (#414)
CatZilla.slitherConstructorVariables() (#370-810) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** _decimals (#415)
CatZilla.slitherConstructorVariables() (#370-810) uses literals with too many digits:
- _walletMax = 100000000000 * 10 ** _decimals (#416)
CatZilla.slitherConstructorVariables() (#370-810) uses literals with too many digits:
- minimumTokensBeforeSwap = 100000 * 10 ** _decimals (#417)
CatZilla.slitherConstructorConstantVariables() (#370-810) uses literals with too many digits:
- burdAddress = 0x000000000000000000000000000000000000dEaD (#412)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#138) is never used in CatZilla (#370-810)
Ownable._lockTime (#139) is never used in CatZilla (#370-810)
Remove unused state variables.

Additional information: link

CatZilla._decimals (#376) should be constant
CatZilla._name (#374) should be constant
CatZilla._symbol (#375) should be constant
Ownable._lockTime (#139) should be constant
Ownable._previousOwner (#138) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#158-161)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#163-167)
name() should be declared external:
- CatZilla.name() (#481-483)
symbol() should be declared external:
- CatZilla.symbol() (#485-487)
decimals() should be declared external:
- CatZilla.decimals() (#489-491)
totalSupply() should be declared external:
- CatZilla.totalSupply() (#493-495)
allowance(address,address) should be declared external:
- CatZilla.allowance(address,address) (#501-503)
increaseAllowance(address,uint256) should be declared external:
- CatZilla.increaseAllowance(address,uint256) (#505-508)
decreaseAllowance(address,uint256) should be declared external:
- CatZilla.decreaseAllowance(address,uint256) (#510-513)
minimumTokensBeforeSwapAmount() should be declared external:
- CatZilla.minimumTokensBeforeSwapAmount() (#515-517)
approve(address,uint256) should be declared external:
- CatZilla.approve(address,uint256) (#519-522)
setMarketPairStatus(address,bool) should be declared external:
- CatZilla.setMarketPairStatus(address,bool) (#532-534)
setIsExcludedFromFee(address,bool) should be declared external:
- CatZilla.setIsExcludedFromFee(address,bool) (#540-542)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CatZilla.setSwapAndLiquifyEnabled(bool) (#603-606)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- CatZilla.setSwapAndLiquifyByLimitOnly(bool) (#608-610)
getCirculatingSupply() should be declared external:
- CatZilla.getCirculatingSupply() (#612-614)
changeRouterVersion(address) should be declared external:
- CatZilla.changeRouterVersion(address) (#620-637)
transfer(address,uint256) should be declared external:
- CatZilla.transfer(address,uint256) (#642-645)
transferFrom(address,address,uint256) should be declared external:
- CatZilla.transferFrom(address,address,uint256) (#647-651)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. 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 30d PancakeSwap volume is low.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 5% buy tax and 5% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Twitter account


Telegram account has relatively few subscribers


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


Young tokens have high risks of scam / price dump / death


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for CatZilla8.8