CleoCATra Token Logo

CATra [CleoCATra] Token

About CATra

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 27 February 2022

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


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

CleoCATRa.swapBack() (#704-747) sends eth to arbitrary user
Dangerous calls:
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#731)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CleoCATRa._transferFrom(address,address,uint256) (#552-597):
External calls:
- swapBack() (#576)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#715-721)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#732)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#737-744)
External calls sending eth:
- swapBack() (#576)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#732)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#737-744)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#579)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#582)
- amountReceived = takeFee(sender,amount) (#581)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#678)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#325-336) ignores return value by BETH.transfer(shareholder,amount) (#331)
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.

Reentrancy in DividendDistributor.distributeDividend(address) (#325-336):
External calls:
- BETH.transfer(shareholder,amount) (#331)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#333)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#334)
Reentrancy in DividendDistributor.process(uint256) (#294-318):
External calls:
- distributeDividend(shareholders[currentIndex]) (#310)
- BETH.transfer(shareholder,amount) (#331)
State variables written after the call(s):
- currentIndex ++ (#315)
Reentrancy in DividendDistributor.setShare(address,uint256) (#258-272):
External calls:
- distributeDividend(shareholder) (#260)
- BETH.transfer(shareholder,amount) (#331)
State variables written after the call(s):
- shares[shareholder].amount = amount (#270)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#271)
Apply the check-effects-interactions pattern.

Additional information: link

CleoCATRa.swapBack() (#704-747) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#737-744)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#253-256) should emit an event for:
- minPeriod = _minPeriod (#254)
- minDistribution = _minDistribution (#255)
CleoCATRa.setMaxWalletPercent(uint256) (#538-541) should emit an event for:
- _maxWalletToken = _totalSupply.mul(maxWallPercent).div(10000) (#539)
CleoCATRa.cooldownEnabled(bool,uint8) (#698-701) should emit an event for:
- cooldownTimerInterval = _interval (#700)
CleoCATRa.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#801-809) should emit an event for:
- autoBuybackCap = _cap (#803)
- autoBuybackAmount = _amount (#805)
CleoCATRa.setBuybackMultiplierSettings(uint256,uint256,uint256) (#812-817) should emit an event for:
- buybackMultiplierNumerator = numerator (#814)
- buybackMultiplierDenominator = denominator (#815)
- buybackMultiplierLength = length (#816)
CleoCATRa.setBuyTxLimitInPercent(uint256) (#830-832) should emit an event for:
- _maxBuyTxAmount = _totalSupply.mul(maxBuyTxPercent).div(10000) (#831)
CleoCATRa.setSellTxLimitInPercent(uint256) (#835-837) should emit an event for:
- _maxSellTxAmount = _totalSupply.mul(maxSellTxPercent).div(10000) (#836)
CleoCATRa.setBuyFees(uint256,uint256,uint256,uint256,uint256) (#866-873) should emit an event for:
- liquidityFeeBuy = _liquidityFeeBuy (#867)
- buybackFeeBuy = _buybackFeeBuy (#868)
- reflectionFeeBuy = _reflectionFeeBuy (#869)
- marketingFeeBuy = _marketingFeeBuy (#870)
- totalFeeBuy = _liquidityFeeBuy.add(_buybackFeeBuy).add(_reflectionFeeBuy).add(_marketingFeeBuy).add(devFeeBuy) (#871)
- feeDenominator = _feeDenominator (#872)
CleoCATRa.setSellFees(uint256,uint256,uint256,uint256,uint256) (#876-884) should emit an event for:
- liquidityFeeSell = _liquidityFeeSell (#877)
- buybackFeeSell = _buybackFeeSell (#878)
- reflectionFeeSell = _reflectionFeeSell (#879)
- marketingFeeSell = _marketingFeeSell (#880)
- totalFeeSell = _liquidityFeeSell.add(_buybackFeeSell).add(_reflectionFeeSell).add(_marketingFeeSell).add(devFeeSell) (#882)
- feeDenominator = _feeDenominator (#883)
CleoCATRa.setSwapBackSettings(bool,uint256) (#893-896) should emit an event for:
- swapThreshold = _totalSupply * _amount / 10000 (#895)
CleoCATRa.setTargetLiquidity(uint256,uint256) (#899-902) should emit an event for:
- targetLiquidity = _target (#900)
- targetLiquidityDenominator = _denominator (#901)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).account (#130) lacks a zero-check on :
- owner = account (#131)
CleoCATRa.setTokenDistributor(address)._tokenDistributor (#544) lacks a zero-check on :
- TOKENDISTRIBUTOR = _tokenDistributor (#545)
CleoCATRa.setFeeReceivers(address,address)._autoLiquidityReceiver (#887) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#888)
CleoCATRa.setFeeReceivers(address,address)._marketingFeeReceiver (#887) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#889)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#325-336) has external calls inside a loop: BETH.transfer(shareholder,amount) (#331)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in CleoCATRa.constructor() (#472-502):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#474)
State variables written after the call(s):
- TOKENDISTRIBUTOR = msg.sender (#480)
- _allowances[address(this)][address(router)] = type()(uint256).max (#475)
- _balances[_presaler] = _totalSupply (#500)
- autoLiquidityReceiver = msg.sender (#497)
- distributor = new DividendDistributor(address(router)) (#477)
- isDividendExempt[pair] = true (#492)
- isDividendExempt[address(this)] = true (#493)
- isDividendExempt[DEAD] = true (#494)
- isFeeExempt[_presaler] = true (#482)
- isTimelockExempt[msg.sender] = true (#486)
- isTimelockExempt[DEAD] = true (#487)
- isTimelockExempt[address(this)] = true (#488)
- isTimelockExempt[DEV] = true (#489)
- isTxLimitExempt[_presaler] = true (#483)
- marketingFeeReceiver = 0x98A94e366d39b14c34fF8642dC554D5cc707Bcb3 (#498)
Reentrancy in DividendDistributor.deposit() (#274-292):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#281-286)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#291)
- totalDividends = totalDividends.add(amount) (#290)
Reentrancy in DividendDistributor.distributeDividend(address) (#325-336):
External calls:
- BETH.transfer(shareholder,amount) (#331)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#332)
Reentrancy in DividendDistributor.setShare(address,uint256) (#258-272):
External calls:
- distributeDividend(shareholder) (#260)
- BETH.transfer(shareholder,amount) (#331)
State variables written after the call(s):
- addShareholder(shareholder) (#264)
- shareholderIndexes[shareholder] = shareholders.length (#358)
- removeShareholder(shareholder) (#266)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#364)
- addShareholder(shareholder) (#264)
- shareholders.push(shareholder) (#359)
- removeShareholder(shareholder) (#266)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#363)
- shareholders.pop() (#365)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#269)
Reentrancy in CleoCATRa.triggerAutoBuyback() (#775-784):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#776)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#792-797)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#782)
- autoBuybackBlockLast = block.number (#781)
- autoBuybackEnabled = false (#783)
- buybackMultiplierTriggeredAt = block.timestamp (#778)
Reentrancy in CleoCATRa.triggerManualBuyback(uint256,bool) (#759-767):
External calls:
- buyTokens(amountToBuy,DEAD) (#762)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#792-797)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#764)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CleoCATRa._transferFrom(address,address,uint256) (#552-597):
External calls:
- swapBack() (#576)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#715-721)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#732)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#737-744)
- distributor.setShare(sender,_balances[sender]) (#586)
- distributor.setShare(recipient,_balances[recipient]) (#590)
- distributor.process(distributorGas) (#593)
External calls sending eth:
- swapBack() (#576)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#732)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#737-744)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#595)
Reentrancy in CleoCATRa._transferFrom(address,address,uint256) (#552-597):
External calls:
- swapBack() (#576)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#715-721)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#732)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#737-744)
External calls sending eth:
- swapBack() (#576)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#732)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#737-744)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#679)
- amountReceived = takeFee(sender,amount) (#581)
Reentrancy in CleoCATRa.constructor() (#472-502):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#474)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#501)
Reentrancy in CleoCATRa.swapBack() (#704-747):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#715-721)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#732)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#737-744)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#732)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#737-744)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#745)
Reentrancy in CleoCATRa.triggerAutoBuyback() (#775-784):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#776)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#792-797)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#779)
Reentrancy in CleoCATRa.triggerManualBuyback(uint256,bool) (#759-767):
External calls:
- buyTokens(amountToBuy,DEAD) (#762)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#792-797)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#765)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#320-323) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#321-322)
CleoCATRa.checkBuyCooldown(address,address) (#638-645) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait between two buys) (#642)
CleoCATRa.getTotalFee(bool) (#661-665) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#663)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#294-318) has costly operations inside a loop:
- currentIndex = 0 (#306)
DividendDistributor.distributeDividend(address) (#325-336) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#330)
DividendDistributor.process(uint256) (#294-318) has costly operations inside a loop:
- currentIndex ++ (#315)
Use a local variable to hold the loop computation result.

Additional information: link

CleoCATRa.launch() (#825-827) is never used and should be removed
CleoCATRa.launched() (#820-822) is never used and should be removed
CleoCATRa.shouldAutoBuyback() (#750-756) is never used and should be removed
CleoCATRa.triggerAutoBuyback() (#775-784) is never used and should be removed
Remove unused functions.

Additional information: link

CleoCATRa._maxBuyTxAmount (#395) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 200 / 10000
CleoCATRa._maxSellTxAmount (#396) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 100 / 10000
CleoCATRa._maxWalletToken (#397) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 200) / 10000
CleoCATRa.swapThreshold (#433) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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 CleoCATRa.swapBack() (#704-747):
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#732)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#147) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#253) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#253) is not in mixedCase
Variable DividendDistributor._token (#205) is not in mixedCase
Variable DividendDistributor.BETH (#214) is not in mixedCase
Variable DividendDistributor.WBNB (#215) is not in mixedCase
Parameter CleoCATRa.setTokenDistributor(address)._tokenDistributor (#544) is not in mixedCase
Parameter CleoCATRa.tradingStatus(bool)._status (#693) is not in mixedCase
Parameter CleoCATRa.cooldownEnabled(bool,uint8)._status (#698) is not in mixedCase
Parameter CleoCATRa.cooldownEnabled(bool,uint8)._interval (#698) is not in mixedCase
Parameter CleoCATRa.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#801) is not in mixedCase
Parameter CleoCATRa.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#801) is not in mixedCase
Parameter CleoCATRa.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#801) is not in mixedCase
Parameter CleoCATRa.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#801) is not in mixedCase
Parameter CleoCATRa.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#801) is not in mixedCase
Parameter CleoCATRa.setBuyFees(uint256,uint256,uint256,uint256,uint256)._liquidityFeeBuy (#866) is not in mixedCase
Parameter CleoCATRa.setBuyFees(uint256,uint256,uint256,uint256,uint256)._buybackFeeBuy (#866) is not in mixedCase
Parameter CleoCATRa.setBuyFees(uint256,uint256,uint256,uint256,uint256)._reflectionFeeBuy (#866) is not in mixedCase
Parameter CleoCATRa.setBuyFees(uint256,uint256,uint256,uint256,uint256)._marketingFeeBuy (#866) is not in mixedCase
Parameter CleoCATRa.setBuyFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#866) is not in mixedCase
Parameter CleoCATRa.setSellFees(uint256,uint256,uint256,uint256,uint256)._liquidityFeeSell (#876) is not in mixedCase
Parameter CleoCATRa.setSellFees(uint256,uint256,uint256,uint256,uint256)._buybackFeeSell (#876) is not in mixedCase
Parameter CleoCATRa.setSellFees(uint256,uint256,uint256,uint256,uint256)._reflectionFeeSell (#876) is not in mixedCase
Parameter CleoCATRa.setSellFees(uint256,uint256,uint256,uint256,uint256)._marketingFeeSell (#876) is not in mixedCase
Parameter CleoCATRa.setSellFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#876) is not in mixedCase
Parameter CleoCATRa.setFeeReceivers(address,address)._autoLiquidityReceiver (#887) is not in mixedCase
Parameter CleoCATRa.setFeeReceivers(address,address)._marketingFeeReceiver (#887) is not in mixedCase
Parameter CleoCATRa.setSwapBackSettings(bool,uint256)._enabled (#893) is not in mixedCase
Parameter CleoCATRa.setSwapBackSettings(bool,uint256)._amount (#893) is not in mixedCase
Parameter CleoCATRa.setTargetLiquidity(uint256,uint256)._target (#899) is not in mixedCase
Parameter CleoCATRa.setTargetLiquidity(uint256,uint256)._denominator (#899) is not in mixedCase
Parameter CleoCATRa.setDistributionCriteria(uint256,uint256)._minPeriod (#911) is not in mixedCase
Parameter CleoCATRa.setDistributionCriteria(uint256,uint256)._minDistribution (#911) is not in mixedCase
Variable CleoCATRa.BETH (#374) is not in mixedCase
Variable CleoCATRa.WBNB (#375) is not in mixedCase
Variable CleoCATRa.DEAD (#376) is not in mixedCase
Variable CleoCATRa.ZERO (#377) is not in mixedCase
Variable CleoCATRa.DEV (#378) is not in mixedCase
Variable CleoCATRa.TOKENDISTRIBUTOR (#380) is not in mixedCase
Constant CleoCATRa._name (#387) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CleoCATRa._symbol (#388) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CleoCATRa._decimals (#389) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CleoCATRa._totalSupply (#392) is not in mixedCase
Variable CleoCATRa._maxBuyTxAmount (#395) is not in mixedCase
Variable CleoCATRa._maxSellTxAmount (#396) is not in mixedCase
Variable CleoCATRa._maxWalletToken (#397) is not in mixedCase
Variable CleoCATRa._balances (#400) is not in mixedCase
Variable CleoCATRa._allowances (#401) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

CleoCATRa.slitherConstructorVariables() (#370-949) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#376)
CleoCATRa.slitherConstructorVariables() (#370-949) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#377)
CleoCATRa.slitherConstructorVariables() (#370-949) uses literals with too many digits:
- _totalSupply = 1000000 * (10 ** _decimals) (#392)
CleoCATRa.slitherConstructorVariables() (#370-949) uses literals with too many digits:
- distributorGas = 500000 (#454)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CleoCATRa.BETH (#374) is never used in CleoCATRa (#370-949)
Remove unused state variables.

Additional information: link

CleoCATRa.BETH (#374) should be constant
CleoCATRa.DEAD (#376) should be constant
CleoCATRa.DEV (#378) should be constant
CleoCATRa.WBNB (#375) should be constant
CleoCATRa.ZERO (#377) should be constant
CleoCATRa._totalSupply (#392) should be constant
CleoCATRa.devFeeBuy (#412) should be constant
CleoCATRa.devFeeSell (#420) should be constant
DividendDistributor.WBNB (#215) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#228) 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) (#102-104)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#109-111)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#130-134)
getTotalFee(bool) should be declared external:
- CleoCATRa.getTotalFee(bool) (#661-665)
tradingStatus(bool) should be declared external:
- CleoCATRa.tradingStatus(bool) (#693-695)
cooldownEnabled(bool,uint8) should be declared external:
- CleoCATRa.cooldownEnabled(bool,uint8) (#698-701)
getUnpaidEarnings(address) should be declared external:
- CleoCATRa.getUnpaidEarnings(address) (#921-923)
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 low.


Unable to find Telegram and Twitter accounts


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for CATra