Hiroyuki Neko Token Logo

HNEKO [Hiroyuki Neko] Token

About HNEKO

Listings

Not Found
Token 2 years

Newly launched cat coin on the BSC network, taking over the newly found dog scene one by one! Come join us on this revolution to defeat the jeets!

Social

Laser Scorebeta Last Audit: 13 January 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

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

Additional information: link

Reentrancy in HiroyukiNeko._transferFrom(address,address,uint256) (#547-593):
External calls:
- swapBack() (#572)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#745-751)
- distributor.deposit{value: amountBNBReflection}() (#760)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#761)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#762)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#767-774)
External calls sending eth:
- swapBack() (#572)
- distributor.deposit{value: amountBNBReflection}() (#760)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#761)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#762)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#767-774)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#575)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#578)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#577)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#697)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#326-337) ignores return value by BUSD.transfer(shareholder,amount) (#332)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Reentrancy in DividendDistributor.distributeDividend(address) (#326-337):
External calls:
- BUSD.transfer(shareholder,amount) (#332)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#334)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#335)
Reentrancy in DividendDistributor.process(uint256) (#295-319):
External calls:
- distributeDividend(shareholders[currentIndex]) (#311)
- BUSD.transfer(shareholder,amount) (#332)
State variables written after the call(s):
- currentIndex ++ (#316)
Reentrancy in DividendDistributor.setShare(address,uint256) (#259-273):
External calls:
- distributeDividend(shareholder) (#261)
- BUSD.transfer(shareholder,amount) (#332)
State variables written after the call(s):
- shares[shareholder].amount = amount (#271)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#272)
Apply the check-effects-interactions pattern.

Additional information: link

HiroyukiNeko.swapBack() (#734-777) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#767-774)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#254-257) should emit an event for:
- minPeriod = _minPeriod (#255)
- minDistribution = _minDistribution (#256)
HiroyukiNeko.setMaxWalletPercent(uint256) (#541-544) should emit an event for:
- _maxWalletToken = _totalSupply.mul(maxWallPercent).div(10000) (#542)
HiroyukiNeko.enableGREED(uint256) (#712-715) should emit an event for:
- GREEDDuration = _seconds (#714)
HiroyukiNeko.cooldownEnabled(bool,uint8) (#723-726) should emit an event for:
- cooldownTimerInterval = _interval (#725)
HiroyukiNeko.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#831-839) should emit an event for:
- autoBuybackCap = _cap (#833)
- autoBuybackAmount = _amount (#835)
HiroyukiNeko.setBuybackMultiplierSettings(uint256,uint256,uint256) (#842-847) should emit an event for:
- buybackMultiplierNumerator = numerator (#844)
- buybackMultiplierDenominator = denominator (#845)
- buybackMultiplierLength = length (#846)
HiroyukiNeko.setMaxTxAmount(uint256) (#859-862) should emit an event for:
- _maxTxAmount = _totalSupply.mul(maxTxAmount).div(10000) (#861)
HiroyukiNeko.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256) (#891-899) should emit an event for:
- liquidityFeeBuy = _liquidityFeeBuy (#892)
- buybackFeeBuy = _buybackFeeBuy (#893)
- reflectionFeeBuy = _reflectionFeeBuy (#894)
- marketingFeeBuy = _marketingFeeBuy (#895)
- devFeeBuy = _devFeeBuy (#896)
- totalFeeBuy = _liquidityFeeBuy.add(_buybackFeeBuy).add(_reflectionFeeBuy).add(_marketingFeeBuy).add(_devFeeBuy) (#897)
- feeDenominator = _feeDenominator (#898)
HiroyukiNeko.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256) (#902-910) should emit an event for:
- liquidityFeeSell = _liquidityFeeSell (#903)
- buybackFeeSell = _buybackFeeSell (#904)
- reflectionFeeSell = _reflectionFeeSell (#905)
- marketingFeeSell = _marketingFeeSell (#906)
- devFeeSell = _devFeeSell (#907)
- totalFeeSell = _liquidityFeeSell.add(_buybackFeeSell).add(_reflectionFeeSell).add(_marketingFeeSell).add(_devFeeSell) (#908)
- feeDenominator = _feeDenominator (#909)
HiroyukiNeko.setSwapBackSettings(bool,uint256) (#919-922) should emit an event for:
- swapThreshold = _totalSupply * _amount / 10000 (#921)
HiroyukiNeko.setTargetLiquidity(uint256,uint256) (#925-928) should emit an event for:
- targetLiquidity = _target (#926)
- targetLiquidityDenominator = _denominator (#927)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).account (#131) lacks a zero-check on :
- owner = account (#132)
HiroyukiNeko.setFeeReceivers(address,address)._autoLiquidityReceiver (#913) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#914)
HiroyukiNeko.setFeeReceivers(address,address)._marketingFeeReceiver (#913) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#915)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#326-337) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#332)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in HiroyukiNeko.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 = msg.sender (#502)
Reentrancy in DividendDistributor.deposit() (#275-293):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#282-287)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#292)
- totalDividends = totalDividends.add(amount) (#291)
Reentrancy in DividendDistributor.distributeDividend(address) (#326-337):
External calls:
- BUSD.transfer(shareholder,amount) (#332)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#333)
Reentrancy in DividendDistributor.setShare(address,uint256) (#259-273):
External calls:
- distributeDividend(shareholder) (#261)
- BUSD.transfer(shareholder,amount) (#332)
State variables written after the call(s):
- addShareholder(shareholder) (#265)
- shareholderIndexes[shareholder] = shareholders.length (#359)
- removeShareholder(shareholder) (#267)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#365)
- addShareholder(shareholder) (#265)
- shareholders.push(shareholder) (#360)
- removeShareholder(shareholder) (#267)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#364)
- shareholders.pop() (#366)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#270)
Reentrancy in HiroyukiNeko.triggerAutoBuyback() (#805-814):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#806)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#822-827)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#812)
- autoBuybackBlockLast = block.number (#811)
- autoBuybackEnabled = false (#813)
- buybackMultiplierTriggeredAt = block.timestamp (#808)
Reentrancy in HiroyukiNeko.triggerManualBuyback(uint256,bool) (#789-797):
External calls:
- buyTokens(amountToBuy,DEAD) (#792)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#822-827)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#794)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HiroyukiNeko._transferFrom(address,address,uint256) (#547-593):
External calls:
- swapBack() (#572)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#745-751)
- distributor.deposit{value: amountBNBReflection}() (#760)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#761)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#762)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#767-774)
- distributor.setShare(sender,_balances[sender]) (#582)
- distributor.setShare(recipient,_balances[recipient]) (#586)
- distributor.process(distributorGas) (#589)
External calls sending eth:
- swapBack() (#572)
- distributor.deposit{value: amountBNBReflection}() (#760)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#761)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#762)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#767-774)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#591)
Reentrancy in HiroyukiNeko._transferFrom(address,address,uint256) (#547-593):
External calls:
- swapBack() (#572)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#745-751)
- distributor.deposit{value: amountBNBReflection}() (#760)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#761)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#762)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#767-774)
External calls sending eth:
- swapBack() (#572)
- distributor.deposit{value: amountBNBReflection}() (#760)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#761)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#762)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#767-774)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#698)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#577)
Reentrancy in HiroyukiNeko.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 HiroyukiNeko.swapBack() (#734-777):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#745-751)
- distributor.deposit{value: amountBNBReflection}() (#760)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#761)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#762)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#767-774)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#760)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#761)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#762)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#767-774)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#775)
Reentrancy in HiroyukiNeko.triggerAutoBuyback() (#805-814):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#806)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#822-827)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#809)
Reentrancy in HiroyukiNeko.triggerManualBuyback(uint256,bool) (#789-797):
External calls:
- buyTokens(amountToBuy,DEAD) (#792)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#822-827)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#795)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#321-324) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#322-323)
HiroyukiNeko.inGREEDTime() (#623-629) uses timestamp for comparisons
Dangerous comparisons:
- GREEDTriggeredAt.add(GREEDDuration) > block.timestamp (#624)
HiroyukiNeko.checkBuyCooldown(address,address) (#644-651) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait between two buys) (#648)
HiroyukiNeko.getTotalFee(bool) (#667-671) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#669)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#295-319) has costly operations inside a loop:
- currentIndex = 0 (#307)
DividendDistributor.distributeDividend(address) (#326-337) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#331)
DividendDistributor.process(uint256) (#295-319) has costly operations inside a loop:
- currentIndex ++ (#316)
Use a local variable to hold the loop computation result.

Additional information: link

HiroyukiNeko.launch() (#855-857) is never used and should be removed
HiroyukiNeko.launched() (#850-852) is never used and should be removed
HiroyukiNeko.shouldAutoBuyback() (#780-786) is never used and should be removed
HiroyukiNeko.triggerAutoBuyback() (#805-814) is never used and should be removed
Remove unused functions.

Additional information: link

HiroyukiNeko._maxTxAmount (#394) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 200 / 10000
HiroyukiNeko._maxWalletToken (#395) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 300 / 10000
HiroyukiNeko.swapThreshold (#439) 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 HiroyukiNeko.swapBack() (#734-777):
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#761)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#762)
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() (#148) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#254) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#254) is not in mixedCase
Variable DividendDistributor._token (#206) is not in mixedCase
Variable DividendDistributor.BUSD (#215) is not in mixedCase
Variable DividendDistributor.WBNB (#216) is not in mixedCase
Parameter HiroyukiNeko.takeFee(address,uint256,bool,bool).GREEDMode (#681) is not in mixedCase
Parameter HiroyukiNeko.enableGREED(uint256)._seconds (#712) is not in mixedCase
Parameter HiroyukiNeko.cooldownEnabled(bool,uint8)._status (#723) is not in mixedCase
Parameter HiroyukiNeko.cooldownEnabled(bool,uint8)._interval (#723) is not in mixedCase
Parameter HiroyukiNeko.blacklistAddress(address,bool)._address (#729) is not in mixedCase
Parameter HiroyukiNeko.blacklistAddress(address,bool)._value (#729) is not in mixedCase
Parameter HiroyukiNeko.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#831) is not in mixedCase
Parameter HiroyukiNeko.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#831) is not in mixedCase
Parameter HiroyukiNeko.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#831) is not in mixedCase
Parameter HiroyukiNeko.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#831) is not in mixedCase
Parameter HiroyukiNeko.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#831) is not in mixedCase
Parameter HiroyukiNeko.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeBuy (#891) is not in mixedCase
Parameter HiroyukiNeko.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeBuy (#891) is not in mixedCase
Parameter HiroyukiNeko.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeBuy (#891) is not in mixedCase
Parameter HiroyukiNeko.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeBuy (#891) is not in mixedCase
Parameter HiroyukiNeko.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeBuy (#891) is not in mixedCase
Parameter HiroyukiNeko.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#891) is not in mixedCase
Parameter HiroyukiNeko.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeSell (#902) is not in mixedCase
Parameter HiroyukiNeko.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeSell (#902) is not in mixedCase
Parameter HiroyukiNeko.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeSell (#902) is not in mixedCase
Parameter HiroyukiNeko.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeSell (#902) is not in mixedCase
Parameter HiroyukiNeko.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeSell (#902) is not in mixedCase
Parameter HiroyukiNeko.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#902) is not in mixedCase
Parameter HiroyukiNeko.setFeeReceivers(address,address)._autoLiquidityReceiver (#913) is not in mixedCase
Parameter HiroyukiNeko.setFeeReceivers(address,address)._marketingFeeReceiver (#913) is not in mixedCase
Parameter HiroyukiNeko.setSwapBackSettings(bool,uint256)._enabled (#919) is not in mixedCase
Parameter HiroyukiNeko.setSwapBackSettings(bool,uint256)._amount (#919) is not in mixedCase
Parameter HiroyukiNeko.setTargetLiquidity(uint256,uint256)._target (#925) is not in mixedCase
Parameter HiroyukiNeko.setTargetLiquidity(uint256,uint256)._denominator (#925) is not in mixedCase
Parameter HiroyukiNeko.setDistributionCriteria(uint256,uint256)._minPeriod (#937) is not in mixedCase
Parameter HiroyukiNeko.setDistributionCriteria(uint256,uint256)._minDistribution (#937) is not in mixedCase
Variable HiroyukiNeko.CAKE (#375) is not in mixedCase
Variable HiroyukiNeko.WBNB (#376) is not in mixedCase
Variable HiroyukiNeko.DEAD (#377) is not in mixedCase
Variable HiroyukiNeko.ZERO (#378) is not in mixedCase
Variable HiroyukiNeko.DEV (#379) is not in mixedCase
Constant HiroyukiNeko._name (#386) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HiroyukiNeko._symbol (#387) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HiroyukiNeko._decimals (#388) is not in UPPER_CASE_WITH_UNDERSCORES
Variable HiroyukiNeko._totalSupply (#391) is not in mixedCase
Variable HiroyukiNeko._maxTxAmount (#394) is not in mixedCase
Variable HiroyukiNeko._maxWalletToken (#395) is not in mixedCase
Variable HiroyukiNeko._balances (#398) is not in mixedCase
Variable HiroyukiNeko._allowances (#399) is not in mixedCase
Variable HiroyukiNeko.GREEDTriggeredAt (#432) is not in mixedCase
Variable HiroyukiNeko.GREEDDuration (#433) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

HiroyukiNeko.slitherConstructorVariables() (#371-975) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#377)
HiroyukiNeko.slitherConstructorVariables() (#371-975) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#378)
HiroyukiNeko.slitherConstructorVariables() (#371-975) uses literals with too many digits:
- _totalSupply = 100000000 * (10 ** _decimals) (#391)
HiroyukiNeko.slitherConstructorVariables() (#371-975) uses literals with too many digits:
- distributorGas = 500000 (#460)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

HiroyukiNeko.CAKE (#375) is never used in HiroyukiNeko (#371-975)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#216) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#229) should be constant
HiroyukiNeko.CAKE (#375) should be constant
HiroyukiNeko.DEAD (#377) should be constant
HiroyukiNeko.DEV (#379) should be constant
HiroyukiNeko.WBNB (#376) should be constant
HiroyukiNeko.ZERO (#378) should be constant
HiroyukiNeko._totalSupply (#391) should be constant
HiroyukiNeko.deadBlocks (#436) 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) (#103-105)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#110-112)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#131-135)
getTotalFee(bool) should be declared external:
- HiroyukiNeko.getTotalFee(bool) (#667-671)
enableGREED(uint256) should be declared external:
- HiroyukiNeko.enableGREED(uint256) (#712-715)
cooldownEnabled(bool,uint8) should be declared external:
- HiroyukiNeko.cooldownEnabled(bool,uint8) (#723-726)
blacklistAddress(address,bool) should be declared external:
- HiroyukiNeko.blacklistAddress(address,bool) (#729-731)
getUnpaidEarnings(address) should be declared external:
- HiroyukiNeko.getUnpaidEarnings(address) (#947-949)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on 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 find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for HNEKO

News for HNEKO