HELIUMX Token Logo

HEX [HELIUMX] Token

About HEX

Listings

Token 2 years

HELIUMX will build a strong foundation in crypto, and be building a successful Food processing business in Africa. Profit will be shared to the Holders. A mobile application will also be developed to connect Farmers, customers and buyers from all over the world.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

HELIUMX.addLiquidity(uint256,uint256) (#677-690) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#682-689)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in HELIUMX._transfer(address,address,uint256) (#541-614):
External calls:
- handle_fees(feeswap,currentTaxes) (#597)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#682-689)
- (success) = recipient.call{value: amount}() (#356)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#673)
- address(marketingWallet).sendValue(marketingAmt) (#643)
- address(devWallet).sendValue(devAmt) (#648)
- address(charityWallet).sendValue(charityAmt) (#653)
- address(buybackWallet).sendValue(buybackAmt) (#658)
External calls sending eth:
- handle_fees(feeswap,currentTaxes) (#597)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#682-689)
- (success) = recipient.call{value: amount}() (#356)
State variables written after the call(s):
- super._transfer(sender,recipient,amount - fee) (#600)
- _balances[sender] = senderBalance - amount (#265)
- _balances[recipient] += amount (#266)
- super._transfer(sender,address(this),feeAmount) (#605)
- _balances[sender] = senderBalance - amount (#265)
- _balances[recipient] += amount (#266)
- super._transfer(sender,lotteryWallet,amount * currentTaxes.lottery / 100) (#609)
- _balances[sender] = senderBalance - amount (#265)
- _balances[recipient] += amount (#266)
Apply the check-effects-interactions pattern.

Additional information: link

HELIUMX.rescueBEP20(address,uint256) (#783-785) ignores return value by IERC20(tokenAdd).transfer(devWallet,amount) (#784)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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

HELIUMX._transfer(address,address,uint256).fee (#571) is written in both
fee = 0 (#579)
fee = amount * feesum / 100 (#593)
Fix or remove the writes.

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.

HELIUMX.handle_fees(uint256,HELIUMX.Taxes) (#616-661) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#633)
-buybackAmt = unitBalance * 2 * swapTaxes.buyback (#656)
Consider ordering multiplication before division.

Additional information: link

HELIUMX._transfer(address,address,uint256).feeswap (#569) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

HELIUMX.addLiquidity(uint256,uint256) (#677-690) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#682-689)
Ensure that all the return values of the function calls are used.

Additional information: link

HELIUMX.updateMaxWalletlimit(uint256) (#775-777) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#776)
Emit an event for critical parameter changes.

Additional information: link

HELIUMX.updateBuybackWallet(address).newWallet (#736) lacks a zero-check on :
- buybackWallet = newWallet (#737)
Check that the address is not zero.

Additional information: link

Modifier HELIUMX.mutexLock() (#468-474) does not always execute _; or revert
All the paths in a modifier must execute _ or revert.

Additional information: link

Reentrancy in HELIUMX.transferFrom(address,address,uint256) (#512-520):
External calls:
- _transfer(sender,recipient,amount) (#513)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#682-689)
- (success) = recipient.call{value: amount}() (#356)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#673)
- address(marketingWallet).sendValue(marketingAmt) (#643)
- address(devWallet).sendValue(devAmt) (#648)
- address(charityWallet).sendValue(charityAmt) (#653)
- address(buybackWallet).sendValue(buybackAmt) (#658)
External calls sending eth:
- _transfer(sender,recipient,amount) (#513)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#682-689)
- (success) = recipient.call{value: amount}() (#356)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#517)
- _allowances[owner][spender] = amount (#331)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HELIUMX.transferFrom(address,address,uint256) (#512-520):
External calls:
- _transfer(sender,recipient,amount) (#513)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#682-689)
- (success) = recipient.call{value: amount}() (#356)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#673)
- address(marketingWallet).sendValue(marketingAmt) (#643)
- address(devWallet).sendValue(devAmt) (#648)
- address(charityWallet).sendValue(charityAmt) (#653)
- address(buybackWallet).sendValue(buybackAmt) (#658)
External calls sending eth:
- _transfer(sender,recipient,amount) (#513)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#682-689)
- (success) = recipient.call{value: amount}() (#356)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#332)
- _approve(sender,_msgSender(),currentAllowance - amount) (#517)
Apply the check-effects-interactions pattern.

Additional information: link

HELIUMX._transfer(address,address,uint256) (#541-614) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#561)
Avoid relying on block.timestamp.

Additional information: link

ERC20._burn(address,uint256) (#301-312) is never used and should be removed
Remove unused functions.

Additional information: link

solc-0.8.7 is not recommended for deployment
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 Address.sendValue(address,uint256) (#353-358):
- (success) = recipient.call{value: amount}() (#356)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable HELIUMX.genesis_block (#434) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#34)" inContext (#28-37)
Remove redundant statements if they congest code but offer no value.

Additional information: link

transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#383-386)
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.


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.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from 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 token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of 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 CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for HEX