Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
KittenPye.clearStuckBalance() (#884-886) sends eth to arbitrary user
Dangerous calls:
- address(feeaddress).transfer(address(this).balance) (#885)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
KittenPye.claimERCtoknes(IERC20) (#888-890) ignores return value by tokenAddress.transfer(feeaddress,tokenAddress.balanceOf(address(this))) (#889)
KittenPye.depositLPFee(uint256,address) (#1100-1112) ignores return value by IERC20(token).transferFrom(msg.sender,address(this),amount) (#1108)
KittenPye.depositLPFee(uint256,address) (#1100-1112) ignores return value by IERC20(token).transfer(feeaddress,amount) (#1109)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
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.
Contract ownership is not renounced (belongs to a wallet)
KittenPye.constructor() (#714-736) ignores return value by IPYESwapPair(pyeSwapPair).updateTotalFee(1200) (#733)
KittenPye._updatePairsFee(uint256) (#856-860) ignores return value by IPYESwapPair(pairs[j]).updateTotalFee(fee) (#858)
KittenPye.addPair(address,address) (#1123-1135) ignores return value by IPYESwapPair(_pair).updateTotalFee(_totalTax) (#1132)
Ensure that all the return values of the function calls are used.
Additional information: link
KittenPye.allowance(address,address).owner (#764) shadows:
- Ownable.owner() (#378-380) (function)
KittenPye._approve(address,address,uint256).owner (#1006) shadows:
- Ownable.owner() (#378-380) (function)
Rename the local variables that shadow another component.
Additional information: link
KittenPye._setmaxwalletamount(uint256) (#874-877) should emit an event for:
- _maxWallet = amount * 10 ** 9 (#876)
KittenPye.setmaxTxAmount(uint256) (#879-882) should emit an event for:
- _maxTxAmount = amount * 10 ** 9 (#881)
KittenPye.setFees(uint256,uint256) (#911-919) should emit an event for:
- _taxFee = _tax (#913)
- _developmentFee = _developmentTax (#914)
Emit an event for critical parameter changes.
Additional information: link
KittenPye.setfeeaddress(address).walletAddress (#870) lacks a zero-check on :
- feeaddress = walletAddress (#871)
KittenPye.EnableTrading(address)._address (#906) lacks a zero-check on :
- feeaddress = _address (#908)
Check that the address is not zero.
Additional information: link
Reentrancy in KittenPye.addPair(address,address) (#1123-1135):
External calls:
- IPYESwapPair(_pair).updateTotalFee(_totalTax) (#1132)
State variables written after the call(s):
- tokens[pairsLength] = _token (#1133)
Reentrancy in KittenPye.constructor() (#714-736):
External calls:
- pyeSwapPair = IPYESwapFactory(pyeSwapRouter.factory()).createPair(address(this),WBNB,true) (#720-721)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#730)
- _isExcludedFromFee[address(this)] = true (#731)
- depwallet = _msgSender() (#728)
- pairs[pairsLength] = pyeSwapPair (#725)
- pairsLength += 1 (#726)
- tokens[pairsLength] = WBNB (#724)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in KittenPye.constructor() (#714-736):
External calls:
- pyeSwapPair = IPYESwapFactory(pyeSwapRouter.factory()).createPair(address(this),WBNB,true) (#720-721)
- IPYESwapPair(pyeSwapPair).updateTotalFee(1200) (#733)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#735)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#425-430) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#427)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#230-239) uses assembly
- INLINE ASM (#237)
Address._functionCallWithValue(address,bytes,uint256,string) (#323-344) uses assembly
- INLINE ASM (#336-339)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.8.9']
- ^0.8.9 (#13)
- >=0.5.0 (#30)
- >=0.5.0 (#433)
- >=0.5.0 (#453)
- >=0.6.2 (#509)
- >=0.6.2 (#604)
Use one Solidity version.
Additional information: link
KittenPye.includeInReward(address) (#833-844) has costly operations inside a loop:
- _excluded.pop() (#840)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#323-344) is never used and should be removed
Address.functionCall(address,bytes) (#283-285) is never used and should be removed
Address.functionCall(address,bytes,string) (#293-295) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#308-310) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#318-321) is never used and should be removed
Address.isContract(address) (#230-239) is never used and should be removed
Address.sendValue(address,uint256) (#257-263) is never used and should be removed
Context._msgData() (#202-205) is never used and should be removed
SafeMath.mod(uint256,uint256) (#174-176) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#190-193) is never used and should be removed
Remove unused functions.
Additional information: link
KittenPye._rTotal (#675) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
KittenPye._previousTaxFee (#684) is set pre-construction with a non-constant function or state variable:
- _taxFee
KittenPye._previousLiquidityFee (#687) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
KittenPye._totalTax (#690) is set pre-construction with a non-constant function or state variable:
- (_taxFee * 100) + _developmentFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Pragma version^0.8.9 (#13) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version>=0.5.0 (#30) allows old versions
Pragma version>=0.5.0 (#433) allows old versions
Pragma version>=0.5.0 (#453) allows old versions
Pragma version>=0.6.2 (#509) allows old versions
Pragma version>=0.6.2 (#604) allows old versions
solc-0.8.9 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#257-263):
- (success) = recipient.call{value: amount}() (#261)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#323-344):
- (success,returndata) = target.call{value: weiValue}(data) (#327)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPYESwapPair.DOMAIN_SEPARATOR() (#472) is not in mixedCase
Function IPYESwapPair.PERMIT_TYPEHASH() (#473) is not in mixedCase
Function IPYESwapPair.MINIMUM_LIQUIDITY() (#490) is not in mixedCase
Function IPYESwapRouter01.WETH() (#512) is not in mixedCase
Function KittenPye._setmaxwalletamount(uint256) (#874-877) is not in mixedCase
Function KittenPye.EnableTrading(address) (#906-909) is not in mixedCase
Parameter KittenPye.EnableTrading(address)._address (#906) is not in mixedCase
Parameter KittenPye.setFees(uint256,uint256)._tax (#911) is not in mixedCase
Parameter KittenPye.setFees(uint256,uint256)._developmentTax (#911) is not in mixedCase
Parameter KittenPye.calculateTaxFee(uint256)._amount (#975) is not in mixedCase
Parameter KittenPye.calculateLiquidityFee(uint256)._amount (#981) is not in mixedCase
Parameter KittenPye.addPair(address,address)._pair (#1123) is not in mixedCase
Parameter KittenPye.addPair(address,address)._token (#1123) is not in mixedCase
Variable KittenPye.WBNB (#661) is not in mixedCase
Variable KittenPye._totalTax (#690) is not in mixedCase
Variable KittenPye._maxTxAmount (#698) is not in mixedCase
Variable KittenPye._maxWallet (#699) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#203)" inContext (#196-206)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IPYESwapRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#517) is too similar to IPYESwapRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#518)
Variable KittenPye._transferToExcluded(address,address,uint256).rTransferAmount (#1081) is too similar to KittenPye._getValues(uint256).tTransferAmount (#930)
Variable KittenPye.reflectionFromToken(uint256,bool).rTransferAmount (#812) is too similar to KittenPye._transferToExcluded(address,address,uint256).tTransferAmount (#1081)
Variable KittenPye._transferFromExcluded(address,address,uint256).rTransferAmount (#1091) is too similar to KittenPye._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable KittenPye._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#946) is too similar to KittenPye._transferBothExcluded(address,address,uint256).tTransferAmount (#846)
Variable KittenPye._getValues(uint256).rTransferAmount (#931) is too similar to KittenPye._getTValues(uint256).tTransferAmount (#938)
Variable KittenPye._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#946) is too similar to KittenPye._transferStandard(address,address,uint256).tTransferAmount (#1072)
Variable KittenPye._transferBothExcluded(address,address,uint256).rTransferAmount (#846) is too similar to KittenPye._transferBothExcluded(address,address,uint256).tTransferAmount (#846)
Variable KittenPye._transferBothExcluded(address,address,uint256).rTransferAmount (#846) is too similar to KittenPye._transferStandard(address,address,uint256).tTransferAmount (#1072)
Variable KittenPye._transferStandard(address,address,uint256).rTransferAmount (#1072) is too similar to KittenPye._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable KittenPye.reflectionFromToken(uint256,bool).rTransferAmount (#812) is too similar to KittenPye._getValues(uint256).tTransferAmount (#930)
Variable KittenPye._transferToExcluded(address,address,uint256).rTransferAmount (#1081) is too similar to KittenPye._transferBothExcluded(address,address,uint256).tTransferAmount (#846)
Variable KittenPye._transferToExcluded(address,address,uint256).rTransferAmount (#1081) is too similar to KittenPye._transferStandard(address,address,uint256).tTransferAmount (#1072)
Variable KittenPye._getValues(uint256).rTransferAmount (#931) is too similar to KittenPye._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable KittenPye._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#946) is too similar to KittenPye._getTValues(uint256).tTransferAmount (#938)
Variable KittenPye._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#946) is too similar to KittenPye._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable KittenPye._transferBothExcluded(address,address,uint256).rTransferAmount (#846) is too similar to KittenPye._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable KittenPye.reflectionFromToken(uint256,bool).rTransferAmount (#812) is too similar to KittenPye._transferBothExcluded(address,address,uint256).tTransferAmount (#846)
Variable KittenPye.reflectionFromToken(uint256,bool).rTransferAmount (#812) is too similar to KittenPye._transferStandard(address,address,uint256).tTransferAmount (#1072)
Variable KittenPye._getValues(uint256).rTransferAmount (#931) is too similar to KittenPye._transferToExcluded(address,address,uint256).tTransferAmount (#1081)
Variable KittenPye._transferStandard(address,address,uint256).rTransferAmount (#1072) is too similar to KittenPye._getValues(uint256).tTransferAmount (#930)
Variable KittenPye._transferToExcluded(address,address,uint256).rTransferAmount (#1081) is too similar to KittenPye._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable KittenPye._getValues(uint256).rTransferAmount (#931) is too similar to KittenPye._getValues(uint256).tTransferAmount (#930)
Variable KittenPye._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#946) is too similar to KittenPye._transferToExcluded(address,address,uint256).tTransferAmount (#1081)
Variable KittenPye._transferBothExcluded(address,address,uint256).rTransferAmount (#846) is too similar to KittenPye._getValues(uint256).tTransferAmount (#930)
Variable KittenPye.reflectionFromToken(uint256,bool).rTransferAmount (#812) is too similar to KittenPye._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable KittenPye._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#946) is too similar to KittenPye._getValues(uint256).tTransferAmount (#930)
Variable KittenPye._transferStandard(address,address,uint256).rTransferAmount (#1072) is too similar to KittenPye._transferStandard(address,address,uint256).tTransferAmount (#1072)
Variable KittenPye._transferToExcluded(address,address,uint256).rTransferAmount (#1081) is too similar to KittenPye._transferToExcluded(address,address,uint256).tTransferAmount (#1081)
Variable KittenPye._getValues(uint256).rTransferAmount (#931) is too similar to KittenPye._transferBothExcluded(address,address,uint256).tTransferAmount (#846)
Variable KittenPye._getValues(uint256).rTransferAmount (#931) is too similar to KittenPye._transferStandard(address,address,uint256).tTransferAmount (#1072)
Variable KittenPye._transferFromExcluded(address,address,uint256).rTransferAmount (#1091) is too similar to KittenPye._getTValues(uint256).tTransferAmount (#938)
Variable KittenPye._transferStandard(address,address,uint256).rTransferAmount (#1072) is too similar to KittenPye._transferBothExcluded(address,address,uint256).tTransferAmount (#846)
Variable KittenPye.reflectionFromToken(uint256,bool).rTransferAmount (#812) is too similar to KittenPye._getTValues(uint256).tTransferAmount (#938)
Variable KittenPye._transferFromExcluded(address,address,uint256).rTransferAmount (#1091) is too similar to KittenPye._transferStandard(address,address,uint256).tTransferAmount (#1072)
Variable KittenPye._transferToExcluded(address,address,uint256).rTransferAmount (#1081) is too similar to KittenPye._getTValues(uint256).tTransferAmount (#938)
Variable KittenPye._transferFromExcluded(address,address,uint256).rTransferAmount (#1091) is too similar to KittenPye._transferBothExcluded(address,address,uint256).tTransferAmount (#846)
Variable KittenPye._transferBothExcluded(address,address,uint256).rTransferAmount (#846) is too similar to KittenPye._transferToExcluded(address,address,uint256).tTransferAmount (#1081)
Variable KittenPye._transferStandard(address,address,uint256).rTransferAmount (#1072) is too similar to KittenPye._transferToExcluded(address,address,uint256).tTransferAmount (#1081)
Variable KittenPye._transferFromExcluded(address,address,uint256).rTransferAmount (#1091) is too similar to KittenPye._getValues(uint256).tTransferAmount (#930)
Variable KittenPye._transferBothExcluded(address,address,uint256).rTransferAmount (#846) is too similar to KittenPye._getTValues(uint256).tTransferAmount (#938)
Variable KittenPye._transferFromExcluded(address,address,uint256).rTransferAmount (#1091) is too similar to KittenPye._transferToExcluded(address,address,uint256).tTransferAmount (#1081)
Variable KittenPye._transferStandard(address,address,uint256).rTransferAmount (#1072) is too similar to KittenPye._getTValues(uint256).tTransferAmount (#938)
Prevent variables from having similar names.
Additional information: link
KittenPye._setmaxwalletamount(uint256) (#874-877) uses literals with too many digits:
- require(bool,string)(amount >= 50000000,Please check the maxwallet amount, should exceed 0.5% of the supply) (#875)
KittenPye.setmaxTxAmount(uint256) (#879-882) uses literals with too many digits:
- require(bool,string)(amount >= 50000000,Please check MaxtxAmount amount, should exceed 0.5% of the supply) (#880)
KittenPye.slitherConstructorVariables() (#649-1138) uses literals with too many digits:
- _tTotal = 10000000000 * 10 ** 9 (#674)
KittenPye.slitherConstructorVariables() (#649-1138) uses literals with too many digits:
- _maxTxAmount = 10000000000 * 10 ** 9 (#698)
KittenPye.slitherConstructorVariables() (#649-1138) uses literals with too many digits:
- _maxWallet = 100000000 * 10 ** 9 (#699)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
KittenPye._decimals (#681) should be constant
KittenPye._name (#679) should be constant
KittenPye._symbol (#680) should be constant
KittenPye._tTotal (#674) should be constant
KittenPye.botscantrade (#669) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#397-400)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#406-410)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#412-414)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#417-422)
unlock() should be declared external:
- Ownable.unlock() (#425-430)
name() should be declared external:
- KittenPye.name() (#738-740)
symbol() should be declared external:
- KittenPye.symbol() (#742-744)
decimals() should be declared external:
- KittenPye.decimals() (#746-748)
totalSupply() should be declared external:
- KittenPye.totalSupply() (#750-752)
transfer(address,uint256) should be declared external:
- KittenPye.transfer(address,uint256) (#759-762)
allowance(address,address) should be declared external:
- KittenPye.allowance(address,address) (#764-766)
approve(address,uint256) should be declared external:
- KittenPye.approve(address,uint256) (#768-771)
transferFrom(address,address,uint256) should be declared external:
- KittenPye.transferFrom(address,address,uint256) (#773-777)
increaseAllowance(address,uint256) should be declared external:
- KittenPye.increaseAllowance(address,uint256) (#779-782)
decreaseAllowance(address,uint256) should be declared external:
- KittenPye.decreaseAllowance(address,uint256) (#784-787)
isExcludedFromReward(address) should be declared external:
- KittenPye.isExcludedFromReward(address) (#789-791)
totalFees() should be declared external:
- KittenPye.totalFees() (#793-795)
deliver(uint256) should be declared external:
- KittenPye.deliver(uint256) (#797-804)
reflectionFromToken(uint256,bool) should be declared external:
- KittenPye.reflectionFromToken(uint256,bool) (#806-815)
excludeFromReward(address) should be declared external:
- KittenPye.excludeFromReward(address) (#823-831)
excludeFromFee(address) should be declared external:
- KittenPye.excludeFromFee(address) (#862-864)
includeInFee(address) should be declared external:
- KittenPye.includeInFee(address) (#866-868)
setfeeaddress(address) should be declared external:
- KittenPye.setfeeaddress(address) (#870-872)
clearStuckBalance() should be declared external:
- KittenPye.clearStuckBalance() (#884-886)
getBotWalletStatus(address) should be declared external:
- KittenPye.getBotWalletStatus(address) (#902-904)
setFees(uint256,uint256) should be declared external:
- KittenPye.setFees(uint256,uint256) (#911-919)
isExcludedFromFee(address) should be declared external:
- KittenPye.isExcludedFromFee(address) (#1002-1004)
depositLPFee(uint256,address) should be declared external:
- KittenPye.depositLPFee(uint256,address) (#1100-1112)
addPair(address,address) should be declared external:
- KittenPye.addPair(address,address) (#1123-1135)
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.
Token has no transactions for more than 100 days. It seems dead / abandoned.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Contract has 1% buy tax and 0% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
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 price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Twitter account
Telegram account has less than 100 subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account