HeliumInu Token Logo

HINU [HeliumInu] Token

About HINU

Listings

Token 2 years
CoinMarketCap 2 years
white paper

Helium-Inu is a BSC token with a total supply of 1,000,000,000 tokens. Devs are active, friendly and transparent. Quick tokenomics rundown: 10% Transaction tax. 5% BUSD reflections, 4% LP tax, 1% Marketing Wallet tax. 1.5% max wallet size. NFT Collection in the works, along with an NFT integrated UE4 Battle Royale game which allows you to stake BNB in the pre-game lobby.

Social

Laser Scorebeta Last Audit: 7 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...)


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

DividendDistributor.distributeDividend(address) (#247-259) ignores return value by RewardToken.transfer(shareholder,amount) (#253)
DividendDistributor.rescueDividends(address) (#265-267) ignores return value by RewardToken.transfer(to,RewardToken.balanceOf(address(this))) (#266)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

HELIUMINU.swapBack() (#626-672) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in HELIUMINU._transferFrom(address,address,uint256) (#567-606):
External calls:
- swapBack() (#574)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#636-642)
- dividendDistributor.deposit{value: amountBNBReflection}() (#653)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#662-669)
External calls sending eth:
- swapBack() (#574)
- dividendDistributor.deposit{value: amountBNBReflection}() (#653)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#662-669)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#583)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#591)
- finalAmount = takeFee(sender,recipient,amount) (#590)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#620)
Apply the check-effects-interactions pattern.

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.

HELIUMINU.swapBack().tmpSuccess (#655) is written in both
(tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
tmpSuccess = false (#659)
Fix or remove the writes.

Additional information: link

HELIUMINU.constructor() (#422-451) uses literals with too many digits:
- autoLiquidityReceiver = 0x000000000000000000000000000000000000dEaD (#442)
HELIUMINU.slitherConstructorVariables() (#364-677) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#372)
HELIUMINU.slitherConstructorVariables() (#364-677) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#373)
HELIUMINU.slitherConstructorVariables() (#364-677) uses literals with too many digits:
- _totalSupply = 1000000000 * (10 ** _decimals) (#377)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

HELIUMINU.RewardToken (#375) is never used in HELIUMINU (#364-677)
Remove unused state variables.

Additional information: link

DividendDistributor.dividendsPerShareAccuracyFactor (#153) should be constant
DividendDistributor.routerAddress (#141) should be constant
HELIUMINU.DEAD (#372) should be constant
HELIUMINU.RewardToken (#375) should be constant
HELIUMINU.ZERO (#373) should be constant
HELIUMINU._totalSupply (#377) should be constant
HELIUMINU.restrictWhales (#381) should be constant
HELIUMINU.routerAddress (#374) should be constant
HELIUMINU.tradingOpen (#405) 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) (#327-329)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#334-336)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#355-359)
getCirculatingSupply() should be declared external:
- HELIUMINU.getCirculatingSupply() (#461-463)
Use the external attribute for functions never called from the contract.

Additional information: link

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

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#247-259):
External calls:
- RewardToken.transfer(shareholder,amount) (#253)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#255)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#256)
Reentrancy in DividendDistributor.process(uint256) (#218-240):
External calls:
- distributeDividend(shareholders[currentIndex]) (#232)
- RewardToken.transfer(shareholder,amount) (#253)
State variables written after the call(s):
- currentIndex ++ (#237)
Reentrancy in DividendDistributor.setShare(address,uint256) (#181-196):
External calls:
- distributeDividend(shareholder) (#184)
- RewardToken.transfer(shareholder,amount) (#253)
State variables written after the call(s):
- shares[shareholder].amount = amount (#194)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#195)
Apply the check-effects-interactions pattern.

Additional information: link

HELIUMINU.swapBack() (#626-672) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#662-669)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#176-179) should emit an event for:
- minPeriod = newMinPeriod (#177)
- minDistribution = newMinDistribution (#178)
HELIUMINU.changeTxLimit(uint256) (#490-492) should emit an event for:
- _maxTxAmount = newLimit (#491)
HELIUMINU.changeFees(uint256,uint256,uint256) (#521-528) should emit an event for:
- liquidityFee = newLiqFee (#522)
- rewardsFee = newRewardFee (#523)
- marketingFee = newMarketingFee (#524)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (#526)
- totalFeeIfSelling = totalFee (#527)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#355) lacks a zero-check on :
- owner = adr (#356)
HELIUMINU.changeFeeReceivers(address,address).newLiquidityReceiver (#530) lacks a zero-check on :
- autoLiquidityReceiver = newLiquidityReceiver (#531)
HELIUMINU.changeFeeReceivers(address,address).newMarketingWallet (#530) lacks a zero-check on :
- marketingWallet = newMarketingWallet (#532)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#247-259) has external calls inside a loop: RewardToken.transfer(shareholder,amount) (#253)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in HELIUMINU._transferFrom(address,address,uint256) (#567-606):
External calls:
- swapBack() (#574)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#636-642)
- dividendDistributor.deposit{value: amountBNBReflection}() (#653)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#662-669)
External calls sending eth:
- swapBack() (#574)
- dividendDistributor.deposit{value: amountBNBReflection}() (#653)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#662-669)
State variables written after the call(s):
- launch() (#578)
- launchedAt = block.number (#487)
Reentrancy in HELIUMINU.constructor() (#422-451):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#425)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#426)
- _balances[msg.sender] = _totalSupply (#449)
- autoLiquidityReceiver = 0x000000000000000000000000000000000000dEaD (#442)
- dividendDistributor = new DividendDistributor(address(router)) (#428)
- isDividendExempt[pair] = true (#436)
- isDividendExempt[msg.sender] = true (#437)
- isDividendExempt[address(this)] = true (#438)
- isDividendExempt[DEAD] = true (#439)
- isDividendExempt[ZERO] = true (#440)
- isFeeExempt[msg.sender] = true (#430)
- isFeeExempt[address(this)] = true (#431)
- isTxLimitExempt[msg.sender] = true (#433)
- isTxLimitExempt[pair] = true (#434)
- marketingWallet = 0x364f0281CE42d8ffECB7Ab47D3556732689dfbB4 (#443)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (#446)
- totalFeeIfSelling = totalFee (#447)
Reentrancy in DividendDistributor.deposit() (#198-216):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#206-211)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#215)
- totalDividends = totalDividends.add(amount) (#214)
Reentrancy in DividendDistributor.distributeDividend(address) (#247-259):
External calls:
- RewardToken.transfer(shareholder,amount) (#253)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#254)
Reentrancy in DividendDistributor.setShare(address,uint256) (#181-196):
External calls:
- distributeDividend(shareholder) (#184)
- RewardToken.transfer(shareholder,amount) (#253)
State variables written after the call(s):
- addShareholder(shareholder) (#188)
- shareholderIndexes[shareholder] = shareholders.length (#289)
- removeShareholder(shareholder) (#190)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#295)
- addShareholder(shareholder) (#188)
- shareholders.push(shareholder) (#290)
- removeShareholder(shareholder) (#190)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#294)
- shareholders.pop() (#296)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#193)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HELIUMINU._transferFrom(address,address,uint256) (#567-606):
External calls:
- swapBack() (#574)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#636-642)
- dividendDistributor.deposit{value: amountBNBReflection}() (#653)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#662-669)
- dividendDistributor.setShare(sender,_balances[sender]) (#595)
- dividendDistributor.setShare(recipient,_balances[recipient]) (#599)
- dividendDistributor.process(distributorGas) (#602)
External calls sending eth:
- swapBack() (#574)
- dividendDistributor.deposit{value: amountBNBReflection}() (#653)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#662-669)
Event emitted after the call(s):
- Transfer(sender,recipient,finalAmount) (#604)
Reentrancy in HELIUMINU._transferFrom(address,address,uint256) (#567-606):
External calls:
- swapBack() (#574)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#636-642)
- dividendDistributor.deposit{value: amountBNBReflection}() (#653)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#662-669)
External calls sending eth:
- swapBack() (#574)
- dividendDistributor.deposit{value: amountBNBReflection}() (#653)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#662-669)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#621)
- finalAmount = takeFee(sender,recipient,amount) (#590)
Reentrancy in HELIUMINU.constructor() (#422-451):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#425)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#450)
Reentrancy in HELIUMINU.swapBack() (#626-672):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#636-642)
- dividendDistributor.deposit{value: amountBNBReflection}() (#653)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#662-669)
External calls sending eth:
- dividendDistributor.deposit{value: amountBNBReflection}() (#653)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#662-669)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#670)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributionChecker(address) (#242-245) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#243-244)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#218-240) has costly operations inside a loop:
- currentIndex = 0 (#229)
DividendDistributor.distributeDividend(address) (#247-259) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#252)
DividendDistributor.process(uint256) (#218-240) has costly operations inside a loop:
- currentIndex ++ (#237)
Use a local variable to hold the loop computation result.

Additional information: link

HELIUMINU.checkTxLimit(address,uint256) (#494-496) is never used and should be removed
Remove unused functions.

Additional information: link

HELIUMINU._maxTxAmount (#378) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 15 / 1000
HELIUMINU._walletMax (#379) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 15 / 1000
HELIUMINU.swapThreshold (#414) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 5 / 2000
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

Pragma version^0.7.4 (#16) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in HELIUMINU.swapBack() (#626-672):
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: amountBNBMarketing}() (#655)
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() (#76) is not in mixedCase
Parameter DividendDistributor.setRewardToken(address)._rewardToken (#269) is not in mixedCase
Variable DividendDistributor._token (#132) is not in mixedCase
Variable DividendDistributor.RewardToken (#142) is not in mixedCase
Parameter HELIUMINU.setRewardToken(address)._rewardToken (#551) is not in mixedCase
Constant HELIUMINU._name (#368) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HELIUMINU._symbol (#369) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HELIUMINU._decimals (#370) is not in UPPER_CASE_WITH_UNDERSCORES
Variable HELIUMINU.DEAD (#372) is not in mixedCase
Variable HELIUMINU.ZERO (#373) is not in mixedCase
Variable HELIUMINU.RewardToken (#375) is not in mixedCase
Variable HELIUMINU._totalSupply (#377) is not in mixedCase
Variable HELIUMINU._maxTxAmount (#378) is not in mixedCase
Variable HELIUMINU._walletMax (#379) is not in mixedCase
Variable HELIUMINU._balances (#383) is not in mixedCase
Variable HELIUMINU._allowances (#384) is not in mixedCase
Follow the Solidity naming convention.

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.


Telegram account has relatively few subscribers


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


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


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


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 code repository for the project


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for HINU

News for HINU