CaliCoin Token Logo

CAN [CaliCoin] Token

About CAN

Listings

Not Found
Token 3 years
white paper

CaliCoin Community-based token. Reflection token / NFT-enabled / Low Supply & tax/ CaliWallet & Swap in view / Utilities in future. TG: https://t.co/E6tkemuuha

Social

Laser Scorebeta Last Audit: 29 June 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links

CALICOIN.swapBack() (#616-655) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#641)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

DividendDistributor.distributeDividend(address) (#316-327) ignores return value by BUSD.transfer(shareholder,amount) (#322)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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

Reentrancy in CALICOIN._transferFrom(address,address,uint256) (#502-540):
External calls:
- swapBack() (#522)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#627-633)
- distributor.deposit{value: amountBNBReflection}() (#640)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#645-652)
- triggerAutoBuyback() (#523)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#693-698)
External calls sending eth:
- swapBack() (#522)
- distributor.deposit{value: amountBNBReflection}() (#640)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#645-652)
- triggerAutoBuyback() (#523)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#693-698)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#527)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#531)
- amountReceived = takeFee(sender,recipient,amount) (#529)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#603)
- triggerAutoBuyback() (#523)
- inSwap = true (#442)
- inSwap = false (#442)
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.


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.

CALICOIN.takeFee(address,address,uint256) (#596-607) performs a multiplication on the result of a division:
-feeAmount = amount.div(100).mul(99) (#600)
Consider ordering multiplication before division.

Additional information: link

DividendDistributor.process(uint256) (#285-309) has costly operations inside a loop:
- currentIndex = 0 (#297)
DividendDistributor.distributeDividend(address) (#316-327) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#321)
DividendDistributor.process(uint256) (#285-309) has costly operations inside a loop:
- currentIndex ++ (#306)
Use a local variable to hold the loop computation result.

Additional information: link

Low level call in CALICOIN.swapBack() (#616-655):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#641)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#316-327):
External calls:
- BUSD.transfer(shareholder,amount) (#322)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#324)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#325)
Reentrancy in DividendDistributor.process(uint256) (#285-309):
External calls:
- distributeDividend(shareholders[currentIndex]) (#301)
- BUSD.transfer(shareholder,amount) (#322)
State variables written after the call(s):
- currentIndex ++ (#306)
Reentrancy in DividendDistributor.setShare(address,uint256) (#247-261):
External calls:
- distributeDividend(shareholder) (#249)
- BUSD.transfer(shareholder,amount) (#322)
State variables written after the call(s):
- shares[shareholder].amount = amount (#259)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#260)
Apply the check-effects-interactions pattern.

Additional information: link

CALICOIN.swapBack() (#616-655) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#645-652)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#242-245) should emit an event for:
- minPeriod = _minPeriod (#243)
- minDistribution = _minDistribution (#244)
CALICOIN.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#701-709) should emit an event for:
- autoBuybackCap = _cap (#703)
- autoBuybackAmount = _amount (#705)
CALICOIN.setBuybackMultiplierSettings(uint256,uint256,uint256) (#711-716) should emit an event for:
- buybackMultiplierNumerator = numerator (#713)
- buybackMultiplierDenominator = denominator (#714)
- buybackMultiplierLength = length (#715)
CALICOIN.tradingStatus(bool,uint256) (#722-728) should emit an event for:
- deadBlocks = _deadBlocks (#726)
CALICOIN.setBuyTxLimitInPercent(uint256) (#735-737) should emit an event for:
- _maxBuyTxAmount = _totalSupply.mul(maxBuyTxPercent).div(100) (#736)
CALICOIN.setSellTxLimitInPercent(uint256) (#740-742) should emit an event for:
- _maxSellTxAmount = _totalSupply.mul(maxSellTxPercent).div(100) (#741)
CALICOIN.setBuyFees(uint256,uint256,uint256,uint256,uint256) (#763-770) should emit an event for:
- liquidityFeeBuy = _liquidityFeeBuy (#764)
- buybackFeeBuy = _buybackFeeBuy (#765)
- reflectionFeeBuy = _reflectionFeeBuy (#766)
- marketingFeeBuy = _marketingFeeBuy (#767)
- totalFeeBuy = _liquidityFeeBuy.add(_buybackFeeBuy).add(_reflectionFeeBuy).add(_marketingFeeBuy) (#768)
- feeDenominator = _feeDenominator (#769)
CALICOIN.setSellFees(uint256,uint256,uint256,uint256,uint256) (#773-780) should emit an event for:
- liquidityFeeSell = _liquidityFeeSell (#774)
- buybackFeeSell = _buybackFeeSell (#775)
- reflectionFeeSell = _reflectionFeeSell (#776)
- marketingFeeSell = _marketingFeeSell (#777)
- totalFeeSell = _liquidityFeeSell.add(_buybackFeeSell).add(_reflectionFeeSell).add(_marketingFeeSell) (#778)
- feeDenominator = _feeDenominator (#779)
CALICOIN.setSwapBackSettings(bool,uint256) (#787-791) should emit an event for:
- swapThreshold = _amount (#789)
CALICOIN.setTargetLiquidity(uint256,uint256) (#793-796) should emit an event for:
- targetLiquidity = _target (#794)
- targetLiquidityDenominator = _denominator (#795)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#124) lacks a zero-check on :
- owner = adr (#125)
CALICOIN.setFeeReceivers(address,address)._autoLiquidityReceiver (#782) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#783)
CALICOIN.setFeeReceivers(address,address)._marketingFeeReceiver (#782) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#784)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#316-327) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#322)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in CALICOIN._transferFrom(address,address,uint256) (#502-540):
External calls:
- swapBack() (#522)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#627-633)
- distributor.deposit{value: amountBNBReflection}() (#640)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#645-652)
- triggerAutoBuyback() (#523)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#693-698)
External calls sending eth:
- swapBack() (#522)
- distributor.deposit{value: amountBNBReflection}() (#640)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#645-652)
- triggerAutoBuyback() (#523)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#693-698)
State variables written after the call(s):
- triggerAutoBuyback() (#523)
- buybackMultiplierTriggeredAt = block.timestamp (#680)
- launch() (#525)
- launchedAt = block.number (#731)
Reentrancy in CALICOIN.constructor() (#444-463):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#446)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#447)
- _balances[_presaler] = _totalSupply (#461)
- autoLiquidityReceiver = 0x5b35D5F8865c1295B80A5b0D384Ba1667762B5fb (#458)
- distributor = new DividendDistributor(address(router)) (#449)
- isDividendExempt[pair] = true (#454)
- isDividendExempt[address(this)] = true (#455)
- isDividendExempt[DEAD] = true (#456)
- isFeeExempt[_presaler] = true (#452)
- isTxLimitExempt[_presaler] = true (#453)
- marketingFeeReceiver = 0x6Df3D53ef4cE6cb89E1008C6Ac1A6E5C94014969 (#459)
Reentrancy in DividendDistributor.deposit() (#263-283):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#270-277)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#282)
- totalDividends = totalDividends.add(amount) (#281)
Reentrancy in DividendDistributor.distributeDividend(address) (#316-327):
External calls:
- BUSD.transfer(shareholder,amount) (#322)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#323)
Reentrancy in DividendDistributor.setShare(address,uint256) (#247-261):
External calls:
- distributeDividend(shareholder) (#249)
- BUSD.transfer(shareholder,amount) (#322)
State variables written after the call(s):
- addShareholder(shareholder) (#253)
- shareholderIndexes[shareholder] = shareholders.length (#349)
- removeShareholder(shareholder) (#255)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#355)
- addShareholder(shareholder) (#253)
- shareholders.push(shareholder) (#350)
- removeShareholder(shareholder) (#255)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#354)
- shareholders.pop() (#356)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#258)
Reentrancy in CALICOIN.triggerAutoBuyback() (#677-686):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#678)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#693-698)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#684)
- autoBuybackBlockLast = block.number (#683)
- autoBuybackEnabled = false (#685)
- buybackMultiplierTriggeredAt = block.timestamp (#680)
Reentrancy in CALICOIN.triggerManualBuyback(uint256,bool) (#665-671):
External calls:
- buyTokens(amount,DEAD) (#666)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#693-698)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#668)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CALICOIN._transferFrom(address,address,uint256) (#502-540):
External calls:
- swapBack() (#522)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#627-633)
- distributor.deposit{value: amountBNBReflection}() (#640)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#645-652)
- triggerAutoBuyback() (#523)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#693-698)
External calls sending eth:
- swapBack() (#522)
- distributor.deposit{value: amountBNBReflection}() (#640)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#645-652)
- triggerAutoBuyback() (#523)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#693-698)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#681)
- triggerAutoBuyback() (#523)
- Transfer(sender,address(this),feeAmount) (#604)
- amountReceived = takeFee(sender,recipient,amount) (#529)
Reentrancy in CALICOIN._transferFrom(address,address,uint256) (#502-540):
External calls:
- swapBack() (#522)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#627-633)
- distributor.deposit{value: amountBNBReflection}() (#640)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#645-652)
- triggerAutoBuyback() (#523)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#693-698)
- distributor.setShare(sender,_balances[sender]) (#533)
- distributor.setShare(recipient,_balances[recipient]) (#534)
- distributor.process(distributorGas) (#536)
External calls sending eth:
- swapBack() (#522)
- distributor.deposit{value: amountBNBReflection}() (#640)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#645-652)
- triggerAutoBuyback() (#523)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#693-698)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#538)
Reentrancy in CALICOIN.constructor() (#444-463):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#446)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#462)
Reentrancy in CALICOIN.swapBack() (#616-655):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#627-633)
- distributor.deposit{value: amountBNBReflection}() (#640)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#645-652)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#640)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#645-652)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#653)
Reentrancy in CALICOIN.triggerAutoBuyback() (#677-686):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#678)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#693-698)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#681)
Reentrancy in CALICOIN.triggerManualBuyback(uint256,bool) (#665-671):
External calls:
- buyTokens(amount,DEAD) (#666)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#693-698)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#669)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#311-314) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#312-313)
CALICOIN._transferFrom(address,address,uint256) (#502-540) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)((heldTokens + amount) <= _maxWalletToken,Total Holding is currently limited, you can not buy that much.) (#518)
- require(bool)(_balances[sender] > 0) (#525)
CALICOIN.getTotalFee(bool) (#584-588) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#586)
CALICOIN.shouldSwapBack() (#609-614) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#610-613)
CALICOIN.isOverLiquified(uint256,uint256) (#828-830) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#829)
Avoid relying on block.timestamp.

Additional information: link

CALICOIN._maxBuyTxAmount (#373) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 5) / 1000
CALICOIN._maxSellTxAmount (#374) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 5) / 1000
CALICOIN._maxWalletToken (#377) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 2) / 100
CALICOIN.swapThreshold (#440) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 200
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

Function IDEXRouter.WETH() (#139) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#242) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#242) is not in mixedCase
Variable DividendDistributor._token (#195) is not in mixedCase
Variable DividendDistributor.BUSD (#203) is not in mixedCase
Variable DividendDistributor.WBNB (#204) is not in mixedCase
Parameter CALICOIN.blacklistAddress(address,bool)._address (#559) is not in mixedCase
Parameter CALICOIN.blacklistAddress(address,bool)._value (#559) is not in mixedCase
Parameter CALICOIN.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#701) is not in mixedCase
Parameter CALICOIN.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#701) is not in mixedCase
Parameter CALICOIN.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#701) is not in mixedCase
Parameter CALICOIN.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#701) is not in mixedCase
Parameter CALICOIN.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#701) is not in mixedCase
Parameter CALICOIN.tradingStatus(bool,uint256)._status (#722) is not in mixedCase
Parameter CALICOIN.tradingStatus(bool,uint256)._deadBlocks (#722) is not in mixedCase
Parameter CALICOIN.setBuyFees(uint256,uint256,uint256,uint256,uint256)._liquidityFeeBuy (#763) is not in mixedCase
Parameter CALICOIN.setBuyFees(uint256,uint256,uint256,uint256,uint256)._buybackFeeBuy (#763) is not in mixedCase
Parameter CALICOIN.setBuyFees(uint256,uint256,uint256,uint256,uint256)._reflectionFeeBuy (#763) is not in mixedCase
Parameter CALICOIN.setBuyFees(uint256,uint256,uint256,uint256,uint256)._marketingFeeBuy (#763) is not in mixedCase
Parameter CALICOIN.setBuyFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#763) is not in mixedCase
Parameter CALICOIN.setSellFees(uint256,uint256,uint256,uint256,uint256)._liquidityFeeSell (#773) is not in mixedCase
Parameter CALICOIN.setSellFees(uint256,uint256,uint256,uint256,uint256)._buybackFeeSell (#773) is not in mixedCase
Parameter CALICOIN.setSellFees(uint256,uint256,uint256,uint256,uint256)._reflectionFeeSell (#773) is not in mixedCase
Parameter CALICOIN.setSellFees(uint256,uint256,uint256,uint256,uint256)._marketingFeeSell (#773) is not in mixedCase
Parameter CALICOIN.setSellFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#773) is not in mixedCase
Parameter CALICOIN.setFeeReceivers(address,address)._autoLiquidityReceiver (#782) is not in mixedCase
Parameter CALICOIN.setFeeReceivers(address,address)._marketingFeeReceiver (#782) is not in mixedCase
Parameter CALICOIN.setSwapBackSettings(bool,uint256)._enabled (#787) is not in mixedCase
Parameter CALICOIN.setSwapBackSettings(bool,uint256)._amount (#787) is not in mixedCase
Parameter CALICOIN.setTargetLiquidity(uint256,uint256)._target (#793) is not in mixedCase
Parameter CALICOIN.setTargetLiquidity(uint256,uint256)._denominator (#793) is not in mixedCase
Parameter CALICOIN.setDistributionCriteria(uint256,uint256)._minPeriod (#803) is not in mixedCase
Parameter CALICOIN.setDistributionCriteria(uint256,uint256)._minDistribution (#803) is not in mixedCase
Variable CALICOIN.BUSD (#363) is not in mixedCase
Variable CALICOIN.WBNB (#364) is not in mixedCase
Variable CALICOIN.DEAD (#365) is not in mixedCase
Variable CALICOIN.ZERO (#366) is not in mixedCase
Constant CALICOIN._name (#368) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CALICOIN._symbol (#369) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CALICOIN._decimals (#370) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CALICOIN._totalSupply (#372) is not in mixedCase
Variable CALICOIN._maxBuyTxAmount (#373) is not in mixedCase
Variable CALICOIN._maxSellTxAmount (#374) is not in mixedCase
Variable CALICOIN._maxWalletToken (#377) is not in mixedCase
Variable CALICOIN._balances (#379) is not in mixedCase
Variable CALICOIN._allowances (#380) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#144) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#145)
Prevent variables from having similar names.

Additional information: link

CALICOIN.slitherConstructorVariables() (#360-835) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#365)
CALICOIN.slitherConstructorVariables() (#360-835) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#366)
CALICOIN.slitherConstructorVariables() (#360-835) uses literals with too many digits:
- _totalSupply = 1000000000 * (10 ** _decimals) (#372)
CALICOIN.slitherConstructorVariables() (#360-835) uses literals with too many digits:
- distributorGas = 500000 (#437)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CALICOIN.BUSD (#363) is never used in CALICOIN (#360-835)
Remove unused state variables.

Additional information: link

CALICOIN.BUSD (#363) should be constant
CALICOIN.DEAD (#365) should be constant
CALICOIN.WBNB (#364) should be constant
CALICOIN.ZERO (#366) should be constant
CALICOIN._totalSupply (#372) should be constant
DividendDistributor.WBNB (#204) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#217) 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) (#96-98)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#103-105)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#124-128)
blacklistAddress(address,bool) should be declared external:
- CALICOIN.blacklistAddress(address,bool) (#559-561)
tradingStatus(bool,uint256) should be declared external:
- CALICOIN.tradingStatus(bool,uint256) (#722-728)
getUnpaidEarnings(address) should be declared external:
- CALICOIN.getUnpaidEarnings(address) (#811-813)
Use the external attribute for functions never called from the contract.

Additional information: link

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.


Twitter account has less than 100 followers


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find Twitter link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for CAN

News for CAN