Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
CatYear2022.addLiquidity(uint256,uint256) (#752-765) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CatYear2022._transfer(address,address,uint256) (#607-668):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#659)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#776-782)
- address(marketingWallet).sendValue(marketingAmt) (#738)
- address(operationWallet).sendValue(operationAmt) (#743)
- address(devWallet).sendValue(devAmt) (#748)
- swapAndLiquify(swapTokensAtAmount,taxes) (#660)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#776-782)
- address(marketingWallet).sendValue(marketingAmt) (#738)
- address(operationWallet).sendValue(operationAmt) (#743)
- address(devWallet).sendValue(devAmt) (#748)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#659)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#660)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#667)
- _rOwned[address(this)] += rOperation (#440)
- _rOwned[utilityWallet] += rUtility (#458)
- _rOwned[address(this)] += rMarketing (#431)
- _rOwned[address(this)] += rLiquidity (#422)
- _rOwned[address(this)] += rDev (#449)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#693)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#694)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#667)
- _rTotal -= rRfi (#412)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#667)
- _tOwned[address(this)] += tLiquidity (#420)
- _tOwned[address(this)] += tDev (#447)
- _tOwned[address(this)] += tOperation (#438)
- _tOwned[utilityWallet] += tUtility (#456)
- _tOwned[address(this)] += tMarketing (#429)
- _tOwned[sender] = _tOwned[sender] - tAmount (#686)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#690)
Apply the check-effects-interactions pattern.
Additional information: link
CatYear2022.rescueAnyBEP20Tokens(address,address,uint256) (#860-866) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#865)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
CatYear2022.swapAndLiquify(uint256,CatYear2022.Taxes) (#715-750) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#728)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#729)
CatYear2022.swapAndLiquify(uint256,CatYear2022.Taxes) (#715-750) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#728)
-marketingAmt = unitBalance * 2 * temp.marketing (#736)
CatYear2022.swapAndLiquify(uint256,CatYear2022.Taxes) (#715-750) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#728)
-operationAmt = unitBalance * 2 * temp.operation (#741)
CatYear2022.swapAndLiquify(uint256,CatYear2022.Taxes) (#715-750) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#728)
-devAmt = unitBalance * 2 * temp.dev (#746)
Consider ordering multiplication before division.
Additional information: link
CatYear2022.addLiquidity(uint256,uint256) (#752-765) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
Ensure that all the return values of the function calls are used.
Additional information: link
CatYear2022.allowance(address,address).owner (#266) shadows:
- Ownable.owner() (#46-48) (function)
CatYear2022._approve(address,address,uint256).owner (#597) shadows:
- Ownable.owner() (#46-48) (function)
Rename the local variables that shadow another component.
Additional information: link
CatYear2022.setTradingStatus(bool,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#329-344) should emit an event for:
- deadline = _deadline (#341)
CatYear2022.updateCooldown(bool,uint256) (#807-810) should emit an event for:
- coolDownTime = time * 1 (#808)
CatYear2022.updateSwapTokensAtAmount(uint256) (#812-814) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#813)
CatYear2022.updateMaxTxLimit(uint256,uint256) (#840-843) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#841)
- maxSellLimit = maxSell * 10 ** decimals() (#842)
CatYear2022.updateMaxWalletlimit(uint256) (#845-847) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#846)
Emit an event for critical parameter changes.
Additional information: link
CatYear2022.constructor(address)._pair (#215) lacks a zero-check on :
- pair = _pair (#218)
CatYear2022.updateMarketingWallet(address).newWallet (#791) lacks a zero-check on :
- marketingWallet = newWallet (#792)
CatYear2022.updateOperationWallet(address).newWallet (#795) lacks a zero-check on :
- operationWallet = newWallet (#796)
CatYear2022.updateDevWallet(address).newWallet (#799) lacks a zero-check on :
- devWallet = newWallet (#800)
CatYear2022.updateUtilityWallet(address).newWallet (#803) lacks a zero-check on :
- utilityWallet = newWallet (#804)
CatYear2022.updateRouterAndPair(address,address).newPair (#849) lacks a zero-check on :
- pair = newPair (#851)
Check that the address is not zero.
Additional information: link
Reentrancy in CatYear2022._transfer(address,address,uint256) (#607-668):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#659)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#776-782)
- address(marketingWallet).sendValue(marketingAmt) (#738)
- address(operationWallet).sendValue(operationAmt) (#743)
- address(devWallet).sendValue(devAmt) (#748)
- swapAndLiquify(swapTokensAtAmount,taxes) (#660)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#776-782)
- address(marketingWallet).sendValue(marketingAmt) (#738)
- address(operationWallet).sendValue(operationAmt) (#743)
- address(devWallet).sendValue(devAmt) (#748)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#659)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#660)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#667)
- totFeesPaid.liquidity += tLiquidity (#417)
- totFeesPaid.dev += tDev (#444)
- totFeesPaid.operation += tOperation (#435)
- totFeesPaid.utility += tUtility (#453)
- totFeesPaid.marketing += tMarketing (#426)
- totFeesPaid.rfi += tRfi (#413)
Reentrancy in CatYear2022.constructor(address) (#213-241):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#215)
State variables written after the call(s):
- excludeFromReward(pair) (#220)
- _excluded.push(account) (#359)
- excludeFromReward(deadWallet) (#221)
- _excluded.push(account) (#359)
- excludeFromReward(pair) (#220)
- _isExcluded[account] = true (#358)
- excludeFromReward(deadWallet) (#221)
- _isExcluded[account] = true (#358)
- _isExcludedFromFee[address(this)] = true (#224)
- _isExcludedFromFee[owner()] = true (#225)
- _isExcludedFromFee[marketingWallet] = true (#226)
- _isExcludedFromFee[operationWallet] = true (#227)
- _isExcludedFromFee[devWallet] = true (#228)
- _isExcludedFromFee[utilityWallet] = true (#229)
- _isExcludedFromFee[deadWallet] = true (#230)
- _rOwned[owner()] = _rTotal (#223)
- excludeFromReward(pair) (#220)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#356)
- excludeFromReward(deadWallet) (#221)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#356)
- allowedTransfer[address(this)] = true (#232)
- allowedTransfer[owner()] = true (#233)
- allowedTransfer[pair] = true (#234)
- allowedTransfer[marketingWallet] = true (#235)
- allowedTransfer[operationWallet] = true (#236)
- allowedTransfer[devWallet] = true (#237)
- allowedTransfer[utilityWallet] = true (#238)
- pair = _pair (#218)
- router = _router (#217)
Reentrancy in CatYear2022.swapAndLiquify(uint256,CatYear2022.Taxes) (#715-750):
External calls:
- swapTokensForBNB(toSwap) (#725)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#776-782)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#733)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#733)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#733)
- _allowances[owner][spender] = amount (#603)
Reentrancy in CatYear2022.transferFrom(address,address,uint256) (#275-287):
External calls:
- _transfer(sender,recipient,amount) (#280)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#776-782)
- address(marketingWallet).sendValue(marketingAmt) (#738)
- address(operationWallet).sendValue(operationAmt) (#743)
- address(devWallet).sendValue(devAmt) (#748)
External calls sending eth:
- _transfer(sender,recipient,amount) (#280)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#284)
- _allowances[owner][spender] = amount (#603)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CatYear2022._transfer(address,address,uint256) (#607-668):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#659)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#776-782)
- address(marketingWallet).sendValue(marketingAmt) (#738)
- address(operationWallet).sendValue(operationAmt) (#743)
- address(devWallet).sendValue(devAmt) (#748)
- swapAndLiquify(swapTokensAtAmount,taxes) (#660)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#776-782)
- address(marketingWallet).sendValue(marketingAmt) (#738)
- address(operationWallet).sendValue(operationAmt) (#743)
- address(devWallet).sendValue(devAmt) (#748)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#659)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#660)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tOperation + s.tDev) (#699-703)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#667)
- Transfer(sender,utilityWallet,s.tUtility) (#710)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#667)
- Transfer(sender,recipient,s.tTransferAmount) (#712)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#667)
Reentrancy in CatYear2022.constructor(address) (#213-241):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#215)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#240)
Reentrancy in CatYear2022.swapAndLiquify(uint256,CatYear2022.Taxes) (#715-750):
External calls:
- swapTokensForBNB(toSwap) (#725)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#776-782)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#733)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#733)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#604)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#733)
Reentrancy in CatYear2022.transferFrom(address,address,uint256) (#275-287):
External calls:
- _transfer(sender,recipient,amount) (#280)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#776-782)
- address(marketingWallet).sendValue(marketingAmt) (#738)
- address(operationWallet).sendValue(operationAmt) (#743)
- address(devWallet).sendValue(devAmt) (#748)
External calls sending eth:
- _transfer(sender,recipient,amount) (#280)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
- (success) = recipient.call{value: amount}() (#109)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#604)
- _approve(sender,_msgSender(),currentAllowance - amount) (#284)
Apply the check-effects-interactions pattern.
Additional information: link
CatYear2022._transfer(address,address,uint256) (#607-668) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#645)
Avoid relying on block.timestamp.
Additional information: link
CatYear2022.setTradingStatus(bool,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#329-344) compares to a boolean constant:
-state == true (#343)
Remove the equality to the boolean constant.
Additional information: link
CatYear2022.includeInReward(address) (#362-373) has costly operations inside a loop:
- _excluded.pop() (#369)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#31-34) is never used and should be removed
Remove unused functions.
Additional information: link
CatYear2022._rTotal (#143) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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) (#106-111):
- (success) = recipient.call{value: amount}() (#109)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IRouter.WETH() (#78) is not in mixedCase
Struct CatYear2022.valuesFromGetValues (#186-202) is not in CapWords
Parameter CatYear2022.setTradingStatus(bool,uint256,uint256,uint256,uint256,uint256,uint256,uint256)._deadline (#331) is not in mixedCase
Parameter CatYear2022.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._rfi (#388) is not in mixedCase
Parameter CatYear2022.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._marketing (#389) is not in mixedCase
Parameter CatYear2022.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._liquidity (#390) is not in mixedCase
Parameter CatYear2022.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._utility (#391) is not in mixedCase
Parameter CatYear2022.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._operation (#392) is not in mixedCase
Parameter CatYear2022.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._dev (#393) is not in mixedCase
Parameter CatYear2022.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._rfi (#400) is not in mixedCase
Parameter CatYear2022.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._marketing (#401) is not in mixedCase
Parameter CatYear2022.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._liquidity (#402) is not in mixedCase
Parameter CatYear2022.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._utility (#403) is not in mixedCase
Parameter CatYear2022.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._operation (#404) is not in mixedCase
Parameter CatYear2022.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._dev (#405) is not in mixedCase
Parameter CatYear2022.updateSwapEnabled(bool)._enabled (#816) is not in mixedCase
Parameter CatYear2022.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#861) is not in mixedCase
Parameter CatYear2022.rescueAnyBEP20Tokens(address,address,uint256)._to (#862) is not in mixedCase
Parameter CatYear2022.rescueAnyBEP20Tokens(address,address,uint256)._amount (#863) is not in mixedCase
Constant CatYear2022._decimals (#139) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CatYear2022.genesis_block (#150) is not in mixedCase
Constant CatYear2022._name (#159) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CatYear2022._symbol (#160) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#32)" inContext (#26-35)
Remove redundant statements if they congest code but offer no value.
Additional information: link
CatYear2022.slitherConstructorVariables() (#114-870) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#153)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CatYear2022._tTotal (#142) should be constant
CatYear2022.deadWallet (#153) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#55-57)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#59-62)
name() should be declared external:
- CatYear2022.name() (#244-246)
symbol() should be declared external:
- CatYear2022.symbol() (#248-250)
totalSupply() should be declared external:
- CatYear2022.totalSupply() (#257-259)
allowance(address,address) should be declared external:
- CatYear2022.allowance(address,address) (#266-268)
approve(address,uint256) should be declared external:
- CatYear2022.approve(address,uint256) (#270-273)
transferFrom(address,address,uint256) should be declared external:
- CatYear2022.transferFrom(address,address,uint256) (#275-287)
increaseAllowance(address,uint256) should be declared external:
- CatYear2022.increaseAllowance(address,uint256) (#289-292)
decreaseAllowance(address,uint256) should be declared external:
- CatYear2022.decreaseAllowance(address,uint256) (#294-303)
transfer(address,uint256) should be declared external:
- CatYear2022.transfer(address,uint256) (#305-308)
isExcludedFromReward(address) should be declared external:
- CatYear2022.isExcludedFromReward(address) (#310-312)
reflectionFromToken(uint256,bool) should be declared external:
- CatYear2022.reflectionFromToken(uint256,bool) (#314-327)
excludeFromFee(address) should be declared external:
- CatYear2022.excludeFromFee(address) (#375-377)
includeInFee(address) should be declared external:
- CatYear2022.includeInFee(address) (#379-381)
isExcludedFromFee(address) should be declared external:
- CatYear2022.isExcludedFromFee(address) (#383-385)
setTaxes(uint256,uint256,uint256,uint256,uint256,uint256) should be declared external:
- CatYear2022.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256) (#387-397)
setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256) should be declared external:
- CatYear2022.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256) (#399-409)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- CatYear2022.rescueAnyBEP20Tokens(address,address,uint256) (#860-866)
Use the external attribute for functions never called from the contract.
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.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Contract has 13% buy tax and 13% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
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