Cheems Casino Token Logo

CHC [Cheems Casino] Token

ALERT: honeypot scam

About CHC

Listings

Not Found
Token 4 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 26 April 2022

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

Reentrancy in CheemsCasino._transfer(address,address,uint256) (#1107-1155):
External calls:
- swapAndLiquify(contractTokenBalance) (#1142)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1142)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#983)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1101)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1037)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1102)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#846)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1071)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1072)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1039)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#848)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _rTotal = _rTotal.sub(rFee) (#912)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#985)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#845)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1070)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1038)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#847)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable._lockTime (#395) is never initialized. It is used in:
- Ownable.geUnlockTime() (#445-447)
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


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


Contract ownership is not renounced (belongs to a wallet)

CheemsCasino._rTotal (#666) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CheemsCasino.buyTotalFees (#677) is set pre-construction with a non-constant function or state variable:
- marketingFee + liquidityFee + taxFee
CheemsCasino._previous_taxFee (#685) is set pre-construction with a non-constant function or state variable:
- _taxFee
CheemsCasino._previousMarketingFee (#686) 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

Pragma version^0.7.0 (#7) allows old versions
solc-0.7.0 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#147-153):
- (success) = recipient.call{value: amount}() (#151)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#213-234):
- (success,returndata) = target.call{value: weiValue}(data) (#217)
Low level call in CheemsCasino.clearStuckBNBBalance(address) (#902-905):
- (sent) = address(addr).call{value: (address(this).balance)}() (#903)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

CheemsCasino.BlacklistAddress(address[]).i (#1159) is a local variable never initialized
CheemsCasino.unBlacklistAddress(address[]).i (#1171) 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

CheemsCasino.addLiquidity(uint256,uint256) (#1085-1098) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
Ensure that all the return values of the function calls are used.

Additional information: link

CheemsCasino.allowance(address,address).owner (#762) shadows:
- Ownable.owner() (#411-413) (function)
CheemsCasino._approve(address,address,uint256).owner (#1077) shadows:
- Ownable.owner() (#411-413) (function)
Rename the local variables that shadow another component.

Additional information: link

CheemsCasino.setMarketingFee(uint256) (#861-864) should emit an event for:
- swapTokensAtAmount = value (#862)
CheemsCasino.setFees(uint256,uint256,uint256) (#888-895) should emit an event for:
- marketingFee = _MarketingFee (#889)
- liquidityFee = _LiquidityFee (#890)
- taxFee = _TaxFee (#891)
CheemsCasino.setMarketingFeePercent(uint256) (#941-943) should emit an event for:
- _liquidityFee = MarketingFee (#942)
Emit an event for critical parameter changes.

Additional information: link

CheemsCasino.setMarketingWallet(address).newMarketingWallet (#897) lacks a zero-check on :
- marketingWallet = newMarketingWallet (#898)
CheemsCasino.clearStuckBNBBalance(address).addr (#902) lacks a zero-check on :
- (sent) = address(addr).call{value: (address(this).balance)}() (#903)
Check that the address is not zero.

Additional information: link

Reentrancy in CheemsCasino._transfer(address,address,uint256) (#1107-1155):
External calls:
- swapAndLiquify(contractTokenBalance) (#1142)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1142)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _liquidityFee = _previousMarketingFee (#1011)
- _liquidityFee = 0 (#1006)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _previousMarketingFee = _liquidityFee (#1003)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _previous_taxFee = _taxFee (#1004)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _tFeeTotal = _tFeeTotal.add(tFee) (#913)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _taxFee = _previous_taxFee (#1012)
- _taxFee = 0 (#1007)
Reentrancy in CheemsCasino.constructor() (#717-733):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#722-723)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#729)
- _isExcludedFromFee[address(this)] = true (#730)
- uniswapV2Router = _uniswapV2Router (#726)
Reentrancy in CheemsCasino.swapAndLiquify(uint256) (#1045-1066):
External calls:
- swapTokensForEth(half) (#1057)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
- addLiquidity(otherHalf,newBalance) (#1063)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1063)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1063)
- _allowances[owner][spender] = amount (#1081)
Reentrancy in CheemsCasino.transferFrom(address,address,uint256) (#771-775):
External calls:
- _transfer(sender,recipient,amount) (#772)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
External calls sending eth:
- _transfer(sender,recipient,amount) (#772)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#773)
- _allowances[owner][spender] = amount (#1081)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CheemsCasino._transfer(address,address,uint256) (#1107-1155):
External calls:
- swapAndLiquify(contractTokenBalance) (#1142)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1142)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1105)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- Transfer(sender,recipient,tTransferAmount) (#1042)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- Transfer(sender,recipient,tTransferAmount) (#1075)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- Transfer(sender,recipient,tTransferAmount) (#851)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
Reentrancy in CheemsCasino.constructor() (#717-733):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#722-723)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#732)
Reentrancy in CheemsCasino.swapAndLiquify(uint256) (#1045-1066):
External calls:
- swapTokensForEth(half) (#1057)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
- addLiquidity(otherHalf,newBalance) (#1063)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1063)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1082)
- addLiquidity(otherHalf,newBalance) (#1063)
- SwapAndLiquify(half,newBalance,otherHalf) (#1065)
Reentrancy in CheemsCasino.transferFrom(address,address,uint256) (#771-775):
External calls:
- _transfer(sender,recipient,amount) (#772)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
External calls sending eth:
- _transfer(sender,recipient,amount) (#772)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1090-1097)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1082)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#773)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#120-129) uses assembly
- INLINE ASM (#127)
Address._functionCallWithValue(address,bytes,uint256,string) (#213-234) uses assembly
- INLINE ASM (#226-229)
Do not use evm assembly.

Additional information: link

CheemsCasino._transfer(address,address,uint256) (#1107-1155) compares to a boolean constant:
-require(bool,string)(_isBlacklistedBot[from] == false,You are Whitelist) (#1115)
CheemsCasino._transfer(address,address,uint256) (#1107-1155) compares to a boolean constant:
-require(bool,string)(_isBlacklistedBot[to] == false,The recipient is whitelisted) (#1116)
CheemsCasino.isBlacklistedBot(address) (#1164-1167) compares to a boolean constant:
-_isBlacklistedBot[addresses] == true (#1165)
Remove the equality to the boolean constant.

Additional information: link

CheemsCasino.IncludeFromFees(address) (#831-842) has costly operations inside a loop:
- _excluded.pop() (#838)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#213-234) is never used and should be removed
Address.functionCall(address,bytes) (#173-175) is never used and should be removed
Address.functionCall(address,bytes,string) (#183-185) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#198-200) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#208-211) is never used and should be removed
Address.isContract(address) (#120-129) is never used and should be removed
Address.sendValue(address,uint256) (#147-153) is never used and should be removed
CheemsCasino.isExcludedFromReward(address) (#787-789) is never used and should be removed
Context._msgData() (#14-17) is never used and should be removed
SafeMath.mod(uint256,uint256) (#358-360) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#374-377) is never used and should be removed
Remove unused functions.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#473) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#474) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#491) is not in mixedCase
Function IUniswapV2Router01.WETH() (#513) is not in mixedCase
Event CheemsCasinoswapEnabledUpdated(bool) (#703) is not in CapWords
Function CheemsCasino.MarketingFeeFromToken(uint256,bool) (#804-813) is not in mixedCase
Function CheemsCasino.ExcludeFromFees(address) (#821-829) is not in mixedCase
Function CheemsCasino.IncludeFromFees(address) (#831-842) is not in mixedCase
Parameter CheemsCasino.setFees(uint256,uint256,uint256)._MarketingFee (#888) is not in mixedCase
Parameter CheemsCasino.setFees(uint256,uint256,uint256)._LiquidityFee (#888) is not in mixedCase
Parameter CheemsCasino.setFees(uint256,uint256,uint256)._TaxFee (#888) is not in mixedCase
Parameter CheemsCasino.setMarketingFeePercent(uint256).MarketingFee (#941) is not in mixedCase
Parameter CheemsCasino.calculateMarketingFee(uint256)._amount (#988) is not in mixedCase
Function CheemsCasino.calculate_taxFee(uint256) (#994-998) is not in mixedCase
Parameter CheemsCasino.calculate_taxFee(uint256)._amount (#994) is not in mixedCase
Function CheemsCasino.BlacklistAddress(address[]) (#1158-1162) is not in mixedCase
Variable CheemsCasino._previous_taxFee (#685) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#518) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#519)
Variable CheemsCasino._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to CheemsCasino._getValues(uint256).tTransferAmount (#917)
Variable CheemsCasino._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to CheemsCasino._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable CheemsCasino._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to CheemsCasino._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable CheemsCasino._transferFromExcluded(address,address,uint256).rTransferAmount (#1069) is too similar to CheemsCasino._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable CheemsCasino._transferBothExcluded(address,address,uint256).rTransferAmount (#844) is too similar to CheemsCasino._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable CheemsCasino._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to CheemsCasino._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable CheemsCasino._transferFromExcluded(address,address,uint256).rTransferAmount (#1069) is too similar to CheemsCasino._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable CheemsCasino._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to CheemsCasino._getTValues(uint256).tTransferAmount (#951)
Variable CheemsCasino.MarketingFeeFromToken(uint256,bool).rTransferAmount (#810) is too similar to CheemsCasino._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable CheemsCasino._transferBothExcluded(address,address,uint256).rTransferAmount (#844) is too similar to CheemsCasino._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable CheemsCasino._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to CheemsCasino._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable CheemsCasino._getValues(uint256).rTransferAmount (#918) is too similar to CheemsCasino._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable CheemsCasino._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to CheemsCasino._getValues(uint256).tTransferAmount (#917)
Variable CheemsCasino._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to CheemsCasino._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable CheemsCasino._transferFromExcluded(address,address,uint256).rTransferAmount (#1069) is too similar to CheemsCasino._getValues(uint256).tTransferAmount (#917)
Variable CheemsCasino._transferFromExcluded(address,address,uint256).rTransferAmount (#1069) is too similar to CheemsCasino._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable CheemsCasino._transferBothExcluded(address,address,uint256).rTransferAmount (#844) is too similar to CheemsCasino._getValues(uint256).tTransferAmount (#917)
Variable CheemsCasino._transferBothExcluded(address,address,uint256).rTransferAmount (#844) is too similar to CheemsCasino._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable CheemsCasino._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to CheemsCasino._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable CheemsCasino._transferFromExcluded(address,address,uint256).rTransferAmount (#1069) is too similar to CheemsCasino._transferFromExcluded(address,address,uint256).tTransferAmount (#1069)
Variable CheemsCasino._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to CheemsCasino._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable CheemsCasino._transferFromExcluded(address,address,uint256).rTransferAmount (#1069) is too similar to CheemsCasino._getTValues(uint256).tTransferAmount (#951)
Variable CheemsCasino._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to CheemsCasino._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable CheemsCasino.MarketingFeeFromToken(uint256,bool).rTransferAmount (#810) is too similar to CheemsCasino._getValues(uint256).tTransferAmount (#917)
Variable CheemsCasino._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to CheemsCasino._getTValues(uint256).tTransferAmount (#951)
Variable CheemsCasino._getValues(uint256).rTransferAmount (#918) is too similar to CheemsCasino._getValues(uint256).tTransferAmount (#917)
Variable CheemsCasino.MarketingFeeFromToken(uint256,bool).rTransferAmount (#810) is too similar to CheemsCasino._getTValues(uint256).tTransferAmount (#951)
Variable CheemsCasino.MarketingFeeFromToken(uint256,bool).rTransferAmount (#810) is too similar to CheemsCasino._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable CheemsCasino.MarketingFeeFromToken(uint256,bool).rTransferAmount (#810) is too similar to CheemsCasino._transferFromExcluded(address,address,uint256).tTransferAmount (#1069)
Variable CheemsCasino._getValues(uint256).rTransferAmount (#918) is too similar to CheemsCasino._getTValues(uint256).tTransferAmount (#951)
Variable CheemsCasino._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to CheemsCasino._transferFromExcluded(address,address,uint256).tTransferAmount (#1069)
Variable CheemsCasino._getValues(uint256).rTransferAmount (#918) is too similar to CheemsCasino._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable CheemsCasino._getValues(uint256).rTransferAmount (#918) is too similar to CheemsCasino._transferFromExcluded(address,address,uint256).tTransferAmount (#1069)
Variable CheemsCasino.MarketingFeeFromToken(uint256,bool).rTransferAmount (#810) is too similar to CheemsCasino._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable CheemsCasino._transferBothExcluded(address,address,uint256).rTransferAmount (#844) is too similar to CheemsCasino._getTValues(uint256).tTransferAmount (#951)
Variable CheemsCasino._getValues(uint256).rTransferAmount (#918) is too similar to CheemsCasino._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable CheemsCasino._transferBothExcluded(address,address,uint256).rTransferAmount (#844) is too similar to CheemsCasino._transferFromExcluded(address,address,uint256).tTransferAmount (#1069)
Variable CheemsCasino._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to CheemsCasino._getValues(uint256).tTransferAmount (#917)
Variable CheemsCasino._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to CheemsCasino._getTValues(uint256).tTransferAmount (#951)
Variable CheemsCasino._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to CheemsCasino._transferFromExcluded(address,address,uint256).tTransferAmount (#1069)
Variable CheemsCasino._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to CheemsCasino._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable CheemsCasino._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to CheemsCasino._transferFromExcluded(address,address,uint256).tTransferAmount (#1069)
Prevent variables from having similar names.

Additional information: link

CheemsCasino.enableTrading() (#866-870) uses literals with too many digits:
- _tradingActiveBlock = 10000000000000000000000000000000000000000000000000000 (#868)
CheemsCasino.disableTrading() (#873-877) uses literals with too many digits:
- swapTokensAtAmount = 100000 (#876)
CheemsCasino.slitherConstructorVariables() (#651-1178) uses literals with too many digits:
- _tTotal = 10000000000 * 10 ** 18 (#665)
CheemsCasino.slitherConstructorVariables() (#651-1178) uses literals with too many digits:
- _tradingActiveBlock = 10000000000 * 10 ** 18 (#695)
CheemsCasino.slitherConstructorVariables() (#651-1178) uses literals with too many digits:
- maxTransactionAmount = 300000000 * (10 ** 18) (#696)
CheemsCasino.slitherConstructorVariables() (#651-1178) uses literals with too many digits:
- maxWallet = 300000000 * (10 ** 18) (#697)
CheemsCasino.slitherConstructorVariables() (#651-1178) uses literals with too many digits:
- swapTokensAtAmount = 1000000 * 10 ** 18 (#698)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#394) is never used in CheemsCasino (#651-1178)
CheemsCasino._marketingFee (#675) is never used in CheemsCasino (#651-1178)
Remove unused state variables.

Additional information: link

CheemsCasino._decimals (#671) should be constant
CheemsCasino._marketingFee (#675) should be constant
CheemsCasino._name (#669) should be constant
CheemsCasino._symbol (#670) should be constant
CheemsCasino._tTotal (#665) should be constant
Ownable._lockTime (#395) should be constant
Ownable._previousOwner (#394) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#430-433)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#439-443)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#445-447)
name() should be declared external:
- CheemsCasino.name() (#735-737)
symbol() should be declared external:
- CheemsCasino.symbol() (#739-741)
decimals() should be declared external:
- CheemsCasino.decimals() (#743-745)
totalSupply() should be declared external:
- CheemsCasino.totalSupply() (#747-749)
transfer(address,uint256) should be declared external:
- CheemsCasino.transfer(address,uint256) (#757-760)
allowance(address,address) should be declared external:
- CheemsCasino.allowance(address,address) (#762-764)
approve(address,uint256) should be declared external:
- CheemsCasino.approve(address,uint256) (#766-769)
transferFrom(address,address,uint256) should be declared external:
- CheemsCasino.transferFrom(address,address,uint256) (#771-775)
increaseAllowance(address,uint256) should be declared external:
- CheemsCasino.increaseAllowance(address,uint256) (#777-780)
decreaseAllowance(address,uint256) should be declared external:
- CheemsCasino.decreaseAllowance(address,uint256) (#782-785)
totalFees() should be declared external:
- CheemsCasino.totalFees() (#791-793)
deliver(uint256) should be declared external:
- CheemsCasino.deliver(uint256) (#795-802)
MarketingFeeFromToken(uint256,bool) should be declared external:
- CheemsCasino.MarketingFeeFromToken(uint256,bool) (#804-813)
ExcludeFromFees(address) should be declared external:
- CheemsCasino.ExcludeFromFees(address) (#821-829)
excludeFromFee(address) should be declared external:
- CheemsCasino.excludeFromFee(address) (#854-856)
includeInFee(address) should be declared external:
- CheemsCasino.includeInFee(address) (#945-947)
isExcludedFromFee(address) should be declared external:
- CheemsCasino.isExcludedFromFee(address) (#1014-1016)
BlacklistAddress(address[]) should be declared external:
- CheemsCasino.BlacklistAddress(address[]) (#1158-1162)
isBlacklistedBot(address) should be declared external:
- CheemsCasino.isBlacklistedBot(address) (#1164-1167)
unBlacklistAddress(address[]) should be declared external:
- CheemsCasino.unBlacklistAddress(address[]) (#1170-1174)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


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.


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 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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for CHC