KhabyLambo.swapBack() (#745-788) sends eth to arbitrary user
Dangerous calls:
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#772)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in KhabyLambo._transferFrom(address,address,uint256) (#547-598):
External calls:
- swapBack() (#577)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#756-762)
- distributor.deposit{value: amountBNBReflection}() (#771)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#772)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
External calls sending eth:
- swapBack() (#577)
- distributor.deposit{value: amountBNBReflection}() (#771)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#772)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#580)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#583)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#582)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#702)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#324-335) ignores return value by BUSD.transfer(shareholder,amount) (#330)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
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 ownership is not renounced (belongs to a wallet)
Reentrancy in DividendDistributor.distributeDividend(address) (#324-335):
External calls:
- BUSD.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#332)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#333)
Reentrancy in DividendDistributor.process(uint256) (#293-317):
External calls:
- distributeDividend(shareholders[currentIndex]) (#309)
- BUSD.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- currentIndex ++ (#314)
Reentrancy in DividendDistributor.setShare(address,uint256) (#257-271):
External calls:
- distributeDividend(shareholder) (#259)
- BUSD.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- shares[shareholder].amount = amount (#269)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#270)
Apply the check-effects-interactions pattern.
Additional information: link
KhabyLambo.swapBack() (#745-788) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#252-255) should emit an event for:
- minPeriod = _minPeriod (#253)
- minDistribution = _minDistribution (#254)
KhabyLambo.setMaxWalletPercent(uint256) (#541-544) should emit an event for:
- _maxWalletToken = _totalSupply.mul(maxWallPercent).div(10000) (#542)
KhabyLambo.enableGREED(uint256) (#723-726) should emit an event for:
- GREEDDuration = _seconds (#725)
KhabyLambo.cooldownEnabled(bool,uint8) (#734-737) should emit an event for:
- cooldownTimerInterval = _interval (#736)
KhabyLambo.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#842-850) should emit an event for:
- autoBuybackCap = _cap (#844)
- autoBuybackAmount = _amount (#846)
KhabyLambo.setBuybackMultiplierSettings(uint256,uint256,uint256) (#853-858) should emit an event for:
- buybackMultiplierNumerator = numerator (#855)
- buybackMultiplierDenominator = denominator (#856)
- buybackMultiplierLength = length (#857)
KhabyLambo.setBuyTxLimitInPercent(uint256) (#871-873) should emit an event for:
- _maxBuyTxAmount = _totalSupply.mul(maxBuyTxPercent).div(10000) (#872)
KhabyLambo.setSellTxLimitInPercent(uint256) (#876-878) should emit an event for:
- _maxSellTxAmount = _totalSupply.mul(maxSellTxPercent).div(10000) (#877)
KhabyLambo.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256) (#907-915) should emit an event for:
- liquidityFeeBuy = _liquidityFeeBuy (#908)
- buybackFeeBuy = _buybackFeeBuy (#909)
- reflectionFeeBuy = _reflectionFeeBuy (#910)
- marketingFeeBuy = _marketingFeeBuy (#911)
- devFeeBuy = _devFeeBuy (#912)
- totalFeeBuy = _liquidityFeeBuy.add(_buybackFeeBuy).add(_reflectionFeeBuy).add(_marketingFeeBuy).add(_devFeeBuy) (#913)
- feeDenominator = _feeDenominator (#914)
KhabyLambo.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256) (#918-926) should emit an event for:
- liquidityFeeSell = _liquidityFeeSell (#919)
- buybackFeeSell = _buybackFeeSell (#920)
- reflectionFeeSell = _reflectionFeeSell (#921)
- marketingFeeSell = _marketingFeeSell (#922)
- devFeeSell = _devFeeSell (#923)
- totalFeeSell = _liquidityFeeSell.add(_buybackFeeSell).add(_reflectionFeeSell).add(_marketingFeeSell).add(_devFeeSell) (#924)
- feeDenominator = _feeDenominator (#925)
KhabyLambo.setSwapBackSettings(bool,uint256) (#935-938) should emit an event for:
- swapThreshold = _totalSupply * _amount / 10000 (#937)
KhabyLambo.setTargetLiquidity(uint256,uint256) (#941-944) should emit an event for:
- targetLiquidity = _target (#942)
- targetLiquidityDenominator = _denominator (#943)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).account (#129) lacks a zero-check on :
- owner = account (#130)
KhabyLambo.setFeeReceivers(address,address)._autoLiquidityReceiver (#929) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#930)
KhabyLambo.setFeeReceivers(address,address)._marketingFeeReceiver (#929) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#931)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#324-335) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#330)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in KhabyLambo.constructor() (#476-506):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#479)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#480)
- _balances[_presaler] = _totalSupply (#504)
- autoLiquidityReceiver = msg.sender (#501)
- distributor = new DividendDistributor(address(router)) (#482)
- isDividendExempt[pair] = true (#496)
- isDividendExempt[address(this)] = true (#497)
- isDividendExempt[DEAD] = true (#498)
- isFeeExempt[_presaler] = true (#486)
- isTimelockExempt[msg.sender] = true (#490)
- isTimelockExempt[DEAD] = true (#491)
- isTimelockExempt[address(this)] = true (#492)
- isTimelockExempt[DEV] = true (#493)
- isTxLimitExempt[_presaler] = true (#487)
- marketingFeeReceiver = 0xB749EF121E38367F78013C06d5874B796764CDAf (#502)
Reentrancy in DividendDistributor.deposit() (#273-291):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#280-285)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#290)
- totalDividends = totalDividends.add(amount) (#289)
Reentrancy in DividendDistributor.distributeDividend(address) (#324-335):
External calls:
- BUSD.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#331)
Reentrancy in DividendDistributor.setShare(address,uint256) (#257-271):
External calls:
- distributeDividend(shareholder) (#259)
- BUSD.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- addShareholder(shareholder) (#263)
- shareholderIndexes[shareholder] = shareholders.length (#357)
- removeShareholder(shareholder) (#265)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#363)
- addShareholder(shareholder) (#263)
- shareholders.push(shareholder) (#358)
- removeShareholder(shareholder) (#265)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#362)
- shareholders.pop() (#364)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#268)
Reentrancy in KhabyLambo.triggerAutoBuyback() (#816-825):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#817)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#833-838)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#823)
- autoBuybackBlockLast = block.number (#822)
- autoBuybackEnabled = false (#824)
- buybackMultiplierTriggeredAt = block.timestamp (#819)
Reentrancy in KhabyLambo.triggerManualBuyback(uint256,bool) (#800-808):
External calls:
- buyTokens(amountToBuy,DEAD) (#803)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#833-838)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#805)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in KhabyLambo._transferFrom(address,address,uint256) (#547-598):
External calls:
- swapBack() (#577)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#756-762)
- distributor.deposit{value: amountBNBReflection}() (#771)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#772)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
- distributor.setShare(sender,_balances[sender]) (#587)
- distributor.setShare(recipient,_balances[recipient]) (#591)
- distributor.process(distributorGas) (#594)
External calls sending eth:
- swapBack() (#577)
- distributor.deposit{value: amountBNBReflection}() (#771)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#772)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#596)
Reentrancy in KhabyLambo._transferFrom(address,address,uint256) (#547-598):
External calls:
- swapBack() (#577)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#756-762)
- distributor.deposit{value: amountBNBReflection}() (#771)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#772)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
External calls sending eth:
- swapBack() (#577)
- distributor.deposit{value: amountBNBReflection}() (#771)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#772)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#703)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#582)
Reentrancy in KhabyLambo.constructor() (#476-506):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#479)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#505)
Reentrancy in KhabyLambo.swapBack() (#745-788):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#756-762)
- distributor.deposit{value: amountBNBReflection}() (#771)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#772)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#771)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#772)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#786)
Reentrancy in KhabyLambo.triggerAutoBuyback() (#816-825):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#817)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#833-838)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#820)
Reentrancy in KhabyLambo.triggerManualBuyback(uint256,bool) (#800-808):
External calls:
- buyTokens(amountToBuy,DEAD) (#803)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#833-838)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#806)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#319-322) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#320-321)
KhabyLambo.inGREEDTime() (#628-634) uses timestamp for comparisons
Dangerous comparisons:
- GREEDTriggeredAt.add(GREEDDuration) > block.timestamp (#629)
KhabyLambo.checkBuyCooldown(address,address) (#649-656) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait between two buys) (#653)
KhabyLambo.getTotalFee(bool) (#672-676) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#674)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#293-317) has costly operations inside a loop:
- currentIndex = 0 (#305)
DividendDistributor.distributeDividend(address) (#324-335) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#329)
DividendDistributor.process(uint256) (#293-317) has costly operations inside a loop:
- currentIndex ++ (#314)
Use a local variable to hold the loop computation result.
Additional information: link
KhabyLambo.launched() (#861-863) is never used and should be removed
KhabyLambo.shouldAutoBuyback() (#791-797) is never used and should be removed
KhabyLambo.triggerAutoBuyback() (#816-825) is never used and should be removed
Remove unused functions.
Additional information: link
KhabyLambo._maxBuyTxAmount (#392) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 200 / 10000
KhabyLambo._maxSellTxAmount (#393) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 200 / 10000
KhabyLambo._maxWalletToken (#394) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 200) / 10000
KhabyLambo.swapThreshold (#438) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 70 / 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 KhabyLambo.swapBack() (#745-788):
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#772)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#773)
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() (#146) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#252) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#252) is not in mixedCase
Variable DividendDistributor._token (#204) is not in mixedCase
Variable DividendDistributor.BUSD (#213) is not in mixedCase
Variable DividendDistributor.WBNB (#214) is not in mixedCase
Parameter KhabyLambo.takeFee(address,uint256,bool,bool).GREEDMode (#686) is not in mixedCase
Parameter KhabyLambo.tradingStatus(bool)._status (#717) is not in mixedCase
Parameter KhabyLambo.enableGREED(uint256)._seconds (#723) is not in mixedCase
Parameter KhabyLambo.cooldownEnabled(bool,uint8)._status (#734) is not in mixedCase
Parameter KhabyLambo.cooldownEnabled(bool,uint8)._interval (#734) is not in mixedCase
Parameter KhabyLambo.blacklistAddress(address,bool)._address (#740) is not in mixedCase
Parameter KhabyLambo.blacklistAddress(address,bool)._value (#740) is not in mixedCase
Parameter KhabyLambo.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#842) is not in mixedCase
Parameter KhabyLambo.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#842) is not in mixedCase
Parameter KhabyLambo.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#842) is not in mixedCase
Parameter KhabyLambo.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#842) is not in mixedCase
Parameter KhabyLambo.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#842) is not in mixedCase
Parameter KhabyLambo.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeBuy (#907) is not in mixedCase
Parameter KhabyLambo.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeBuy (#907) is not in mixedCase
Parameter KhabyLambo.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeBuy (#907) is not in mixedCase
Parameter KhabyLambo.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeBuy (#907) is not in mixedCase
Parameter KhabyLambo.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeBuy (#907) is not in mixedCase
Parameter KhabyLambo.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#907) is not in mixedCase
Parameter KhabyLambo.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeSell (#918) is not in mixedCase
Parameter KhabyLambo.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeSell (#918) is not in mixedCase
Parameter KhabyLambo.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeSell (#918) is not in mixedCase
Parameter KhabyLambo.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeSell (#918) is not in mixedCase
Parameter KhabyLambo.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeSell (#918) is not in mixedCase
Parameter KhabyLambo.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#918) is not in mixedCase
Parameter KhabyLambo.setFeeReceivers(address,address)._autoLiquidityReceiver (#929) is not in mixedCase
Parameter KhabyLambo.setFeeReceivers(address,address)._marketingFeeReceiver (#929) is not in mixedCase
Parameter KhabyLambo.setSwapBackSettings(bool,uint256)._enabled (#935) is not in mixedCase
Parameter KhabyLambo.setSwapBackSettings(bool,uint256)._amount (#935) is not in mixedCase
Parameter KhabyLambo.setTargetLiquidity(uint256,uint256)._target (#941) is not in mixedCase
Parameter KhabyLambo.setTargetLiquidity(uint256,uint256)._denominator (#941) is not in mixedCase
Parameter KhabyLambo.setDistributionCriteria(uint256,uint256)._minPeriod (#953) is not in mixedCase
Parameter KhabyLambo.setDistributionCriteria(uint256,uint256)._minDistribution (#953) is not in mixedCase
Variable KhabyLambo.BUSD (#373) is not in mixedCase
Variable KhabyLambo.WBNB (#374) is not in mixedCase
Variable KhabyLambo.DEAD (#375) is not in mixedCase
Variable KhabyLambo.ZERO (#376) is not in mixedCase
Variable KhabyLambo.DEV (#377) is not in mixedCase
Constant KhabyLambo._name (#384) is not in UPPER_CASE_WITH_UNDERSCORES
Constant KhabyLambo._symbol (#385) is not in UPPER_CASE_WITH_UNDERSCORES
Constant KhabyLambo._decimals (#386) is not in UPPER_CASE_WITH_UNDERSCORES
Variable KhabyLambo._totalSupply (#389) is not in mixedCase
Variable KhabyLambo._maxBuyTxAmount (#392) is not in mixedCase
Variable KhabyLambo._maxSellTxAmount (#393) is not in mixedCase
Variable KhabyLambo._maxWalletToken (#394) is not in mixedCase
Variable KhabyLambo._balances (#397) is not in mixedCase
Variable KhabyLambo._allowances (#398) is not in mixedCase
Variable KhabyLambo.GREEDTriggeredAt (#431) is not in mixedCase
Variable KhabyLambo.GREEDDuration (#432) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#151) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#152)
Prevent variables from having similar names.
Additional information: link
KhabyLambo.slitherConstructorVariables() (#369-991) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#375)
KhabyLambo.slitherConstructorVariables() (#369-991) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#376)
KhabyLambo.slitherConstructorVariables() (#369-991) uses literals with too many digits:
- _totalSupply = 1000000 * (10 ** _decimals) (#389)
KhabyLambo.slitherConstructorVariables() (#369-991) uses literals with too many digits:
- distributorGas = 500000 (#459)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
KhabyLambo.BUSD (#373) is never used in KhabyLambo (#369-991)
Remove unused state variables.
Additional information: link
DividendDistributor.WBNB (#214) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#227) should be constant
KhabyLambo.BUSD (#373) should be constant
KhabyLambo.DEAD (#375) should be constant
KhabyLambo.DEV (#377) should be constant
KhabyLambo.WBNB (#374) should be constant
KhabyLambo.ZERO (#376) should be constant
KhabyLambo._totalSupply (#389) should be constant
KhabyLambo.deadBlocks (#435) 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) (#101-103)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#108-110)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#129-133)
getTotalFee(bool) should be declared external:
- KhabyLambo.getTotalFee(bool) (#672-676)
tradingStatus(bool) should be declared external:
- KhabyLambo.tradingStatus(bool) (#717-720)
enableGREED(uint256) should be declared external:
- KhabyLambo.enableGREED(uint256) (#723-726)
cooldownEnabled(bool,uint8) should be declared external:
- KhabyLambo.cooldownEnabled(bool,uint8) (#734-737)
blacklistAddress(address,bool) should be declared external:
- KhabyLambo.blacklistAddress(address,bool) (#740-742)
getUnpaidEarnings(address) should be declared external:
- KhabyLambo.getUnpaidEarnings(address) (#963-965)
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