Kawaii Token Token Logo

KAWAII Token

ALERT: rug pull scam

About KAWAII

Listings

Not Found
Token 2 years

🚀 Kawaii 可愛い Token - Experience Kawaii P2E game token and get $SHIB rewards for holding $KAWAII and NFTs 🚀

💠 $KAWAII is a Play-to-Earn NFT game platform developed on the Binance Smart Chain. Experience our Play-To-Earn game and win $KAWAII NFTs that can be traded on BNB Marketplace.

Social

Laser Scorebeta Last Audit: 6 July 2022

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

Anti-Scam

Links


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

Reentrancy in KAWAII._transfer(address,address,uint256) (#503-532):
External calls:
- swapTokens(contractTokenBalance) (#516)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#550-556)
- buyBackTokens(balance.div(100)) (#524)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
External calls sending eth:
- swapTokens(contractTokenBalance) (#516)
- recipient.transfer(amount) (#734)
- buyBackTokens(balance.div(100)) (#524)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _liquidityFee = _previousLiquidityFee (#699)
- _liquidityFee = 0 (#695)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rLiquidity) (#674)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#600)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#608)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#618)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#627)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#601)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#610)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#619)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#629)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _rTotal = _rTotal.sub(rFee) (#635)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#676)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#626)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#617)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#609)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#628)
- buyBackTokens(balance.div(100)) (#524)
- inSwapAndLiquify = true (#405)
- inSwapAndLiquify = false (#407)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable._former (#122) is never initialized. It is used in:
- Ownable.former() (#134-136)
KAWAII._excluded (#363) is never initialized. It is used in:
- KAWAII._getCurrentSupply() (#660-670)
KAWAII._isExcluded (#366) is never initialized. It is used in:
- KAWAII.balanceOf(address) (#433-436)
- KAWAII.isExcludedFromReward(address) (#461-463)
- KAWAII.deliver(uint256) (#473-480)
- KAWAII._tokenTransfer(address,address,uint256,bool) (#583-597)
- KAWAII._takeLiquidity(uint256) (#671-677)
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


Contract ownership is not renounced (belongs to a wallet)

Redundant expression "this (#15)" inContext (#9-18)
Remove redundant statements if they congest code but offer no value.

Additional information: link

KAWAII._antibotList (#380) is never used in KAWAII (#355-738)
KAWAII._whitelistWallets (#383) is never used in KAWAII (#355-738)
Remove unused state variables.

Additional information: link

KAWAII.swapTokens(uint256) (#533-538) performs a multiplication on the result of a division:
-transferToAddressETH(marketingWallet,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#537)
Consider ordering multiplication before division.

Additional information: link

KAWAII.addLiquidity(uint256,uint256) (#572-582) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#574-581)
Ensure that all the return values of the function calls are used.

Additional information: link

KAWAII.allowance(address,address).owner (#441) shadows:
- Ownable.owner() (#131-133) (function)
KAWAII._approve(address,address,uint256).owner (#496) shadows:
- Ownable.owner() (#131-133) (function)
Rename the local variables that shadow another component.

Additional information: link

KAWAII.setTaxFeePercent(uint256) (#710-712) should emit an event for:
- _taxFee = taxFee (#711)
KAWAII.setLiquidityFeePercent(uint256) (#713-715) should emit an event for:
- _liquidityFee = liquidityFee (#714)
KAWAII.setMarketingDivisor(uint256) (#716-718) should emit an event for:
- marketingDivisor = divisor (#717)
KAWAII.setNumTokensSellToAddToLiquidity(uint256) (#719-721) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#720)
KAWAII.setBuybackUpperLimit(uint256) (#722-724) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 9 (#723)
Emit an event for critical parameter changes.

Additional information: link

KAWAII.constructor(address)._marketingWallet (#409) lacks a zero-check on :
- marketingWallet = _marketingWallet (#417)
Check that the address is not zero.

Additional information: link

Reentrancy in KAWAII._transfer(address,address,uint256) (#503-532):
External calls:
- swapTokens(contractTokenBalance) (#516)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#550-556)
- buyBackTokens(balance.div(100)) (#524)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
External calls sending eth:
- swapTokens(contractTokenBalance) (#516)
- recipient.transfer(amount) (#734)
- buyBackTokens(balance.div(100)) (#524)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _previousLiquidityFee = _liquidityFee (#692)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _previousTaxFee = _taxFee (#691)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _tFeeTotal = _tFeeTotal.add(tFee) (#636)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _taxFee = _previousTaxFee (#698)
- _taxFee = 0 (#694)
Reentrancy in KAWAII.constructor(address) (#409-420):
External calls:
- pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#412-413)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#415)
- _isExcludedFromFee[address(this)] = true (#416)
- marketingWallet = _marketingWallet (#417)
- uniswapV2Router = _uniswapV2Router (#414)
Reentrancy in KAWAII.transferFrom(address,address,uint256) (#448-452):
External calls:
- _transfer(sender,recipient,amount) (#449)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#550-556)
External calls sending eth:
- _transfer(sender,recipient,amount) (#449)
- recipient.transfer(amount) (#734)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#450)
- _allowances[owner][spender] = amount (#500)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in KAWAII._transfer(address,address,uint256) (#503-532):
External calls:
- swapTokens(contractTokenBalance) (#516)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#550-556)
- buyBackTokens(balance.div(100)) (#524)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
External calls sending eth:
- swapTokens(contractTokenBalance) (#516)
- recipient.transfer(amount) (#734)
- buyBackTokens(balance.div(100)) (#524)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#570)
- buyBackTokens(balance.div(100)) (#524)
- Transfer(sender,recipient,tTransferAmount) (#604)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- Transfer(sender,recipient,tTransferAmount) (#622)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- Transfer(sender,recipient,tTransferAmount) (#613)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- Transfer(sender,recipient,tTransferAmount) (#632)
- _tokenTransfer(from,to,amount,takeFee) (#531)
Reentrancy in KAWAII.constructor(address) (#409-420):
External calls:
- pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#412-413)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#419)
Reentrancy in KAWAII.swapETHForTokens(uint256) (#559-571):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#570)
Reentrancy in KAWAII.swapTokensForEth(uint256) (#544-558):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#550-556)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#557)
Reentrancy in KAWAII.transferFrom(address,address,uint256) (#448-452):
External calls:
- _transfer(sender,recipient,amount) (#449)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#550-556)
External calls sending eth:
- _transfer(sender,recipient,amount) (#449)
- recipient.transfer(amount) (#734)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#501)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#450)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#30-35) uses assembly
- INLINE ASM (#33)
Address._functionCallWithValue(address,bytes,uint256,string) (#59-74) uses assembly
- INLINE ASM (#66-69)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#59-74) is never used and should be removed
Address.functionCall(address,bytes) (#46-48) is never used and should be removed
Address.functionCall(address,bytes,string) (#49-51) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#52-54) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#55-58) is never used and should be removed
Address.isContract(address) (#30-35) is never used and should be removed
Address.receiveValue(address,uint256) (#41-45) is never used and should be removed
Address.sendValue(address,uint256) (#36-40) is never used and should be removed
Context._msgData() (#14-17) is never used and should be removed
KAWAII.addLiquidity(uint256,uint256) (#572-582) is never used and should be removed
SafeMath.mod(uint256,uint256) (#112-114) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#115-118) is never used and should be removed
Remove unused functions.

Additional information: link

KAWAII._rTotal (#370) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
KAWAII._previousTaxFee (#374) is set pre-construction with a non-constant function or state variable:
- _taxFee
KAWAII._previousLiquidityFee (#376) 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) (#36-40):
- (success) = recipient.call{value: amount}() (#38)
Low level call in Address.receiveValue(address,uint256) (#41-45):
- (success) = recipient.call{value: amount}() (#43)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#59-74):
- (success,returndata) = target.call{value: weiValue}(data) (#61)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#194) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#195) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#208) is not in mixedCase
Function IUniswapV2Router01.WETH() (#225) is not in mixedCase
Parameter KAWAII.calculateTaxFee(uint256)._amount (#678) is not in mixedCase
Parameter KAWAII.calculateLiquidityFee(uint256)._amount (#683) is not in mixedCase
Parameter KAWAII.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#719) is not in mixedCase
Parameter KAWAII.setSwapAndLiquifyEnabled(bool)._enabled (#725) is not in mixedCase
Parameter KAWAII.setBuyBackEnabled(bool)._enabled (#729) is not in mixedCase
Variable KAWAII._taxFee (#373) is not in mixedCase
Variable KAWAII._liquidityFee (#375) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in KAWAII._transfer(address,address,uint256) (#503-532):
External calls:
- swapTokens(contractTokenBalance) (#516)
- recipient.transfer(amount) (#734)
External calls sending eth:
- swapTokens(contractTokenBalance) (#516)
- recipient.transfer(amount) (#734)
- buyBackTokens(balance.div(100)) (#524)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _liquidityFee = _previousLiquidityFee (#699)
- _liquidityFee = 0 (#695)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _previousLiquidityFee = _liquidityFee (#692)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _previousTaxFee = _taxFee (#691)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rLiquidity) (#674)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#600)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#608)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#618)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#627)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#601)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#610)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#619)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#629)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _rTotal = _rTotal.sub(rFee) (#635)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _tFeeTotal = _tFeeTotal.add(tFee) (#636)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#676)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#626)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#617)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#609)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#628)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- _taxFee = _previousTaxFee (#698)
- _taxFee = 0 (#694)
- buyBackTokens(balance.div(100)) (#524)
- inSwapAndLiquify = true (#405)
- inSwapAndLiquify = false (#407)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#570)
- buyBackTokens(balance.div(100)) (#524)
- Transfer(sender,recipient,tTransferAmount) (#604)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- Transfer(sender,recipient,tTransferAmount) (#622)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- Transfer(sender,recipient,tTransferAmount) (#613)
- _tokenTransfer(from,to,amount,takeFee) (#531)
- Transfer(sender,recipient,tTransferAmount) (#632)
- _tokenTransfer(from,to,amount,takeFee) (#531)
Reentrancy in KAWAII.transferFrom(address,address,uint256) (#448-452):
External calls:
- _transfer(sender,recipient,amount) (#449)
- recipient.transfer(amount) (#734)
External calls sending eth:
- _transfer(sender,recipient,amount) (#449)
- recipient.transfer(amount) (#734)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#563-568)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#450)
- _allowances[owner][spender] = amount (#500)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#501)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#450)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#229) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#230)
Variable KAWAII.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to KAWAII._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable KAWAII._transferFromExcluded(address,address,uint256).rTransferAmount (#616) is too similar to KAWAII._transferFromExcluded(address,address,uint256).tTransferAmount (#616)
Variable KAWAII._transferToExcluded(address,address,uint256).rTransferAmount (#607) is too similar to KAWAII._transferFromExcluded(address,address,uint256).tTransferAmount (#616)
Variable KAWAII.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to KAWAII._getTValues(uint256).tTransferAmount (#646)
Variable KAWAII.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to KAWAII._transferToExcluded(address,address,uint256).tTransferAmount (#607)
Variable KAWAII.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to KAWAII._getValues(uint256).tTransferAmount (#639)
Variable KAWAII._transferFromExcluded(address,address,uint256).rTransferAmount (#616) is too similar to KAWAII._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable KAWAII._transferToExcluded(address,address,uint256).rTransferAmount (#607) is too similar to KAWAII._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable KAWAII._transferStandard(address,address,uint256).rTransferAmount (#599) is too similar to KAWAII._transferStandard(address,address,uint256).tTransferAmount (#599)
Variable KAWAII._transferFromExcluded(address,address,uint256).rTransferAmount (#616) is too similar to KAWAII._getTValues(uint256).tTransferAmount (#646)
Variable KAWAII._transferFromExcluded(address,address,uint256).rTransferAmount (#616) is too similar to KAWAII._getValues(uint256).tTransferAmount (#639)
Variable KAWAII._transferBothExcluded(address,address,uint256).rTransferAmount (#625) is too similar to KAWAII._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable KAWAII._transferFromExcluded(address,address,uint256).rTransferAmount (#616) is too similar to KAWAII._transferToExcluded(address,address,uint256).tTransferAmount (#607)
Variable KAWAII._getValues(uint256).rTransferAmount (#640) is too similar to KAWAII._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable KAWAII._transferToExcluded(address,address,uint256).rTransferAmount (#607) is too similar to KAWAII._getTValues(uint256).tTransferAmount (#646)
Variable KAWAII._transferToExcluded(address,address,uint256).rTransferAmount (#607) is too similar to KAWAII._transferToExcluded(address,address,uint256).tTransferAmount (#607)
Variable KAWAII._transferToExcluded(address,address,uint256).rTransferAmount (#607) is too similar to KAWAII._getValues(uint256).tTransferAmount (#639)
Variable KAWAII._getValues(uint256).rTransferAmount (#640) is too similar to KAWAII._getTValues(uint256).tTransferAmount (#646)
Variable KAWAII.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to KAWAII._transferStandard(address,address,uint256).tTransferAmount (#599)
Variable KAWAII._transferStandard(address,address,uint256).rTransferAmount (#599) is too similar to KAWAII._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable KAWAII._transferFromExcluded(address,address,uint256).rTransferAmount (#616) is too similar to KAWAII._transferStandard(address,address,uint256).tTransferAmount (#599)
Variable KAWAII.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to KAWAII._transferFromExcluded(address,address,uint256).tTransferAmount (#616)
Variable KAWAII._transferToExcluded(address,address,uint256).rTransferAmount (#607) is too similar to KAWAII._transferStandard(address,address,uint256).tTransferAmount (#599)
Variable KAWAII._transferStandard(address,address,uint256).rTransferAmount (#599) is too similar to KAWAII._getTValues(uint256).tTransferAmount (#646)
Variable KAWAII._transferBothExcluded(address,address,uint256).rTransferAmount (#625) is too similar to KAWAII._transferStandard(address,address,uint256).tTransferAmount (#599)
Variable KAWAII._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#653) is too similar to KAWAII._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable KAWAII._transferStandard(address,address,uint256).rTransferAmount (#599) is too similar to KAWAII._transferToExcluded(address,address,uint256).tTransferAmount (#607)
Variable KAWAII._transferBothExcluded(address,address,uint256).rTransferAmount (#625) is too similar to KAWAII._getValues(uint256).tTransferAmount (#639)
Variable KAWAII._getValues(uint256).rTransferAmount (#640) is too similar to KAWAII._getValues(uint256).tTransferAmount (#639)
Variable KAWAII._transferBothExcluded(address,address,uint256).rTransferAmount (#625) is too similar to KAWAII._transferFromExcluded(address,address,uint256).tTransferAmount (#616)
Variable KAWAII._getValues(uint256).rTransferAmount (#640) is too similar to KAWAII._transferFromExcluded(address,address,uint256).tTransferAmount (#616)
Variable KAWAII._transferBothExcluded(address,address,uint256).rTransferAmount (#625) is too similar to KAWAII._getTValues(uint256).tTransferAmount (#646)
Variable KAWAII._transferBothExcluded(address,address,uint256).rTransferAmount (#625) is too similar to KAWAII._transferToExcluded(address,address,uint256).tTransferAmount (#607)
Variable KAWAII._getValues(uint256).rTransferAmount (#640) is too similar to KAWAII._transferToExcluded(address,address,uint256).tTransferAmount (#607)
Variable KAWAII._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#653) is too similar to KAWAII._transferStandard(address,address,uint256).tTransferAmount (#599)
Variable KAWAII._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#653) is too similar to KAWAII._getValues(uint256).tTransferAmount (#639)
Variable KAWAII._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#653) is too similar to KAWAII._transferFromExcluded(address,address,uint256).tTransferAmount (#616)
Variable KAWAII._transferStandard(address,address,uint256).rTransferAmount (#599) is too similar to KAWAII._getValues(uint256).tTransferAmount (#639)
Variable KAWAII._transferStandard(address,address,uint256).rTransferAmount (#599) is too similar to KAWAII._transferFromExcluded(address,address,uint256).tTransferAmount (#616)
Variable KAWAII._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#653) is too similar to KAWAII._getTValues(uint256).tTransferAmount (#646)
Variable KAWAII._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#653) is too similar to KAWAII._transferToExcluded(address,address,uint256).tTransferAmount (#607)
Variable KAWAII._getValues(uint256).rTransferAmount (#640) is too similar to KAWAII._transferStandard(address,address,uint256).tTransferAmount (#599)
Prevent variables from having similar names.

Additional information: link

KAWAII.slitherConstructorVariables() (#355-738) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#368)
KAWAII.slitherConstructorVariables() (#355-738) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 9 (#369)
KAWAII.slitherConstructorVariables() (#355-738) uses literals with too many digits:
- minimumTokensBeforeSwap = 10000000 * 10 ** 9 (#378)
KAWAII.slitherConstructorVariables() (#355-738) uses literals with too many digits:
- buyBackUpperLimit = 10000000 * 10 ** 5 * 10 ** 9 (#379)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

KAWAII._decimals (#372) should be constant
KAWAII._name (#356) should be constant
KAWAII._symbol (#357) should be constant
KAWAII._tTotal (#369) should be constant
KAWAII.launched (#387) should be constant
Ownable._former (#122) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

former() should be declared external:
- Ownable.former() (#134-136)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#141-144)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#145-149)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#150-152)
getTime() should be declared external:
- Ownable.getTime() (#153-155)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#156-161)
unlock() should be declared external:
- Ownable.unlock() (#162-167)
name() should be declared external:
- KAWAII.name() (#421-423)
symbol() should be declared external:
- KAWAII.symbol() (#424-426)
decimals() should be declared external:
- KAWAII.decimals() (#427-429)
totalSupply() should be declared external:
- KAWAII.totalSupply() (#430-432)
transfer(address,uint256) should be declared external:
- KAWAII.transfer(address,uint256) (#437-440)
allowance(address,address) should be declared external:
- KAWAII.allowance(address,address) (#441-443)
approve(address,uint256) should be declared external:
- KAWAII.approve(address,uint256) (#444-447)
transferFrom(address,address,uint256) should be declared external:
- KAWAII.transferFrom(address,address,uint256) (#448-452)
increaseAllowance(address,uint256) should be declared external:
- KAWAII.increaseAllowance(address,uint256) (#453-456)
decreaseAllowance(address,uint256) should be declared external:
- KAWAII.decreaseAllowance(address,uint256) (#457-460)
isExcludedFromReward(address) should be declared external:
- KAWAII.isExcludedFromReward(address) (#461-463)
totalFees() should be declared external:
- KAWAII.totalFees() (#464-466)
minimumTokensBeforeSwapAmount() should be declared external:
- KAWAII.minimumTokensBeforeSwapAmount() (#467-469)
buyBackUpperLimitAmount() should be declared external:
- KAWAII.buyBackUpperLimitAmount() (#470-472)
deliver(uint256) should be declared external:
- KAWAII.deliver(uint256) (#473-480)
reflectionFromToken(uint256,bool) should be declared external:
- KAWAII.reflectionFromToken(uint256,bool) (#481-490)
isExcludedFromFee(address) should be declared external:
- KAWAII.isExcludedFromFee(address) (#701-703)
excludeFromFee(address) should be declared external:
- KAWAII.excludeFromFee(address) (#704-706)
includeInFee(address) should be declared external:
- KAWAII.includeInFee(address) (#707-709)
setSwapAndLiquifyEnabled(bool) should be declared external:
- KAWAII.setSwapAndLiquifyEnabled(bool) (#725-728)
setBuyBackEnabled(bool) should be declared external:
- KAWAII.setBuyBackEnabled(bool) (#729-732)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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.

Contract has 10% buy tax and 0% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account link seems to be invalid


Unable to find Twitter account


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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


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 KAWAII