HyperDoge Token Logo

HyperD [HyperDoge] Token

About HyperD

Listings

Token 2 years

An Innovative Deflationary Token with a Groundbreaking 3x Hyper Burn Mechanism, Unique Limited NFTs with its own Marketplace, Buyback Function, Auto Hyper Liquidity and KYCed + Audited. Made by a group of Experienced Team known for their Hyper Marketing and amazing community events! $HYPERD is a definite green Bullish project!

Social

Laser Scorebeta Last Audit: 20 February 2022

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

ReflectToken.addLiquidity(uint256,uint256) (#1537-1549) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ReflectToken._transfer(address,address,uint256) (#1659-1712):
External calls:
- processFees(getSwapAmount()) (#1681)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(_amount,0,path,address(this),block.timestamp) (#1528-1534)
External calls sending eth:
- processFees(getSwapAmount()) (#1681)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
State variables written after the call(s):
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- accumulatedLiquidityFee = accumulatedLiquidityFee.add(_values.tLiquidityFee) (#1381)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- accumulatedMarketingFee = accumulatedMarketingFee.add(_values.tMarketingFee) (#1389)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- accumulatedTeamFee = accumulatedTeamFee.add(_values.tTeamFee) (#1385)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- rTotal = rTotal.sub(_rFee) (#1615)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- userSender.rOwned = userSender.rOwned.sub(values.rAmount) (#1791)
- userSender.tOwned = userSender.tOwned.sub(_tAmount) (#1747)
- userSender.rOwned = userSender.rOwned.sub(values.rAmount) (#1770)
- userSender.tOwned = userSender.tOwned.sub(_tAmount) (#1813)
- userSender.rOwned = userSender.rOwned.sub(values.rAmount) (#1748)
- userSender.rOwned = userSender.rOwned.sub(values.rAmount) (#1814)
- user.tOwned = user.tOwned.add(_amount) (#1425)
- userRecipient.rOwned = userRecipient.rOwned.add(values.rTransferAmount) (#1774)
- userRecipient.tOwned = userRecipient.tOwned.add(values.tTransferAmount) (#1795)
- userRecipient.rOwned = userRecipient.rOwned.add(values.rTransferAmount) (#1818)
- userRecipient.rOwned = userRecipient.rOwned.add(values.rTransferAmount) (#1796)
- user.rOwned = user.rOwned.add(rAmount) (#1406)
- userRecipient.tOwned = userRecipient.tOwned.add(values.tTransferAmount) (#1752)
- userRecipient.rOwned = userRecipient.rOwned.add(values.rTransferAmount) (#1753)
- user.tOwned = user.tOwned.add(_tAmount) (#1409)
Reentrancy in ReflectToken.transferFrom(address,address,uint256) (#1647-1657):
External calls:
- _transfer(_sender,_recipient,_amount) (#1653)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(_amount,0,path,address(this),block.timestamp) (#1528-1534)
External calls sending eth:
- _transfer(_sender,_recipient,_amount) (#1653)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
State variables written after the call(s):
- _approve(_sender,msg.sender,allowances[_sender][msg.sender].sub(_amount)) (#1654)
- allowances[_owner][_spender] = _amount (#1079)
Apply the check-effects-interactions pattern.

Additional information: link

ReflectToken.emptyFees (#947) is never initialized. It is used in:
- ReflectToken._transfer(address,address,uint256) (#1659-1712)
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


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

Reentrancy in ReflectToken.constructor() (#979-1037):
External calls:
- routerPair = IERC20(IFactory(router.factory()).createPair(address(this),address(wBNB))) (#1001)
State variables written after the call(s):
- user.rOwned = rTotal (#1005)
- user.excludedFromFee = true (#1006)
- excludeFromReward(BURN_ADDRESS) (#1010)
- user.tOwned = tokenFromReflection(user.rOwned) (#1250)
- user.excludedFromReward = true (#1252)
Apply the check-effects-interactions pattern.

Additional information: link

ReflectToken.addLiquidity(uint256,uint256) (#1537-1549) ignores return value by router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
Ensure that all the return values of the function calls are used.

Additional information: link

ReflectToken.allowance(address,address)._owner (#1046) shadows:
- Ownable._owner (#570) (state variable)
ReflectToken._approve(address,address,uint256)._owner (#1070) shadows:
- Ownable._owner (#570) (state variable)
Rename the local variables that shadow another component.

Additional information: link

ReflectToken.setMaxFee(uint256) (#1118-1130) should emit an event for:
- maxFee = _fee (#1124)
ReflectToken.setMinTokenAmount(uint256) (#1132-1135) should emit an event for:
- minRemainingTokens = _tokens (#1134)
ReflectToken.setSwapTokensAtAmount(uint256,uint256) (#1137-1142) should emit an event for:
- swapTokensAtLow = _low (#1140)
- swapTokensAtHigh = _high (#1141)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in ReflectToken._transfer(address,address,uint256) (#1659-1712):
External calls:
- processFees(getSwapAmount()) (#1681)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(_amount,0,path,address(this),block.timestamp) (#1528-1534)
External calls sending eth:
- processFees(getSwapAmount()) (#1681)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
State variables written after the call(s):
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- tFeeTotal = tFeeTotal.add(_tFee) (#1616)
Reentrancy in ReflectToken.constructor() (#979-1037):
External calls:
- routerPair = IERC20(IFactory(router.factory()).createPair(address(this),address(wBNB))) (#1001)
State variables written after the call(s):
- buyFees = FeeInfo(300,200,0,300,0) (#1013-1020)
- excludeFromReward(BURN_ADDRESS) (#1010)
- excluded.push(_account) (#1253)
- p2pFees = FeeInfo(0,0,0,1000,0) (#1029-1036)
- sellFees = FeeInfo(500,200,0,400,200) (#1021-1028)
Reentrancy in ReflectToken.processFees(uint256) (#1337-1375):
External calls:
- swapForBNB(swapAmount) (#1358)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(_amount,0,path,address(this),block.timestamp) (#1528-1534)
- addLiquidity(liquidityHalfOther,remainingGainedBalance) (#1371)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
External calls sending eth:
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
- addLiquidity(liquidityHalfOther,remainingGainedBalance) (#1371)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
State variables written after the call(s):
- addLiquidity(liquidityHalfOther,remainingGainedBalance) (#1371)
- allowances[_owner][_spender] = _amount (#1079)
- inSwapAndLiquify = false (#1374)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ReflectToken._transfer(address,address,uint256) (#1659-1712):
External calls:
- processFees(getSwapAmount()) (#1681)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(_amount,0,path,address(this),block.timestamp) (#1528-1534)
External calls sending eth:
- processFees(getSwapAmount()) (#1681)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
Event emitted after the call(s):
- Transfer(sender,BURN_ADDRESS,_amount) (#1428)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- Transfer(_sender,_recipient,values.tTransferAmount) (#1781)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- Transfer(_sender,_recipient,values.tTransferAmount) (#1825)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- Transfer(_sender,_recipient,values.tTransferAmount) (#1803)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- Transfer(_sender,_recipient,values.tTransferAmount) (#1760)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- Transfer(_sender,_recipient,_tAmount) (#1413)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
Reentrancy in ReflectToken.constructor() (#979-1037):
External calls:
- routerPair = IERC20(IFactory(router.factory()).createPair(address(this),address(wBNB))) (#1001)
Event emitted after the call(s):
- Transfer(address(0),initialOwner,tTotal) (#1007)
Reentrancy in ReflectToken.processFees(uint256) (#1337-1375):
External calls:
- swapForBNB(swapAmount) (#1358)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(_amount,0,path,address(this),block.timestamp) (#1528-1534)
- addLiquidity(liquidityHalfOther,remainingGainedBalance) (#1371)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
External calls sending eth:
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
- addLiquidity(liquidityHalfOther,remainingGainedBalance) (#1371)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
Event emitted after the call(s):
- Approval(_owner,_spender,_amount) (#1080)
- addLiquidity(liquidityHalfOther,remainingGainedBalance) (#1371)
Reentrancy in ReflectToken.swapForBNB(uint256) (#1509-1517):
External calls:
- swapTokensForBNB(_amount) (#1513)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(_amount,0,path,address(this),block.timestamp) (#1528-1534)
Event emitted after the call(s):
- SwappedForBNB(_amount,newBalance) (#1516)
Reentrancy in ReflectToken.transferFrom(address,address,uint256) (#1647-1657):
External calls:
- _transfer(_sender,_recipient,_amount) (#1653)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(_amount,0,path,address(this),block.timestamp) (#1528-1534)
External calls sending eth:
- _transfer(_sender,_recipient,_amount) (#1653)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
Event emitted after the call(s):
- Approval(_owner,_spender,_amount) (#1080)
- _approve(_sender,msg.sender,allowances[_sender][msg.sender].sub(_amount)) (#1654)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#253-263) uses assembly
- INLINE ASM (#259-261)
Address._verifyCallResult(bool,bytes,string) (#416-436) uses assembly
- INLINE ASM (#428-431)
Do not use evm assembly.

Additional information: link

ReflectToken.includeInReward(address) (#1256-1274) has costly operations inside a loop:
- excluded.pop() (#1270)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#416-436) is never used and should be removed
Address.functionCall(address,bytes) (#306-308) is never used and should be removed
Address.functionCall(address,bytes,string) (#316-322) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#335-341) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#349-360) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#395-397) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#405-414) is never used and should be removed
Address.functionStaticCall(address,bytes) (#368-370) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#378-387) is never used and should be removed
Address.isContract(address) (#253-263) is never used and should be removed
Address.sendValue(address,uint256) (#281-286) is never used and should be removed
Context._msgData() (#550-552) is never used and should be removed
SafeERC20._callOptionalReturn(IERC20,bytes) (#520-530) is never used and should be removed
SafeERC20.safeApprove(IERC20,address,uint256) (#477-490) is never used and should be removed
SafeERC20.safeDecreaseAllowance(IERC20,address,uint256) (#501-512) is never used and should be removed
SafeERC20.safeIncreaseAllowance(IERC20,address,uint256) (#492-499) is never used and should be removed
SafeERC20.safeTransfer(IERC20,address,uint256) (#453-459) is never used and should be removed
SafeERC20.safeTransferFrom(IERC20,address,address,uint256) (#461-468) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#192-201) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#218-227) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#169-178) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#23-29) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#65-70) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#77-82) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#48-58) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#36-41) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version0.8.11 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 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) (#281-286):
- (success) = recipient.call{value: amount}() (#284)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#349-360):
- (success,returndata) = target.call{value: value}(data) (#358)
Low level call in Address.functionStaticCall(address,bytes,string) (#378-387):
- (success,returndata) = target.staticcall(data) (#385)
Low level call in Address.functionDelegateCall(address,bytes,string) (#405-414):
- (success,returndata) = target.delegatecall(data) (#412)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniRouterV1.WETH() (#708) is not in mixedCase
Struct ReflectToken.tFeeValues (#897-905) is not in CapWords
Parameter ReflectToken.allowance(address,address)._owner (#1046) is not in mixedCase
Parameter ReflectToken.allowance(address,address)._spender (#1046) is not in mixedCase
Parameter ReflectToken.approve(address,uint256)._spender (#1051) is not in mixedCase
Parameter ReflectToken.approve(address,uint256)._amount (#1051) is not in mixedCase
Parameter ReflectToken.increaseAllowance(address,uint256)._spender (#1057) is not in mixedCase
Parameter ReflectToken.increaseAllowance(address,uint256)._addedValue (#1057) is not in mixedCase
Parameter ReflectToken.decreaseAllowance(address,uint256)._spender (#1063) is not in mixedCase
Parameter ReflectToken.decreaseAllowance(address,uint256)._subtractedValue (#1063) is not in mixedCase
Parameter ReflectToken.preventBlacklisted(address,string)._account (#1083) is not in mixedCase
Parameter ReflectToken.preventBlacklisted(address,string)._errorMsg (#1083) is not in mixedCase
Parameter ReflectToken.setMaxFee(uint256)._fee (#1118) is not in mixedCase
Parameter ReflectToken.setMinTokenAmount(uint256)._tokens (#1132) is not in mixedCase
Parameter ReflectToken.setSwapTokensAtAmount(uint256,uint256)._low (#1137) is not in mixedCase
Parameter ReflectToken.setSwapTokensAtAmount(uint256,uint256)._high (#1137) is not in mixedCase
Parameter ReflectToken.setReflectionFee(int8,uint256)._feeType (#1144) is not in mixedCase
Parameter ReflectToken.setReflectionFee(int8,uint256)._fee (#1144) is not in mixedCase
Parameter ReflectToken.setLiquidityFee(int8,uint256)._feeType (#1150) is not in mixedCase
Parameter ReflectToken.setLiquidityFee(int8,uint256)._fee (#1150) is not in mixedCase
Parameter ReflectToken.setTeamFee(int8,uint256)._feeType (#1156) is not in mixedCase
Parameter ReflectToken.setTeamFee(int8,uint256)._fee (#1156) is not in mixedCase
Parameter ReflectToken.setMarketingFee(int8,uint256)._feeType (#1162) is not in mixedCase
Parameter ReflectToken.setMarketingFee(int8,uint256)._fee (#1162) is not in mixedCase
Parameter ReflectToken.setBurnFee(int8,uint256)._feeType (#1168) is not in mixedCase
Parameter ReflectToken.setBurnFee(int8,uint256)._fee (#1168) is not in mixedCase
Parameter ReflectToken.setAllFees(int8,uint256,uint256,uint256,uint256,uint256)._feeType (#1174) is not in mixedCase
Parameter ReflectToken.setAllFees(int8,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#1174) is not in mixedCase
Parameter ReflectToken.setAllFees(int8,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#1174) is not in mixedCase
Parameter ReflectToken.setAllFees(int8,uint256,uint256,uint256,uint256,uint256)._teamFee (#1174) is not in mixedCase
Parameter ReflectToken.setAllFees(int8,uint256,uint256,uint256,uint256,uint256)._marketingFee (#1174) is not in mixedCase
Parameter ReflectToken.setAllFees(int8,uint256,uint256,uint256,uint256,uint256)._burnFee (#1174) is not in mixedCase
Parameter ReflectToken.setTeamFeeAddress(address)._address (#1179) is not in mixedCase
Parameter ReflectToken.setMarketingFeeAddress(address)._address (#1186) is not in mixedCase
Parameter ReflectToken.updateRouterAndPair(IUniRouterV2,IERC20)._router (#1193) is not in mixedCase
Parameter ReflectToken.updateRouterAndPair(IUniRouterV2,IERC20)._routerPair (#1193) is not in mixedCase
Parameter ReflectToken.setSwapAndLiquifyEnabled(bool)._enabled (#1207) is not in mixedCase
Parameter ReflectToken.excludeFromFee(address)._account (#1217) is not in mixedCase
Parameter ReflectToken.includeInFee(address)._account (#1223) is not in mixedCase
Parameter ReflectToken.blacklistAddress(address)._account (#1229) is not in mixedCase
Parameter ReflectToken.unBlacklistAddress(address)._account (#1235) is not in mixedCase
Parameter ReflectToken.excludeFromReward(address)._account (#1241) is not in mixedCase
Parameter ReflectToken.includeInReward(address)._account (#1256) is not in mixedCase
Parameter ReflectToken.isExcludedFromFee(address)._account (#1280) is not in mixedCase
Parameter ReflectToken.isBlacklisted(address)._account (#1286) is not in mixedCase
Parameter ReflectToken.balanceOf(address)._account (#1292) is not in mixedCase
Parameter ReflectToken.isExcludedFromReward(address)._account (#1302) is not in mixedCase
Parameter ReflectToken.manualProcessFees(uint256)._amount (#1332) is not in mixedCase
Parameter ReflectToken.processFees(uint256)._amount (#1337) is not in mixedCase
Parameter ReflectToken.takeFees(address,ReflectToken.FeeValues)._sender (#1377) is not in mixedCase
Parameter ReflectToken.takeFees(address,ReflectToken.FeeValues)._values (#1377) is not in mixedCase
Parameter ReflectToken.takeFee(address,uint256,address)._sender (#1395) is not in mixedCase
Parameter ReflectToken.takeFee(address,uint256,address)._tAmount (#1395) is not in mixedCase
Parameter ReflectToken.takeFee(address,uint256,address)._recipient (#1395) is not in mixedCase
Parameter ReflectToken.takeBurn(address,uint256)._amount (#1416) is not in mixedCase
Parameter ReflectToken.calculateFee(uint256,uint256)._amount (#1431) is not in mixedCase
Parameter ReflectToken.calculateFee(uint256,uint256)._fee (#1431) is not in mixedCase
Parameter ReflectToken.checkFees(ReflectToken.FeeInfo)._info (#1444) is not in mixedCase
Parameter ReflectToken.getFees(int8)._feeType (#1455) is not in mixedCase
Parameter ReflectToken.setFees(int8,uint256,uint256,uint256,uint256,uint256)._feeType (#1468) is not in mixedCase
Parameter ReflectToken.setFees(int8,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#1468) is not in mixedCase
Parameter ReflectToken.setFees(int8,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#1468) is not in mixedCase
Parameter ReflectToken.setFees(int8,uint256,uint256,uint256,uint256,uint256)._teamFee (#1468) is not in mixedCase
Parameter ReflectToken.setFees(int8,uint256,uint256,uint256,uint256,uint256)._marketingFee (#1468) is not in mixedCase
Parameter ReflectToken.setFees(int8,uint256,uint256,uint256,uint256,uint256)._burnFee (#1468) is not in mixedCase
Parameter ReflectToken.swapForBNB(uint256)._amount (#1509) is not in mixedCase
Parameter ReflectToken.swapTokensForBNB(uint256)._amount (#1519) is not in mixedCase
Parameter ReflectToken.addLiquidity(uint256,uint256)._tokenAmount (#1537) is not in mixedCase
Parameter ReflectToken.addLiquidity(uint256,uint256)._bnbAmount (#1537) is not in mixedCase
Parameter ReflectToken.getValues(uint256,ReflectToken.FeeInfo)._tAmount (#1555) is not in mixedCase
Parameter ReflectToken.getValues(uint256,ReflectToken.FeeInfo)._fees (#1555) is not in mixedCase
Parameter ReflectToken.getTValues(uint256,ReflectToken.FeeInfo)._tAmount (#1575) is not in mixedCase
Parameter ReflectToken.getTValues(uint256,ReflectToken.FeeInfo)._fees (#1575) is not in mixedCase
Parameter ReflectToken.getRValues(uint256,uint256,uint256,uint256)._tAmount (#1591) is not in mixedCase
Parameter ReflectToken.getRValues(uint256,uint256,uint256,uint256)._tFee (#1591) is not in mixedCase
Parameter ReflectToken.getRValues(uint256,uint256,uint256,uint256)._tTransferFee (#1591) is not in mixedCase
Parameter ReflectToken.getRValues(uint256,uint256,uint256,uint256)._currentRate (#1591) is not in mixedCase
Parameter ReflectToken.tokenFromReflection(uint256)._rAmount (#1606) is not in mixedCase
Parameter ReflectToken.reflectFee(uint256,uint256)._rFee (#1613) is not in mixedCase
Parameter ReflectToken.reflectFee(uint256,uint256)._tFee (#1613) is not in mixedCase
Parameter ReflectToken.getTransferAmount(uint256,address)._amount (#1623) is not in mixedCase
Parameter ReflectToken.getTransferAmount(uint256,address)._from (#1623) is not in mixedCase
Parameter ReflectToken.transfer(address,uint256)._recipient (#1641) is not in mixedCase
Parameter ReflectToken.transfer(address,uint256)._amount (#1641) is not in mixedCase
Parameter ReflectToken.transferFrom(address,address,uint256)._sender (#1647) is not in mixedCase
Parameter ReflectToken.transferFrom(address,address,uint256)._recipient (#1647) is not in mixedCase
Parameter ReflectToken.transferFrom(address,address,uint256)._amount (#1647) is not in mixedCase
Parameter ReflectToken.tokenTransfer(address,address,uint256,ReflectToken.FeeInfo)._sender (#1714) is not in mixedCase
Parameter ReflectToken.tokenTransfer(address,address,uint256,ReflectToken.FeeInfo)._recipient (#1714) is not in mixedCase
Parameter ReflectToken.tokenTransfer(address,address,uint256,ReflectToken.FeeInfo)._amount (#1714) is not in mixedCase
Parameter ReflectToken.tokenTransfer(address,address,uint256,ReflectToken.FeeInfo)._fees (#1714) is not in mixedCase
Parameter ReflectToken.transferBothExcluded(address,address,uint256,ReflectToken.FeeInfo)._sender (#1740) is not in mixedCase
Parameter ReflectToken.transferBothExcluded(address,address,uint256,ReflectToken.FeeInfo)._recipient (#1740) is not in mixedCase
Parameter ReflectToken.transferBothExcluded(address,address,uint256,ReflectToken.FeeInfo)._tAmount (#1740) is not in mixedCase
Parameter ReflectToken.transferBothExcluded(address,address,uint256,ReflectToken.FeeInfo)._fees (#1740) is not in mixedCase
Parameter ReflectToken.transferStandard(address,address,uint256,ReflectToken.FeeInfo)._sender (#1763) is not in mixedCase
Parameter ReflectToken.transferStandard(address,address,uint256,ReflectToken.FeeInfo)._recipient (#1763) is not in mixedCase
Parameter ReflectToken.transferStandard(address,address,uint256,ReflectToken.FeeInfo)._tAmount (#1763) is not in mixedCase
Parameter ReflectToken.transferStandard(address,address,uint256,ReflectToken.FeeInfo)._fees (#1763) is not in mixedCase
Parameter ReflectToken.transferToExcluded(address,address,uint256,ReflectToken.FeeInfo)._sender (#1784) is not in mixedCase
Parameter ReflectToken.transferToExcluded(address,address,uint256,ReflectToken.FeeInfo)._recipient (#1784) is not in mixedCase
Parameter ReflectToken.transferToExcluded(address,address,uint256,ReflectToken.FeeInfo)._tAmount (#1784) is not in mixedCase
Parameter ReflectToken.transferToExcluded(address,address,uint256,ReflectToken.FeeInfo)._fees (#1784) is not in mixedCase
Parameter ReflectToken.transferFromExcluded(address,address,uint256,ReflectToken.FeeInfo)._sender (#1806) is not in mixedCase
Parameter ReflectToken.transferFromExcluded(address,address,uint256,ReflectToken.FeeInfo)._recipient (#1806) is not in mixedCase
Parameter ReflectToken.transferFromExcluded(address,address,uint256,ReflectToken.FeeInfo)._tAmount (#1806) is not in mixedCase
Parameter ReflectToken.transferFromExcluded(address,address,uint256,ReflectToken.FeeInfo)._fees (#1806) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in ReflectToken._transfer(address,address,uint256) (#1659-1712):
External calls:
- processFees(getSwapAmount()) (#1681)
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
External calls sending eth:
- processFees(getSwapAmount()) (#1681)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
State variables written after the call(s):
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- accumulatedLiquidityFee = accumulatedLiquidityFee.add(_values.tLiquidityFee) (#1381)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- accumulatedMarketingFee = accumulatedMarketingFee.add(_values.tMarketingFee) (#1389)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- accumulatedTeamFee = accumulatedTeamFee.add(_values.tTeamFee) (#1385)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- rTotal = rTotal.sub(_rFee) (#1615)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- tFeeTotal = tFeeTotal.add(_tFee) (#1616)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- userSender.rOwned = userSender.rOwned.sub(values.rAmount) (#1791)
- userSender.tOwned = userSender.tOwned.sub(_tAmount) (#1747)
- userSender.rOwned = userSender.rOwned.sub(values.rAmount) (#1770)
- userSender.tOwned = userSender.tOwned.sub(_tAmount) (#1813)
- userSender.rOwned = userSender.rOwned.sub(values.rAmount) (#1748)
- userSender.rOwned = userSender.rOwned.sub(values.rAmount) (#1814)
- user.tOwned = user.tOwned.add(_amount) (#1425)
- userRecipient.rOwned = userRecipient.rOwned.add(values.rTransferAmount) (#1774)
- userRecipient.tOwned = userRecipient.tOwned.add(values.tTransferAmount) (#1795)
- userRecipient.rOwned = userRecipient.rOwned.add(values.rTransferAmount) (#1818)
- userRecipient.rOwned = userRecipient.rOwned.add(values.rTransferAmount) (#1796)
- user.rOwned = user.rOwned.add(rAmount) (#1406)
- userRecipient.tOwned = userRecipient.tOwned.add(values.tTransferAmount) (#1752)
- userRecipient.rOwned = userRecipient.rOwned.add(values.rTransferAmount) (#1753)
- user.tOwned = user.tOwned.add(_tAmount) (#1409)
Event emitted after the call(s):
- Transfer(sender,BURN_ADDRESS,_amount) (#1428)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- Transfer(_sender,_recipient,values.tTransferAmount) (#1781)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- Transfer(_sender,_recipient,values.tTransferAmount) (#1825)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- Transfer(_sender,_recipient,values.tTransferAmount) (#1803)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- Transfer(_sender,_recipient,values.tTransferAmount) (#1760)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
- Transfer(_sender,_recipient,_tAmount) (#1413)
- tokenTransfer(_from,_to,transferAmount,fees) (#1711)
Reentrancy in ReflectToken.processFees(uint256) (#1337-1375):
External calls:
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
External calls sending eth:
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
- addLiquidity(liquidityHalfOther,remainingGainedBalance) (#1371)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
State variables written after the call(s):
- addLiquidity(liquidityHalfOther,remainingGainedBalance) (#1371)
- allowances[_owner][_spender] = _amount (#1079)
- inSwapAndLiquify = false (#1374)
Event emitted after the call(s):
- Approval(_owner,_spender,_amount) (#1080)
- addLiquidity(liquidityHalfOther,remainingGainedBalance) (#1371)
Reentrancy in ReflectToken.transferFrom(address,address,uint256) (#1647-1657):
External calls:
- _transfer(_sender,_recipient,_amount) (#1653)
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
External calls sending eth:
- _transfer(_sender,_recipient,_amount) (#1653)
- router.addLiquidityETH{value: _bnbAmount}(address(this),_tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- address(marketingFeeAddress).transfer(bnbForMarketing) (#1363)
- address(teamFeeAddress).transfer(bnbForTeam) (#1367)
State variables written after the call(s):
- _approve(_sender,msg.sender,allowances[_sender][msg.sender].sub(_amount)) (#1654)
- allowances[_owner][_spender] = _amount (#1079)
Event emitted after the call(s):
- Approval(_owner,_spender,_amount) (#1080)
- _approve(_sender,msg.sender,allowances[_sender][msg.sender].sub(_amount)) (#1654)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniRouterV1.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#713) is too similar to IUniRouterV1.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#714)
Variable ReflectToken.getRValues(uint256,uint256,uint256,uint256).rTransferFee (#1595) is too similar to ReflectToken.getValues(uint256,ReflectToken.FeeInfo).tTransferFee (#1558)
Prevent variables from having similar names.

Additional information: link

ReflectToken.constructor() (#979-1037) uses literals with too many digits:
- tTotal = 1000000000000000000000000000000000 (#988)
ReflectToken.slitherConstructorConstantVariables() (#861-1828) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (#920)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#603-605)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#611-614)
allowance(address,address) should be declared external:
- ReflectToken.allowance(address,address) (#1046-1049)
approve(address,uint256) should be declared external:
- ReflectToken.approve(address,uint256) (#1051-1055)
increaseAllowance(address,uint256) should be declared external:
- ReflectToken.increaseAllowance(address,uint256) (#1057-1061)
decreaseAllowance(address,uint256) should be declared external:
- ReflectToken.decreaseAllowance(address,uint256) (#1063-1068)
updateRouterAndPair(IUniRouterV2,IERC20) should be declared external:
- ReflectToken.updateRouterAndPair(IUniRouterV2,IERC20) (#1193-1205)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ReflectToken.setSwapAndLiquifyEnabled(bool) (#1207-1211)
includeInFee(address) should be declared external:
- ReflectToken.includeInFee(address) (#1223-1227)
blacklistAddress(address) should be declared external:
- ReflectToken.blacklistAddress(address) (#1229-1233)
unBlacklistAddress(address) should be declared external:
- ReflectToken.unBlacklistAddress(address) (#1235-1239)
isBlacklisted(address) should be declared external:
- ReflectToken.isBlacklisted(address) (#1286-1290)
totalFees() should be declared external:
- ReflectToken.totalFees() (#1312-1315)
transfer(address,uint256) should be declared external:
- ReflectToken.transfer(address,uint256) (#1641-1645)
transferFrom(address,address,uint256) should be declared external:
- ReflectToken.transferFrom(address,address,uint256) (#1647-1657)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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

Contract has 8% buy tax and 13% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Token is deployed only at one blockchain


Token has only one trading pair


Last post in Twitter was more than 30 days ago


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


Unable to find code repository for the project


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


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for HyperD

News for HyperD