Kawakami Inu Token Logo

KAWA [Kawakami Inu] Token

ALERT: honeypot scam

About KAWA

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 13 September 2022

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


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

Reentrancy in Kawa._transfer(address,address,uint256) (#1271-1304):
External calls:
- swapAndSendToDev(contractTokenBalance) (#1288)
- address(devAddress).call{value: devAmountETH}() (#1309)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1344-1350)
External calls sending eth:
- swapAndSendToDev(contractTokenBalance) (#1288)
- address(devAddress).call{value: devAmountETH}() (#1309)
State variables written after the call(s):
- _tokenTransfer(from,address(this),devAmount,false) (#1299)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1223)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1405)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1425)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1406)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1447)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1097)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1427)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1448)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1099)
- _tokenTransfer(from,to,remainingAmount,true) (#1300)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1223)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1405)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1425)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1406)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1447)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1097)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1427)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1448)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1099)
- _tokenTransfer(from,to,amount,false) (#1302)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1223)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1405)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1425)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1406)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1447)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1097)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1427)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1448)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1099)
- _tokenTransfer(from,address(this),devAmount,false) (#1299)
- _rTotal = _rTotal.sub(rFee) (#1138)
- _tokenTransfer(from,to,remainingAmount,true) (#1300)
- _rTotal = _rTotal.sub(rFee) (#1138)
- _tokenTransfer(from,to,amount,false) (#1302)
- _rTotal = _rTotal.sub(rFee) (#1138)
- _tokenTransfer(from,address(this),devAmount,false) (#1299)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1225)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1446)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1096)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1426)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1098)
- _tokenTransfer(from,to,remainingAmount,true) (#1300)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1225)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1446)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1096)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1426)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1098)
- _tokenTransfer(from,to,amount,false) (#1302)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1225)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1446)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1096)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1426)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1098)
Apply the check-effects-interactions pattern.

Additional information: link

Kawa.setDevFeePercent(uint256) (#1113-1115) should emit an event for:
- devFee = fee (#1114)
Kawa.setTaxFeePercent(uint256) (#1121-1123) should emit an event for:
- _taxFee = taxFee (#1122)
Kawa.setLiquidityFeePercent(uint256) (#1125-1127) should emit an event for:
- _liquidityFee = liquidityFee (#1126)
Emit an event for critical parameter changes.

Additional information: link

Kawa.swapAndSendToDev(uint256) (#1306-1310) ignores return value by address(devAddress).call{value: devAmountETH}() (#1309)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

Redundant expression "this (#240)" inContext (#234-243)
Remove redundant statements if they congest code but offer no value.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#473-476)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#482-486)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#488-490)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#493-498)
unlock() should be declared external:
- Ownable.unlock() (#501-509)
name() should be declared external:
- Kawa.name() (#925-927)
symbol() should be declared external:
- Kawa.symbol() (#929-931)
decimals() should be declared external:
- Kawa.decimals() (#933-935)
totalSupply() should be declared external:
- Kawa.totalSupply() (#937-939)
transfer(address,uint256) should be declared external:
- Kawa.transfer(address,uint256) (#946-953)
allowance(address,address) should be declared external:
- Kawa.allowance(address,address) (#955-962)
approve(address,uint256) should be declared external:
- Kawa.approve(address,uint256) (#964-971)
transferFrom(address,address,uint256) should be declared external:
- Kawa.transferFrom(address,address,uint256) (#973-988)
increaseAllowance(address,uint256) should be declared external:
- Kawa.increaseAllowance(address,uint256) (#990-1001)
decreaseAllowance(address,uint256) should be declared external:
- Kawa.decreaseAllowance(address,uint256) (#1003-1017)
isExcludedFromReward(address) should be declared external:
- Kawa.isExcludedFromReward(address) (#1019-1021)
totalFees() should be declared external:
- Kawa.totalFees() (#1023-1025)
deliver(uint256) should be declared external:
- Kawa.deliver(uint256) (#1027-1037)
reflectionFromToken(uint256,bool) should be declared external:
- Kawa.reflectionFromToken(uint256,bool) (#1039-1052)
excludeFromReward(address) should be declared external:
- Kawa.excludeFromReward(address) (#1060-1068)
excludeFromFee(address) should be declared external:
- Kawa.excludeFromFee(address) (#1105-1107)
includeInFee(address) should be declared external:
- Kawa.includeInFee(address) (#1109-1111)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Kawa.setSwapAndLiquifyEnabled(bool) (#1129-1132)
Use the external attribute for functions never called from the contract.

Additional information: link


Contract ownership is semi-renounced (passed to a contract)

Kawa.includeInReward(address) (#1070-1081) has costly operations inside a loop:
- _excluded.pop() (#1077)
Use a local variable to hold the loop computation result.

Additional information: link

Kawa.addLiquidity(uint256,uint256) (#1353-1366) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1358-1365)
Ensure that all the return values of the function calls are used.

Additional information: link

Kawa.allowance(address,address).owner (#955) shadows:
- Ownable.owner() (#454-456) (function)
Kawa._approve(address,address,uint256).owner (#1260) shadows:
- Ownable.owner() (#454-456) (function)
Rename the local variables that shadow another component.

Additional information: link

Ownable.unlock() (#501-509) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#506)
Avoid relying on block.timestamp.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#295-304):
- (success) = recipient.call{value: amount}() (#299)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#389-417):
- (success,returndata) = target.call{value: weiValue}(data) (#398-400)
Low level call in Kawa.swapAndSendToDev(uint256) (#1306-1310):
- address(devAddress).call{value: devAmountETH}() (#1309)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Kawa.setDevAddress(address).account (#1117) lacks a zero-check on :
- devAddress = account (#1118)
Check that the address is not zero.

Additional information: link

Reentrancy in Kawa._transfer(address,address,uint256) (#1271-1304):
External calls:
- swapAndSendToDev(contractTokenBalance) (#1288)
- address(devAddress).call{value: devAmountETH}() (#1309)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1344-1350)
External calls sending eth:
- swapAndSendToDev(contractTokenBalance) (#1288)
- address(devAddress).call{value: devAmountETH}() (#1309)
State variables written after the call(s):
- _tokenTransfer(from,address(this),devAmount,false) (#1299)
- _liquidityFee = _previousLiquidityFee (#1252)
- _liquidityFee = 0 (#1247)
- _tokenTransfer(from,to,remainingAmount,true) (#1300)
- _liquidityFee = _previousLiquidityFee (#1252)
- _liquidityFee = 0 (#1247)
- _tokenTransfer(from,to,amount,false) (#1302)
- _liquidityFee = _previousLiquidityFee (#1252)
- _liquidityFee = 0 (#1247)
- _tokenTransfer(from,address(this),devAmount,false) (#1299)
- _previousLiquidityFee = _liquidityFee (#1244)
- _tokenTransfer(from,to,remainingAmount,true) (#1300)
- _previousLiquidityFee = _liquidityFee (#1244)
- _tokenTransfer(from,to,amount,false) (#1302)
- _previousLiquidityFee = _liquidityFee (#1244)
- _tokenTransfer(from,address(this),devAmount,false) (#1299)
- _previousTaxFee = _taxFee (#1243)
- _tokenTransfer(from,to,remainingAmount,true) (#1300)
- _previousTaxFee = _taxFee (#1243)
- _tokenTransfer(from,to,amount,false) (#1302)
- _previousTaxFee = _taxFee (#1243)
- _tokenTransfer(from,address(this),devAmount,false) (#1299)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1139)
- _tokenTransfer(from,to,remainingAmount,true) (#1300)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1139)
- _tokenTransfer(from,to,amount,false) (#1302)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1139)
- _tokenTransfer(from,address(this),devAmount,false) (#1299)
- _taxFee = _previousTaxFee (#1251)
- _taxFee = 0 (#1246)
- _tokenTransfer(from,to,remainingAmount,true) (#1300)
- _taxFee = _previousTaxFee (#1251)
- _taxFee = 0 (#1246)
- _tokenTransfer(from,to,amount,false) (#1302)
- _taxFee = _previousTaxFee (#1251)
- _taxFee = 0 (#1246)
Reentrancy in Kawa.constructor() (#903-923):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#910-913)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#919)
- _isExcludedFromFee[address(this)] = true (#920)
- uniswapV2Router = _uniswapV2Router (#916)
Reentrancy in Kawa.swapAndLiquify(uint256) (#1312-1333):
External calls:
- swapTokensForEth(half) (#1324)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1344-1350)
- addLiquidity(otherHalf,newBalance) (#1330)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1358-1365)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1330)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1358-1365)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1330)
- _allowances[owner][spender] = amount (#1267)
Reentrancy in Kawa.transferFrom(address,address,uint256) (#973-988):
External calls:
- _transfer(sender,recipient,amount) (#978)
- address(devAddress).call{value: devAmountETH}() (#1309)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1344-1350)
External calls sending eth:
- _transfer(sender,recipient,amount) (#978)
- address(devAddress).call{value: devAmountETH}() (#1309)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#979-986)
- _allowances[owner][spender] = amount (#1267)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Kawa._transfer(address,address,uint256) (#1271-1304):
External calls:
- swapAndSendToDev(contractTokenBalance) (#1288)
- address(devAddress).call{value: devAmountETH}() (#1309)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1344-1350)
External calls sending eth:
- swapAndSendToDev(contractTokenBalance) (#1288)
- address(devAddress).call{value: devAmountETH}() (#1309)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1409)
- _tokenTransfer(from,address(this),devAmount,false) (#1299)
- Transfer(sender,recipient,tTransferAmount) (#1409)
- _tokenTransfer(from,to,amount,false) (#1302)
- Transfer(sender,recipient,tTransferAmount) (#1409)
- _tokenTransfer(from,to,remainingAmount,true) (#1300)
- Transfer(sender,recipient,tTransferAmount) (#1430)
- _tokenTransfer(from,to,amount,false) (#1302)
- Transfer(sender,recipient,tTransferAmount) (#1430)
- _tokenTransfer(from,to,remainingAmount,true) (#1300)
- Transfer(sender,recipient,tTransferAmount) (#1451)
- _tokenTransfer(from,to,remainingAmount,true) (#1300)
- Transfer(sender,recipient,tTransferAmount) (#1451)
- _tokenTransfer(from,to,amount,false) (#1302)
- Transfer(sender,recipient,tTransferAmount) (#1430)
- _tokenTransfer(from,address(this),devAmount,false) (#1299)
- Transfer(sender,recipient,tTransferAmount) (#1451)
- _tokenTransfer(from,address(this),devAmount,false) (#1299)
- Transfer(sender,recipient,tTransferAmount) (#1102)
- _tokenTransfer(from,to,amount,false) (#1302)
- Transfer(sender,recipient,tTransferAmount) (#1102)
- _tokenTransfer(from,address(this),devAmount,false) (#1299)
- Transfer(sender,recipient,tTransferAmount) (#1102)
- _tokenTransfer(from,to,remainingAmount,true) (#1300)
Reentrancy in Kawa.constructor() (#903-923):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#910-913)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#922)
Reentrancy in Kawa.swapAndLiquify(uint256) (#1312-1333):
External calls:
- swapTokensForEth(half) (#1324)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1344-1350)
- addLiquidity(otherHalf,newBalance) (#1330)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1358-1365)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1330)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1358-1365)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1268)
- addLiquidity(otherHalf,newBalance) (#1330)
- SwapAndLiquify(half,newBalance,otherHalf) (#1332)
Reentrancy in Kawa.transferFrom(address,address,uint256) (#973-988):
External calls:
- _transfer(sender,recipient,amount) (#978)
- address(devAddress).call{value: devAmountETH}() (#1309)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1344-1350)
External calls sending eth:
- _transfer(sender,recipient,amount) (#978)
- address(devAddress).call{value: devAmountETH}() (#1309)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1268)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#979-986)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#266-277) uses assembly
- INLINE ASM (#273-275)
Address._functionCallWithValue(address,bytes,uint256,string) (#389-417) uses assembly
- INLINE ASM (#409-412)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#389-417) is never used and should be removed
Address.functionCall(address,bytes) (#324-329) is never used and should be removed
Address.functionCall(address,bytes,string) (#337-343) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#356-368) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#376-387) is never used and should be removed
Address.isContract(address) (#266-277) is never used and should be removed
Address.sendValue(address,uint256) (#295-304) is never used and should be removed
Context._msgData() (#239-242) is never used and should be removed
Kawa.addLiquidity(uint256,uint256) (#1353-1366) is never used and should be removed
Kawa.swapAndLiquify(uint256) (#1312-1333) is never used and should be removed
SafeMath.mod(uint256,uint256) (#208-210) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#224-231) is never used and should be removed
Remove unused functions.

Additional information: link

Kawa._rTotal (#866) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Kawa._previousTaxFee (#878) is set pre-construction with a non-constant function or state variable:
- _taxFee
Kawa._previousLiquidityFee (#881) 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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#571) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#573) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#604) is not in mixedCase
Function IUniswapV2Router01.WETH() (#648) is not in mixedCase
Parameter Kawa.setSwapAndLiquifyEnabled(bool)._enabled (#1129) is not in mixedCase
Parameter Kawa.calculateTaxFee(uint256)._amount (#1228) is not in mixedCase
Parameter Kawa.calculateLiquidityFee(uint256)._amount (#1232) is not in mixedCase
Variable Kawa._taxFee (#877) is not in mixedCase
Variable Kawa._liquidityFee (#880) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#653) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#654)
Variable Kawa._transferToExcluded(address,address,uint256).rTransferAmount (#1419) is too similar to Kawa._transferStandard(address,address,uint256).tTransferAmount (#1401)
Variable Kawa._transferStandard(address,address,uint256).rTransferAmount (#1399) is too similar to Kawa._transferFromExcluded(address,address,uint256).tTransferAmount (#1442)
Variable Kawa._transferBothExcluded(address,address,uint256).rTransferAmount (#1090) is too similar to Kawa._transferStandard(address,address,uint256).tTransferAmount (#1401)
Variable Kawa._transferToExcluded(address,address,uint256).rTransferAmount (#1419) is too similar to Kawa._transferBothExcluded(address,address,uint256).tTransferAmount (#1092)
Variable Kawa._transferBothExcluded(address,address,uint256).rTransferAmount (#1090) is too similar to Kawa._transferBothExcluded(address,address,uint256).tTransferAmount (#1092)
Variable Kawa._transferToExcluded(address,address,uint256).rTransferAmount (#1419) is too similar to Kawa._getTValues(uint256).tTransferAmount (#1177)
Variable Kawa._transferBothExcluded(address,address,uint256).rTransferAmount (#1090) is too similar to Kawa._getTValues(uint256).tTransferAmount (#1177)
Variable Kawa._getValues(uint256).rTransferAmount (#1157) is too similar to Kawa._transferStandard(address,address,uint256).tTransferAmount (#1401)
Variable Kawa._transferFromExcluded(address,address,uint256).rTransferAmount (#1440) is too similar to Kawa._transferFromExcluded(address,address,uint256).tTransferAmount (#1442)
Variable Kawa._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1198) is too similar to Kawa._getTValues(uint256).tTransferAmount (#1177)
Variable Kawa._transferToExcluded(address,address,uint256).rTransferAmount (#1419) is too similar to Kawa._transferFromExcluded(address,address,uint256).tTransferAmount (#1442)
Variable Kawa._transferToExcluded(address,address,uint256).rTransferAmount (#1419) is too similar to Kawa._transferToExcluded(address,address,uint256).tTransferAmount (#1421)
Variable Kawa._getValues(uint256).rTransferAmount (#1157) is too similar to Kawa._transferBothExcluded(address,address,uint256).tTransferAmount (#1092)
Variable Kawa._transferBothExcluded(address,address,uint256).rTransferAmount (#1090) is too similar to Kawa._transferFromExcluded(address,address,uint256).tTransferAmount (#1442)
Variable Kawa._getValues(uint256).rTransferAmount (#1157) is too similar to Kawa._getTValues(uint256).tTransferAmount (#1177)
Variable Kawa._transferBothExcluded(address,address,uint256).rTransferAmount (#1090) is too similar to Kawa._transferToExcluded(address,address,uint256).tTransferAmount (#1421)
Variable Kawa.reflectionFromToken(uint256,bool).rTransferAmount (#1049) is too similar to Kawa._transferStandard(address,address,uint256).tTransferAmount (#1401)
Variable Kawa._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1198) is too similar to Kawa._transferFromExcluded(address,address,uint256).tTransferAmount (#1442)
Variable Kawa.reflectionFromToken(uint256,bool).rTransferAmount (#1049) is too similar to Kawa._transferBothExcluded(address,address,uint256).tTransferAmount (#1092)
Variable Kawa.reflectionFromToken(uint256,bool).rTransferAmount (#1049) is too similar to Kawa._getTValues(uint256).tTransferAmount (#1177)
Variable Kawa._getValues(uint256).rTransferAmount (#1157) is too similar to Kawa._transferFromExcluded(address,address,uint256).tTransferAmount (#1442)
Variable Kawa._getValues(uint256).rTransferAmount (#1157) is too similar to Kawa._transferToExcluded(address,address,uint256).tTransferAmount (#1421)
Variable Kawa._transferStandard(address,address,uint256).rTransferAmount (#1399) is too similar to Kawa._transferStandard(address,address,uint256).tTransferAmount (#1401)
Variable Kawa.reflectionFromToken(uint256,bool).rTransferAmount (#1049) is too similar to Kawa._transferFromExcluded(address,address,uint256).tTransferAmount (#1442)
Variable Kawa.reflectionFromToken(uint256,bool).rTransferAmount (#1049) is too similar to Kawa._transferToExcluded(address,address,uint256).tTransferAmount (#1421)
Variable Kawa._transferStandard(address,address,uint256).rTransferAmount (#1399) is too similar to Kawa._getTValues(uint256).tTransferAmount (#1177)
Variable Kawa._getValues(uint256).rTransferAmount (#1157) is too similar to Kawa._getValues(uint256).tTransferAmount (#1154)
Variable Kawa._transferBothExcluded(address,address,uint256).rTransferAmount (#1090) is too similar to Kawa._getValues(uint256).tTransferAmount (#1154)
Variable Kawa._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1198) is too similar to Kawa._transferToExcluded(address,address,uint256).tTransferAmount (#1421)
Variable Kawa._transferFromExcluded(address,address,uint256).rTransferAmount (#1440) is too similar to Kawa._transferStandard(address,address,uint256).tTransferAmount (#1401)
Variable Kawa._transferStandard(address,address,uint256).rTransferAmount (#1399) is too similar to Kawa._transferToExcluded(address,address,uint256).tTransferAmount (#1421)
Variable Kawa._transferFromExcluded(address,address,uint256).rTransferAmount (#1440) is too similar to Kawa._getValues(uint256).tTransferAmount (#1154)
Variable Kawa._transferToExcluded(address,address,uint256).rTransferAmount (#1419) is too similar to Kawa._getValues(uint256).tTransferAmount (#1154)
Variable Kawa._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1198) is too similar to Kawa._transferBothExcluded(address,address,uint256).tTransferAmount (#1092)
Variable Kawa._transferStandard(address,address,uint256).rTransferAmount (#1399) is too similar to Kawa._transferBothExcluded(address,address,uint256).tTransferAmount (#1092)
Variable Kawa._transferFromExcluded(address,address,uint256).rTransferAmount (#1440) is too similar to Kawa._transferToExcluded(address,address,uint256).tTransferAmount (#1421)
Variable Kawa._transferFromExcluded(address,address,uint256).rTransferAmount (#1440) is too similar to Kawa._getTValues(uint256).tTransferAmount (#1177)
Variable Kawa._transferFromExcluded(address,address,uint256).rTransferAmount (#1440) is too similar to Kawa._transferBothExcluded(address,address,uint256).tTransferAmount (#1092)
Variable Kawa.reflectionFromToken(uint256,bool).rTransferAmount (#1049) is too similar to Kawa._getValues(uint256).tTransferAmount (#1154)
Variable Kawa._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1198) is too similar to Kawa._transferStandard(address,address,uint256).tTransferAmount (#1401)
Variable Kawa._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1198) is too similar to Kawa._getValues(uint256).tTransferAmount (#1154)
Variable Kawa._transferStandard(address,address,uint256).rTransferAmount (#1399) is too similar to Kawa._getValues(uint256).tTransferAmount (#1154)
Prevent variables from having similar names.

Additional information: link

Kawa._decimals (#871) should be constant
Kawa._name (#869) should be constant
Kawa._symbol (#870) should be constant
Kawa._tTotal (#865) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:

Contract has 99% buy tax and 99% sell tax.
Taxes are extremely high (over 30%)

Additional information: link


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Number of Binance Smart Chain (BSC) token holders is low.


Token has only one trading pair


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


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


Young tokens have high risks of price dump / death

Price for KAWA