Welcome to Kishimoto Inu. The token that will mark the next era of Anime and Inu tokens. 🥷
KishimotoInu.addLiquidity(uint256,uint256) (#1072-1085) sends eth to arbitrary user
Dangerous calls:
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in KishimotoInu._transfer(address,address,uint256) (#961-1014):
External calls:
- swapAndLiquify(contractTokenBalance) (#1001)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1063-1069)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1001)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1194)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1110)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1119)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1130)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1140)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1111)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1121)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1131)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1142)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _rTotal = _rTotal.sub(rFee) (#1149)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1196)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1129)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1139)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1120)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1141)
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.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
KishimotoInu.constructor(address)._bridge (#747) lacks a zero-check on :
- bridge = _bridge (#748)
KishimotoInu.setPair(address)._pancakePair (#760) lacks a zero-check on :
- pancakePair = _pancakePair (#761)
Check that the address is not zero.
Additional information: link
KishimotoInu.bots (#719) is never used in KishimotoInu (#685-1263)
Remove unused state variables.
Additional information: link
Function IPancakePair.DOMAIN_SEPARATOR() (#508) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#509) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#526) is not in mixedCase
Function IPancakeRouter01.WETH() (#548) is not in mixedCase
Parameter KishimotoInu.setPair(address)._pancakePair (#760) is not in mixedCase
Parameter KishimotoInu.setRouter(address)._newPancakeRouter (#765) is not in mixedCase
Parameter KishimotoInu.expectedRewards(address)._sender (#949) is not in mixedCase
Function KishimotoInu.BNBBalance() (#1051-1053) is not in mixedCase
Parameter KishimotoInu.calculateTaxFee(uint256)._amount (#1199) is not in mixedCase
Parameter KishimotoInu.calculateLiquidityFee(uint256)._amount (#1205) is not in mixedCase
Parameter KishimotoInu.setSwapAndLiquifyEnabled(bool)._enabled (#1255) is not in mixedCase
Variable KishimotoInu._taxFee (#707) is not in mixedCase
Variable KishimotoInu._liquidityFee (#710) is not in mixedCase
Variable KishimotoInu._maxTxAmount (#723) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
KishimotoInu.removeBotFromBlackList(address) (#803-813) has costly operations inside a loop:
- _blackListedBots.pop() (#809)
KishimotoInu.includeInReward(address) (#920-931) has costly operations inside a loop:
- _excluded.pop() (#927)
Use a local variable to hold the loop computation result.
Additional information: link
KishimotoInu.blacklistMultipleWallets(address[]).i (#829) is a local variable never initialized
KishimotoInu.unBlacklistMultipleWallets(address[]).i (#846) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
KishimotoInu.addLiquidity(uint256,uint256) (#1072-1085) ignores return value by pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
Ensure that all the return values of the function calls are used.
Additional information: link
KishimotoInu.allowance(address,address).owner (#851) shadows:
- Ownable.owner() (#418-420) (function)
KishimotoInu._approve(address,address,uint256).owner (#933) shadows:
- Ownable.owner() (#418-420) (function)
Rename the local variables that shadow another component.
Additional information: link
KishimotoInu.setTaxFeePercent(uint256) (#1238-1241) should emit an event for:
- _taxFee = taxFee (#1240)
KishimotoInu.setLiquidityFeePercent(uint256) (#1243-1246) should emit an event for:
- _liquidityFee = liquidityFee (#1245)
KishimotoInu.setMaxTxPercent(uint256) (#1248-1253) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1250-1252)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in KishimotoInu._transfer(address,address,uint256) (#961-1014):
External calls:
- swapAndLiquify(contractTokenBalance) (#1001)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1063-1069)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1001)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _liquidityFee = _previousLiquidityFee (#1223)
- _liquidityFee = 0 (#1218)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _previousLiquidityFee = _liquidityFee (#1215)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _previousTaxFee = _taxFee (#1214)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1150)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _taxFee = _previousTaxFee (#1222)
- _taxFee = 0 (#1217)
Reentrancy in KishimotoInu.swapAndLiquify(uint256) (#1016-1046):
External calls:
- swapTokensForEth(half.add(devExp).add(forRewards)) (#1031)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1063-1069)
- addLiquidity(otherHalf,oneThird) (#1043)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
External calls sending eth:
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
- addLiquidity(otherHalf,oneThird) (#1043)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
State variables written after the call(s):
- addLiquidity(otherHalf,oneThird) (#1043)
- _allowances[owner][spender] = amount (#937)
Reentrancy in KishimotoInu.transferFrom(address,address,uint256) (#860-864):
External calls:
- _transfer(sender,recipient,amount) (#861)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1063-1069)
External calls sending eth:
- _transfer(sender,recipient,amount) (#861)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#862)
- _allowances[owner][spender] = amount (#937)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in KishimotoInu._transfer(address,address,uint256) (#961-1014):
External calls:
- swapAndLiquify(contractTokenBalance) (#1001)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1063-1069)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1001)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1114)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- Transfer(sender,recipient,tTransferAmount) (#1134)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- Transfer(sender,recipient,tTransferAmount) (#1124)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- Transfer(sender,recipient,tTransferAmount) (#1145)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
Reentrancy in KishimotoInu.swapAndLiquify(uint256) (#1016-1046):
External calls:
- swapTokensForEth(half.add(devExp).add(forRewards)) (#1031)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1063-1069)
- addLiquidity(otherHalf,oneThird) (#1043)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
External calls sending eth:
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
- addLiquidity(otherHalf,oneThird) (#1043)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#938)
- addLiquidity(otherHalf,oneThird) (#1043)
- SwapAndLiquify(half,oneThird,otherHalf) (#1045)
Reentrancy in KishimotoInu.transferFrom(address,address,uint256) (#860-864):
External calls:
- _transfer(sender,recipient,amount) (#861)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1063-1069)
External calls sending eth:
- _transfer(sender,recipient,amount) (#861)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#938)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#862)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#465-470) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#467)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#270-279) uses assembly
- INLINE ASM (#277)
Address._functionCallWithValue(address,bytes,uint256,string) (#363-384) uses assembly
- INLINE ASM (#376-379)
Do not use evm assembly.
Additional information: link
KishimotoInu.blacklistSingleWallet(address) (#823-826) compares to a boolean constant:
-_isBlacklisted[addresses] == true (#824)
KishimotoInu.isBlacklisted(address) (#834-837) compares to a boolean constant:
-_isBlacklisted[addresses] == true (#835)
KishimotoInu.unBlacklistSingleWallet(address) (#840-843) compares to a boolean constant:
-_isBlacklisted[addresses] == false (#841)
KishimotoInu.changeLimit() (#942-945) compares to a boolean constant:
-require(bool,string)(limit == true,limit is already false) (#943)
KishimotoInu._transfer(address,address,uint256) (#961-1014) compares to a boolean constant:
-require(bool,string)(_isBlacklisted[from] == false || to == address(0),You are banned) (#971)
KishimotoInu._transfer(address,address,uint256) (#961-1014) compares to a boolean constant:
-require(bool,string)(_isBlacklisted[to] == false,The recipient is banned) (#972)
KishimotoInu._transfer(address,address,uint256) (#961-1014) compares to a boolean constant:
-limit == true && from != owner() && to != owner() (#974)
Remove the equality to the boolean constant.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#363-384) is never used and should be removed
Address.functionCall(address,bytes) (#323-325) is never used and should be removed
Address.functionCall(address,bytes,string) (#333-335) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#348-350) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#358-361) is never used and should be removed
Address.isContract(address) (#270-279) is never used and should be removed
Address.sendValue(address,uint256) (#297-303) is never used and should be removed
Context._msgData() (#9-12) is never used and should be removed
SafeMath.mod(uint256,uint256) (#227-229) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#243-246) is never used and should be removed
Remove unused functions.
Additional information: link
KishimotoInu._rTotal (#700) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
KishimotoInu._previousTaxFee (#708) is set pre-construction with a non-constant function or state variable:
- _taxFee
KishimotoInu._previousLiquidityFee (#711) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#297-303):
- (success) = recipient.call{value: amount}() (#301)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#363-384):
- (success,returndata) = target.call{value: weiValue}(data) (#367)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in KishimotoInu._transfer(address,address,uint256) (#961-1014):
External calls:
- swapAndLiquify(contractTokenBalance) (#1001)
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1001)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _liquidityFee = _previousLiquidityFee (#1223)
- _liquidityFee = 0 (#1218)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _previousLiquidityFee = _liquidityFee (#1215)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _previousTaxFee = _taxFee (#1214)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1194)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1110)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1119)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1130)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1140)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1111)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1121)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1131)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1142)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _rTotal = _rTotal.sub(rFee) (#1149)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1150)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1196)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1129)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1139)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1120)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1141)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- _taxFee = _previousTaxFee (#1222)
- _taxFee = 0 (#1217)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1114)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- Transfer(sender,recipient,tTransferAmount) (#1134)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- Transfer(sender,recipient,tTransferAmount) (#1124)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
- Transfer(sender,recipient,tTransferAmount) (#1145)
- _tokenTransfer(from,to,amount,takeFee) (#1013)
Reentrancy in KishimotoInu.swapAndLiquify(uint256) (#1016-1046):
External calls:
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
External calls sending eth:
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
- addLiquidity(otherHalf,oneThird) (#1043)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
State variables written after the call(s):
- addLiquidity(otherHalf,oneThird) (#1043)
- _allowances[owner][spender] = amount (#937)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#938)
- addLiquidity(otherHalf,oneThird) (#1043)
- SwapAndLiquify(half,oneThird,otherHalf) (#1045)
Reentrancy in KishimotoInu.transferFrom(address,address,uint256) (#860-864):
External calls:
- _transfer(sender,recipient,amount) (#861)
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
External calls sending eth:
- _transfer(sender,recipient,amount) (#861)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1077-1084)
- address(wallet).transfer(oneThird) (#1036)
- address(rewardsWallet).transfer(oneThird) (#1037)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#862)
- _allowances[owner][spender] = amount (#937)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#938)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#862)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#553) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#554)
Variable KishimotoInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1128) is too similar to KishimotoInu._getTValues(uint256).tTransferAmount (#1162)
Variable KishimotoInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1170) is too similar to KishimotoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1138)
Variable KishimotoInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1128) is too similar to KishimotoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1138)
Variable KishimotoInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1128) is too similar to KishimotoInu._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable KishimotoInu._transferToExcluded(address,address,uint256).rTransferAmount (#1118) is too similar to KishimotoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1118)
Variable KishimotoInu._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to KishimotoInu._getTValues(uint256).tTransferAmount (#1162)
Variable KishimotoInu._getValues(uint256).rTransferAmount (#1155) is too similar to KishimotoInu._getTValues(uint256).tTransferAmount (#1162)
Variable KishimotoInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1170) is too similar to KishimotoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1118)
Variable KishimotoInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1128) is too similar to KishimotoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1118)
Variable KishimotoInu._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to KishimotoInu._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable KishimotoInu._getValues(uint256).rTransferAmount (#1155) is too similar to KishimotoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1138)
Variable KishimotoInu._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to KishimotoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1138)
Variable KishimotoInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1128) is too similar to KishimotoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1128)
Variable KishimotoInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1128) is too similar to KishimotoInu._getValues(uint256).tTransferAmount (#1154)
Variable KishimotoInu._getValues(uint256).rTransferAmount (#1155) is too similar to KishimotoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1118)
Variable KishimotoInu._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to KishimotoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1118)
Variable KishimotoInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1170) is too similar to KishimotoInu._getTValues(uint256).tTransferAmount (#1162)
Variable KishimotoInu.reflectionFromToken(uint256,bool).rTransferAmount (#899) is too similar to KishimotoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1128)
Variable KishimotoInu.reflectionFromToken(uint256,bool).rTransferAmount (#899) is too similar to KishimotoInu._getTValues(uint256).tTransferAmount (#1162)
Variable KishimotoInu.reflectionFromToken(uint256,bool).rTransferAmount (#899) is too similar to KishimotoInu._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable KishimotoInu.reflectionFromToken(uint256,bool).rTransferAmount (#899) is too similar to KishimotoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1138)
Variable KishimotoInu.reflectionFromToken(uint256,bool).rTransferAmount (#899) is too similar to KishimotoInu._getValues(uint256).tTransferAmount (#1154)
Variable KishimotoInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to KishimotoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1118)
Variable KishimotoInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1170) is too similar to KishimotoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1128)
Variable KishimotoInu._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to KishimotoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1128)
Variable KishimotoInu._getValues(uint256).rTransferAmount (#1155) is too similar to KishimotoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1128)
Variable KishimotoInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to KishimotoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1128)
Variable KishimotoInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1170) is too similar to KishimotoInu._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable KishimotoInu._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to KishimotoInu._getValues(uint256).tTransferAmount (#1154)
Variable KishimotoInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1170) is too similar to KishimotoInu._getValues(uint256).tTransferAmount (#1154)
Variable KishimotoInu._transferToExcluded(address,address,uint256).rTransferAmount (#1118) is too similar to KishimotoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1128)
Variable KishimotoInu._getValues(uint256).rTransferAmount (#1155) is too similar to KishimotoInu._getValues(uint256).tTransferAmount (#1154)
Variable KishimotoInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to KishimotoInu._getTValues(uint256).tTransferAmount (#1162)
Variable KishimotoInu._getValues(uint256).rTransferAmount (#1155) is too similar to KishimotoInu._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable KishimotoInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to KishimotoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1138)
Variable KishimotoInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to KishimotoInu._getValues(uint256).tTransferAmount (#1154)
Variable KishimotoInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to KishimotoInu._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable KishimotoInu._transferToExcluded(address,address,uint256).rTransferAmount (#1118) is too similar to KishimotoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1138)
Variable KishimotoInu.reflectionFromToken(uint256,bool).rTransferAmount (#899) is too similar to KishimotoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1118)
Variable KishimotoInu._transferToExcluded(address,address,uint256).rTransferAmount (#1118) is too similar to KishimotoInu._getTValues(uint256).tTransferAmount (#1162)
Variable KishimotoInu._transferToExcluded(address,address,uint256).rTransferAmount (#1118) is too similar to KishimotoInu._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable KishimotoInu._transferToExcluded(address,address,uint256).rTransferAmount (#1118) is too similar to KishimotoInu._getValues(uint256).tTransferAmount (#1154)
Prevent variables from having similar names.
Additional information: link
KishimotoInu.slitherConstructorVariables() (#685-1263) uses literals with too many digits:
- _tTotal = 60000000000 * 10 ** 6 * 10 ** 9 (#699)
KishimotoInu.slitherConstructorVariables() (#685-1263) uses literals with too many digits:
- _maxTxAmount = 7500000000000 * 10 ** 2 * 10 ** 9 (#723)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
KishimotoInu._decimals (#705) should be constant
KishimotoInu._name (#703) should be constant
KishimotoInu._symbol (#704) should be constant
KishimotoInu._tTotal (#699) should be constant
KishimotoInu.rewardsWallet (#725) should be constant
KishimotoInu.wallet (#724) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#437-440)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#446-450)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#452-454)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#457-462)
unlock() should be declared external:
- Ownable.unlock() (#465-470)
name() should be declared external:
- KishimotoInu.name() (#770-772)
symbol() should be declared external:
- KishimotoInu.symbol() (#774-776)
decimals() should be declared external:
- KishimotoInu.decimals() (#778-780)
totalSupply() should be declared external:
- KishimotoInu.totalSupply() (#782-784)
transfer(address,uint256) should be declared external:
- KishimotoInu.transfer(address,uint256) (#791-794)
isBlackListed(address) should be declared external:
- KishimotoInu.isBlackListed(address) (#819-821)
blacklistSingleWallet(address) should be declared external:
- KishimotoInu.blacklistSingleWallet(address) (#823-826)
blacklistMultipleWallets(address[]) should be declared external:
- KishimotoInu.blacklistMultipleWallets(address[]) (#828-832)
isBlacklisted(address) should be declared external:
- KishimotoInu.isBlacklisted(address) (#834-837)
unBlacklistMultipleWallets(address[]) should be declared external:
- KishimotoInu.unBlacklistMultipleWallets(address[]) (#845-849)
allowance(address,address) should be declared external:
- KishimotoInu.allowance(address,address) (#851-853)
approve(address,uint256) should be declared external:
- KishimotoInu.approve(address,uint256) (#855-858)
transferFrom(address,address,uint256) should be declared external:
- KishimotoInu.transferFrom(address,address,uint256) (#860-864)
increaseAllowance(address,uint256) should be declared external:
- KishimotoInu.increaseAllowance(address,uint256) (#866-869)
decreaseAllowance(address,uint256) should be declared external:
- KishimotoInu.decreaseAllowance(address,uint256) (#871-874)
isExcludedFromReward(address) should be declared external:
- KishimotoInu.isExcludedFromReward(address) (#876-878)
totalFees() should be declared external:
- KishimotoInu.totalFees() (#880-882)
deliver(uint256) should be declared external:
- KishimotoInu.deliver(uint256) (#884-891)
reflectionFromToken(uint256,bool) should be declared external:
- KishimotoInu.reflectionFromToken(uint256,bool) (#893-902)
excludeFromReward(address) should be declared external:
- KishimotoInu.excludeFromReward(address) (#910-918)
changeLimit() should be declared external:
- KishimotoInu.changeLimit() (#942-945)
isExcludedFromFee(address) should be declared external:
- KishimotoInu.isExcludedFromFee(address) (#1226-1228)
excludeFromFee(address) should be declared external:
- KishimotoInu.excludeFromFee(address) (#1230-1232)
includeInFee(address) should be declared external:
- KishimotoInu.includeInFee(address) (#1234-1236)
setSwapAndLiquifyEnabled(bool) should be declared external:
- KishimotoInu.setSwapAndLiquifyEnabled(bool) (#1255-1258)
Use the external attribute for functions never called from the contract.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find whitepaper link on the website
Unable to find code repository for the project
Unable to find audit link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank