CHICK INU Token Logo

CHINU [CHICK INU] Token

About CHINU

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 15 January 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

Reentrancy in CHINU._transfer(address,address,uint256) (#589-627):
External calls:
- swapAndLiquify(contractTokenBalance) (#611)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#669-675)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#611)
- recipient.transfer(amount) (#571)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#614)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#622)
- finalAmount = takeFee(sender,recipient,amount) (#616-617)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#707)
Apply the check-effects-interactions pattern.

Additional information: link

CHINU.addLiquidity(uint256,uint256) (#680-693) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
Ensure that all the return values of the function calls are used.

Additional information: link

CHINU.allowance(address,address).owner (#490) shadows:
- Ownable.owner() (#148-150) (function)
CHINU._approve(address,address,uint256).owner (#513) shadows:
- Ownable.owner() (#148-150) (function)
Rename the local variables that shadow another component.

Additional information: link

CHINU.setBuyTaxes(uint256,uint256,uint256) (#525-531) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#530)
CHINU.setSellTaxes(uint256,uint256,uint256) (#533-539) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#538)
CHINU.setDistributionSettings(uint256,uint256,uint256) (#541-547) should emit an event for:
- _liquidityShare = newLiquidityShare (#542)
- _teamShare = newTeamShare (#544)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#546)
CHINU.setMaxTxAmount(uint256) (#549-551) should emit an event for:
- _maxTxAmount = maxTxAmount (#550)
CHINU.setWalletLimit(uint256) (#557-559) should emit an event for:
- _walletMax = newLimit (#558)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in CHINU.constructor() (#434-468):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#438-439)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#442)
- _balances[_msgSender()] = _totalSupply (#466)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#451)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#449)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#450)
- isExcludedFromFee[owner()] = true (#444)
- isExcludedFromFee[marketingWalletAddress] = true (#445)
- isExcludedFromFee[teamWalletAddress] = true (#446)
- isExcludedFromFee[address(this)] = true (#447)
- isMarketPair[address(uniswapPair)] = true (#464)
- isTxLimitExempt[owner()] = true (#459)
- isTxLimitExempt[address(this)] = true (#460)
- isTxLimitExempt[marketingWalletAddress] = true (#461)
- isTxLimitExempt[teamWalletAddress] = true (#462)
- isWalletLimitExempt[owner()] = true (#453)
- isWalletLimitExempt[address(uniswapPair)] = true (#454)
- isWalletLimitExempt[address(this)] = true (#455)
- isWalletLimitExempt[marketingWalletAddress] = true (#456)
- isWalletLimitExempt[teamWalletAddress] = true (#457)
- uniswapV2Router = _uniswapV2Router (#441)
Reentrancy in CHINU.swapAndLiquify(uint256) (#636-658):
External calls:
- swapTokensForEth(tokensForSwap) (#641)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#669-675)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#657)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#651)
- recipient.transfer(amount) (#571)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#654)
- recipient.transfer(amount) (#571)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#657)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#657)
- _allowances[owner][spender] = amount (#517)
Reentrancy in CHINU.transferFrom(address,address,uint256) (#583-587):
External calls:
- _transfer(sender,recipient,amount) (#584)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#669-675)
External calls sending eth:
- _transfer(sender,recipient,amount) (#584)
- recipient.transfer(amount) (#571)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#585)
- _allowances[owner][spender] = amount (#517)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CHINU._transfer(address,address,uint256) (#589-627):
External calls:
- swapAndLiquify(contractTokenBalance) (#611)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#669-675)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#611)
- recipient.transfer(amount) (#571)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#708)
- finalAmount = takeFee(sender,recipient,amount) (#616-617)
- Transfer(sender,recipient,finalAmount) (#624)
Reentrancy in CHINU.constructor() (#434-468):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#438-439)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#467)
Reentrancy in CHINU.swapAndLiquify(uint256) (#636-658):
External calls:
- swapTokensForEth(tokensForSwap) (#641)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#669-675)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#657)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#651)
- recipient.transfer(amount) (#571)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#654)
- recipient.transfer(amount) (#571)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#657)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#518)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#657)
Reentrancy in CHINU.swapTokensForEth(uint256) (#660-678):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#669-675)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#677)
Reentrancy in CHINU.transferFrom(address,address,uint256) (#583-587):
External calls:
- _transfer(sender,recipient,amount) (#584)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#669-675)
External calls sending eth:
- _transfer(sender,recipient,amount) (#584)
- recipient.transfer(amount) (#571)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#518)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#585)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#85-94) uses assembly
- INLINE ASM (#92)
Address._functionCallWithValue(address,bytes,uint256,string) (#121-138) uses assembly
- INLINE ASM (#130-133)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#121-138) is never used and should be removed
Address.functionCall(address,bytes) (#104-106) is never used and should be removed
Address.functionCall(address,bytes,string) (#108-110) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#112-114) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#116-119) is never used and should be removed
Address.isContract(address) (#85-94) is never used and should be removed
Address.sendValue(address,uint256) (#96-102) is never used and should be removed
Context._msgData() (#12-15) is never used and should be removed
SafeMath.mod(uint256,uint256) (#73-75) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#77-80) is never used and should be removed
Remove unused functions.

Additional information: link

CHINU._totalSupply (#398) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** _decimals
CHINU._maxTxAmount (#399) is set pre-construction with a non-constant function or state variable:
- 20000000 * 10 ** _decimals
CHINU._walletMax (#400) is set pre-construction with a non-constant function or state variable:
- 50000000 * 10 ** _decimals
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) (#96-102):
- (success) = recipient.call{value: amount}() (#100)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#121-138):
- (success,returndata) = target.call{value: weiValue}(data) (#124)
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() (#192) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#193) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#209) is not in mixedCase
Function IUniswapV2Router01.WETH() (#228) is not in mixedCase
Parameter CHINU.setSwapAndLiquifyEnabled(bool)._enabled (#561) is not in mixedCase
Variable CHINU._balances (#374) is not in mixedCase
Variable CHINU._buyLiquidityFee (#382) is not in mixedCase
Variable CHINU._buyMarketingFee (#383) is not in mixedCase
Variable CHINU._buyTeamFee (#384) is not in mixedCase
Variable CHINU._sellLiquidityFee (#386) is not in mixedCase
Variable CHINU._sellMarketingFee (#387) is not in mixedCase
Variable CHINU._sellTeamFee (#388) is not in mixedCase
Variable CHINU._liquidityShare (#390) is not in mixedCase
Variable CHINU._marketingShare (#391) is not in mixedCase
Variable CHINU._teamShare (#392) is not in mixedCase
Variable CHINU._totalTaxIfBuying (#394) is not in mixedCase
Variable CHINU._totalTaxIfSelling (#395) is not in mixedCase
Variable CHINU._totalDistributionShares (#396) is not in mixedCase
Variable CHINU._maxTxAmount (#399) is not in mixedCase
Variable CHINU._walletMax (#400) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#13)" inContext (#6-16)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in CHINU._transfer(address,address,uint256) (#589-627):
External calls:
- swapAndLiquify(contractTokenBalance) (#611)
- recipient.transfer(amount) (#571)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#611)
- recipient.transfer(amount) (#571)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#614)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#622)
- finalAmount = takeFee(sender,recipient,amount) (#616-617)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#707)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#708)
- finalAmount = takeFee(sender,recipient,amount) (#616-617)
- Transfer(sender,recipient,finalAmount) (#624)
Reentrancy in CHINU.swapAndLiquify(uint256) (#636-658):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#651)
- recipient.transfer(amount) (#571)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#654)
- recipient.transfer(amount) (#571)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#651)
- recipient.transfer(amount) (#571)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#654)
- recipient.transfer(amount) (#571)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#657)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#657)
- _allowances[owner][spender] = amount (#517)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#518)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#657)
Reentrancy in CHINU.transferFrom(address,address,uint256) (#583-587):
External calls:
- _transfer(sender,recipient,amount) (#584)
- recipient.transfer(amount) (#571)
External calls sending eth:
- _transfer(sender,recipient,amount) (#584)
- recipient.transfer(amount) (#571)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#685-692)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#585)
- _allowances[owner][spender] = amount (#517)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#518)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#585)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#233) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#234)
Prevent variables from having similar names.

Additional information: link

CHINU.slitherConstructorVariables() (#361-715) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#372)
CHINU.slitherConstructorVariables() (#361-715) uses literals with too many digits:
- _totalSupply = 1000000000 * 10 ** _decimals (#398)
CHINU.slitherConstructorVariables() (#361-715) uses literals with too many digits:
- _maxTxAmount = 20000000 * 10 ** _decimals (#399)
CHINU.slitherConstructorVariables() (#361-715) uses literals with too many digits:
- _walletMax = 50000000 * 10 ** _decimals (#400)
CHINU.slitherConstructorVariables() (#361-715) uses literals with too many digits:
- minimumTokensBeforeSwap = 1000000000 * 10 ** 3 (#401)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CHINU._decimals (#368) should be constant
CHINU._name (#366) should be constant
CHINU._symbol (#367) should be constant
CHINU.checkWalletLimit (#409) should be constant
CHINU.marketingWalletAddress (#370) should be constant
CHINU.minimumTokensBeforeSwap (#401) should be constant
CHINU.swapAndLiquifyByLimitOnly (#408) should be constant
CHINU.teamWalletAddress (#371) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#155-158)
name() should be declared external:
- CHINU.name() (#470-472)
symbol() should be declared external:
- CHINU.symbol() (#474-476)
decimals() should be declared external:
- CHINU.decimals() (#478-480)
totalSupply() should be declared external:
- CHINU.totalSupply() (#482-484)
allowance(address,address) should be declared external:
- CHINU.allowance(address,address) (#490-492)
increaseAllowance(address,uint256) should be declared external:
- CHINU.increaseAllowance(address,uint256) (#494-497)
decreaseAllowance(address,uint256) should be declared external:
- CHINU.decreaseAllowance(address,uint256) (#499-502)
minimumTokensBeforeSwapAmount() should be declared external:
- CHINU.minimumTokensBeforeSwapAmount() (#504-506)
approve(address,uint256) should be declared external:
- CHINU.approve(address,uint256) (#508-511)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CHINU.setSwapAndLiquifyEnabled(bool) (#561-564)
getCirculatingSupply() should be declared external:
- CHINU.getCirculatingSupply() (#566-568)
transfer(address,uint256) should be declared external:
- CHINU.transfer(address,uint256) (#578-581)
transferFrom(address,address,uint256) should be declared external:
- CHINU.transferFrom(address,address,uint256) (#583-587)
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 PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


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


Unable to find Telegram and Twitter accounts


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for CHINU