KaikenInu Token Logo

KaiECO [KaikenInu] Token

About KaiECO

Listings

Token 2 years
[CoinGecko] alert: KaikenInu (KAIKEN) has recently migrated from their old contract to a new one, with a new ticker symbol (KaiECO). For more information, please view this announcement on Telegram.
white paper

Kaiken will build a platform for staking, NFT and Game (all-in-one)

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

Reentrancy in KaikenInuToken._transfer(address,address,uint256) (#1071-1140):
External calls:
- swapAndLiquify(contractTokenBalance) (#1106)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1199-1206)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1185-1191)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1106)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1199-1206)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,temp_tax_fee) (#1137)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1318)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1322)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#963)
- _rOwned[_buybackWalletAddress] = _rOwned[_buybackWalletAddress].add(rTresor) (#988)
- _rOwned[_marketingWalletAddress] = _rOwned[_marketingWalletAddress].add(rMarketing) (#971)
- _rOwned[_burnWalletAddress] = _rOwned[_burnWalletAddress].add(rBurn) (#979)
- _tokenTransfer(from,to,amount,takeFee,temp_tax_fee) (#1137)
- _rTotal = _rTotal.sub(rFee) (#897)
- _tokenTransfer(from,to,amount,takeFee,temp_tax_fee) (#1137)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1314)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1326)
- _tOwned[_marketingWalletAddress] = _tOwned[_marketingWalletAddress].add(tMarketing) (#973)
- _tOwned[_burnWalletAddress] = _tOwned[_burnWalletAddress].add(tBurn) (#981)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#965)
- _tOwned[_buybackWalletAddress] = _tOwned[_buybackWalletAddress].add(tBuyback) (#990)
Apply the check-effects-interactions pattern.

Additional information: link

KaikenInuToken.reflectionFromToken(uint256,bool,uint256).rValues_scope_0 (#801) is a storage variable never initialized
Initialize all storage variables.

Additional information: link

KaikenInuToken.setMaxTxPercent(uint256) (#882-884) should emit an event for:
- _maxTxAmount = maxTxPercent (#883)
Emit an event for critical parameter changes.

Additional information: link

KaikenInuToken.addToBlackList(address[]).i (#1336) 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

KaikenInuToken.addLiquidity(uint256,uint256) (#1194-1207) ignores return value by pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1199-1206)
Ensure that all the return values of the function calls are used.

Additional information: link

KaikenInuToken._approve(address,address,uint256).owner (#1063) shadows:
- Ownable.owner() (#370-372) (function)
Rename the local variables that shadow another component.

Additional information: link

KaikenInuToken._setMarketingWallet(address).marketingWalletAddress (#1059) lacks a zero-check on :
- _marketingWalletAddress = marketingWalletAddress (#1060)
Check that the address is not zero.

Additional information: link

Variable 'KaikenInuToken.reflectionFromToken(uint256,bool,uint256).rValues (#796)' in KaikenInuToken.reflectionFromToken(uint256,bool,uint256) (#793-806) potentially used before declaration: (rValues) = _getValues(tAmount,tax_fee) (#801)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in KaikenInuToken.transferFrom(address,address,uint256) (#758-762):
External calls:
- _transfer(sender,recipient,amount) (#759)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1199-1206)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1185-1191)
External calls sending eth:
- _transfer(sender,recipient,amount) (#759)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1199-1206)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#760)
- _allowances[owner][spender] = amount (#1067)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in KaikenInuToken.transferFrom(address,address,uint256) (#758-762):
External calls:
- _transfer(sender,recipient,amount) (#759)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1199-1206)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1185-1191)
External calls sending eth:
- _transfer(sender,recipient,amount) (#759)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1199-1206)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1068)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#760)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#326-347) uses assembly
- INLINE ASM (#339-342)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#214-217) is never used and should be removed
Remove unused functions.

Additional information: link

KaikenInuToken._previousBuybackFee (#659) is set pre-construction with a non-constant function or state variable:
- _buybackFee
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._functionCallWithValue(address,bytes,uint256,string) (#326-347):
- (success,returndata) = target.call{value: weiValue}(data) (#330)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable KaikenInuToken._isBlacklisted (#1332) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#226)" inContext (#220-229)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable KaikenInuToken.increaseROwned(address,uint256).rTransferAmount (#1321) is too similar to KaikenInuToken._transferStandard(address,address,uint256,uint256).tTransferAmount (#1240)
Prevent variables from having similar names.

Additional information: link

KaikenInuToken.slitherConstructorVariables() (#620-1350) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 9 (#673)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._lockTime (#353) is never used in KaikenInuToken (#620-1350)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#352) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- KaikenInuToken.isExcludedFromFee(address) (#1055-1057)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


Unable to find Youtube account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for KaiECO