Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
HECATTOKEN.swapBack() (#743-786) sends eth to arbitrary user
Dangerous calls:
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#770)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in HECATTOKEN._transferFrom(address,address,uint256) (#545-596):
External calls:
- swapBack() (#575)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#754-760)
- distributor.deposit{value: amountBNBReflection}() (#769)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#770)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#771)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
External calls sending eth:
- swapBack() (#575)
- distributor.deposit{value: amountBNBReflection}() (#769)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#770)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#771)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#578)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#581)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#580)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#700)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#322-333) ignores return value by BUSD.transfer(shareholder,amount) (#328)
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 ticker ($HEAT) 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) (#322-333):
External calls:
- BUSD.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#330)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#331)
Reentrancy in DividendDistributor.process(uint256) (#291-315):
External calls:
- distributeDividend(shareholders[currentIndex]) (#307)
- BUSD.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- currentIndex ++ (#312)
Reentrancy in DividendDistributor.setShare(address,uint256) (#255-269):
External calls:
- distributeDividend(shareholder) (#257)
- BUSD.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- shares[shareholder].amount = amount (#267)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#268)
Apply the check-effects-interactions pattern.
Additional information: link
HECATTOKEN.swapBack() (#743-786) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#250-253) should emit an event for:
- minPeriod = _minPeriod (#251)
- minDistribution = _minDistribution (#252)
HECATTOKEN.setMaxWalletPercent(uint256) (#539-542) should emit an event for:
- _maxWalletToken = _totalSupply.mul(maxWallPercent).div(10000) (#540)
HECATTOKEN.enableGREED(uint256) (#721-724) should emit an event for:
- GREEDDuration = _seconds (#723)
HECATTOKEN.cooldownEnabled(bool,uint8) (#732-735) should emit an event for:
- cooldownTimerInterval = _interval (#734)
HECATTOKEN.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#840-848) should emit an event for:
- autoBuybackCap = _cap (#842)
- autoBuybackAmount = _amount (#844)
HECATTOKEN.setBuybackMultiplierSettings(uint256,uint256,uint256) (#851-856) should emit an event for:
- buybackMultiplierNumerator = numerator (#853)
- buybackMultiplierDenominator = denominator (#854)
- buybackMultiplierLength = length (#855)
HECATTOKEN.setBuyTxLimitInPercent(uint256) (#869-871) should emit an event for:
- _maxBuyTxAmount = _totalSupply.mul(maxBuyTxPercent).div(10000) (#870)
HECATTOKEN.setSellTxLimitInPercent(uint256) (#874-876) should emit an event for:
- _maxSellTxAmount = _totalSupply.mul(maxSellTxPercent).div(10000) (#875)
HECATTOKEN.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256) (#905-913) should emit an event for:
- liquidityFeeBuy = _liquidityFeeBuy (#906)
- buybackFeeBuy = _buybackFeeBuy (#907)
- reflectionFeeBuy = _reflectionFeeBuy (#908)
- marketingFeeBuy = _marketingFeeBuy (#909)
- devFeeBuy = _devFeeBuy (#910)
- totalFeeBuy = _liquidityFeeBuy.add(_buybackFeeBuy).add(_reflectionFeeBuy).add(_marketingFeeBuy).add(_devFeeBuy) (#911)
- feeDenominator = _feeDenominator (#912)
HECATTOKEN.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256) (#916-924) should emit an event for:
- liquidityFeeSell = _liquidityFeeSell (#917)
- buybackFeeSell = _buybackFeeSell (#918)
- reflectionFeeSell = _reflectionFeeSell (#919)
- marketingFeeSell = _marketingFeeSell (#920)
- devFeeSell = _devFeeSell (#921)
- totalFeeSell = _liquidityFeeSell.add(_buybackFeeSell).add(_reflectionFeeSell).add(_marketingFeeSell).add(_devFeeSell) (#922)
- feeDenominator = _feeDenominator (#923)
HECATTOKEN.setSwapBackSettings(bool,uint256) (#933-936) should emit an event for:
- swapThreshold = _totalSupply * _amount / 10000 (#935)
HECATTOKEN.setTargetLiquidity(uint256,uint256) (#939-942) should emit an event for:
- targetLiquidity = _target (#940)
- targetLiquidityDenominator = _denominator (#941)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).account (#127) lacks a zero-check on :
- owner = account (#128)
HECATTOKEN.setFeeReceivers(address,address)._autoLiquidityReceiver (#927) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#928)
HECATTOKEN.setFeeReceivers(address,address)._marketingFeeReceiver (#927) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#929)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#322-333) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#328)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in HECATTOKEN.constructor() (#474-504):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#477)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#478)
- _balances[_presaler] = _totalSupply (#502)
- autoLiquidityReceiver = msg.sender (#499)
- distributor = new DividendDistributor(address(router)) (#480)
- isDividendExempt[pair] = true (#494)
- isDividendExempt[address(this)] = true (#495)
- isDividendExempt[DEAD] = true (#496)
- isFeeExempt[_presaler] = true (#484)
- isTimelockExempt[msg.sender] = true (#488)
- isTimelockExempt[DEAD] = true (#489)
- isTimelockExempt[address(this)] = true (#490)
- isTimelockExempt[DEV] = true (#491)
- isTxLimitExempt[_presaler] = true (#485)
- marketingFeeReceiver = 0x66b82cEc4dD52E9a58640dEc9e1Fa72A51364086 (#500)
Reentrancy in DividendDistributor.deposit() (#271-289):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#278-283)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#288)
- totalDividends = totalDividends.add(amount) (#287)
Reentrancy in DividendDistributor.distributeDividend(address) (#322-333):
External calls:
- BUSD.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#329)
Reentrancy in DividendDistributor.setShare(address,uint256) (#255-269):
External calls:
- distributeDividend(shareholder) (#257)
- BUSD.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- addShareholder(shareholder) (#261)
- shareholderIndexes[shareholder] = shareholders.length (#355)
- removeShareholder(shareholder) (#263)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#361)
- addShareholder(shareholder) (#261)
- shareholders.push(shareholder) (#356)
- removeShareholder(shareholder) (#263)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#360)
- shareholders.pop() (#362)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#266)
Reentrancy in HECATTOKEN.triggerAutoBuyback() (#814-823):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#815)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#831-836)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#821)
- autoBuybackBlockLast = block.number (#820)
- autoBuybackEnabled = false (#822)
- buybackMultiplierTriggeredAt = block.timestamp (#817)
Reentrancy in HECATTOKEN.triggerManualBuyback(uint256,bool) (#798-806):
External calls:
- buyTokens(amountToBuy,DEAD) (#801)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#831-836)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#803)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in HECATTOKEN._transferFrom(address,address,uint256) (#545-596):
External calls:
- swapBack() (#575)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#754-760)
- distributor.deposit{value: amountBNBReflection}() (#769)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#770)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#771)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
- distributor.setShare(sender,_balances[sender]) (#585)
- distributor.setShare(recipient,_balances[recipient]) (#589)
- distributor.process(distributorGas) (#592)
External calls sending eth:
- swapBack() (#575)
- distributor.deposit{value: amountBNBReflection}() (#769)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#770)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#771)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#594)
Reentrancy in HECATTOKEN._transferFrom(address,address,uint256) (#545-596):
External calls:
- swapBack() (#575)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#754-760)
- distributor.deposit{value: amountBNBReflection}() (#769)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#770)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#771)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
External calls sending eth:
- swapBack() (#575)
- distributor.deposit{value: amountBNBReflection}() (#769)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#770)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#771)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#701)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#580)
Reentrancy in HECATTOKEN.constructor() (#474-504):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#477)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#503)
Reentrancy in HECATTOKEN.swapBack() (#743-786):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#754-760)
- distributor.deposit{value: amountBNBReflection}() (#769)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#770)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#771)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#769)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#770)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#771)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#784)
Reentrancy in HECATTOKEN.triggerAutoBuyback() (#814-823):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#815)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#831-836)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#818)
Reentrancy in HECATTOKEN.triggerManualBuyback(uint256,bool) (#798-806):
External calls:
- buyTokens(amountToBuy,DEAD) (#801)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#831-836)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#804)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#317-320) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#318-319)
HECATTOKEN.inGREEDTime() (#626-632) uses timestamp for comparisons
Dangerous comparisons:
- GREEDTriggeredAt.add(GREEDDuration) > block.timestamp (#627)
HECATTOKEN.checkBuyCooldown(address,address) (#647-654) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait between two buys) (#651)
HECATTOKEN.getTotalFee(bool) (#670-674) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#672)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#291-315) has costly operations inside a loop:
- currentIndex = 0 (#303)
DividendDistributor.distributeDividend(address) (#322-333) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#327)
DividendDistributor.process(uint256) (#291-315) has costly operations inside a loop:
- currentIndex ++ (#312)
Use a local variable to hold the loop computation result.
Additional information: link
HECATTOKEN.launched() (#859-861) is never used and should be removed
HECATTOKEN.shouldAutoBuyback() (#789-795) is never used and should be removed
HECATTOKEN.triggerAutoBuyback() (#814-823) is never used and should be removed
Remove unused functions.
Additional information: link
HECATTOKEN._maxBuyTxAmount (#390) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 300 / 10000
HECATTOKEN._maxSellTxAmount (#391) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 100 / 10000
HECATTOKEN._maxWalletToken (#392) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 300) / 10000
HECATTOKEN.swapThreshold (#436) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 50 / 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 HECATTOKEN.swapBack() (#743-786):
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#770)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#771)
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() (#144) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#250) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#250) is not in mixedCase
Variable DividendDistributor._token (#202) is not in mixedCase
Variable DividendDistributor.BUSD (#211) is not in mixedCase
Variable DividendDistributor.WBNB (#212) is not in mixedCase
Parameter HECATTOKEN.takeFee(address,uint256,bool,bool).GREEDMode (#684) is not in mixedCase
Parameter HECATTOKEN.tradingStatus(bool)._status (#715) is not in mixedCase
Parameter HECATTOKEN.enableGREED(uint256)._seconds (#721) is not in mixedCase
Parameter HECATTOKEN.cooldownEnabled(bool,uint8)._status (#732) is not in mixedCase
Parameter HECATTOKEN.cooldownEnabled(bool,uint8)._interval (#732) is not in mixedCase
Parameter HECATTOKEN.blacklistAddress(address,bool)._address (#738) is not in mixedCase
Parameter HECATTOKEN.blacklistAddress(address,bool)._value (#738) is not in mixedCase
Parameter HECATTOKEN.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#840) is not in mixedCase
Parameter HECATTOKEN.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#840) is not in mixedCase
Parameter HECATTOKEN.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#840) is not in mixedCase
Parameter HECATTOKEN.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#840) is not in mixedCase
Parameter HECATTOKEN.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#840) is not in mixedCase
Parameter HECATTOKEN.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeBuy (#905) is not in mixedCase
Parameter HECATTOKEN.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeBuy (#905) is not in mixedCase
Parameter HECATTOKEN.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeBuy (#905) is not in mixedCase
Parameter HECATTOKEN.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeBuy (#905) is not in mixedCase
Parameter HECATTOKEN.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeBuy (#905) is not in mixedCase
Parameter HECATTOKEN.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#905) is not in mixedCase
Parameter HECATTOKEN.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeSell (#916) is not in mixedCase
Parameter HECATTOKEN.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeSell (#916) is not in mixedCase
Parameter HECATTOKEN.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeSell (#916) is not in mixedCase
Parameter HECATTOKEN.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeSell (#916) is not in mixedCase
Parameter HECATTOKEN.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeSell (#916) is not in mixedCase
Parameter HECATTOKEN.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#916) is not in mixedCase
Parameter HECATTOKEN.setFeeReceivers(address,address)._autoLiquidityReceiver (#927) is not in mixedCase
Parameter HECATTOKEN.setFeeReceivers(address,address)._marketingFeeReceiver (#927) is not in mixedCase
Parameter HECATTOKEN.setSwapBackSettings(bool,uint256)._enabled (#933) is not in mixedCase
Parameter HECATTOKEN.setSwapBackSettings(bool,uint256)._amount (#933) is not in mixedCase
Parameter HECATTOKEN.setTargetLiquidity(uint256,uint256)._target (#939) is not in mixedCase
Parameter HECATTOKEN.setTargetLiquidity(uint256,uint256)._denominator (#939) is not in mixedCase
Parameter HECATTOKEN.setDistributionCriteria(uint256,uint256)._minPeriod (#951) is not in mixedCase
Parameter HECATTOKEN.setDistributionCriteria(uint256,uint256)._minDistribution (#951) is not in mixedCase
Variable HECATTOKEN.BUSD (#371) is not in mixedCase
Variable HECATTOKEN.WBNB (#372) is not in mixedCase
Variable HECATTOKEN.DEAD (#373) is not in mixedCase
Variable HECATTOKEN.ZERO (#374) is not in mixedCase
Variable HECATTOKEN.DEV (#375) is not in mixedCase
Constant HECATTOKEN._name (#382) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HECATTOKEN._symbol (#383) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HECATTOKEN._decimals (#384) is not in UPPER_CASE_WITH_UNDERSCORES
Variable HECATTOKEN._totalSupply (#387) is not in mixedCase
Variable HECATTOKEN._maxBuyTxAmount (#390) is not in mixedCase
Variable HECATTOKEN._maxSellTxAmount (#391) is not in mixedCase
Variable HECATTOKEN._maxWalletToken (#392) is not in mixedCase
Variable HECATTOKEN._balances (#395) is not in mixedCase
Variable HECATTOKEN._allowances (#396) is not in mixedCase
Variable HECATTOKEN.GREEDTriggeredAt (#429) is not in mixedCase
Variable HECATTOKEN.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 (#149) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#150)
Prevent variables from having similar names.
Additional information: link
HECATTOKEN.slitherConstructorVariables() (#367-989) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#373)
HECATTOKEN.slitherConstructorVariables() (#367-989) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#374)
HECATTOKEN.slitherConstructorVariables() (#367-989) uses literals with too many digits:
- _totalSupply = 100000 * (10 ** _decimals) (#387)
HECATTOKEN.slitherConstructorVariables() (#367-989) uses literals with too many digits:
- distributorGas = 500000 (#457)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
HECATTOKEN.BUSD (#371) is never used in HECATTOKEN (#367-989)
Remove unused state variables.
Additional information: link
DividendDistributor.WBNB (#212) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#225) should be constant
HECATTOKEN.BUSD (#371) should be constant
HECATTOKEN.DEAD (#373) should be constant
HECATTOKEN.DEV (#375) should be constant
HECATTOKEN.WBNB (#372) should be constant
HECATTOKEN.ZERO (#374) should be constant
HECATTOKEN._totalSupply (#387) should be constant
HECATTOKEN.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) (#99-101)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#106-108)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#127-131)
getTotalFee(bool) should be declared external:
- HECATTOKEN.getTotalFee(bool) (#670-674)
tradingStatus(bool) should be declared external:
- HECATTOKEN.tradingStatus(bool) (#715-718)
enableGREED(uint256) should be declared external:
- HECATTOKEN.enableGREED(uint256) (#721-724)
cooldownEnabled(bool,uint8) should be declared external:
- HECATTOKEN.cooldownEnabled(bool,uint8) (#732-735)
blacklistAddress(address,bool) should be declared external:
- HECATTOKEN.blacklistAddress(address,bool) (#738-740)
getUnpaidEarnings(address) should be declared external:
- HECATTOKEN.getUnpaidEarnings(address) (#961-963)
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