HyperChain X Token Logo

HYPER [HyperChain X] Token

ALERT: honeypot scam

About HYPER

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinGecko] alert: HYPER has recently migrated from their old contract to V3. For more information, visit https://medium.com/@ninja_krypto/hyperchain-x-version-iii-8123cd28a0ea
white paper

Hyperchain X is the world’s first community driven token in gaming. The goal is to create a crypto gaming platform with an all-in-one application consisting of elements like: buy-in tournaments, 1 vs 1 high stake battles, league creation options for esport teams, live streams and an NFT marketplace that is unseen in this space. We see that there is a need for a dedicated gaming platform where gamers can feel at home, and we at HyperChain X are fulfilling this dream. We will also be creating our own mobile game for android/iOS with in-game NFTS. All purchases in our game and platform will be built on $HYPER tokens.

Laser Scorebeta Last Audit: 16 September 2022

report
Token seems to be a scam (type: honeypot scam).

Anti-Scam

Links


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

Reentrancy in HyperchainX._transfer(address,address,uint256) (#889-1049):
External calls:
- swapAndLiquify(contractTokenBalance) (#1036)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1036)
- address(_marketingWallet).transfer(marketingBNB) (#1065)
- address(_buybackWallet).transfer(buybackBNB) (#1068)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1213)
- _rOwned[address(_communityRewardsWallet)] = _rOwned[address(_communityRewardsWallet)].add(rLiquidity) (#1217)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1128)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1137)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1158)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1148)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1129)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1149)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1139)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1160)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _rTotal = _rTotal.sub(rFee) (#1167)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1215)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1147)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1157)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1138)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1159)
- _tOwned[address(_communityRewardsWallet)] = _tOwned[address(_communityRewardsWallet)].add(tLiquidity) (#1221)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable._lockTime (#413) is never initialized. It is used in:
- Ownable.geUnlockTime() (#451-453)
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


Contract ownership is not renounced (belongs to a wallet)

HyperchainX._transfer(address,address,uint256) (#889-1049) performs a multiplication on the result of a division:
-sellnumber[from] == 0 && amount <= balanceOf(uniswapV2Pair).div(10000).mul(_impact1) (#963)
HyperchainX._transfer(address,address,uint256) (#889-1049) performs a multiplication on the result of a division:
-require(bool)(amount <= balanceOf(uniswapV2Pair).div(10000).mul(_impact1)) (#964)
HyperchainX._transfer(address,address,uint256) (#889-1049) performs a multiplication on the result of a division:
-sellnumber[from] < _maxSellAttempts && amount <= balanceOf(uniswapV2Pair).div(10000).mul(_impact1) (#983)
HyperchainX._transfer(address,address,uint256) (#889-1049) performs a multiplication on the result of a division:
-require(bool)(amount <= balanceOf(uniswapV2Pair).div(10000).mul(_impact2)) (#974)
HyperchainX._transfer(address,address,uint256) (#889-1049) performs a multiplication on the result of a division:
-require(bool)(amount <= balanceOf(uniswapV2Pair).div(10000).mul(_impact1)) (#984)
HyperchainX._transfer(address,address,uint256) (#889-1049) performs a multiplication on the result of a division:
-require(bool)(amount <= balanceOf(uniswapV2Pair).div(10000).mul(_impact2)) (#993)
HyperchainX._transfer(address,address,uint256) (#889-1049) performs a multiplication on the result of a division:
-sellnumber[from] == _maxSellAttempts && amount <= balanceOf(uniswapV2Pair).div(10000).mul(_impact1) (#1001)
HyperchainX._transfer(address,address,uint256) (#889-1049) performs a multiplication on the result of a division:
-require(bool)(amount <= balanceOf(uniswapV2Pair).div(10000).mul(_impact1)) (#1002)
HyperchainX._transfer(address,address,uint256) (#889-1049) performs a multiplication on the result of a division:
-require(bool)(amount <= balanceOf(uniswapV2Pair).div(10000).mul(_impact2)) (#1011)
HyperchainX.swapAndLiquify(uint256) (#1050-1072) performs a multiplication on the result of a division:
-marketingBNB = BalanceBNB.div(100).mul(_marketingFee) (#1061)
HyperchainX.swapAndLiquify(uint256) (#1050-1072) performs a multiplication on the result of a division:
-buybackBNB = BalanceBNB.div(100).mul(_buybackFee) (#1062)
Consider ordering multiplication before division.

Additional information: link

HyperchainX.addLiquidity(uint256,uint256) (#1091-1103) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Ensure that all the return values of the function calls are used.

Additional information: link

HyperchainX.allowance(address,address).owner (#832) shadows:
- Ownable.owner() (#429-431) (function)
HyperchainX._approve(address,address,uint256).owner (#881) shadows:
- Ownable.owner() (#429-431) (function)
Rename the local variables that shadow another component.

Additional information: link

HyperchainX.F01_setMarketingFee(uint256) (#1281-1283) should emit an event for:
- _marketingFee = marketingfee (#1282)
HyperchainX.F02_setBuyBackfee(uint256) (#1284-1286) should emit an event for:
- _buybackFee = buybackfee (#1285)
HyperchainX.F06_setBuyTaxfee(uint256) (#1287-1289) should emit an event for:
- _buyTaxFee = buyTaxFee (#1288)
HyperchainX.F07_setTaxFee(uint256) (#1290-1292) should emit an event for:
- _taxFee = taxFee (#1291)
HyperchainX.F08_setProjectFee(uint256) (#1293-1295) should emit an event for:
- _liquidityFee = ProjectFee (#1294)
HyperchainX.F09_setSellTaxFeeA(uint256) (#1296-1298) should emit an event for:
- _sellTaxFeeA = sellTaxFeeA (#1297)
HyperchainX.F10_setSellTaxFeeB(uint256) (#1299-1301) should emit an event for:
- _sellTaxFeeB = sellTaxFeeB (#1300)
HyperchainX.F11_setTransferTaxFee(uint256) (#1302-1304) should emit an event for:
- _transferTaxFee = transferTaxFee (#1303)
HyperchainX.F12_setBuyProjectFee(uint256) (#1305-1307) should emit an event for:
- _buyLiquidityFee = buyProjectFee (#1306)
HyperchainX.F13_setSellProjectFeeA(uint256) (#1308-1310) should emit an event for:
- _sellLiquidityFeeA = sellProjectFeeA (#1309)
HyperchainX.F14_setSellProjectFeeB(uint256) (#1311-1313) should emit an event for:
- _sellLiquidityFeeB = sellProjectFeeB (#1312)
HyperchainX.F15_setTransferProjectFee(uint256) (#1314-1316) should emit an event for:
- _transferLiquidityFee = transferProjectFee (#1315)
HyperchainX.F16_setExchangeTaxFee(uint256) (#1317-1319) should emit an event for:
- _exchangeTaxFee = exchangeTaxFee (#1318)
HyperchainX.F17_setExchangeProjectFee(uint256) (#1320-1322) should emit an event for:
- _exchangeLiquidityFee = exchangeProjectFee (#1321)
HyperchainX.I1_setImpact1(uint256) (#1323-1325) should emit an event for:
- _impact1 = impact1 (#1324)
HyperchainX.I2_setImpact2(uint256) (#1326-1328) should emit an event for:
- _impact2 = impact2 (#1327)
HyperchainX.I3_setMaxSellAttempts(uint256) (#1329-1331) should emit an event for:
- _maxSellAttempts = maxSellAttempts (#1330)
HyperchainX.I4_setSellWindow(uint256) (#1332-1334) should emit an event for:
- _sell_Window = sell_Window (#1333)
HyperchainX.I5_setSellInitialWait(uint256) (#1335-1337) should emit an event for:
- _sell_InitialWait = sell_InitialWait (#1336)
HyperchainX.I6_setSellFurtherWait(uint256) (#1338-1340) should emit an event for:
- _sell_FurtherWait = sell_FurtherWait (#1339)
Emit an event for critical parameter changes.

Additional information: link

HyperchainX.W1_setMarketingWallet(address)._address (#1397) lacks a zero-check on :
- _marketingWallet = _address (#1398)
HyperchainX.W2_setBuybackWallet(address)._address (#1400) lacks a zero-check on :
- _buybackWallet = _address (#1401)
HyperchainX.W3_setCommunityrewardsWallet(address)._address (#1403) lacks a zero-check on :
- _communityRewardsWallet = _address (#1404)
HyperchainX.W3_setMigrationsWallet(address)._address (#1406) lacks a zero-check on :
- _migrationWallet = _address (#1407)
Check that the address is not zero.

Additional information: link

Reentrancy in HyperchainX._transfer(address,address,uint256) (#889-1049):
External calls:
- swapAndLiquify(contractTokenBalance) (#1036)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1036)
- address(_marketingWallet).transfer(marketingBNB) (#1065)
- address(_buybackWallet).transfer(buybackBNB) (#1068)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _liquidityFee = _previousLiquidityFee (#1255)
- _liquidityFee = 0 (#1250)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _previousLiquidityFee = _liquidityFee (#1247)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _previousTaxFee = _taxFee (#1246)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1168)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _taxFee = _previousTaxFee (#1254)
- _taxFee = 0 (#1249)
Reentrancy in HyperchainX.constructor() (#780-804):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#786-787)
State variables written after the call(s):
- _buybackWallet = msg.sender (#800)
- _communityRewardsWallet = msg.sender (#799)
- _isExcludedFromFee[owner()] = true (#793)
- _isExcludedFromFee[address(this)] = true (#794)
- _marketingWallet = msg.sender (#798)
- _migrationWallet = msg.sender (#801)
- startDate = block.timestamp + 20700 (#796)
- uniswapV2Router = _uniswapV2Router (#790)
Reentrancy in HyperchainX.transferFrom(address,address,uint256) (#841-845):
External calls:
- _transfer(sender,recipient,amount) (#842)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- _transfer(sender,recipient,amount) (#842)
- address(_marketingWallet).transfer(marketingBNB) (#1065)
- address(_buybackWallet).transfer(buybackBNB) (#1068)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#843)
- _allowances[owner][spender] = amount (#885)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HyperchainX._transfer(address,address,uint256) (#889-1049):
External calls:
- swapAndLiquify(contractTokenBalance) (#1036)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1036)
- address(_marketingWallet).transfer(marketingBNB) (#1065)
- address(_buybackWallet).transfer(buybackBNB) (#1068)
Event emitted after the call(s):
- TokensSentToCommunityWallet(_communityRewardsWallet,rLiquidity) (#1218)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- TokensSentToCommunityWallet(_communityRewardsWallet,tLiquidity) (#1222)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#1132)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#1152)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#1142)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#1163)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
Reentrancy in HyperchainX.constructor() (#780-804):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#786-787)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#803)
Reentrancy in HyperchainX.swapAndLiquify(uint256) (#1050-1072):
External calls:
- swapTokensForBNB(tokensbeforeSwap) (#1056)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- address(_marketingWallet).transfer(marketingBNB) (#1065)
- address(_buybackWallet).transfer(buybackBNB) (#1068)
Event emitted after the call(s):
- SwapAndLiquify(tokensbeforeSwap,_marketingWallet,marketingBNB,_buybackWallet,buybackBNB) (#1070)
Reentrancy in HyperchainX.transferFrom(address,address,uint256) (#841-845):
External calls:
- _transfer(sender,recipient,amount) (#842)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- _transfer(sender,recipient,amount) (#842)
- address(_marketingWallet).transfer(marketingBNB) (#1065)
- address(_buybackWallet).transfer(buybackBNB) (#1068)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#886)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#843)
Apply the check-effects-interactions pattern.

Additional information: link

HyperchainX._transfer(address,address,uint256) (#889-1049) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(buy_AllowedTime[to] < block.timestamp,Anti-bots enabled: The waiting period is 1 minute) (#923)
- require(bool)(sell_AllowedTime[from] < block.timestamp) (#958)
- firstsell[from] + _sell_Window < block.timestamp (#959)
HyperchainX.calculateTaxFee(uint256,address) (#1226-1235) uses timestamp for comparisons
Dangerous comparisons:
- startDate > block.timestamp || _taxFee == 0 || to != address(uniswapV2Pair) (#1227)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#281-290) uses assembly
- INLINE ASM (#288)
Address._functionCallWithValue(address,bytes,uint256,string) (#374-395) uses assembly
- INLINE ASM (#387-390)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#374-395) is never used and should be removed
Address.functionCall(address,bytes) (#334-336) is never used and should be removed
Address.functionCall(address,bytes,string) (#344-346) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#359-361) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#369-372) is never used and should be removed
Address.isContract(address) (#281-290) is never used and should be removed
Address.sendValue(address,uint256) (#308-314) is never used and should be removed
Context._msgData() (#21-24) is never used and should be removed
HyperchainX.addLiquidity(uint256,uint256) (#1091-1103) is never used and should be removed
SafeMath.mod(uint256,uint256) (#238-240) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#254-257) is never used and should be removed
Remove unused functions.

Additional information: link

HyperchainX._tTotal (#692) is set pre-construction with a non-constant function or state variable:
- 1000000000000 * 10 ** _decimals
HyperchainX._rTotal (#693) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
HyperchainX._previousTaxFee (#703) is set pre-construction with a non-constant function or state variable:
- _taxFee
HyperchainX._previousLiquidityFee (#706) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
HyperchainX._maxTxAmount (#745) is set pre-construction with a non-constant function or state variable:
- _tTotal
HyperchainX.minTokensBeforeSwap (#757) is set pre-construction with a non-constant function or state variable:
- 30000000 * 10 ** _decimals
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 Address.sendValue(address,uint256) (#308-314):
- (success) = recipient.call{value: amount}() (#312)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#374-395):
- (success,returndata) = target.call{value: weiValue}(data) (#378)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function Ownable.Z_transferOwnership(address) (#445-449) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#492) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#493) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#510) is not in mixedCase
Function IUniswapV2Router01.WETH() (#532) is not in mixedCase
Parameter HyperchainX.calculateTaxFee(uint256,address)._amount (#1226) is not in mixedCase
Parameter HyperchainX.calculateLiquidityFee(uint256)._amount (#1237) is not in mixedCase
Function HyperchainX.A_setMaxTxPercent(uint256) (#1264-1267) is not in mixedCase
Function HyperchainX.E1_enableFees(bool) (#1268-1270) is not in mixedCase
Function HyperchainX.E2_enable_ProjectFunding(bool) (#1271-1274) is not in mixedCase
Function HyperchainX.E3_enableAntiDump(bool) (#1275-1277) is not in mixedCase
Function HyperchainX.E4_enableTrading(bool) (#1278-1280) is not in mixedCase
Function HyperchainX.F01_setMarketingFee(uint256) (#1281-1283) is not in mixedCase
Function HyperchainX.F02_setBuyBackfee(uint256) (#1284-1286) is not in mixedCase
Function HyperchainX.F06_setBuyTaxfee(uint256) (#1287-1289) is not in mixedCase
Function HyperchainX.F07_setTaxFee(uint256) (#1290-1292) is not in mixedCase
Function HyperchainX.F08_setProjectFee(uint256) (#1293-1295) is not in mixedCase
Parameter HyperchainX.F08_setProjectFee(uint256).ProjectFee (#1293) is not in mixedCase
Function HyperchainX.F09_setSellTaxFeeA(uint256) (#1296-1298) is not in mixedCase
Function HyperchainX.F10_setSellTaxFeeB(uint256) (#1299-1301) is not in mixedCase
Function HyperchainX.F11_setTransferTaxFee(uint256) (#1302-1304) is not in mixedCase
Function HyperchainX.F12_setBuyProjectFee(uint256) (#1305-1307) is not in mixedCase
Function HyperchainX.F13_setSellProjectFeeA(uint256) (#1308-1310) is not in mixedCase
Function HyperchainX.F14_setSellProjectFeeB(uint256) (#1311-1313) is not in mixedCase
Function HyperchainX.F15_setTransferProjectFee(uint256) (#1314-1316) is not in mixedCase
Function HyperchainX.F16_setExchangeTaxFee(uint256) (#1317-1319) is not in mixedCase
Function HyperchainX.F17_setExchangeProjectFee(uint256) (#1320-1322) is not in mixedCase
Function HyperchainX.I1_setImpact1(uint256) (#1323-1325) is not in mixedCase
Function HyperchainX.I2_setImpact2(uint256) (#1326-1328) is not in mixedCase
Function HyperchainX.I3_setMaxSellAttempts(uint256) (#1329-1331) is not in mixedCase
Function HyperchainX.I4_setSellWindow(uint256) (#1332-1334) is not in mixedCase
Parameter HyperchainX.I4_setSellWindow(uint256).sell_Window (#1332) is not in mixedCase
Function HyperchainX.I5_setSellInitialWait(uint256) (#1335-1337) is not in mixedCase
Parameter HyperchainX.I5_setSellInitialWait(uint256).sell_InitialWait (#1335) is not in mixedCase
Function HyperchainX.I6_setSellFurtherWait(uint256) (#1338-1340) is not in mixedCase
Parameter HyperchainX.I6_setSellFurtherWait(uint256).sell_FurtherWait (#1338) is not in mixedCase
Function HyperchainX.S01_includeInFee(address) (#1341-1343) is not in mixedCase
Function HyperchainX.S02_excludeFromFee(address) (#1344-1346) is not in mixedCase
Function HyperchainX.S03_includeInReward(address) (#1347-1358) is not in mixedCase
Function HyperchainX.S04_excludeFromReward(address) (#1359-1367) is not in mixedCase
Function HyperchainX.S05_addToBlacklist(address) (#1368-1371) is not in mixedCase
Parameter HyperchainX.S05_addToBlacklist(address)._address (#1368) is not in mixedCase
Function HyperchainX.S06_removeFromBlacklist(address) (#1372-1375) is not in mixedCase
Parameter HyperchainX.S06_removeFromBlacklist(address)._address (#1372) is not in mixedCase
Function HyperchainX.S07_addAllowedExchange(address) (#1376-1379) is not in mixedCase
Parameter HyperchainX.S07_addAllowedExchange(address)._address (#1376) is not in mixedCase
Function HyperchainX.S08_removeAllowedExchange(address) (#1380-1383) is not in mixedCase
Parameter HyperchainX.S08_removeAllowedExchange(address)._address (#1380) is not in mixedCase
Function HyperchainX.S09_isAllowedExchange(address) (#1384-1386) is not in mixedCase
Parameter HyperchainX.S09_isAllowedExchange(address)._address (#1384) is not in mixedCase
Function HyperchainX.S10_addBridge(address,bool,uint256,uint256) (#1387-1391) is not in mixedCase
Parameter HyperchainX.S10_addBridge(address,bool,uint256,uint256)._address (#1387) is not in mixedCase
Parameter HyperchainX.S10_addBridge(address,bool,uint256,uint256).Allowed_Bridges (#1387) is not in mixedCase
Parameter HyperchainX.S10_addBridge(address,bool,uint256,uint256).liq_fee (#1387) is not in mixedCase
Parameter HyperchainX.S10_addBridge(address,bool,uint256,uint256).tax_fee (#1387) is not in mixedCase
Function HyperchainX.S11_removeBridge(address) (#1392-1396) is not in mixedCase
Parameter HyperchainX.S11_removeBridge(address)._address (#1392) is not in mixedCase
Function HyperchainX.W1_setMarketingWallet(address) (#1397-1399) is not in mixedCase
Parameter HyperchainX.W1_setMarketingWallet(address)._address (#1397) is not in mixedCase
Function HyperchainX.W2_setBuybackWallet(address) (#1400-1402) is not in mixedCase
Parameter HyperchainX.W2_setBuybackWallet(address)._address (#1400) is not in mixedCase
Function HyperchainX.W3_setCommunityrewardsWallet(address) (#1403-1405) is not in mixedCase
Parameter HyperchainX.W3_setCommunityrewardsWallet(address)._address (#1403) is not in mixedCase
Function HyperchainX.W3_setMigrationsWallet(address) (#1406-1408) is not in mixedCase
Parameter HyperchainX.W3_setMigrationsWallet(address)._address (#1406) is not in mixedCase
Parameter HyperchainX.getAllowedBridges(address)._address (#1409) is not in mixedCase
Parameter HyperchainX.getBridgeLiquidityFee(address)._address (#1412) is not in mixedCase
Parameter HyperchainX.getBridgeTaxFee(address)._address (#1415) is not in mixedCase
Function HyperchainX.get_HodlingDuration(address) (#1418-1424) is not in mixedCase
Variable HyperchainX._marketingWallet (#683) is not in mixedCase
Variable HyperchainX._buybackWallet (#684) is not in mixedCase
Variable HyperchainX._communityRewardsWallet (#685) is not in mixedCase
Variable HyperchainX._migrationWallet (#686) is not in mixedCase
Variable HyperchainX._impact1 (#699) is not in mixedCase
Variable HyperchainX._impact2 (#700) is not in mixedCase
Variable HyperchainX._taxFee (#702) is not in mixedCase
Variable HyperchainX._liquidityFee (#705) is not in mixedCase
Variable HyperchainX._buyLiquidityFee (#708) is not in mixedCase
Variable HyperchainX._buyTaxFee (#709) is not in mixedCase
Variable HyperchainX._sellLiquidityFeeA (#710) is not in mixedCase
Variable HyperchainX._sellLiquidityFeeB (#711) is not in mixedCase
Variable HyperchainX._sellTaxFeeA (#712) is not in mixedCase
Variable HyperchainX._sellTaxFeeB (#713) is not in mixedCase
Variable HyperchainX._transferLiquidityFee (#714) is not in mixedCase
Variable HyperchainX._transferTaxFee (#715) is not in mixedCase
Variable HyperchainX._exchangeLiquidityFee (#716) is not in mixedCase
Variable HyperchainX._exchangeTaxFee (#717) is not in mixedCase
Variable HyperchainX._marketingFee (#718) is not in mixedCase
Variable HyperchainX._buybackFee (#719) is not in mixedCase
Variable HyperchainX._maxSellAttempts (#722) is not in mixedCase
Variable HyperchainX._sell_Window (#724) is not in mixedCase
Variable HyperchainX._sell_InitialWait (#725) is not in mixedCase
Variable HyperchainX._sell_FurtherWait (#726) is not in mixedCase
Variable HyperchainX.buy_AllowedTime (#729) is not in mixedCase
Variable HyperchainX.sell_AllowedTime (#730) is not in mixedCase
Variable HyperchainX.HodlingStartTime (#733) is not in mixedCase
Variable HyperchainX.AllowedExchanges (#735) is not in mixedCase
Variable HyperchainX.BridgeLiquidityFee (#736) is not in mixedCase
Variable HyperchainX.BridgeTaxFee (#737) is not in mixedCase
Variable HyperchainX.AllowedBridges (#738) is not in mixedCase
Variable HyperchainX._maxTxAmount (#745) is not in mixedCase
Variable HyperchainX.ProjectFundingEnabled (#755) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#22)" inContext (#16-25)
Redundant expression "restoreAllFee (#1048)" inHyperchainX (#670-1429)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in HyperchainX._transfer(address,address,uint256) (#889-1049):
External calls:
- swapAndLiquify(contractTokenBalance) (#1036)
- address(_marketingWallet).transfer(marketingBNB) (#1065)
- address(_buybackWallet).transfer(buybackBNB) (#1068)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _liquidityFee = _previousLiquidityFee (#1255)
- _liquidityFee = 0 (#1250)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _previousLiquidityFee = _liquidityFee (#1247)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _previousTaxFee = _taxFee (#1246)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1213)
- _rOwned[address(_communityRewardsWallet)] = _rOwned[address(_communityRewardsWallet)].add(rLiquidity) (#1217)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1128)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1137)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1158)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1148)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1129)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1149)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1139)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1160)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _rTotal = _rTotal.sub(rFee) (#1167)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1168)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1215)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1147)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1157)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1138)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1159)
- _tOwned[address(_communityRewardsWallet)] = _tOwned[address(_communityRewardsWallet)].add(tLiquidity) (#1221)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _taxFee = _previousTaxFee (#1254)
- _taxFee = 0 (#1249)
Event emitted after the call(s):
- TokensSentToCommunityWallet(_communityRewardsWallet,rLiquidity) (#1218)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- TokensSentToCommunityWallet(_communityRewardsWallet,tLiquidity) (#1222)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#1132)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#1152)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#1142)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#1163)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
Reentrancy in HyperchainX.swapAndLiquify(uint256) (#1050-1072):
External calls:
- address(_marketingWallet).transfer(marketingBNB) (#1065)
- address(_buybackWallet).transfer(buybackBNB) (#1068)
Event emitted after the call(s):
- SwapAndLiquify(tokensbeforeSwap,_marketingWallet,marketingBNB,_buybackWallet,buybackBNB) (#1070)
Reentrancy in HyperchainX.transferFrom(address,address,uint256) (#841-845):
External calls:
- _transfer(sender,recipient,amount) (#842)
- address(_marketingWallet).transfer(marketingBNB) (#1065)
- address(_buybackWallet).transfer(buybackBNB) (#1068)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#843)
- _allowances[owner][spender] = amount (#885)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#886)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#843)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#537) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#538)
Variable HyperchainX._sellLiquidityFeeA (#710) is too similar to HyperchainX._sellLiquidityFeeB (#711)
Variable HyperchainX._sellTaxFeeA (#712) is too similar to HyperchainX._sellTaxFeeB (#713)
Variable HyperchainX.reflectionFromToken(uint256,bool,address).rTransferAmount (#871) is too similar to HyperchainX._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable HyperchainX._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to HyperchainX._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable HyperchainX._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to HyperchainX._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable HyperchainX._getValues(uint256,address).rTransferAmount (#1173) is too similar to HyperchainX._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable HyperchainX._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to HyperchainX._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable HyperchainX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1188) is too similar to HyperchainX._getValues(uint256,address).tTransferAmount (#1172)
Variable HyperchainX._getValues(uint256,address).rTransferAmount (#1173) is too similar to HyperchainX._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable HyperchainX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1188) is too similar to HyperchainX._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable HyperchainX._transferBothExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to HyperchainX._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable HyperchainX._transferBothExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to HyperchainX._transferBothExcluded(address,address,uint256).tTransferAmount (#1156)
Variable HyperchainX.reflectionFromToken(uint256,bool,address).rTransferAmount (#871) is too similar to HyperchainX._getValues(uint256,address).tTransferAmount (#1172)
Variable HyperchainX.reflectionFromToken(uint256,bool,address).rTransferAmount (#871) is too similar to HyperchainX._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable HyperchainX._transferBothExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to HyperchainX._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable HyperchainX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1188) is too similar to HyperchainX._getTValues(uint256,address).tTransferAmount (#1180)
Variable HyperchainX._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to HyperchainX._getValues(uint256,address).tTransferAmount (#1172)
Variable HyperchainX._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to HyperchainX._getValues(uint256,address).tTransferAmount (#1172)
Variable HyperchainX._getValues(uint256,address).rTransferAmount (#1173) is too similar to HyperchainX._getValues(uint256,address).tTransferAmount (#1172)
Variable HyperchainX._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to HyperchainX._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable HyperchainX._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to HyperchainX._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable HyperchainX._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to HyperchainX._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable HyperchainX._transferBothExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to HyperchainX._getValues(uint256,address).tTransferAmount (#1172)
Variable HyperchainX._transferBothExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to HyperchainX._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable HyperchainX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1188) is too similar to HyperchainX._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable HyperchainX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1188) is too similar to HyperchainX._transferBothExcluded(address,address,uint256).tTransferAmount (#1156)
Variable HyperchainX._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to HyperchainX._getValues(uint256,address).tTransferAmount (#1172)
Variable HyperchainX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1188) is too similar to HyperchainX._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable HyperchainX.reflectionFromToken(uint256,bool,address).rTransferAmount (#871) is too similar to HyperchainX._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable HyperchainX._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to HyperchainX._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable HyperchainX.F13_setSellProjectFeeA(uint256).sellProjectFeeA (#1308) is too similar to HyperchainX.F14_setSellProjectFeeB(uint256).sellProjectFeeB (#1311)
Variable HyperchainX.F09_setSellTaxFeeA(uint256).sellTaxFeeA (#1296) is too similar to HyperchainX.F10_setSellTaxFeeB(uint256).sellTaxFeeB (#1299)
Variable HyperchainX.reflectionFromToken(uint256,bool,address).rTransferAmount (#871) is too similar to HyperchainX._transferBothExcluded(address,address,uint256).tTransferAmount (#1156)
Variable HyperchainX._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to HyperchainX._transferBothExcluded(address,address,uint256).tTransferAmount (#1156)
Variable HyperchainX._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to HyperchainX._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable HyperchainX.reflectionFromToken(uint256,bool,address).rTransferAmount (#871) is too similar to HyperchainX._getTValues(uint256,address).tTransferAmount (#1180)
Variable HyperchainX._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to HyperchainX._transferBothExcluded(address,address,uint256).tTransferAmount (#1156)
Variable HyperchainX._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to HyperchainX._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable HyperchainX._getValues(uint256,address).rTransferAmount (#1173) is too similar to HyperchainX._transferBothExcluded(address,address,uint256).tTransferAmount (#1156)
Variable HyperchainX._getValues(uint256,address).rTransferAmount (#1173) is too similar to HyperchainX._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable HyperchainX._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to HyperchainX._getTValues(uint256,address).tTransferAmount (#1180)
Variable HyperchainX._transferBothExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to HyperchainX._getTValues(uint256,address).tTransferAmount (#1180)
Variable HyperchainX._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to HyperchainX._getTValues(uint256,address).tTransferAmount (#1180)
Variable HyperchainX._getValues(uint256,address).rTransferAmount (#1173) is too similar to HyperchainX._getTValues(uint256,address).tTransferAmount (#1180)
Variable HyperchainX._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to HyperchainX._transferBothExcluded(address,address,uint256).tTransferAmount (#1156)
Variable HyperchainX._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to HyperchainX._getTValues(uint256,address).tTransferAmount (#1180)
Prevent variables from having similar names.

Additional information: link

HyperchainX.slitherConstructorVariables() (#670-1429) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** _decimals (#692)
HyperchainX.slitherConstructorVariables() (#670-1429) uses literals with too many digits:
- _taxFee = 100000 (#702)
HyperchainX.slitherConstructorVariables() (#670-1429) uses literals with too many digits:
- _liquidityFee = 400000 (#705)
HyperchainX.slitherConstructorVariables() (#670-1429) uses literals with too many digits:
- _buyLiquidityFee = 400000 (#708)
HyperchainX.slitherConstructorVariables() (#670-1429) uses literals with too many digits:
- _buyTaxFee = 100000 (#709)
HyperchainX.slitherConstructorVariables() (#670-1429) uses literals with too many digits:
- _sellLiquidityFeeA = 800000 (#710)
HyperchainX.slitherConstructorVariables() (#670-1429) uses literals with too many digits:
- _sellLiquidityFeeB = 1600000 (#711)
HyperchainX.slitherConstructorVariables() (#670-1429) uses literals with too many digits:
- _sellTaxFeeA = 200000 (#712)
HyperchainX.slitherConstructorVariables() (#670-1429) uses literals with too many digits:
- _sellTaxFeeB = 400000 (#713)
HyperchainX.slitherConstructorVariables() (#670-1429) uses literals with too many digits:
- _transferLiquidityFee = 400000 (#714)
HyperchainX.slitherConstructorVariables() (#670-1429) uses literals with too many digits:
- _transferTaxFee = 100000 (#715)
HyperchainX.slitherConstructorVariables() (#670-1429) uses literals with too many digits:
- minTokensBeforeSwap = 30000000 * 10 ** _decimals (#757)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#412) is never used in HyperchainX (#670-1429)
Remove unused state variables.

Additional information: link

HyperchainX._decimals (#689) should be constant
HyperchainX._name (#696) should be constant
HyperchainX._symbol (#697) should be constant
Ownable._lockTime (#413) should be constant
Ownable._previousOwner (#412) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Z_transferOwnership(address) should be declared external:
- Ownable.Z_transferOwnership(address) (#445-449)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#451-453)
name() should be declared external:
- HyperchainX.name() (#806-808)
symbol() should be declared external:
- HyperchainX.symbol() (#810-812)
decimals() should be declared external:
- HyperchainX.decimals() (#814-816)
totalSupply() should be declared external:
- HyperchainX.totalSupply() (#818-820)
transfer(address,uint256) should be declared external:
- HyperchainX.transfer(address,uint256) (#827-830)
allowance(address,address) should be declared external:
- HyperchainX.allowance(address,address) (#832-834)
approve(address,uint256) should be declared external:
- HyperchainX.approve(address,uint256) (#836-839)
transferFrom(address,address,uint256) should be declared external:
- HyperchainX.transferFrom(address,address,uint256) (#841-845)
increaseAllowance(address,uint256) should be declared external:
- HyperchainX.increaseAllowance(address,uint256) (#847-850)
decreaseAllowance(address,uint256) should be declared external:
- HyperchainX.decreaseAllowance(address,uint256) (#852-855)
isExcludedFromReward(address) should be declared external:
- HyperchainX.isExcludedFromReward(address) (#857-859)
totalFees() should be declared external:
- HyperchainX.totalFees() (#861-863)
reflectionFromToken(uint256,bool,address) should be declared external:
- HyperchainX.reflectionFromToken(uint256,bool,address) (#865-874)
isExcludedFromFee(address) should be declared external:
- HyperchainX.isExcludedFromFee(address) (#1258-1260)
checkAntiDumpEnabled() should be declared external:
- HyperchainX.checkAntiDumpEnabled() (#1261-1263)
E2_enable_ProjectFunding(bool) should be declared external:
- HyperchainX.E2_enable_ProjectFunding(bool) (#1271-1274)
S01_includeInFee(address) should be declared external:
- HyperchainX.S01_includeInFee(address) (#1341-1343)
S02_excludeFromFee(address) should be declared external:
- HyperchainX.S02_excludeFromFee(address) (#1344-1346)
S04_excludeFromReward(address) should be declared external:
- HyperchainX.S04_excludeFromReward(address) (#1359-1367)
S05_addToBlacklist(address) should be declared external:
- HyperchainX.S05_addToBlacklist(address) (#1368-1371)
S06_removeFromBlacklist(address) should be declared external:
- HyperchainX.S06_removeFromBlacklist(address) (#1372-1375)
S07_addAllowedExchange(address) should be declared external:
- HyperchainX.S07_addAllowedExchange(address) (#1376-1379)
S08_removeAllowedExchange(address) should be declared external:
- HyperchainX.S08_removeAllowedExchange(address) (#1380-1383)
S09_isAllowedExchange(address) should be declared external:
- HyperchainX.S09_isAllowedExchange(address) (#1384-1386)
S10_addBridge(address,bool,uint256,uint256) should be declared external:
- HyperchainX.S10_addBridge(address,bool,uint256,uint256) (#1387-1391)
S11_removeBridge(address) should be declared external:
- HyperchainX.S11_removeBridge(address) (#1392-1396)
W1_setMarketingWallet(address) should be declared external:
- HyperchainX.W1_setMarketingWallet(address) (#1397-1399)
W2_setBuybackWallet(address) should be declared external:
- HyperchainX.W2_setBuybackWallet(address) (#1400-1402)
W3_setCommunityrewardsWallet(address) should be declared external:
- HyperchainX.W3_setCommunityrewardsWallet(address) (#1403-1405)
W3_setMigrationsWallet(address) should be declared external:
- HyperchainX.W3_setMigrationsWallet(address) (#1406-1408)
getAllowedBridges(address) should be declared external:
- HyperchainX.getAllowedBridges(address) (#1409-1411)
getBridgeLiquidityFee(address) should be declared external:
- HyperchainX.getBridgeLiquidityFee(address) (#1412-1414)
getBridgeTaxFee(address) should be declared external:
- HyperchainX.getBridgeTaxFee(address) (#1415-1417)
get_HodlingDuration(address) should be declared external:
- HyperchainX.get_HodlingDuration(address) (#1418-1424)
Use the external attribute for functions never called from the contract.

Additional information: link

HyperchainX.S03_includeInReward(address) (#1347-1358) has costly operations inside a loop:
- _excluded.pop() (#1354)
Use a local variable to hold the loop computation result.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.


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


Token is deployed only at one blockchain


Twitter account has relatively few followers


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


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has a considerable age, but social accounts / website are missing or have few users


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for HYPER

News for HYPER