CADAX is the foundation token of a multi utility platform conglomerate. At base level it aims to utilize its charity tax for its altruistic goals to provide assistance to underprivileged children through the statistically proven benefits of youth sports. It's tax model provides long lasting benefits to those who hold and discourage selling through its use of its cake rewards system. With the V2 launch many improvements have already been implemented and is set up to launch CADA Scan. CADA Scan is a next generation token scanning app which will warn users of potential scams through several algorithmic analysis and diagnostic tools. V2 has also opened up access to future projects such as NFT market place, token launch pad, gaming, and any cutting edge utility apps that CADAX could utilize in its arsenal.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Cada.executeTokenBuyBack(uint256) (#3369-3379) sends eth to arbitrary user
Dangerous calls:
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Cada._processBeforeTransfer(address,address,uint256,bytes32) (#3448-3670):
External calls:
- handleBuyBack(sender,amount,txType) (#3570)
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
- swapAndLiquidify(amountToLiquidify) (#3588)
- (liquidityAdded) = swapEngine.swapAndLiquidify(_amountToken) (#3358)
External calls sending eth:
- handleBuyBack(sender,amount,txType) (#3570)
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
State variables written after the call(s):
- swapAndLiquidify(amountToLiquidify) (#3588)
- _balances[_from] = _balances[_from].sub(_amount,string(abi.encodePacked(CADA::INTERNAL_TRANSFER_SUB: ,errMsg))) (#3828)
- _balances[_to] = _balances[_to].add(_amount) (#3831)
- internalTransfer(_tokenAddress,marketingAndCharityWallet,percentToAmount(marketingAndCharityFee,amount),MARKETING_&_DEV_FUNDS_TRANSFER_ERROR,false) (#3659-3665)
- _balances[_from] = _balances[_from].sub(_amount,string(abi.encodePacked(CADA::INTERNAL_TRANSFER_SUB: ,errMsg))) (#3828)
- _balances[_to] = _balances[_to].add(_amount) (#3831)
- autoBurnPool = autoBurnPool.add(sellTaxAmountSplit) (#3616)
- autoLiquidityPool = autoLiquidityPool.sub(amountToLiquidify) (#3592)
- autoLiquidityPool = 0 (#3594)
- swapAndLiquidify(amountToLiquidify) (#3588)
- isSwapAndLiquidifyLocked = true (#2749)
- isSwapAndLiquidifyLocked = false (#2751)
Reentrancy in Cada._transfer(address,address,uint256) (#3388-3428):
External calls:
- amountMinusFees = _processBeforeTransfer(sender,recipient,amount,txType) (#3409)
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
- (liquidityAdded) = swapEngine.swapAndLiquidify(_amountToken) (#3358)
External calls sending eth:
- amountMinusFees = _processBeforeTransfer(sender,recipient,amount,txType) (#3409)
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
State variables written after the call(s):
- internalTransfer(sender,recipient,amountMinusFees,CADA: TRANSFER_AMOUNT_EXCEEDS_BALANCE,true) (#3412)
- _balances[_from] = _balances[_from].sub(_amount,string(abi.encodePacked(CADA::INTERNAL_TRANSFER_SUB: ,errMsg))) (#3828)
- _balances[_to] = _balances[_to].add(_amount) (#3831)
- updateHoldlersInfo(sender,recipient) (#3420)
- holdlersInfo[recipient].initialDepositTimestamp = block.timestamp (#3765)
- holdlersInfo[recipient].depositCount = holdlersInfo[recipient].depositCount.add(1) (#3769)
- delete holdlersInfo[sender] (#3774)
- totalTokenHolders = totalTokenHolders.sub(1) (#3416)
Apply the check-effects-interactions pattern.
Additional information: link
Commons.emergencyWithdrawTokens(address,address) (#845-854) ignores return value by erc20Token.transfer(_toAddress,balance) (#852)
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.
Cada.getPercentageDiffBetweenReservedAndMainHoldersRewardsPools() (#3861-3867) performs a multiplication on the result of a division:
-resultInPercent = (holdlersRewardReservedPool.mul(100)).div(holdlersRewardMainPool) (#3863)
-(resultInPercent.mul(100)) (#3866)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in Cada._initializeContract(address,address,address) (#2683-2712):
External calls:
- setSwapEngine(_swapEngine) (#2698)
- swapEngine.setUniswapRouter(_uniswapRouter) (#3238)
State variables written after the call(s):
- initialized = true (#2710)
Apply the check-effects-interactions pattern.
Additional information: link
Cada._processBeforeTransfer(address,address,uint256,bytes32).sellTaxAmountSplit (#3603) 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
Cada._transfer(address,address,uint256) (#3388-3428) ignores return value by teamsContract.logTransferTx(txType,_msgSender(),sender,recipient,amount,amountMinusFees) (#3424)
Ensure that all the return values of the function calls are used.
Additional information: link
Cada.permit(address,address,uint256,uint256,uint8,bytes32,bytes32).owner (#2766) shadows:
- Ownable.owner() (#731-733) (function)
Rename the local variables that shadow another component.
Additional information: link
Commons.emergencyWithdrawEthers(address)._toAddress (#859) lacks a zero-check on :
- _toAddress.transfer(balance) (#863)
Cada.setAutoLiquidityOwner(address)._account (#2929) lacks a zero-check on :
- autoLiquidityOwner = _account (#2930)
Cada.setMarketingAndCharityWallet(address)._account (#3162) lacks a zero-check on :
- marketingAndCharityWallet = _account (#3163)
Check that the address is not zero.
Additional information: link
Reentrancy in Cada._initializeContract(address,address,address) (#2683-2712):
External calls:
- setSwapEngine(_swapEngine) (#2698)
- swapEngine.setUniswapRouter(_uniswapRouter) (#3238)
State variables written after the call(s):
- processHoldlersRewardPoolInitialFunds() (#2708)
- _balances[_from] = _balances[_from].sub(_amount,string(abi.encodePacked(CADA::INTERNAL_TRANSFER_SUB: ,errMsg))) (#3828)
- _balances[_to] = _balances[_to].add(_amount) (#3831)
- excludedFromFees[_swapEngine] = true (#2701)
- excludedFromMaxTxAmountLimit[_swapEngine] = true (#2703)
- excludedFromRewards[_swapEngine] = true (#2702)
- holdlersRewardComputer = IHoldlersRewardComputer(_holdlersRewardComputer) (#2705)
- processHoldlersRewardPoolInitialFunds() (#2708)
- holdlersRewardMainPool = holdlersRewardMainPool.add(rewardsPoolsFundSplit) (#2735)
- processHoldlersRewardPoolInitialFunds() (#2708)
- holdlersRewardReservedPool = holdlersRewardReservedPool.add(rewardsPoolsFundSplit) (#2738)
Reentrancy in Cada._processBeforeTransfer(address,address,uint256,bytes32) (#3448-3670):
External calls:
- handleBuyBack(sender,amount,txType) (#3570)
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
State variables written after the call(s):
- autoLiquidityPool = autoLiquidityPool.add(percentToAmount(autoLiquidityFee,amount)) (#3577)
Reentrancy in Cada._processBeforeTransfer(address,address,uint256,bytes32) (#3448-3670):
External calls:
- handleBuyBack(sender,amount,txType) (#3570)
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
- swapAndLiquidify(amountToLiquidify) (#3588)
- (liquidityAdded) = swapEngine.swapAndLiquidify(_amountToken) (#3358)
External calls sending eth:
- handleBuyBack(sender,amount,txType) (#3570)
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
State variables written after the call(s):
- holdlersRewardMainPool = holdlersRewardMainPool.add(holdlersRewardAmount.sub(reservedPoolRewardShare)) (#3645)
- holdlersRewardReservedPool = holdlersRewardReservedPool.add(holdlersRewardAmount) (#3635)
- holdlersRewardReservedPool = holdlersRewardReservedPool.add(reservedPoolRewardShare) (#3642)
- totalRewardsTaken = totalRewardsTaken.add(holdlersRewardAmount) (#3649)
Reentrancy in Cada.handleBuyBack(address,uint256,bytes32) (#3673-3754):
External calls:
- totalTokensFromBuyBack = executeTokenBuyBack(amountToBuyBackAndBurn) (#3714)
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
State variables written after the call(s):
- autoBurnPool = autoBurnPool.add(totalTokensFromBuyBack) (#3717)
- buyBackTotalTokensBought = buyBackTotalTokensBought.add(totalTokensFromBuyBack) (#3720)
- buyBackTotalTokensBoughtETH = buyBackTotalTokensBoughtETH.add(amountToBuyBackAndBurn) (#3723)
Reentrancy in Cada.setUniswapRouter(address) (#3231-3247):
External calls:
- swapEngine.setUniswapRouter(_uniswapRouter) (#3238)
State variables written after the call(s):
- excludedFromRewards[_uniswapRouter] = true (#3243)
- excludedFromRewards[uniswapPair] = true (#3244)
- uniswapPair = swapEngine.getUniswapPair() (#3240)
Reentrancy in Cada.swapAndLiquidify(uint256) (#3348-3362):
External calls:
- (liquidityAdded) = swapEngine.swapAndLiquidify(_amountToken) (#3358)
State variables written after the call(s):
- totalLiquidityAdded = totalLiquidityAdded.add(liquidityAdded) (#3360)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Cada._initializeContract(address,address,address) (#2683-2712):
External calls:
- setSwapEngine(_swapEngine) (#2698)
- swapEngine.setUniswapRouter(_uniswapRouter) (#3238)
Event emitted after the call(s):
- Transfer(_from,_to,_amount) (#3834)
- processHoldlersRewardPoolInitialFunds() (#2708)
Reentrancy in Cada._processBeforeTransfer(address,address,uint256,bytes32) (#3448-3670):
External calls:
- handleBuyBack(sender,amount,txType) (#3570)
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
- swapAndLiquidify(amountToLiquidify) (#3588)
- (liquidityAdded) = swapEngine.swapAndLiquidify(_amountToken) (#3358)
External calls sending eth:
- handleBuyBack(sender,amount,txType) (#3570)
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
Event emitted after the call(s):
- Transfer(_from,_to,_amount) (#3834)
- internalTransfer(_tokenAddress,marketingAndCharityWallet,percentToAmount(marketingAndCharityFee,amount),MARKETING_&_DEV_FUNDS_TRANSFER_ERROR,false) (#3659-3665)
- Transfer(_from,_to,_amount) (#3834)
- swapAndLiquidify(amountToLiquidify) (#3588)
Reentrancy in Cada._transfer(address,address,uint256) (#3388-3428):
External calls:
- amountMinusFees = _processBeforeTransfer(sender,recipient,amount,txType) (#3409)
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
- (liquidityAdded) = swapEngine.swapAndLiquidify(_amountToken) (#3358)
External calls sending eth:
- amountMinusFees = _processBeforeTransfer(sender,recipient,amount,txType) (#3409)
- swapEngine.swapETHForToken{value: _amountETH}(_amountETH,address(0)) (#3378)
Event emitted after the call(s):
- Transfer(_from,_to,_amount) (#3834)
- internalTransfer(sender,recipient,amountMinusFees,CADA: TRANSFER_AMOUNT_EXCEEDS_BALANCE,true) (#3412)
Reentrancy in Cada.setSwapEngine(address) (#3211-3225):
External calls:
- setUniswapRouter(uniswapRouter) (#3222)
- swapEngine.setUniswapRouter(_uniswapRouter) (#3238)
Event emitted after the call(s):
- SetSwapEngine(_swapEngineContract) (#3224)
Reentrancy in Cada.setUniswapRouter(address) (#3231-3247):
External calls:
- swapEngine.setUniswapRouter(_uniswapRouter) (#3238)
Event emitted after the call(s):
- SetUniSwapRouter(_uniswapRouter) (#3246)
Apply the check-effects-interactions pattern.
Additional information: link
Cada.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#2766-2778) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(deadline >= block.timestamp,CADA: PERMIT_EXPIRED) (#2767)
Cada._processBeforeTransfer(address,address,uint256,bytes32) (#3448-3670) uses timestamp for comparisons
Dangerous comparisons:
- lastTxDuration < throttledAccountInfo.timeIntervalPerTx (#3491)
Avoid relying on block.timestamp.
Additional information: link
console._sendLogPayload(bytes) (#903-910) uses assembly
- INLINE ASM (#906-909)
Cada.getChainId() (#2757-2761) uses assembly
- INLINE ASM (#2759)
Do not use evm assembly.
Additional information: link
Cada._processBeforeTransfer(address,address,uint256,bytes32) (#3448-3670) compares to a boolean constant:
-txType == swapEngine.TX_REMOVE_LIQUIDITY() || sender == address(swapEngine) || recipient == address(swapEngine) || isSwapAndLiquidifyLocked == true (#3461-3464)
Remove the equality to the boolean constant.
Additional information: link
Context._msgData() (#131-133) is never used and should be removed
ERC20._transfer(address,address,uint256) (#340-360) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#664-673) is never used and should be removed
SafeMath.mod(uint256,uint256) (#624-626) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#690-699) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#495-501) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#537-542) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#549-554) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#520-530) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#508-513) is never used and should be removed
console._sendLogPayload(bytes) (#903-910) is never used and should be removed
console.log() (#912-914) is never used and should be removed
console.log(address) (#1080-1082) is never used and should be removed
console.log(address,address) (#1144-1146) is never used and should be removed
console.log(address,address,address) (#1400-1402) is never used and should be removed
console.log(address,address,address,address) (#2424-2426) is never used and should be removed
console.log(address,address,address,bool) (#2420-2422) is never used and should be removed
console.log(address,address,address,string) (#2416-2418) is never used and should be removed
console.log(address,address,address,uint256) (#2412-2414) is never used and should be removed
console.log(address,address,bool) (#1396-1398) is never used and should be removed
console.log(address,address,bool,address) (#2408-2410) is never used and should be removed
console.log(address,address,bool,bool) (#2404-2406) is never used and should be removed
console.log(address,address,bool,string) (#2400-2402) is never used and should be removed
console.log(address,address,bool,uint256) (#2396-2398) is never used and should be removed
console.log(address,address,string) (#1392-1394) is never used and should be removed
console.log(address,address,string,address) (#2392-2394) is never used and should be removed
console.log(address,address,string,bool) (#2388-2390) is never used and should be removed
console.log(address,address,string,string) (#2384-2386) is never used and should be removed
console.log(address,address,string,uint256) (#2380-2382) is never used and should be removed
console.log(address,address,uint256) (#1388-1390) is never used and should be removed
console.log(address,address,uint256,address) (#2376-2378) is never used and should be removed
console.log(address,address,uint256,bool) (#2372-2374) is never used and should be removed
console.log(address,address,uint256,string) (#2368-2370) is never used and should be removed
console.log(address,address,uint256,uint256) (#2364-2366) is never used and should be removed
console.log(address,bool) (#1140-1142) is never used and should be removed
console.log(address,bool,address) (#1384-1386) is never used and should be removed
console.log(address,bool,address,address) (#2360-2362) is never used and should be removed
console.log(address,bool,address,bool) (#2356-2358) is never used and should be removed
console.log(address,bool,address,string) (#2352-2354) is never used and should be removed
console.log(address,bool,address,uint256) (#2348-2350) is never used and should be removed
console.log(address,bool,bool) (#1380-1382) is never used and should be removed
console.log(address,bool,bool,address) (#2344-2346) is never used and should be removed
console.log(address,bool,bool,bool) (#2340-2342) is never used and should be removed
console.log(address,bool,bool,string) (#2336-2338) is never used and should be removed
console.log(address,bool,bool,uint256) (#2332-2334) is never used and should be removed
console.log(address,bool,string) (#1376-1378) is never used and should be removed
console.log(address,bool,string,address) (#2328-2330) is never used and should be removed
console.log(address,bool,string,bool) (#2324-2326) is never used and should be removed
console.log(address,bool,string,string) (#2320-2322) is never used and should be removed
console.log(address,bool,string,uint256) (#2316-2318) is never used and should be removed
console.log(address,bool,uint256) (#1372-1374) is never used and should be removed
console.log(address,bool,uint256,address) (#2312-2314) is never used and should be removed
console.log(address,bool,uint256,bool) (#2308-2310) is never used and should be removed
console.log(address,bool,uint256,string) (#2304-2306) is never used and should be removed
console.log(address,bool,uint256,uint256) (#2300-2302) is never used and should be removed
console.log(address,string) (#1136-1138) is never used and should be removed
console.log(address,string,address) (#1368-1370) is never used and should be removed
console.log(address,string,address,address) (#2296-2298) is never used and should be removed
console.log(address,string,address,bool) (#2292-2294) is never used and should be removed
console.log(address,string,address,string) (#2288-2290) is never used and should be removed
console.log(address,string,address,uint256) (#2284-2286) is never used and should be removed
console.log(address,string,bool) (#1364-1366) is never used and should be removed
console.log(address,string,bool,address) (#2280-2282) is never used and should be removed
console.log(address,string,bool,bool) (#2276-2278) is never used and should be removed
console.log(address,string,bool,string) (#2272-2274) is never used and should be removed
console.log(address,string,bool,uint256) (#2268-2270) is never used and should be removed
console.log(address,string,string) (#1360-1362) is never used and should be removed
console.log(address,string,string,address) (#2264-2266) is never used and should be removed
console.log(address,string,string,bool) (#2260-2262) is never used and should be removed
console.log(address,string,string,string) (#2256-2258) is never used and should be removed
console.log(address,string,string,uint256) (#2252-2254) is never used and should be removed
console.log(address,string,uint256) (#1356-1358) is never used and should be removed
console.log(address,string,uint256,address) (#2248-2250) is never used and should be removed
console.log(address,string,uint256,bool) (#2244-2246) is never used and should be removed
console.log(address,string,uint256,string) (#2240-2242) is never used and should be removed
console.log(address,string,uint256,uint256) (#2236-2238) is never used and should be removed
console.log(address,uint256) (#1132-1134) is never used and should be removed
console.log(address,uint256,address) (#1352-1354) is never used and should be removed
console.log(address,uint256,address,address) (#2232-2234) is never used and should be removed
console.log(address,uint256,address,bool) (#2228-2230) is never used and should be removed
console.log(address,uint256,address,string) (#2224-2226) is never used and should be removed
console.log(address,uint256,address,uint256) (#2220-2222) is never used and should be removed
console.log(address,uint256,bool) (#1348-1350) is never used and should be removed
console.log(address,uint256,bool,address) (#2216-2218) is never used and should be removed
console.log(address,uint256,bool,bool) (#2212-2214) is never used and should be removed
console.log(address,uint256,bool,string) (#2208-2210) is never used and should be removed
console.log(address,uint256,bool,uint256) (#2204-2206) is never used and should be removed
console.log(address,uint256,string) (#1344-1346) is never used and should be removed
console.log(address,uint256,string,address) (#2200-2202) is never used and should be removed
console.log(address,uint256,string,bool) (#2196-2198) is never used and should be removed
console.log(address,uint256,string,string) (#2192-2194) is never used and should be removed
console.log(address,uint256,string,uint256) (#2188-2190) is never used and should be removed
console.log(address,uint256,uint256) (#1340-1342) is never used and should be removed
console.log(address,uint256,uint256,address) (#2184-2186) is never used and should be removed
console.log(address,uint256,uint256,bool) (#2180-2182) is never used and should be removed
console.log(address,uint256,uint256,string) (#2176-2178) is never used and should be removed
console.log(address,uint256,uint256,uint256) (#2172-2174) is never used and should be removed
console.log(bool) (#1076-1078) is never used and should be removed
console.log(bool,address) (#1128-1130) is never used and should be removed
console.log(bool,address,address) (#1336-1338) is never used and should be removed
console.log(bool,address,address,address) (#2168-2170) is never used and should be removed
console.log(bool,address,address,bool) (#2164-2166) is never used and should be removed
console.log(bool,address,address,string) (#2160-2162) is never used and should be removed
console.log(bool,address,address,uint256) (#2156-2158) is never used and should be removed
console.log(bool,address,bool) (#1332-1334) is never used and should be removed
console.log(bool,address,bool,address) (#2152-2154) is never used and should be removed
console.log(bool,address,bool,bool) (#2148-2150) is never used and should be removed
console.log(bool,address,bool,string) (#2144-2146) is never used and should be removed
console.log(bool,address,bool,uint256) (#2140-2142) is never used and should be removed
console.log(bool,address,string) (#1328-1330) is never used and should be removed
console.log(bool,address,string,address) (#2136-2138) is never used and should be removed
console.log(bool,address,string,bool) (#2132-2134) is never used and should be removed
console.log(bool,address,string,string) (#2128-2130) is never used and should be removed
console.log(bool,address,string,uint256) (#2124-2126) is never used and should be removed
console.log(bool,address,uint256) (#1324-1326) is never used and should be removed
console.log(bool,address,uint256,address) (#2120-2122) is never used and should be removed
console.log(bool,address,uint256,bool) (#2116-2118) is never used and should be removed
console.log(bool,address,uint256,string) (#2112-2114) is never used and should be removed
console.log(bool,address,uint256,uint256) (#2108-2110) is never used and should be removed
console.log(bool,bool) (#1124-1126) is never used and should be removed
console.log(bool,bool,address) (#1320-1322) is never used and should be removed
console.log(bool,bool,address,address) (#2104-2106) is never used and should be removed
console.log(bool,bool,address,bool) (#2100-2102) is never used and should be removed
console.log(bool,bool,address,string) (#2096-2098) is never used and should be removed
console.log(bool,bool,address,uint256) (#2092-2094) is never used and should be removed
console.log(bool,bool,bool) (#1316-1318) is never used and should be removed
console.log(bool,bool,bool,address) (#2088-2090) is never used and should be removed
console.log(bool,bool,bool,bool) (#2084-2086) is never used and should be removed
console.log(bool,bool,bool,string) (#2080-2082) is never used and should be removed
console.log(bool,bool,bool,uint256) (#2076-2078) is never used and should be removed
console.log(bool,bool,string) (#1312-1314) is never used and should be removed
console.log(bool,bool,string,address) (#2072-2074) is never used and should be removed
console.log(bool,bool,string,bool) (#2068-2070) is never used and should be removed
console.log(bool,bool,string,string) (#2064-2066) is never used and should be removed
console.log(bool,bool,string,uint256) (#2060-2062) is never used and should be removed
console.log(bool,bool,uint256) (#1308-1310) is never used and should be removed
console.log(bool,bool,uint256,address) (#2056-2058) is never used and should be removed
console.log(bool,bool,uint256,bool) (#2052-2054) is never used and should be removed
console.log(bool,bool,uint256,string) (#2048-2050) is never used and should be removed
console.log(bool,bool,uint256,uint256) (#2044-2046) is never used and should be removed
console.log(bool,string) (#1120-1122) is never used and should be removed
console.log(bool,string,address) (#1304-1306) is never used and should be removed
console.log(bool,string,address,address) (#2040-2042) is never used and should be removed
console.log(bool,string,address,bool) (#2036-2038) is never used and should be removed
console.log(bool,string,address,string) (#2032-2034) is never used and should be removed
console.log(bool,string,address,uint256) (#2028-2030) is never used and should be removed
console.log(bool,string,bool) (#1300-1302) is never used and should be removed
console.log(bool,string,bool,address) (#2024-2026) is never used and should be removed
console.log(bool,string,bool,bool) (#2020-2022) is never used and should be removed
console.log(bool,string,bool,string) (#2016-2018) is never used and should be removed
console.log(bool,string,bool,uint256) (#2012-2014) is never used and should be removed
console.log(bool,string,string) (#1296-1298) is never used and should be removed
console.log(bool,string,string,address) (#2008-2010) is never used and should be removed
console.log(bool,string,string,bool) (#2004-2006) is never used and should be removed
console.log(bool,string,string,string) (#2000-2002) is never used and should be removed
console.log(bool,string,string,uint256) (#1996-1998) is never used and should be removed
console.log(bool,string,uint256) (#1292-1294) is never used and should be removed
console.log(bool,string,uint256,address) (#1992-1994) is never used and should be removed
console.log(bool,string,uint256,bool) (#1988-1990) is never used and should be removed
console.log(bool,string,uint256,string) (#1984-1986) is never used and should be removed
console.log(bool,string,uint256,uint256) (#1980-1982) is never used and should be removed
console.log(bool,uint256) (#1116-1118) is never used and should be removed
console.log(bool,uint256,address) (#1288-1290) is never used and should be removed
console.log(bool,uint256,address,address) (#1976-1978) is never used and should be removed
console.log(bool,uint256,address,bool) (#1972-1974) is never used and should be removed
console.log(bool,uint256,address,string) (#1968-1970) is never used and should be removed
console.log(bool,uint256,address,uint256) (#1964-1966) is never used and should be removed
console.log(bool,uint256,bool) (#1284-1286) is never used and should be removed
console.log(bool,uint256,bool,address) (#1960-1962) is never used and should be removed
console.log(bool,uint256,bool,bool) (#1956-1958) is never used and should be removed
console.log(bool,uint256,bool,string) (#1952-1954) is never used and should be removed
console.log(bool,uint256,bool,uint256) (#1948-1950) is never used and should be removed
console.log(bool,uint256,string) (#1280-1282) is never used and should be removed
console.log(bool,uint256,string,address) (#1944-1946) is never used and should be removed
console.log(bool,uint256,string,bool) (#1940-1942) is never used and should be removed
console.log(bool,uint256,string,string) (#1936-1938) is never used and should be removed
console.log(bool,uint256,string,uint256) (#1932-1934) is never used and should be removed
console.log(bool,uint256,uint256) (#1276-1278) is never used and should be removed
console.log(bool,uint256,uint256,address) (#1928-1930) is never used and should be removed
console.log(bool,uint256,uint256,bool) (#1924-1926) is never used and should be removed
console.log(bool,uint256,uint256,string) (#1920-1922) is never used and should be removed
console.log(bool,uint256,uint256,uint256) (#1916-1918) is never used and should be removed
console.log(string) (#1072-1074) is never used and should be removed
console.log(string,address) (#1112-1114) is never used and should be removed
console.log(string,address,address) (#1272-1274) is never used and should be removed
console.log(string,address,address,address) (#1912-1914) is never used and should be removed
console.log(string,address,address,bool) (#1908-1910) is never used and should be removed
console.log(string,address,address,string) (#1904-1906) is never used and should be removed
console.log(string,address,address,uint256) (#1900-1902) is never used and should be removed
console.log(string,address,bool) (#1268-1270) is never used and should be removed
console.log(string,address,bool,address) (#1896-1898) is never used and should be removed
console.log(string,address,bool,bool) (#1892-1894) is never used and should be removed
console.log(string,address,bool,string) (#1888-1890) is never used and should be removed
console.log(string,address,bool,uint256) (#1884-1886) is never used and should be removed
console.log(string,address,string) (#1264-1266) is never used and should be removed
console.log(string,address,string,address) (#1880-1882) is never used and should be removed
console.log(string,address,string,bool) (#1876-1878) is never used and should be removed
console.log(string,address,string,string) (#1872-1874) is never used and should be removed
console.log(string,address,string,uint256) (#1868-1870) is never used and should be removed
console.log(string,address,uint256) (#1260-1262) is never used and should be removed
console.log(string,address,uint256,address) (#1864-1866) is never used and should be removed
console.log(string,address,uint256,bool) (#1860-1862) is never used and should be removed
console.log(string,address,uint256,string) (#1856-1858) is never used and should be removed
console.log(string,address,uint256,uint256) (#1852-1854) is never used and should be removed
console.log(string,bool) (#1108-1110) is never used and should be removed
console.log(string,bool,address) (#1256-1258) is never used and should be removed
console.log(string,bool,address,address) (#1848-1850) is never used and should be removed
console.log(string,bool,address,bool) (#1844-1846) is never used and should be removed
console.log(string,bool,address,string) (#1840-1842) is never used and should be removed
console.log(string,bool,address,uint256) (#1836-1838) is never used and should be removed
console.log(string,bool,bool) (#1252-1254) is never used and should be removed
console.log(string,bool,bool,address) (#1832-1834) is never used and should be removed
console.log(string,bool,bool,bool) (#1828-1830) is never used and should be removed
console.log(string,bool,bool,string) (#1824-1826) is never used and should be removed
console.log(string,bool,bool,uint256) (#1820-1822) is never used and should be removed
console.log(string,bool,string) (#1248-1250) is never used and should be removed
console.log(string,bool,string,address) (#1816-1818) is never used and should be removed
console.log(string,bool,string,bool) (#1812-1814) is never used and should be removed
console.log(string,bool,string,string) (#1808-1810) is never used and should be removed
console.log(string,bool,string,uint256) (#1804-1806) is never used and should be removed
console.log(string,bool,uint256) (#1244-1246) is never used and should be removed
console.log(string,bool,uint256,address) (#1800-1802) is never used and should be removed
console.log(string,bool,uint256,bool) (#1796-1798) is never used and should be removed
console.log(string,bool,uint256,string) (#1792-1794) is never used and should be removed
console.log(string,bool,uint256,uint256) (#1788-1790) is never used and should be removed
console.log(string,string) (#1104-1106) is never used and should be removed
console.log(string,string,address) (#1240-1242) is never used and should be removed
console.log(string,string,address,address) (#1784-1786) is never used and should be removed
console.log(string,string,address,bool) (#1780-1782) is never used and should be removed
console.log(string,string,address,string) (#1776-1778) is never used and should be removed
console.log(string,string,address,uint256) (#1772-1774) is never used and should be removed
console.log(string,string,bool) (#1236-1238) is never used and should be removed
console.log(string,string,bool,address) (#1768-1770) is never used and should be removed
console.log(string,string,bool,bool) (#1764-1766) is never used and should be removed
console.log(string,string,bool,string) (#1760-1762) is never used and should be removed
console.log(string,string,bool,uint256) (#1756-1758) is never used and should be removed
console.log(string,string,string) (#1232-1234) is never used and should be removed
console.log(string,string,string,address) (#1752-1754) is never used and should be removed
console.log(string,string,string,bool) (#1748-1750) is never used and should be removed
console.log(string,string,string,string) (#1744-1746) is never used and should be removed
console.log(string,string,string,uint256) (#1740-1742) is never used and should be removed
console.log(string,string,uint256) (#1228-1230) is never used and should be removed
console.log(string,string,uint256,address) (#1736-1738) is never used and should be removed
console.log(string,string,uint256,bool) (#1732-1734) is never used and should be removed
console.log(string,string,uint256,string) (#1728-1730) is never used and should be removed
console.log(string,string,uint256,uint256) (#1724-1726) is never used and should be removed
console.log(string,uint256) (#1100-1102) is never used and should be removed
console.log(string,uint256,address) (#1224-1226) is never used and should be removed
console.log(string,uint256,address,address) (#1720-1722) is never used and should be removed
console.log(string,uint256,address,bool) (#1716-1718) is never used and should be removed
console.log(string,uint256,address,string) (#1712-1714) is never used and should be removed
console.log(string,uint256,address,uint256) (#1708-1710) is never used and should be removed
console.log(string,uint256,bool) (#1220-1222) is never used and should be removed
console.log(string,uint256,bool,address) (#1704-1706) is never used and should be removed
console.log(string,uint256,bool,bool) (#1700-1702) is never used and should be removed
console.log(string,uint256,bool,string) (#1696-1698) is never used and should be removed
console.log(string,uint256,bool,uint256) (#1692-1694) is never used and should be removed
console.log(string,uint256,string) (#1216-1218) is never used and should be removed
console.log(string,uint256,string,address) (#1688-1690) is never used and should be removed
console.log(string,uint256,string,bool) (#1684-1686) is never used and should be removed
console.log(string,uint256,string,string) (#1680-1682) is never used and should be removed
console.log(string,uint256,string,uint256) (#1676-1678) is never used and should be removed
console.log(string,uint256,uint256) (#1212-1214) is never used and should be removed
console.log(string,uint256,uint256,address) (#1672-1674) is never used and should be removed
console.log(string,uint256,uint256,bool) (#1668-1670) is never used and should be removed
console.log(string,uint256,uint256,string) (#1664-1666) is never used and should be removed
console.log(string,uint256,uint256,uint256) (#1660-1662) is never used and should be removed
console.log(uint256) (#1068-1070) is never used and should be removed
console.log(uint256,address) (#1096-1098) is never used and should be removed
console.log(uint256,address,address) (#1208-1210) is never used and should be removed
console.log(uint256,address,address,address) (#1656-1658) is never used and should be removed
console.log(uint256,address,address,bool) (#1652-1654) is never used and should be removed
console.log(uint256,address,address,string) (#1648-1650) is never used and should be removed
console.log(uint256,address,address,uint256) (#1644-1646) is never used and should be removed
console.log(uint256,address,bool) (#1204-1206) is never used and should be removed
console.log(uint256,address,bool,address) (#1640-1642) is never used and should be removed
console.log(uint256,address,bool,bool) (#1636-1638) is never used and should be removed
console.log(uint256,address,bool,string) (#1632-1634) is never used and should be removed
console.log(uint256,address,bool,uint256) (#1628-1630) is never used and should be removed
console.log(uint256,address,string) (#1200-1202) is never used and should be removed
console.log(uint256,address,string,address) (#1624-1626) is never used and should be removed
console.log(uint256,address,string,bool) (#1620-1622) is never used and should be removed
console.log(uint256,address,string,string) (#1616-1618) is never used and should be removed
console.log(uint256,address,string,uint256) (#1612-1614) is never used and should be removed
console.log(uint256,address,uint256) (#1196-1198) is never used and should be removed
console.log(uint256,address,uint256,address) (#1608-1610) is never used and should be removed
console.log(uint256,address,uint256,bool) (#1604-1606) is never used and should be removed
console.log(uint256,address,uint256,string) (#1600-1602) is never used and should be removed
console.log(uint256,address,uint256,uint256) (#1596-1598) is never used and should be removed
console.log(uint256,bool) (#1092-1094) is never used and should be removed
console.log(uint256,bool,address) (#1192-1194) is never used and should be removed
console.log(uint256,bool,address,address) (#1592-1594) is never used and should be removed
console.log(uint256,bool,address,bool) (#1588-1590) is never used and should be removed
console.log(uint256,bool,address,string) (#1584-1586) is never used and should be removed
console.log(uint256,bool,address,uint256) (#1580-1582) is never used and should be removed
console.log(uint256,bool,bool) (#1188-1190) is never used and should be removed
console.log(uint256,bool,bool,address) (#1576-1578) is never used and should be removed
console.log(uint256,bool,bool,bool) (#1572-1574) is never used and should be removed
console.log(uint256,bool,bool,string) (#1568-1570) is never used and should be removed
console.log(uint256,bool,bool,uint256) (#1564-1566) is never used and should be removed
console.log(uint256,bool,string) (#1184-1186) is never used and should be removed
console.log(uint256,bool,string,address) (#1560-1562) is never used and should be removed
console.log(uint256,bool,string,bool) (#1556-1558) is never used and should be removed
console.log(uint256,bool,string,string) (#1552-1554) is never used and should be removed
console.log(uint256,bool,string,uint256) (#1548-1550) is never used and should be removed
console.log(uint256,bool,uint256) (#1180-1182) is never used and should be removed
console.log(uint256,bool,uint256,address) (#1544-1546) is never used and should be removed
console.log(uint256,bool,uint256,bool) (#1540-1542) is never used and should be removed
console.log(uint256,bool,uint256,string) (#1536-1538) is never used and should be removed
console.log(uint256,bool,uint256,uint256) (#1532-1534) is never used and should be removed
console.log(uint256,string) (#1088-1090) is never used and should be removed
console.log(uint256,string,address) (#1176-1178) is never used and should be removed
console.log(uint256,string,address,address) (#1528-1530) is never used and should be removed
console.log(uint256,string,address,bool) (#1524-1526) is never used and should be removed
console.log(uint256,string,address,string) (#1520-1522) is never used and should be removed
console.log(uint256,string,address,uint256) (#1516-1518) is never used and should be removed
console.log(uint256,string,bool) (#1172-1174) is never used and should be removed
console.log(uint256,string,bool,address) (#1512-1514) is never used and should be removed
console.log(uint256,string,bool,bool) (#1508-1510) is never used and should be removed
console.log(uint256,string,bool,string) (#1504-1506) is never used and should be removed
console.log(uint256,string,bool,uint256) (#1500-1502) is never used and should be removed
console.log(uint256,string,string) (#1168-1170) is never used and should be removed
console.log(uint256,string,string,address) (#1496-1498) is never used and should be removed
console.log(uint256,string,string,bool) (#1492-1494) is never used and should be removed
console.log(uint256,string,string,string) (#1488-1490) is never used and should be removed
console.log(uint256,string,string,uint256) (#1484-1486) is never used and should be removed
console.log(uint256,string,uint256) (#1164-1166) is never used and should be removed
console.log(uint256,string,uint256,address) (#1480-1482) is never used and should be removed
console.log(uint256,string,uint256,bool) (#1476-1478) is never used and should be removed
console.log(uint256,string,uint256,string) (#1472-1474) is never used and should be removed
console.log(uint256,string,uint256,uint256) (#1468-1470) is never used and should be removed
console.log(uint256,uint256) (#1084-1086) is never used and should be removed
console.log(uint256,uint256,address) (#1160-1162) is never used and should be removed
console.log(uint256,uint256,address,address) (#1464-1466) is never used and should be removed
console.log(uint256,uint256,address,bool) (#1460-1462) is never used and should be removed
console.log(uint256,uint256,address,string) (#1456-1458) is never used and should be removed
console.log(uint256,uint256,address,uint256) (#1452-1454) is never used and should be removed
console.log(uint256,uint256,bool) (#1156-1158) is never used and should be removed
console.log(uint256,uint256,bool,address) (#1448-1450) is never used and should be removed
console.log(uint256,uint256,bool,bool) (#1444-1446) is never used and should be removed
console.log(uint256,uint256,bool,string) (#1440-1442) is never used and should be removed
console.log(uint256,uint256,bool,uint256) (#1436-1438) is never used and should be removed
console.log(uint256,uint256,string) (#1152-1154) is never used and should be removed
console.log(uint256,uint256,string,address) (#1432-1434) is never used and should be removed
console.log(uint256,uint256,string,bool) (#1428-1430) is never used and should be removed
console.log(uint256,uint256,string,string) (#1424-1426) is never used and should be removed
console.log(uint256,uint256,string,uint256) (#1420-1422) is never used and should be removed
console.log(uint256,uint256,uint256) (#1148-1150) is never used and should be removed
console.log(uint256,uint256,uint256,address) (#1416-1418) is never used and should be removed
console.log(uint256,uint256,uint256,bool) (#1412-1414) is never used and should be removed
console.log(uint256,uint256,uint256,string) (#1408-1410) is never used and should be removed
console.log(uint256,uint256,uint256,uint256) (#1404-1406) is never used and should be removed
console.logAddress(address) (#932-934) is never used and should be removed
console.logBool(bool) (#928-930) is never used and should be removed
console.logBytes(bytes) (#936-938) is never used and should be removed
console.logBytes1(bytes1) (#940-942) is never used and should be removed
console.logBytes10(bytes10) (#976-978) is never used and should be removed
console.logBytes11(bytes11) (#980-982) is never used and should be removed
console.logBytes12(bytes12) (#984-986) is never used and should be removed
console.logBytes13(bytes13) (#988-990) is never used and should be removed
console.logBytes14(bytes14) (#992-994) is never used and should be removed
console.logBytes15(bytes15) (#996-998) is never used and should be removed
console.logBytes16(bytes16) (#1000-1002) is never used and should be removed
console.logBytes17(bytes17) (#1004-1006) is never used and should be removed
console.logBytes18(bytes18) (#1008-1010) is never used and should be removed
console.logBytes19(bytes19) (#1012-1014) is never used and should be removed
console.logBytes2(bytes2) (#944-946) is never used and should be removed
console.logBytes20(bytes20) (#1016-1018) is never used and should be removed
console.logBytes21(bytes21) (#1020-1022) is never used and should be removed
console.logBytes22(bytes22) (#1024-1026) is never used and should be removed
console.logBytes23(bytes23) (#1028-1030) is never used and should be removed
console.logBytes24(bytes24) (#1032-1034) is never used and should be removed
console.logBytes25(bytes25) (#1036-1038) is never used and should be removed
console.logBytes26(bytes26) (#1040-1042) is never used and should be removed
console.logBytes27(bytes27) (#1044-1046) is never used and should be removed
console.logBytes28(bytes28) (#1048-1050) is never used and should be removed
console.logBytes29(bytes29) (#1052-1054) is never used and should be removed
console.logBytes3(bytes3) (#948-950) is never used and should be removed
console.logBytes30(bytes30) (#1056-1058) is never used and should be removed
console.logBytes31(bytes31) (#1060-1062) is never used and should be removed
console.logBytes32(bytes32) (#1064-1066) is never used and should be removed
console.logBytes4(bytes4) (#952-954) is never used and should be removed
console.logBytes5(bytes5) (#956-958) is never used and should be removed
console.logBytes6(bytes6) (#960-962) is never used and should be removed
console.logBytes7(bytes7) (#964-966) is never used and should be removed
console.logBytes8(bytes8) (#968-970) is never used and should be removed
console.logBytes9(bytes9) (#972-974) is never used and should be removed
console.logInt(int256) (#916-918) is never used and should be removed
console.logString(string) (#924-926) is never used and should be removed
console.logUint(uint256) (#920-922) is never used and should be removed
Remove unused functions.
Additional information: link
Cada (#2450-3869) should inherit from IHoldlersRewardComputer (#777-785)
Inherit from the missing interface or contract.
Additional information: link
Variable ERC20._balances (#161) is not in mixedCase
Variable ERC20._allowances (#163) is not in mixedCase
Contract _IERC20 (#824-838) is not in CapWords
Parameter Commons.emergencyWithdrawTokens(address,address)._contractAddress (#845) is not in mixedCase
Parameter Commons.emergencyWithdrawTokens(address,address)._toAddress (#845) is not in mixedCase
Parameter Commons.emergencyWithdrawEthers(address)._toAddress (#859) is not in mixedCase
Parameter ISwapEngine.getTxType(address,address,address,uint256).msgSender__ (#895) is not in mixedCase
Variable ISwapEngine.TX_TRANSFER (#877) is not in mixedCase
Variable ISwapEngine.TX_SELL (#878) is not in mixedCase
Variable ISwapEngine.TX_BUY (#879) is not in mixedCase
Variable ISwapEngine.TX_ADD_LIQUIDITY (#880) is not in mixedCase
Variable ISwapEngine.TX_REMOVE_LIQUIDITY (#881) is not in mixedCase
Contract console (#900-2428) is not in CapWords
Parameter ITeams.logTransferTx(bytes32,address,address,address,uint256,uint256).msgSender__ (#2441) is not in mixedCase
Function Cada._initializeContract(address,address,address) (#2683-2712) is not in mixedCase
Parameter Cada._initializeContract(address,address,address)._uniswapRouter (#2684) is not in mixedCase
Parameter Cada._initializeContract(address,address,address)._swapEngine (#2685) is not in mixedCase
Parameter Cada._initializeContract(address,address,address)._holdlersRewardComputer (#2686) is not in mixedCase
Parameter Cada.realBalanceOf(address)._account (#2783) is not in mixedCase
Parameter Cada.balanceOf(address)._account (#2790) is not in mixedCase
Parameter Cada.getReward(address)._account (#2812) is not in mixedCase
Parameter Cada.setRewardStartDelay(uint256)._delayInSeconds (#2842) is not in mixedCase
Parameter Cada.setMinExpectedHoldlPeriod(uint256)._timeInSeconds (#2858) is not in mixedCase
Parameter Cada.getHoldlerInfo(address)._account (#2869) is not in mixedCase
Parameter Cada.setMinter(address,bool)._account (#2900) is not in mixedCase
Parameter Cada.setMinter(address,bool)._option (#2900) is not in mixedCase
Parameter Cada.setAutoLiquidityOwner(address)._account (#2929) is not in mixedCase
Parameter Cada.enableAutoBurn(bool)._option (#2938) is not in mixedCase
Parameter Cada.enableBuyBack(bool)._option (#2947) is not in mixedCase
Parameter Cada.enableAutoLiquidity(bool)._option (#2956) is not in mixedCase
Parameter Cada.enableHoldlersReward(bool)._option (#2965) is not in mixedCase
Parameter Cada.enableLiquidityProvidersIncentive(bool)._option (#2974) is not in mixedCase
Parameter Cada.enableMaxTxAmountLimit(bool)._option (#2983) is not in mixedCase
Parameter Cada.enableSellTax(bool)._option (#2992) is not in mixedCase
Parameter Cada.enableAllFees(bool)._option (#3001) is not in mixedCase
Parameter Cada.enableTeams(bool)._option (#3011) is not in mixedCase
Parameter Cada.enableMarketingAndCharity(bool)._option (#3017) is not in mixedCase
Parameter Cada.throttleAccountTx(address,uint256,uint256)._account (#3033) is not in mixedCase
Parameter Cada.throttleAccountTx(address,uint256,uint256)._txAmountLimitPercent (#3034) is not in mixedCase
Parameter Cada.throttleAccountTx(address,uint256,uint256)._txIntervals (#3035) is not in mixedCase
Parameter Cada.unThrottleAccountTx(address)._account (#3053) is not in mixedCase
Parameter Cada.setAutoBurnFee(uint256)._valueBps (#3071) is not in mixedCase
Parameter Cada.setbuyBackFee(uint256)._valueBps (#3080) is not in mixedCase
Parameter Cada.setHoldlersRewardFee(uint256)._valueBps (#3089) is not in mixedCase
Parameter Cada.setLiquidityProvidersIncentiveFee(uint256)._valueBps (#3098) is not in mixedCase
Parameter Cada.setAutoLiquidityFee(uint256)._valueBps (#3107) is not in mixedCase
Parameter Cada.setSellTaxFee(uint256)._valueBps (#3116) is not in mixedCase
Parameter Cada.setMarketingAndCharityFee(uint256)._valueBps (#3124) is not in mixedCase
Parameter Cada.setTeamsContract(address)._contractAddress (#3133) is not in mixedCase
Parameter Cada.setMarketingAndCharityWallet(address)._account (#3162) is not in mixedCase
Parameter Cada.setMaxTxAmountLimitPercent(uint256)._valueBps (#3171) is not in mixedCase
Parameter Cada.setTxTypeForMaxTxAmountLimit(bytes32)._txType (#3180) is not in mixedCase
Parameter Cada.setHoldlersRewardComputer(address)._contractAddress (#3201) is not in mixedCase
Parameter Cada.setSwapEngine(address)._swapEngineContract (#3211) is not in mixedCase
Parameter Cada.setUniswapRouter(address)._uniswapRouter (#3231) is not in mixedCase
Parameter Cada.excludeFromFees(address,bool)._account (#3255) is not in mixedCase
Parameter Cada.excludeFromFees(address,bool)._option (#3255) is not in mixedCase
Parameter Cada.excludeFromRewards(address,bool)._account (#3264) is not in mixedCase
Parameter Cada.excludeFromRewards(address,bool)._option (#3264) is not in mixedCase
Parameter Cada.excludeFromMaxTxAmountLimit(address,bool)._account (#3273) is not in mixedCase
Parameter Cada.excludeFromMaxTxAmountLimit(address,bool)._option (#3273) is not in mixedCase
Parameter Cada.setMinAmountBeforeAutoLiquidity(uint256)._amount (#3288) is not in mixedCase
Parameter Cada.setMinAmountBeforeAutoBurn(uint256)._amount (#3297) is not in mixedCase
Parameter Cada.setMinPercentageOfholdlersRewardReservedPoolToMainPool(uint256)._valueBps (#3306) is not in mixedCase
Parameter Cada.setPercentageShareOfHoldlersRewardsForReservedPool(uint256)._valueBps (#3315) is not in mixedCase
Function Cada.__swapTokenForETH(uint256) (#3327-3342) is not in mixedCase
Parameter Cada.__swapTokenForETH(uint256)._amountToken (#3327) is not in mixedCase
Parameter Cada.swapAndLiquidify(uint256)._amountToken (#3348) is not in mixedCase
Parameter Cada.executeTokenBuyBack(uint256)._amountETH (#3369) is not in mixedCase
Parameter Cada.txTypeToString(bytes32)._txType (#3434) is not in mixedCase
Parameter Cada.handleBuyBack(address,uint256,bytes32)._txType (#3673) is not in mixedCase
Parameter Cada.releaseAccountReward(address)._account (#3783) is not in mixedCase
Parameter Cada.internalTransfer(address,address,uint256,string,bool)._from (#3825) is not in mixedCase
Parameter Cada.internalTransfer(address,address,uint256,string,bool)._to (#3825) is not in mixedCase
Parameter Cada.internalTransfer(address,address,uint256,string,bool)._amount (#3825) is not in mixedCase
Parameter Cada.percentToAmount(uint256,uint256)._percentInBps (#3844) is not in mixedCase
Parameter Cada.percentToAmount(uint256,uint256)._amount (#3844) is not in mixedCase
Function Cada._getMaxTxAmountLimit() (#3853-3855) is not in mixedCase
Constant Cada._tokenName (#2495) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Cada._tokenSymbol (#2496) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Cada._tokenDecimals (#2497) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Cada._tokenSupply (#2498) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Cada._initialPercentOfTokensForHoldlersRewardPool (#2502) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Cada.DOMAIN_SEPARATOR (#2610) is not in mixedCase
Variable Cada._tokenAddress (#2638) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
console.slitherConstructorConstantVariables() (#900-2428) uses literals with too many digits:
- CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67) (#901)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Cada.buyBackETHFundsSplitDivisor (#2529) should be constant
Cada.liquidityProvidersIncentivePool (#2543) should be constant
Cada.minAmountBeforeSellingBNBForBuyBack (#2528) should be constant
Cada.minAmountBeforeSellingTokenForBuyBack (#2527) should be constant
Cada.numOfBuyBackPerAllocatedFunds (#2530) should be constant
IHoldlersRewardComputer.minExpectedHoldlPeriod (#780) should be constant
IHoldlersRewardComputer.rewardStartDelay (#779) should be constant
ISwapEngine.TX_ADD_LIQUIDITY (#880) should be constant
ISwapEngine.TX_BUY (#879) should be constant
ISwapEngine.TX_REMOVE_LIQUIDITY (#881) should be constant
ISwapEngine.TX_SELL (#878) should be constant
ISwapEngine.TX_TRANSFER (#877) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
symbol() should be declared external:
- ERC20.symbol() (#197-199)
decimals() should be declared external:
- ERC20.decimals() (#206-208)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#232-235)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#240-242)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#251-254)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#269-283)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#297-300)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#316-324)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#750-752)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#758-761)
getReward(address) should be declared external:
- IHoldlersRewardComputer.getReward(address) (#782)
setRewardStartDelay(uint256) should be declared external:
- IHoldlersRewardComputer.setRewardStartDelay(uint256) (#783)
setMinExpectedHoldlPeriod(uint256) should be declared external:
- IHoldlersRewardComputer.setMinExpectedHoldlPeriod(uint256) (#784)
emergencyWithdrawTokens(address,address) should be declared external:
- Commons.emergencyWithdrawTokens(address,address) (#845-854)
emergencyWithdrawEthers(address) should be declared external:
- Commons.emergencyWithdrawEthers(address) (#859-865)
setUniswapRouter(address) should be declared external:
- ISwapEngine.setUniswapRouter(address) (#888)
getUniswapPair() should be declared external:
- ISwapEngine.getUniswapPair() (#890)
getUniswapRouter() should be declared external:
- ISwapEngine.getUniswapRouter() (#891)
swapETHForToken(uint256,address) should be declared external:
- ISwapEngine.swapETHForToken(uint256,address) (#893)
getTxType(address,address,address,uint256) should be declared external:
- ISwapEngine.getTxType(address,address,address,uint256) (#895)
logTransferTx(bytes32,address,address,address,uint256,uint256) should be declared external:
- ITeams.logTransferTx(bytes32,address,address,address,uint256,uint256) (#2439-2446)
_initializeContract(address,address,address) should be declared external:
- Cada._initializeContract(address,address,address) (#2683-2712)
rewardStartDelay() should be declared external:
- Cada.rewardStartDelay() (#2834-2836)
setRewardStartDelay(uint256) should be declared external:
- Cada.setRewardStartDelay(uint256) (#2842-2844)
minExpectedHoldlPeriod() should be declared external:
- Cada.minExpectedHoldlPeriod() (#2850-2852)
setMinExpectedHoldlPeriod(uint256) should be declared external:
- Cada.setMinExpectedHoldlPeriod(uint256) (#2858-2860)
getHoldlerInfo(address) should be declared external:
- Cada.getHoldlerInfo(address) (#2869-2871)
mint(address,uint256) should be declared external:
- Cada.mint(address,uint256) (#2885-2893)
setMinter(address,bool) should be declared external:
- Cada.setMinter(address,bool) (#2900-2904)
setAutoLiquidityOwner(address) should be declared external:
- Cada.setAutoLiquidityOwner(address) (#2929-2932)
enableAutoBurn(bool) should be declared external:
- Cada.enableAutoBurn(bool) (#2938-2941)
enableBuyBack(bool) should be declared external:
- Cada.enableBuyBack(bool) (#2947-2950)
enableAutoLiquidity(bool) should be declared external:
- Cada.enableAutoLiquidity(bool) (#2956-2959)
enableHoldlersReward(bool) should be declared external:
- Cada.enableHoldlersReward(bool) (#2965-2968)
enableLiquidityProvidersIncentive(bool) should be declared external:
- Cada.enableLiquidityProvidersIncentive(bool) (#2974-2977)
enableMaxTxAmountLimit(bool) should be declared external:
- Cada.enableMaxTxAmountLimit(bool) (#2983-2986)
enableSellTax(bool) should be declared external:
- Cada.enableSellTax(bool) (#2992-2995)
enableAllFees(bool) should be declared external:
- Cada.enableAllFees(bool) (#3001-3008)
enableTeams(bool) should be declared external:
- Cada.enableTeams(bool) (#3011-3014)
enableMarketingAndCharity(bool) should be declared external:
- Cada.enableMarketingAndCharity(bool) (#3017-3020)
throttleAccountTx(address,uint256,uint256) should be declared external:
- Cada.throttleAccountTx(address,uint256,uint256) (#3032-3046)
unThrottleAccountTx(address) should be declared external:
- Cada.unThrottleAccountTx(address) (#3052-3061)
setAutoBurnFee(uint256) should be declared external:
- Cada.setAutoBurnFee(uint256) (#3071-3074)
setbuyBackFee(uint256) should be declared external:
- Cada.setbuyBackFee(uint256) (#3080-3083)
setHoldlersRewardFee(uint256) should be declared external:
- Cada.setHoldlersRewardFee(uint256) (#3089-3092)
setLiquidityProvidersIncentiveFee(uint256) should be declared external:
- Cada.setLiquidityProvidersIncentiveFee(uint256) (#3098-3101)
setAutoLiquidityFee(uint256) should be declared external:
- Cada.setAutoLiquidityFee(uint256) (#3107-3110)
setSellTaxFee(uint256) should be declared external:
- Cada.setSellTaxFee(uint256) (#3116-3119)
setMarketingAndCharityFee(uint256) should be declared external:
- Cada.setMarketingAndCharityFee(uint256) (#3124-3127)
setTeamsContract(address) should be declared external:
- Cada.setTeamsContract(address) (#3133-3136)
setMarketingAndCharityWallet(address) should be declared external:
- Cada.setMarketingAndCharityWallet(address) (#3162-3165)
setMaxTxAmountLimitPercent(uint256) should be declared external:
- Cada.setMaxTxAmountLimitPercent(uint256) (#3171-3174)
setTxTypeForMaxTxAmountLimit(bytes32) should be declared external:
- Cada.setTxTypeForMaxTxAmountLimit(bytes32) (#3180-3195)
setHoldlersRewardComputer(address) should be declared external:
- Cada.setHoldlersRewardComputer(address) (#3201-3205)
excludeFromFees(address,bool) should be declared external:
- Cada.excludeFromFees(address,bool) (#3255-3258)
excludeFromRewards(address,bool) should be declared external:
- Cada.excludeFromRewards(address,bool) (#3264-3267)
excludeFromMaxTxAmountLimit(address,bool) should be declared external:
- Cada.excludeFromMaxTxAmountLimit(address,bool) (#3273-3276)
setMinAmountBeforeAutoLiquidity(uint256) should be declared external:
- Cada.setMinAmountBeforeAutoLiquidity(uint256) (#3288-3291)
setMinAmountBeforeAutoBurn(uint256) should be declared external:
- Cada.setMinAmountBeforeAutoBurn(uint256) (#3297-3300)
setMinPercentageOfholdlersRewardReservedPoolToMainPool(uint256) should be declared external:
- Cada.setMinPercentageOfholdlersRewardReservedPoolToMainPool(uint256) (#3306-3309)
setPercentageShareOfHoldlersRewardsForReservedPool(uint256) should be declared external:
- Cada.setPercentageShareOfHoldlersRewardsForReservedPool(uint256) (#3315-3318)
txTypeToString(bytes32) should be declared external:
- Cada.txTypeToString(bytes32) (#3434-3440)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted from CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Telegram account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account