Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
ChickenCheems.sendETHTomarketing(uint256) (#882-884) sends eth to arbitrary user
Dangerous calls:
- _marketingWalletAddress.transfer(amount) (#883)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in ChickenCheems._transfer(address,address,uint256) (#812-862):
External calls:
- swapTokensForEth(contractTokenBalance) (#837)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#873-879)
External calls sending eth:
- sendETHTomarketing(address(this).balance) (#841)
- _marketingWalletAddress.transfer(amount) (#883)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _rOwned[address(this)] = _rOwned[address(this)].add(rmarketing) (#969)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#928)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#937)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#958)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#929)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#948)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#949)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#939)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#960)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _rTotal = _rTotal.sub(rFee) (#975)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _tOwned[address(this)] = _tOwned[address(this)].add(tmarketing) (#971)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#947)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#957)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#938)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#959)
- cooldown[sender] = block.timestamp + (60) (#857)
- cooldown[recipient] = block.timestamp + (60) (#860)
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.
Contract ticker ($ChickCheems) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
ChickenCheems.allowance(address,address).owner (#699) shadows:
- Ownable.owner() (#372-374) (function)
ChickenCheems._approve(address,address,uint256).owner (#804) shadows:
- Ownable.owner() (#372-374) (function)
Rename the local variables that shadow another component.
Additional information: link
ChickenCheems._setTaxFee(uint256) (#1032-1035) should emit an event for:
- _taxFee = taxFee (#1034)
ChickenCheems._setmarketingFee(uint256) (#1037-1040) should emit an event for:
- _marketingFee = marketingFee (#1039)
ChickenCheems._setMaxTxAmount(uint256) (#1046-1049) should emit an event for:
- _maxTxAmount = maxTxAmount (#1048)
Emit an event for critical parameter changes.
Additional information: link
ChickenCheems.constructor(address).marketingWalletAddress (#654) lacks a zero-check on :
- _marketingWalletAddress = marketingWalletAddress (#655)
ChickenCheems._setmarketingWallet(address).marketingWalletAddress (#1042) lacks a zero-check on :
- _marketingWalletAddress = marketingWalletAddress (#1043)
Check that the address is not zero.
Additional information: link
Reentrancy in ChickenCheems._transfer(address,address,uint256) (#812-862):
External calls:
- swapTokensForEth(contractTokenBalance) (#837)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#873-879)
External calls sending eth:
- sendETHTomarketing(address(this).balance) (#841)
- _marketingWalletAddress.transfer(amount) (#883)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _marketingFee = _previousmarketingFee (#797)
- _marketingFee = 0 (#792)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _previousTaxFee = _taxFee (#788)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _previousmarketingFee = _marketingFee (#789)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _tFeeTotal = _tFeeTotal.add(tFee) (#976)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _taxFee = _previousTaxFee (#796)
- _taxFee = 0 (#791)
Reentrancy in ChickenCheems.constructor(address) (#654-671):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#660-661)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#667)
- _isExcludedFromFee[address(this)] = true (#668)
- uniswapV2Router = _uniswapV2Router (#664)
Reentrancy in ChickenCheems.transferFrom(address,address,uint256) (#708-712):
External calls:
- _transfer(sender,recipient,amount) (#709)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#873-879)
External calls sending eth:
- _transfer(sender,recipient,amount) (#709)
- _marketingWalletAddress.transfer(amount) (#883)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#710)
- _allowances[owner][spender] = amount (#808)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ChickenCheems._transfer(address,address,uint256) (#812-862):
External calls:
- swapTokensForEth(contractTokenBalance) (#837)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#873-879)
External calls sending eth:
- sendETHTomarketing(address(this).balance) (#841)
- _marketingWalletAddress.transfer(amount) (#883)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#932)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- Transfer(sender,recipient,tTransferAmount) (#942)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- Transfer(sender,recipient,tTransferAmount) (#952)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- Transfer(sender,recipient,tTransferAmount) (#963)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
Reentrancy in ChickenCheems.constructor(address) (#654-671):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#660-661)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#670)
Reentrancy in ChickenCheems.transferFrom(address,address,uint256) (#708-712):
External calls:
- _transfer(sender,recipient,amount) (#709)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#873-879)
External calls sending eth:
- _transfer(sender,recipient,amount) (#709)
- _marketingWalletAddress.transfer(amount) (#883)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#809)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#710)
Apply the check-effects-interactions pattern.
Additional information: link
ChickenCheems._transfer(address,address,uint256) (#812-862) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(! cooldownEnabled || (cooldown[sender] < block.timestamp && cooldown[recipient] < block.timestamp),Cooldown is enabled. Try again in a few minutes.) (#816)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#274-283) uses assembly
- INLINE ASM (#281)
Address._functionCallWithValue(address,bytes,uint256,string) (#330-351) uses assembly
- INLINE ASM (#343-346)
Do not use evm assembly.
Additional information: link
ChickenCheems.includeAccount(address) (#772-783) has costly operations inside a loop:
- _excluded.pop() (#779)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#330-351) is never used and should be removed
Address.functionCall(address,bytes) (#310-312) is never used and should be removed
Address.functionCall(address,bytes,string) (#315-317) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#320-322) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#325-328) is never used and should be removed
Address.isContract(address) (#274-283) is never used and should be removed
Address.sendValue(address,uint256) (#301-307) is never used and should be removed
ChickenCheems._getMaxTxAmount() (#1024-1026) is never used and should be removed
ChickenCheems._getTaxFee() (#1020-1022) is never used and should be removed
Context._msgData() (#36-39) is never used and should be removed
SafeMath.mod(uint256,uint256) (#234-236) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#250-253) is never used and should be removed
Remove unused functions.
Additional information: link
ChickenCheems._rTotal (#619) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ChickenCheems._previousTaxFee (#628) is set pre-construction with a non-constant function or state variable:
- _taxFee
ChickenCheems._previousmarketingFee (#629) is set pre-construction with a non-constant function or state variable:
- _marketingFee
ChickenCheems._maxWalletSize (#630) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 4) / 100
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) (#301-307):
- (success) = recipient.call{value: amount}() (#305)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#330-351):
- (success,returndata) = target.call{value: weiValue}(data) (#334)
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() (#430) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#431) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#448) is not in mixedCase
Function IUniswapV2Router01.WETH() (#468) is not in mixedCase
Function ChickenCheems._getETHBalance() (#1028-1030) is not in mixedCase
Function ChickenCheems._setTaxFee(uint256) (#1032-1035) is not in mixedCase
Function ChickenCheems._setmarketingFee(uint256) (#1037-1040) is not in mixedCase
Function ChickenCheems._setmarketingWallet(address) (#1042-1044) is not in mixedCase
Function ChickenCheems._setMaxTxAmount(uint256) (#1046-1049) is not in mixedCase
Variable ChickenCheems._maxWalletSize (#630) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#37)" inContext (#31-40)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in ChickenCheems._transfer(address,address,uint256) (#812-862):
External calls:
- sendETHTomarketing(address(this).balance) (#841)
- _marketingWalletAddress.transfer(amount) (#883)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _marketingFee = _previousmarketingFee (#797)
- _marketingFee = 0 (#792)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _previousTaxFee = _taxFee (#788)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _previousmarketingFee = _marketingFee (#789)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _rOwned[address(this)] = _rOwned[address(this)].add(rmarketing) (#969)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#928)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#937)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#958)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#929)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#948)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#949)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#939)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#960)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _rTotal = _rTotal.sub(rFee) (#975)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _tFeeTotal = _tFeeTotal.add(tFee) (#976)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _tOwned[address(this)] = _tOwned[address(this)].add(tmarketing) (#971)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#947)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#957)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#938)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#959)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- _taxFee = _previousTaxFee (#796)
- _taxFee = 0 (#791)
- cooldown[sender] = block.timestamp + (60) (#857)
- cooldown[recipient] = block.timestamp + (60) (#860)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#932)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- Transfer(sender,recipient,tTransferAmount) (#942)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- Transfer(sender,recipient,tTransferAmount) (#952)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
- Transfer(sender,recipient,tTransferAmount) (#963)
- _tokenTransfer(sender,recipient,amount,takeFee) (#854)
Reentrancy in ChickenCheems.transferFrom(address,address,uint256) (#708-712):
External calls:
- _transfer(sender,recipient,amount) (#709)
- _marketingWalletAddress.transfer(amount) (#883)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#710)
- _allowances[owner][spender] = amount (#808)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#809)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#710)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#473) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#474)
Variable ChickenCheems._getValues(uint256).rTransferAmount (#985) is too similar to ChickenCheems._getTValues(uint256,uint256,uint256).tTransferAmount (#992)
Variable ChickenCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#946) is too similar to ChickenCheems._getTValues(uint256,uint256,uint256).tTransferAmount (#992)
Variable ChickenCheems.reflectionFromToken(uint256,bool).rTransferAmount (#751) is too similar to ChickenCheems._getValues(uint256).tTransferAmount (#983)
Variable ChickenCheems.reflectionFromToken(uint256,bool).rTransferAmount (#751) is too similar to ChickenCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#956)
Variable ChickenCheems._transferStandard(address,address,uint256).rTransferAmount (#927) is too similar to ChickenCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#946)
Variable ChickenCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#946) is too similar to ChickenCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#946)
Variable ChickenCheems._transferToExcluded(address,address,uint256).rTransferAmount (#936) is too similar to ChickenCheems._getTValues(uint256,uint256,uint256).tTransferAmount (#992)
Variable ChickenCheems._transferStandard(address,address,uint256).rTransferAmount (#927) is too similar to ChickenCheems._getValues(uint256).tTransferAmount (#983)
Variable ChickenCheems._transferStandard(address,address,uint256).rTransferAmount (#927) is too similar to ChickenCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#956)
Variable ChickenCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#956) is too similar to ChickenCheems._getTValues(uint256,uint256,uint256).tTransferAmount (#992)
Variable ChickenCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#946) is too similar to ChickenCheems._getValues(uint256).tTransferAmount (#983)
Variable ChickenCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#946) is too similar to ChickenCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#956)
Variable ChickenCheems._transferStandard(address,address,uint256).rTransferAmount (#927) is too similar to ChickenCheems._transferToExcluded(address,address,uint256).tTransferAmount (#936)
Variable ChickenCheems._transferToExcluded(address,address,uint256).rTransferAmount (#936) is too similar to ChickenCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#946)
Variable ChickenCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#946) is too similar to ChickenCheems._transferToExcluded(address,address,uint256).tTransferAmount (#936)
Variable ChickenCheems._transferToExcluded(address,address,uint256).rTransferAmount (#936) is too similar to ChickenCheems._getValues(uint256).tTransferAmount (#983)
Variable ChickenCheems._getRValues(uint256,uint256,uint256).rTransferAmount (#999) is too similar to ChickenCheems._getTValues(uint256,uint256,uint256).tTransferAmount (#992)
Variable ChickenCheems._transferToExcluded(address,address,uint256).rTransferAmount (#936) is too similar to ChickenCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#956)
Variable ChickenCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#956) is too similar to ChickenCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#956)
Variable ChickenCheems.reflectionFromToken(uint256,bool).rTransferAmount (#751) is too similar to ChickenCheems._getTValues(uint256,uint256,uint256).tTransferAmount (#992)
Variable ChickenCheems._transferStandard(address,address,uint256).rTransferAmount (#927) is too similar to ChickenCheems._transferStandard(address,address,uint256).tTransferAmount (#927)
Variable ChickenCheems._transferToExcluded(address,address,uint256).rTransferAmount (#936) is too similar to ChickenCheems._transferToExcluded(address,address,uint256).tTransferAmount (#936)
Variable ChickenCheems._transferStandard(address,address,uint256).rTransferAmount (#927) is too similar to ChickenCheems._getTValues(uint256,uint256,uint256).tTransferAmount (#992)
Variable ChickenCheems._getValues(uint256).rTransferAmount (#985) is too similar to ChickenCheems._transferStandard(address,address,uint256).tTransferAmount (#927)
Variable ChickenCheems._getRValues(uint256,uint256,uint256).rTransferAmount (#999) is too similar to ChickenCheems._getValues(uint256).tTransferAmount (#983)
Variable ChickenCheems._getValues(uint256).rTransferAmount (#985) is too similar to ChickenCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#946)
Variable ChickenCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#956) is too similar to ChickenCheems._getValues(uint256).tTransferAmount (#983)
Variable ChickenCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#946) is too similar to ChickenCheems._transferStandard(address,address,uint256).tTransferAmount (#927)
Variable ChickenCheems._getValues(uint256).rTransferAmount (#985) is too similar to ChickenCheems._transferToExcluded(address,address,uint256).tTransferAmount (#936)
Variable ChickenCheems._getRValues(uint256,uint256,uint256).rTransferAmount (#999) is too similar to ChickenCheems._transferStandard(address,address,uint256).tTransferAmount (#927)
Variable ChickenCheems._getValues(uint256).rTransferAmount (#985) is too similar to ChickenCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#956)
Variable ChickenCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#956) is too similar to ChickenCheems._transferStandard(address,address,uint256).tTransferAmount (#927)
Variable ChickenCheems.reflectionFromToken(uint256,bool).rTransferAmount (#751) is too similar to ChickenCheems._transferStandard(address,address,uint256).tTransferAmount (#927)
Variable ChickenCheems._getRValues(uint256,uint256,uint256).rTransferAmount (#999) is too similar to ChickenCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#946)
Variable ChickenCheems._transferToExcluded(address,address,uint256).rTransferAmount (#936) is too similar to ChickenCheems._transferStandard(address,address,uint256).tTransferAmount (#927)
Variable ChickenCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#956) is too similar to ChickenCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#946)
Variable ChickenCheems._getRValues(uint256,uint256,uint256).rTransferAmount (#999) is too similar to ChickenCheems._transferToExcluded(address,address,uint256).tTransferAmount (#936)
Variable ChickenCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#956) is too similar to ChickenCheems._transferToExcluded(address,address,uint256).tTransferAmount (#936)
Variable ChickenCheems.reflectionFromToken(uint256,bool).rTransferAmount (#751) is too similar to ChickenCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#946)
Variable ChickenCheems._getRValues(uint256,uint256,uint256).rTransferAmount (#999) is too similar to ChickenCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#956)
Variable ChickenCheems.reflectionFromToken(uint256,bool).rTransferAmount (#751) is too similar to ChickenCheems._transferToExcluded(address,address,uint256).tTransferAmount (#936)
Variable ChickenCheems._getValues(uint256).rTransferAmount (#985) is too similar to ChickenCheems._getValues(uint256).tTransferAmount (#983)
Prevent variables from having similar names.
Additional information: link
ChickenCheems._setMaxTxAmount(uint256) (#1046-1049) uses literals with too many digits:
- require(bool,string)(maxTxAmount >= 100000000e9,maxTxAmount should be greater than 100000000e9) (#1047)
ChickenCheems.slitherConstructorVariables() (#602-1051) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 6 * 10 ** 9 (#618)
ChickenCheems.slitherConstructorVariables() (#602-1051) uses literals with too many digits:
- _maxTxAmount = 4000000000000000e9 (#641)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#356) is never used in ChickenCheems (#602-1051)
Remove unused state variables.
Additional information: link
ChickenCheems._decimals (#624) should be constant
ChickenCheems._name (#622) should be constant
ChickenCheems._numOfTokensToExchangeFormarketing (#643) should be constant
ChickenCheems._symbol (#623) should be constant
ChickenCheems._tTotal (#618) should be constant
Ownable._previousOwner (#356) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#391-394)
name() should be declared external:
- ChickenCheems.name() (#673-675)
symbol() should be declared external:
- ChickenCheems.symbol() (#677-679)
decimals() should be declared external:
- ChickenCheems.decimals() (#681-683)
totalSupply() should be declared external:
- ChickenCheems.totalSupply() (#685-687)
transfer(address,uint256) should be declared external:
- ChickenCheems.transfer(address,uint256) (#694-697)
allowance(address,address) should be declared external:
- ChickenCheems.allowance(address,address) (#699-701)
approve(address,uint256) should be declared external:
- ChickenCheems.approve(address,uint256) (#703-706)
transferFrom(address,address,uint256) should be declared external:
- ChickenCheems.transferFrom(address,address,uint256) (#708-712)
increaseAllowance(address,uint256) should be declared external:
- ChickenCheems.increaseAllowance(address,uint256) (#714-717)
decreaseAllowance(address,uint256) should be declared external:
- ChickenCheems.decreaseAllowance(address,uint256) (#719-722)
isExcluded(address) should be declared external:
- ChickenCheems.isExcluded(address) (#724-726)
totalFees() should be declared external:
- ChickenCheems.totalFees() (#732-734)
deliver(uint256) should be declared external:
- ChickenCheems.deliver(uint256) (#736-743)
reflectionFromToken(uint256,bool) should be declared external:
- ChickenCheems.reflectionFromToken(uint256,bool) (#745-754)
isExcludedFromFee(address) should be declared external:
- ChickenCheems.isExcludedFromFee(address) (#800-802)
_getETHBalance() should be declared external:
- ChickenCheems._getETHBalance() (#1028-1030)
Use the external attribute for functions never called from the contract.
Additional information: link
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 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 website, listings and other project-related information
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts