Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
fcKING.swapBack() (#731-774) sends eth to arbitrary user
Dangerous calls:
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#758)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in fcKING._transferFrom(address,address,uint256) (#544-590):
External calls:
- swapBack() (#569)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#742-748)
- distributor.deposit{value: amountBNBReflection}() (#757)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#758)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#759)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#764-771)
External calls sending eth:
- swapBack() (#569)
- distributor.deposit{value: amountBNBReflection}() (#757)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#758)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#759)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#764-771)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#572)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#575)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#574)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#694)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#323-334) ignores return value by CAKE.transfer(shareholder,amount) (#329)
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.
Contract name (f*cKING) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
Contract ticker (f*cKING) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
Reentrancy in DividendDistributor.distributeDividend(address) (#323-334):
External calls:
- CAKE.transfer(shareholder,amount) (#329)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#331)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#332)
Reentrancy in DividendDistributor.process(uint256) (#292-316):
External calls:
- distributeDividend(shareholders[currentIndex]) (#308)
- CAKE.transfer(shareholder,amount) (#329)
State variables written after the call(s):
- currentIndex ++ (#313)
Reentrancy in DividendDistributor.setShare(address,uint256) (#256-270):
External calls:
- distributeDividend(shareholder) (#258)
- CAKE.transfer(shareholder,amount) (#329)
State variables written after the call(s):
- shares[shareholder].amount = amount (#268)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#269)
Apply the check-effects-interactions pattern.
Additional information: link
fcKING.swapBack() (#731-774) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#764-771)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#251-254) should emit an event for:
- minPeriod = _minPeriod (#252)
- minDistribution = _minDistribution (#253)
fcKING.setMaxWalletPercent(uint256) (#538-541) should emit an event for:
- _maxWalletToken = _totalSupply.mul(maxWallPercent).div(10000) (#539)
fcKING.enableGREED(uint256) (#709-712) should emit an event for:
- GREEDDuration = _seconds (#711)
fcKING.cooldownEnabled(bool,uint8) (#720-723) should emit an event for:
- cooldownTimerInterval = _interval (#722)
fcKING.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#828-836) should emit an event for:
- autoBuybackCap = _cap (#830)
- autoBuybackAmount = _amount (#832)
fcKING.setBuybackMultiplierSettings(uint256,uint256,uint256) (#839-844) should emit an event for:
- buybackMultiplierNumerator = numerator (#841)
- buybackMultiplierDenominator = denominator (#842)
- buybackMultiplierLength = length (#843)
fcKING.setMaxTxAmount(uint256) (#856-859) should emit an event for:
- _maxTxAmount = _totalSupply.mul(maxTxAmount).div(10000) (#858)
fcKING.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256) (#888-896) should emit an event for:
- liquidityFeeBuy = _liquidityFeeBuy (#889)
- buybackFeeBuy = _buybackFeeBuy (#890)
- reflectionFeeBuy = _reflectionFeeBuy (#891)
- marketingFeeBuy = _marketingFeeBuy (#892)
- devFeeBuy = _devFeeBuy (#893)
- totalFeeBuy = _liquidityFeeBuy.add(_buybackFeeBuy).add(_reflectionFeeBuy).add(_marketingFeeBuy).add(_devFeeBuy) (#894)
- feeDenominator = _feeDenominator (#895)
fcKING.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256) (#899-907) should emit an event for:
- liquidityFeeSell = _liquidityFeeSell (#900)
- buybackFeeSell = _buybackFeeSell (#901)
- reflectionFeeSell = _reflectionFeeSell (#902)
- marketingFeeSell = _marketingFeeSell (#903)
- devFeeSell = _devFeeSell (#904)
- totalFeeSell = _liquidityFeeSell.add(_buybackFeeSell).add(_reflectionFeeSell).add(_marketingFeeSell).add(_devFeeSell) (#905)
- feeDenominator = _feeDenominator (#906)
fcKING.setSwapBackSettings(bool,uint256) (#916-919) should emit an event for:
- swapThreshold = _totalSupply * _amount / 10000 (#918)
fcKING.setTargetLiquidity(uint256,uint256) (#922-925) should emit an event for:
- targetLiquidity = _target (#923)
- targetLiquidityDenominator = _denominator (#924)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).account (#128) lacks a zero-check on :
- owner = account (#129)
fcKING.setFeeReceivers(address,address)._autoLiquidityReceiver (#910) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#911)
fcKING.setFeeReceivers(address,address)._marketingFeeReceiver (#910) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#912)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#323-334) has external calls inside a loop: CAKE.transfer(shareholder,amount) (#329)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in fcKING.constructor() (#473-503):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#476)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#477)
- _balances[_presaler] = _totalSupply (#501)
- autoLiquidityReceiver = msg.sender (#498)
- distributor = new DividendDistributor(address(router)) (#479)
- isDividendExempt[pair] = true (#493)
- isDividendExempt[address(this)] = true (#494)
- isDividendExempt[DEAD] = true (#495)
- isFeeExempt[_presaler] = true (#483)
- isTimelockExempt[msg.sender] = true (#487)
- isTimelockExempt[DEAD] = true (#488)
- isTimelockExempt[address(this)] = true (#489)
- isTimelockExempt[DEV] = true (#490)
- isTxLimitExempt[_presaler] = true (#484)
- marketingFeeReceiver = msg.sender (#499)
Reentrancy in DividendDistributor.deposit() (#272-290):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#279-284)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#289)
- totalDividends = totalDividends.add(amount) (#288)
Reentrancy in DividendDistributor.distributeDividend(address) (#323-334):
External calls:
- CAKE.transfer(shareholder,amount) (#329)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#330)
Reentrancy in DividendDistributor.setShare(address,uint256) (#256-270):
External calls:
- distributeDividend(shareholder) (#258)
- CAKE.transfer(shareholder,amount) (#329)
State variables written after the call(s):
- addShareholder(shareholder) (#262)
- shareholderIndexes[shareholder] = shareholders.length (#356)
- removeShareholder(shareholder) (#264)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#362)
- addShareholder(shareholder) (#262)
- shareholders.push(shareholder) (#357)
- removeShareholder(shareholder) (#264)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#361)
- shareholders.pop() (#363)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#267)
Reentrancy in fcKING.triggerAutoBuyback() (#802-811):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#803)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#819-824)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#809)
- autoBuybackBlockLast = block.number (#808)
- autoBuybackEnabled = false (#810)
- buybackMultiplierTriggeredAt = block.timestamp (#805)
Reentrancy in fcKING.triggerManualBuyback(uint256,bool) (#786-794):
External calls:
- buyTokens(amountToBuy,DEAD) (#789)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#819-824)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#791)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in fcKING._transferFrom(address,address,uint256) (#544-590):
External calls:
- swapBack() (#569)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#742-748)
- distributor.deposit{value: amountBNBReflection}() (#757)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#758)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#759)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#764-771)
- distributor.setShare(sender,_balances[sender]) (#579)
- distributor.setShare(recipient,_balances[recipient]) (#583)
- distributor.process(distributorGas) (#586)
External calls sending eth:
- swapBack() (#569)
- distributor.deposit{value: amountBNBReflection}() (#757)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#758)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#759)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#764-771)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#588)
Reentrancy in fcKING._transferFrom(address,address,uint256) (#544-590):
External calls:
- swapBack() (#569)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#742-748)
- distributor.deposit{value: amountBNBReflection}() (#757)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#758)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#759)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#764-771)
External calls sending eth:
- swapBack() (#569)
- distributor.deposit{value: amountBNBReflection}() (#757)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#758)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#759)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#764-771)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#695)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#574)
Reentrancy in fcKING.constructor() (#473-503):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#476)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#502)
Reentrancy in fcKING.swapBack() (#731-774):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#742-748)
- distributor.deposit{value: amountBNBReflection}() (#757)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#758)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#759)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#764-771)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#757)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#758)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#759)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#764-771)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#772)
Reentrancy in fcKING.triggerAutoBuyback() (#802-811):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#803)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#819-824)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#806)
Reentrancy in fcKING.triggerManualBuyback(uint256,bool) (#786-794):
External calls:
- buyTokens(amountToBuy,DEAD) (#789)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#819-824)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#792)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#318-321) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#319-320)
fcKING.inGREEDTime() (#620-626) uses timestamp for comparisons
Dangerous comparisons:
- GREEDTriggeredAt.add(GREEDDuration) > block.timestamp (#621)
fcKING.checkBuyCooldown(address,address) (#641-648) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait between two buys) (#645)
fcKING.getTotalFee(bool) (#664-668) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#666)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#292-316) has costly operations inside a loop:
- currentIndex = 0 (#304)
DividendDistributor.distributeDividend(address) (#323-334) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#328)
DividendDistributor.process(uint256) (#292-316) has costly operations inside a loop:
- currentIndex ++ (#313)
Use a local variable to hold the loop computation result.
Additional information: link
fcKING.launch() (#852-854) is never used and should be removed
fcKING.launched() (#847-849) is never used and should be removed
fcKING.shouldAutoBuyback() (#777-783) is never used and should be removed
fcKING.triggerAutoBuyback() (#802-811) is never used and should be removed
Remove unused functions.
Additional information: link
fcKING._maxTxAmount (#391) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 200 / 10000
fcKING._maxWalletToken (#392) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 200 / 10000
fcKING.swapThreshold (#436) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 30 / 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 fcKING.swapBack() (#731-774):
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#758)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#759)
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() (#145) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#251) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#251) is not in mixedCase
Variable DividendDistributor._token (#203) is not in mixedCase
Variable DividendDistributor.CAKE (#212) is not in mixedCase
Variable DividendDistributor.WBNB (#213) is not in mixedCase
Contract fcKING (#368-972) is not in CapWords
Parameter fcKING.takeFee(address,uint256,bool,bool).GREEDMode (#678) is not in mixedCase
Parameter fcKING.enableGREED(uint256)._seconds (#709) is not in mixedCase
Parameter fcKING.cooldownEnabled(bool,uint8)._status (#720) is not in mixedCase
Parameter fcKING.cooldownEnabled(bool,uint8)._interval (#720) is not in mixedCase
Parameter fcKING.blacklistAddress(address,bool)._address (#726) is not in mixedCase
Parameter fcKING.blacklistAddress(address,bool)._value (#726) is not in mixedCase
Parameter fcKING.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#828) is not in mixedCase
Parameter fcKING.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#828) is not in mixedCase
Parameter fcKING.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#828) is not in mixedCase
Parameter fcKING.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#828) is not in mixedCase
Parameter fcKING.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#828) is not in mixedCase
Parameter fcKING.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeBuy (#888) is not in mixedCase
Parameter fcKING.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeBuy (#888) is not in mixedCase
Parameter fcKING.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeBuy (#888) is not in mixedCase
Parameter fcKING.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeBuy (#888) is not in mixedCase
Parameter fcKING.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeBuy (#888) is not in mixedCase
Parameter fcKING.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#888) is not in mixedCase
Parameter fcKING.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeSell (#899) is not in mixedCase
Parameter fcKING.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeSell (#899) is not in mixedCase
Parameter fcKING.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeSell (#899) is not in mixedCase
Parameter fcKING.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeSell (#899) is not in mixedCase
Parameter fcKING.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeSell (#899) is not in mixedCase
Parameter fcKING.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#899) is not in mixedCase
Parameter fcKING.setFeeReceivers(address,address)._autoLiquidityReceiver (#910) is not in mixedCase
Parameter fcKING.setFeeReceivers(address,address)._marketingFeeReceiver (#910) is not in mixedCase
Parameter fcKING.setSwapBackSettings(bool,uint256)._enabled (#916) is not in mixedCase
Parameter fcKING.setSwapBackSettings(bool,uint256)._amount (#916) is not in mixedCase
Parameter fcKING.setTargetLiquidity(uint256,uint256)._target (#922) is not in mixedCase
Parameter fcKING.setTargetLiquidity(uint256,uint256)._denominator (#922) is not in mixedCase
Parameter fcKING.setDistributionCriteria(uint256,uint256)._minPeriod (#934) is not in mixedCase
Parameter fcKING.setDistributionCriteria(uint256,uint256)._minDistribution (#934) is not in mixedCase
Variable fcKING.CAKE (#372) is not in mixedCase
Variable fcKING.WBNB (#373) is not in mixedCase
Variable fcKING.DEAD (#374) is not in mixedCase
Variable fcKING.ZERO (#375) is not in mixedCase
Variable fcKING.DEV (#376) is not in mixedCase
Constant fcKING._name (#383) is not in UPPER_CASE_WITH_UNDERSCORES
Constant fcKING._symbol (#384) is not in UPPER_CASE_WITH_UNDERSCORES
Constant fcKING._decimals (#385) is not in UPPER_CASE_WITH_UNDERSCORES
Variable fcKING._totalSupply (#388) is not in mixedCase
Variable fcKING._maxTxAmount (#391) is not in mixedCase
Variable fcKING._maxWalletToken (#392) is not in mixedCase
Variable fcKING._balances (#395) is not in mixedCase
Variable fcKING._allowances (#396) is not in mixedCase
Variable fcKING.GREEDTriggeredAt (#429) is not in mixedCase
Variable fcKING.GREEDDuration (#430) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#150) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#151)
Prevent variables from having similar names.
Additional information: link
fcKING.slitherConstructorVariables() (#368-972) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#374)
fcKING.slitherConstructorVariables() (#368-972) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#375)
fcKING.slitherConstructorVariables() (#368-972) uses literals with too many digits:
- _totalSupply = 100000000 * (10 ** _decimals) (#388)
fcKING.slitherConstructorVariables() (#368-972) uses literals with too many digits:
- distributorGas = 500000 (#457)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
fcKING.CAKE (#372) is never used in fcKING (#368-972)
Remove unused state variables.
Additional information: link
DividendDistributor.WBNB (#213) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#226) should be constant
fcKING.CAKE (#372) should be constant
fcKING.DEAD (#374) should be constant
fcKING.DEV (#376) should be constant
fcKING.WBNB (#373) should be constant
fcKING.ZERO (#375) should be constant
fcKING._totalSupply (#388) should be constant
fcKING.deadBlocks (#433) 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) (#100-102)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#107-109)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#128-132)
getTotalFee(bool) should be declared external:
- fcKING.getTotalFee(bool) (#664-668)
enableGREED(uint256) should be declared external:
- fcKING.enableGREED(uint256) (#709-712)
cooldownEnabled(bool,uint8) should be declared external:
- fcKING.cooldownEnabled(bool,uint8) (#720-723)
blacklistAddress(address,bool) should be declared external:
- fcKING.blacklistAddress(address,bool) (#726-728)
getUnpaidEarnings(address) should be declared external:
- fcKING.getUnpaidEarnings(address) (#944-946)
Use the external attribute for functions never called from the contract.
Additional information: link
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
Unable to find Telegram and Twitter accounts