CASINO CHEEMS Token Logo

$CC [CASINO CHEEMS] Token

About $CC

Listings

Token 4 years

CASINO CHEEMS ($CC) is a community driven token, targeted to bring the real Passive Income on blockchain ecosystem! CASINO CHEEMS Finance brings the most revolutionary mechanism to BSC ecosystem, programmed to reward holders while increasing in both liquidity and value. Earn reflections just by holding $CC token.

We are proud to present Casino Cheems token AUCTION POOL. It is one of our innovations, a platform that allow you to win 1 BNB worth of $CC tokens at a lowest price compared to the market. Price started from $10 Up to 3/4 (75%) of $BNB market price.When the Auction has starts, you have 24 hours, or the last bid has not reached 3/4 of the market price.

TOKONOMICS:

BUY TAX 13%

3% Liquidity

6% Marketing wallet

2% Reflections (Cheems)

2% Auction Pool

SELL TAX 16%

3% Liquidity

6% Marketing wallet

2% Reflections (Cheems)

2% Auction Pool

3% Dev Fee

Social

Laser Scorebeta Last Audit: 26 April 2022

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

CASINOCHEEMS.swapBack() (#729-796) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#777)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CASINOCHEEMS._transferFrom(address,address,uint256) (#637-687):
External calls:
- swapBack() (#654)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#752-758)
- distributor.deposit{value: amountBNBReflection}() (#777)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
External calls sending eth:
- swapBack() (#654)
- distributor.deposit{value: amountBNBReflection}() (#777)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#657-660)
- amountReceived = takeFee(sender,amount) (#669)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#715)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#672)
Reentrancy in CASINOCHEEMS.swapBack() (#729-796):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#752-758)
- distributor.deposit{value: amountBNBReflection}() (#777)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#777)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
State variables written after the call(s):
- _balances[auctionPool] = _balances[auctionPool].add(amountTokenStaking) (#780-782)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#409-426) ignores return value by rewardToken.transfer(shareholder,amount) (#417)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

Reentrancy in DividendDistributor.distributeDividend(address) (#409-426):
External calls:
- rewardToken.transfer(shareholder,amount) (#417)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#419-421)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#422-424)
Reentrancy in DividendDistributor.process(uint256) (#371-397):
External calls:
- distributeDividend(shareholders[currentIndex]) (#389)
- rewardToken.transfer(shareholder,amount) (#417)
State variables written after the call(s):
- currentIndex ++ (#394)
Reentrancy in DividendDistributor.setShare(address,uint256) (#328-348):
External calls:
- distributeDividend(shareholder) (#334)
- rewardToken.transfer(shareholder,amount) (#417)
State variables written after the call(s):
- shares[shareholder].amount = amount (#344)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#345-347)
Apply the check-effects-interactions pattern.

Additional information: link

CASINOCHEEMS.swapBack() (#729-796) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#320-326) should emit an event for:
- minPeriod = _minPeriod (#324)
- minDistribution = _minDistribution (#325)
CASINOCHEEMS.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#844-867) should emit an event for:
- liquidityFee = _liquidityFee (#852)
- reflectionFee = _reflectionFee (#854)
- marketingFee = _marketingFee (#855)
- auctionFee = _auctionFee (#856)
- totalFee = _liquidityFee.add(_devFee).add(_reflectionFee).add(_marketingFee).add(_auctionFee) (#857-861)
- feeDenominator = _feeDenominator (#862)
CASINOCHEEMS.setSwapBackSettings(bool,uint256) (#897-903) should emit an event for:
- swapThreshold = _amount (#902)
CASINOCHEEMS.setTargetLiquidity(uint256,uint256) (#905-911) should emit an event for:
- targetLiquidity = _target (#909)
- targetLiquidityDenominator = _denominator (#910)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#235) lacks a zero-check on :
- owner = adr (#236)
CASINOCHEEMS.constructor(address,address,address,address).marketingFeeReceiver_ (#542) lacks a zero-check on :
- marketingFeeReceiver = marketingFeeReceiver_ (#560)
CASINOCHEEMS.constructor(address,address,address,address).devFeeReceiver_ (#543) lacks a zero-check on :
- devFeeReceiver = devFeeReceiver_ (#561)
CASINOCHEEMS.constructor(address,address,address,address).auctionPool_ (#544) lacks a zero-check on :
- auctionPool = auctionPool_ (#562)
CASINOCHEEMS.setRoute(address,address)._pair (#822) lacks a zero-check on :
- pair = _pair (#824)
CASINOCHEEMS.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#886) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#891)
CASINOCHEEMS.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#887) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#892)
CASINOCHEEMS.setFeeReceivers(address,address,address,address)._devFeeReceiver (#888) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#893)
CASINOCHEEMS.setFeeReceivers(address,address,address,address)._auctionPool (#889) lacks a zero-check on :
- auctionPool = _auctionPool (#894)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#409-426) has external calls inside a loop: rewardToken.transfer(shareholder,amount) (#417)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in CASINOCHEEMS.constructor(address,address,address,address) (#540-569):
External calls:
- pair = IUniswapV2Factory(router.factory()).createPair(address(this),router.WETH()) (#548-551)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = _totalSupply (#564)
- _allowances[address(this)][address(pair)] = _totalSupply (#565)
- _balances[msg.sender] = _totalSupply (#567)
- auctionPool = auctionPool_ (#562)
- autoLiquidityReceiver = msg.sender (#559)
- devFeeReceiver = devFeeReceiver_ (#561)
- distributor = new DividendDistributor(router_) (#552)
- isDividendExempt[pair] = true (#555)
- isDividendExempt[address(this)] = true (#556)
- isDividendExempt[DEAD] = true (#557)
- isFeeExempt[msg.sender] = true (#554)
- marketingFeeReceiver = marketingFeeReceiver_ (#560)
Reentrancy in DividendDistributor.deposit() (#350-369):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#357-359)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#366-368)
- totalDividends = totalDividends.add(amount) (#365)
Reentrancy in DividendDistributor.distributeDividend(address) (#409-426):
External calls:
- rewardToken.transfer(shareholder,amount) (#417)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#418)
Reentrancy in DividendDistributor.setShare(address,uint256) (#328-348):
External calls:
- distributeDividend(shareholder) (#334)
- rewardToken.transfer(shareholder,amount) (#417)
State variables written after the call(s):
- addShareholder(shareholder) (#338)
- shareholderIndexes[shareholder] = shareholders.length (#471)
- removeShareholder(shareholder) (#340)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#479-481)
- addShareholder(shareholder) (#338)
- shareholders.push(shareholder) (#472)
- removeShareholder(shareholder) (#340)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#476-478)
- shareholders.pop() (#482)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#343)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CASINOCHEEMS._transferFrom(address,address,uint256) (#637-687):
External calls:
- swapBack() (#654)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#752-758)
- distributor.deposit{value: amountBNBReflection}() (#777)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
External calls sending eth:
- swapBack() (#654)
- distributor.deposit{value: amountBNBReflection}() (#777)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#716)
- amountReceived = takeFee(sender,amount) (#669)
Reentrancy in CASINOCHEEMS._transferFrom(address,address,uint256) (#637-687):
External calls:
- swapBack() (#654)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#752-758)
- distributor.deposit{value: amountBNBReflection}() (#777)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
- distributor.setShare(sender,_balances[sender]) (#675)
- distributor.setShare(recipient,_balances[recipient]) (#678-680)
- distributor.process(distributorGas) (#683)
External calls sending eth:
- swapBack() (#654)
- distributor.deposit{value: amountBNBReflection}() (#777)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#685)
Reentrancy in CASINOCHEEMS.constructor(address,address,address,address) (#540-569):
External calls:
- pair = IUniswapV2Factory(router.factory()).createPair(address(this),router.WETH()) (#548-551)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#568)
Reentrancy in CASINOCHEEMS.swapBack() (#729-796):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#752-758)
- distributor.deposit{value: amountBNBReflection}() (#777)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#777)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
Event emitted after the call(s):
- Transfer(address(this),auctionPool,amountTokenStaking) (#783)
Reentrancy in CASINOCHEEMS.swapBack() (#729-796):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#752-758)
- distributor.deposit{value: amountBNBReflection}() (#777)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#777)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#794)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#399-407) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#404-406)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#371-397) has costly operations inside a loop:
- currentIndex = 0 (#385)
DividendDistributor.distributeDividend(address) (#409-426) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#416)
DividendDistributor.process(uint256) (#371-397) has costly operations inside a loop:
- currentIndex ++ (#394)
Use a local variable to hold the loop computation result.

Additional information: link

CASINOCHEEMS.shouldTakeFee(address) (#703-705) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#98-107) is never used and should be removed
SafeMath.mod(uint256,uint256) (#83-85) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#109-118) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#6-16) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#45-54) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#56-65) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#29-43) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#18-27) is never used and should be removed
Remove unused functions.

Additional information: link

DividendDistributor.minDistribution (#299) is set pre-construction with a non-constant function or state variable:
- 1 * (10 ** rewardToken.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

Pragma version^0.8.10 (#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 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

Function IDexRouter.WETH() (#130) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#321) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#322) is not in mixedCase
Parameter DividendDistributor.claimDividend(address)._user (#428) is not in mixedCase
Variable DividendDistributor._token (#274) is not in mixedCase
Parameter CASINOCHEEMS.setRoute(address,address)._router (#822) is not in mixedCase
Parameter CASINOCHEEMS.setRoute(address,address)._pair (#822) is not in mixedCase
Parameter CASINOCHEEMS.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#845) is not in mixedCase
Parameter CASINOCHEEMS.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFee (#846) is not in mixedCase
Parameter CASINOCHEEMS.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#847) is not in mixedCase
Parameter CASINOCHEEMS.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#848) is not in mixedCase
Parameter CASINOCHEEMS.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._auctionFee (#849) is not in mixedCase
Parameter CASINOCHEEMS.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#850) is not in mixedCase
Parameter CASINOCHEEMS.setBuyFee(uint256)._fee (#869) is not in mixedCase
Parameter CASINOCHEEMS.setSellFee(uint256)._fee (#877) is not in mixedCase
Parameter CASINOCHEEMS.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#886) is not in mixedCase
Parameter CASINOCHEEMS.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#887) is not in mixedCase
Parameter CASINOCHEEMS.setFeeReceivers(address,address,address,address)._devFeeReceiver (#888) is not in mixedCase
Parameter CASINOCHEEMS.setFeeReceivers(address,address,address,address)._auctionPool (#889) is not in mixedCase
Parameter CASINOCHEEMS.setSwapBackSettings(bool,uint256)._enabled (#897) is not in mixedCase
Parameter CASINOCHEEMS.setSwapBackSettings(bool,uint256)._amount (#897) is not in mixedCase
Parameter CASINOCHEEMS.setTargetLiquidity(uint256,uint256)._target (#905) is not in mixedCase
Parameter CASINOCHEEMS.setTargetLiquidity(uint256,uint256)._denominator (#905) is not in mixedCase
Parameter CASINOCHEEMS.setDistributionCriteria(uint256,uint256)._minPeriod (#914) is not in mixedCase
Parameter CASINOCHEEMS.setDistributionCriteria(uint256,uint256)._minDistribution (#915) is not in mixedCase
Constant CASINOCHEEMS._name (#490) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CASINOCHEEMS._symbol (#491) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CASINOCHEEMS._decimals (#492) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CASINOCHEEMS._totalSupply (#493-494) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Reentrancy in CASINOCHEEMS._transferFrom(address,address,uint256) (#637-687):
External calls:
- swapBack() (#654)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
External calls sending eth:
- swapBack() (#654)
- distributor.deposit{value: amountBNBReflection}() (#777)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#657-660)
- amountReceived = takeFee(sender,amount) (#669)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#715)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#672)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#716)
- amountReceived = takeFee(sender,amount) (#669)
- Transfer(sender,recipient,amountReceived) (#685)
Reentrancy in CASINOCHEEMS.swapBack() (#729-796):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#777)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
State variables written after the call(s):
- _balances[auctionPool] = _balances[auctionPool].add(amountTokenStaking) (#780-782)
Event emitted after the call(s):
- Transfer(address(this),auctionPool,amountTokenStaking) (#783)
Reentrancy in CASINOCHEEMS.swapBack() (#729-796):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#777)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#778)
- address(devFeeReceiver).transfer(amountBNBMarketing) (#779)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#786-793)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#794)
Apply the check-effects-interactions pattern.

Additional information: link

Variable CASINOCHEEMS.setFeeReceivers(address,address,address,address)._auctionPool (#889) is too similar to CASINOCHEEMS.constructor(address,address,address,address).auctionPool_ (#544)
Variable CASINOCHEEMS.setFeeReceivers(address,address,address,address)._devFeeReceiver (#888) is too similar to CASINOCHEEMS.constructor(address,address,address,address).devFeeReceiver_ (#543)
Variable CASINOCHEEMS.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#887) is too similar to CASINOCHEEMS.constructor(address,address,address,address).marketingFeeReceiver_ (#542)
Prevent variables from having similar names.

Additional information: link

CASINOCHEEMS.slitherConstructorVariables() (#487-945) uses literals with too many digits:
- distributorGas = 500000 (#520)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CASINOCHEEMS.rewardToken (#496) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#296) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#219-221)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#223-225)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#235-239)
getPaidEarnings(address) should be declared external:
- DividendDistributor.getPaidEarnings(address) (#432-438)
getPaidDividend(address) should be declared external:
- CASINOCHEEMS.getPaidDividend(address) (#802-808)
setFees(uint256,uint256,uint256,uint256,uint256,uint256) should be declared external:
- CASINOCHEEMS.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#844-867)
setBuyFee(uint256) should be declared external:
- CASINOCHEEMS.setBuyFee(uint256) (#869-875)
setSellFee(uint256) should be declared external:
- CASINOCHEEMS.setSellFee(uint256) (#877-883)
Use the external attribute for functions never called from the contract.

Additional information: link

Contract ticker ($CC) 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.

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


Telegram account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find whitepaper link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find code repository for the project


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


Alexa traffic rank is very low

Additional information: link


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


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

News for $CC