Hyper Cheems Token Logo

Hyper Cheems Token

About Hyper Cheems

Listings

Not Found
Token 2 years

Description

Not Found

Social

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

HyperCheems.sendETHToFee(uint256) (#647-649) sends eth to arbitrary user
Dangerous calls:
- marketingAddress.transfer(amount) (#648)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in HyperCheems._transfer(address,address,uint256) (#588-635):
External calls:
- swapTokens(contractTokenBalance) (#622)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#662-668)
External calls sending eth:
- swapTokens(contractTokenBalance) (#622)
- marketingAddress.transfer(amount) (#648)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#793)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#709)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#718)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#729)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#739)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#710)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#720)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#730)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#741)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _rTotal = _rTotal.sub(rFee) (#748)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#795)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#738)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#728)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#719)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#740)
Apply the check-effects-interactions pattern.

Additional information: link

HyperCheems._transfer(address,address,uint256) (#588-635) uses a dangerous strict equality:
- block.timestamp == launchTime (#605)
Don't use strict equality to determine if an account has enough Ether or tokens.

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.

Contract ticker (Hyper Cheems) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Ownable._previousOwner (#146) is never used in HyperCheems (#389-893)
Ownable._lockTime (#147) is never used in HyperCheems (#389-893)
Remove unused state variables.

Additional information: link

HyperCheems.addLiquidity(uint256,uint256) (#674-687) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#679-686)
Ensure that all the return values of the function calls are used.

Additional information: link

HyperCheems.allowance(address,address).owner (#495) shadows:
- Ownable.owner() (#157-159) (function)
HyperCheems._approve(address,address,uint256).owner (#580) shadows:
- Ownable.owner() (#157-159) (function)
Rename the local variables that shadow another component.

Additional information: link

HyperCheems.includeInReward(address) (#567-578) has costly operations inside a loop:
- _excluded.pop() (#574)
HyperCheems._amnestySniper(address) (#870-880) has costly operations inside a loop:
- _confirmedSnipers.pop() (#876)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) is never used and should be removed
Address.functionCall(address,bytes) (#107-109) is never used and should be removed
Address.functionCall(address,bytes,string) (#111-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#119-122) is never used and should be removed
Address.isContract(address) (#87-96) is never used and should be removed
Address.sendValue(address,uint256) (#98-104) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
HyperCheems.addLiquidity(uint256,uint256) (#674-687) is never used and should be removed
HyperCheems.transferToAddressETH(address,uint256) (#855-857) is never used and should be removed
SafeMath.mod(uint256,uint256) (#75-77) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#79-82) is never used and should be removed
Remove unused functions.

Additional information: link

HyperCheems._rTotal (#405) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
HyperCheems._previousTaxFee (#411) is set pre-construction with a non-constant function or state variable:
- _taxFee
HyperCheems._previousLiquidityFee (#414) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#98-104):
- (success) = recipient.call{value: amount}() (#102)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#124-141):
- (success,returndata) = target.call{value: weiValue}(data) (#127)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#214) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#215) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#231) is not in mixedCase
Function IUniswapV2Router01.WETH() (#252) is not in mixedCase
Parameter HyperCheems.calculateTaxFee(uint256)._amount (#798) is not in mixedCase
Parameter HyperCheems.calculateLiquidityFee(uint256)._amount (#804) is not in mixedCase
Parameter HyperCheems.setMarketingAddress(address)._marketingAddress (#846) is not in mixedCase
Parameter HyperCheems.setRouter(address)._router (#850) is not in mixedCase
Function HyperCheems._removeSniper(address) (#863-868) is not in mixedCase
Function HyperCheems._amnestySniper(address) (#870-880) is not in mixedCase
Variable HyperCheems._taxFee (#410) is not in mixedCase
Variable HyperCheems._liquidityFee (#413) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in HyperCheems._transfer(address,address,uint256) (#588-635):
External calls:
- swapTokens(contractTokenBalance) (#622)
- marketingAddress.transfer(amount) (#648)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _liquidityFee = _previousLiquidityFee (#822)
- _liquidityFee = 0 (#817)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _previousLiquidityFee = _liquidityFee (#814)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _previousTaxFee = _taxFee (#813)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#793)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#709)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#718)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#729)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#739)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#710)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#720)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#730)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#741)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _rTotal = _rTotal.sub(rFee) (#748)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _tFeeTotal = _tFeeTotal.add(tFee) (#749)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#795)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#738)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#728)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#719)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#740)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _taxFee = _previousTaxFee (#821)
- _taxFee = 0 (#816)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#713)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- Transfer(sender,recipient,tTransferAmount) (#733)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- Transfer(sender,recipient,tTransferAmount) (#723)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- Transfer(sender,recipient,tTransferAmount) (#744)
- _tokenTransfer(from,to,amount,takeFee) (#634)
Reentrancy in HyperCheems.transferFrom(address,address,uint256) (#504-508):
External calls:
- _transfer(sender,recipient,amount) (#505)
- marketingAddress.transfer(amount) (#648)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#506)
- _allowances[owner][spender] = amount (#584)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#585)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#506)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#257) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#258)
Variable HyperCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#727) is too similar to HyperCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#727)
Variable HyperCheems._transferStandard(address,address,uint256).rTransferAmount (#708) is too similar to HyperCheems._transferToExcluded(address,address,uint256).tTransferAmount (#717)
Variable HyperCheems._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#769) is too similar to HyperCheems._getValues(uint256).tTransferAmount (#753)
Variable HyperCheems.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to HyperCheems._transferToExcluded(address,address,uint256).tTransferAmount (#717)
Variable HyperCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#737) is too similar to HyperCheems._getValues(uint256).tTransferAmount (#753)
Variable HyperCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#727) is too similar to HyperCheems._transferToExcluded(address,address,uint256).tTransferAmount (#717)
Variable HyperCheems._getValues(uint256).rTransferAmount (#754) is too similar to HyperCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#727)
Variable HyperCheems._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#769) is too similar to HyperCheems._transferStandard(address,address,uint256).tTransferAmount (#708)
Variable HyperCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#737) is too similar to HyperCheems._transferStandard(address,address,uint256).tTransferAmount (#708)
Variable HyperCheems._getValues(uint256).rTransferAmount (#754) is too similar to HyperCheems._transferToExcluded(address,address,uint256).tTransferAmount (#717)
Variable HyperCheems._transferStandard(address,address,uint256).rTransferAmount (#708) is too similar to HyperCheems._transferStandard(address,address,uint256).tTransferAmount (#708)
Variable HyperCheems._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#769) is too similar to HyperCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#737)
Variable HyperCheems._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#769) is too similar to HyperCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#727)
Variable HyperCheems._transferToExcluded(address,address,uint256).rTransferAmount (#717) is too similar to HyperCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#727)
Variable HyperCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#737) is too similar to HyperCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#737)
Variable HyperCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#737) is too similar to HyperCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#727)
Variable HyperCheems._transferStandard(address,address,uint256).rTransferAmount (#708) is too similar to HyperCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#727)
Variable HyperCheems._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#769) is too similar to HyperCheems._getTValues(uint256).tTransferAmount (#761)
Variable HyperCheems._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#769) is too similar to HyperCheems._transferToExcluded(address,address,uint256).tTransferAmount (#717)
Variable HyperCheems._transferToExcluded(address,address,uint256).rTransferAmount (#717) is too similar to HyperCheems._transferToExcluded(address,address,uint256).tTransferAmount (#717)
Variable HyperCheems.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to HyperCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#727)
Variable HyperCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#737) is too similar to HyperCheems._transferToExcluded(address,address,uint256).tTransferAmount (#717)
Variable HyperCheems._transferStandard(address,address,uint256).rTransferAmount (#708) is too similar to HyperCheems._getValues(uint256).tTransferAmount (#753)
Variable HyperCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#727) is too similar to HyperCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#737)
Variable HyperCheems._transferToExcluded(address,address,uint256).rTransferAmount (#717) is too similar to HyperCheems._transferStandard(address,address,uint256).tTransferAmount (#708)
Variable HyperCheems._transferToExcluded(address,address,uint256).rTransferAmount (#717) is too similar to HyperCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#737)
Variable HyperCheems._getValues(uint256).rTransferAmount (#754) is too similar to HyperCheems._getValues(uint256).tTransferAmount (#753)
Variable HyperCheems.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to HyperCheems._getTValues(uint256).tTransferAmount (#761)
Variable HyperCheems._transferStandard(address,address,uint256).rTransferAmount (#708) is too similar to HyperCheems._getTValues(uint256).tTransferAmount (#761)
Variable HyperCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#727) is too similar to HyperCheems._getValues(uint256).tTransferAmount (#753)
Variable HyperCheems._transferToExcluded(address,address,uint256).rTransferAmount (#717) is too similar to HyperCheems._getValues(uint256).tTransferAmount (#753)
Variable HyperCheems.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to HyperCheems._transferStandard(address,address,uint256).tTransferAmount (#708)
Variable HyperCheems.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to HyperCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#737)
Variable HyperCheems._getValues(uint256).rTransferAmount (#754) is too similar to HyperCheems._getTValues(uint256).tTransferAmount (#761)
Variable HyperCheems._transferStandard(address,address,uint256).rTransferAmount (#708) is too similar to HyperCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#737)
Variable HyperCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#737) is too similar to HyperCheems._getTValues(uint256).tTransferAmount (#761)
Variable HyperCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#727) is too similar to HyperCheems._getTValues(uint256).tTransferAmount (#761)
Variable HyperCheems._getValues(uint256).rTransferAmount (#754) is too similar to HyperCheems._transferStandard(address,address,uint256).tTransferAmount (#708)
Variable HyperCheems.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to HyperCheems._getValues(uint256).tTransferAmount (#753)
Variable HyperCheems._transferToExcluded(address,address,uint256).rTransferAmount (#717) is too similar to HyperCheems._getTValues(uint256).tTransferAmount (#761)
Variable HyperCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#727) is too similar to HyperCheems._transferStandard(address,address,uint256).tTransferAmount (#708)
Variable HyperCheems._getValues(uint256).rTransferAmount (#754) is too similar to HyperCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#737)
Prevent variables from having similar names.

Additional information: link

HyperCheems.slitherConstructorVariables() (#389-893) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#393)
HyperCheems.slitherConstructorVariables() (#389-893) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 9 (#404)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

HyperCheems._decimals (#409) should be constant
HyperCheems._name (#407) should be constant
HyperCheems._symbol (#408) should be constant
HyperCheems._tTotal (#404) should be constant
Ownable._lockTime (#147) should be constant
Ownable._previousOwner (#146) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#166-169)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#171-175)
name() should be declared external:
- HyperCheems.name() (#469-471)
symbol() should be declared external:
- HyperCheems.symbol() (#473-475)
decimals() should be declared external:
- HyperCheems.decimals() (#477-479)
totalSupply() should be declared external:
- HyperCheems.totalSupply() (#481-483)
transfer(address,uint256) should be declared external:
- HyperCheems.transfer(address,uint256) (#490-493)
allowance(address,address) should be declared external:
- HyperCheems.allowance(address,address) (#495-497)
approve(address,uint256) should be declared external:
- HyperCheems.approve(address,uint256) (#499-502)
transferFrom(address,address,uint256) should be declared external:
- HyperCheems.transferFrom(address,address,uint256) (#504-508)
increaseAllowance(address,uint256) should be declared external:
- HyperCheems.increaseAllowance(address,uint256) (#510-513)
decreaseAllowance(address,uint256) should be declared external:
- HyperCheems.decreaseAllowance(address,uint256) (#515-518)
isExcludedFromReward(address) should be declared external:
- HyperCheems.isExcludedFromReward(address) (#520-522)
totalFees() should be declared external:
- HyperCheems.totalFees() (#524-526)
deliver(uint256) should be declared external:
- HyperCheems.deliver(uint256) (#530-537)
reflectionFromToken(uint256,bool) should be declared external:
- HyperCheems.reflectionFromToken(uint256,bool) (#540-549)
excludeFromReward(address) should be declared external:
- HyperCheems.excludeFromReward(address) (#557-565)
isExcludedFromFee(address) should be declared external:
- HyperCheems.isExcludedFromFee(address) (#825-827)
excludeFromFee(address) should be declared external:
- HyperCheems.excludeFromFee(address) (#829-831)
includeInFee(address) should be declared external:
- HyperCheems.includeInFee(address) (#833-835)
isRemovedSniper(address) should be declared external:
- HyperCheems.isRemovedSniper(address) (#859-861)
Use the external attribute for functions never called from the contract.

Additional information: link

HyperCheems.setTaxFeePercent(uint256) (#837-839) should emit an event for:
- _taxFee = taxFee (#838)
HyperCheems.setLiquidityFeePercent(uint256) (#841-843) should emit an event for:
- _liquidityFee = liquidityFee (#842)
HyperCheems.setFeeRate(uint256) (#884-886) should emit an event for:
- _feeRate = rate (#885)
Emit an event for critical parameter changes.

Additional information: link

HyperCheems.setMarketingAddress(address)._marketingAddress (#846) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#847)
HyperCheems.setRouter(address)._router (#850) lacks a zero-check on :
- router = address(_router) (#851)
Check that the address is not zero.

Additional information: link

Reentrancy in HyperCheems._transfer(address,address,uint256) (#588-635):
External calls:
- swapTokens(contractTokenBalance) (#622)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#662-668)
External calls sending eth:
- swapTokens(contractTokenBalance) (#622)
- marketingAddress.transfer(amount) (#648)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _liquidityFee = _previousLiquidityFee (#822)
- _liquidityFee = 0 (#817)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _previousLiquidityFee = _liquidityFee (#814)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _previousTaxFee = _taxFee (#813)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _tFeeTotal = _tFeeTotal.add(tFee) (#749)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- _taxFee = _previousTaxFee (#821)
- _taxFee = 0 (#816)
Reentrancy in HyperCheems.initContract() (#448-459):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#450-451)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#455)
- _isExcludedFromFee[address(this)] = true (#456)
- uniswapV2Router = _uniswapV2Router (#453)
Reentrancy in HyperCheems.transferFrom(address,address,uint256) (#504-508):
External calls:
- _transfer(sender,recipient,amount) (#505)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#662-668)
External calls sending eth:
- _transfer(sender,recipient,amount) (#505)
- marketingAddress.transfer(amount) (#648)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#506)
- _allowances[owner][spender] = amount (#584)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HyperCheems._transfer(address,address,uint256) (#588-635):
External calls:
- swapTokens(contractTokenBalance) (#622)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#662-668)
External calls sending eth:
- swapTokens(contractTokenBalance) (#622)
- marketingAddress.transfer(amount) (#648)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#713)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- Transfer(sender,recipient,tTransferAmount) (#723)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- Transfer(sender,recipient,tTransferAmount) (#733)
- _tokenTransfer(from,to,amount,takeFee) (#634)
- Transfer(sender,recipient,tTransferAmount) (#744)
- _tokenTransfer(from,to,amount,takeFee) (#634)
Reentrancy in HyperCheems.swapTokensForEth(uint256) (#653-671):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#662-668)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#670)
Reentrancy in HyperCheems.transferFrom(address,address,uint256) (#504-508):
External calls:
- _transfer(sender,recipient,amount) (#505)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#662-668)
External calls sending eth:
- _transfer(sender,recipient,amount) (#505)
- marketingAddress.transfer(amount) (#648)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#585)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#506)
Apply the check-effects-interactions pattern.

Additional information: link

HyperCheems._transfer(address,address,uint256) (#588-635) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp == launchTime (#605)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#87-96) uses assembly
- INLINE ASM (#94)
Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) uses assembly
- INLINE ASM (#133-136)
Do not use evm assembly.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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.


Unable to find Twitter account


Telegram account has less than 100 subscribers


Unable to find Blog account (Reddit or Medium)


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


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 Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinHunt, CoinGecko, CoinMarketCap


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

Price for Hyper Cheems