RHP Token Logo

XRHP [RHP] Token

About XRHP

Listings

Token 3 years
white paper

Redefining tokenomics and offering a full serviced product for a 360° experience in the crypto environment

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

Reentrancy in RHP._transfer(address,address,uint256) (#1094-1137):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1105)
- swapAndLiquify(contractTokenBalance) (#1122)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1211-1219)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1195-1203)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1122)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1211-1219)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1136)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#996)
- _rOwned[burnWallet] = _rOwned[burnWallet].add(rBurn) (#1020)
- _rOwned[charityWallet] = _rOwned[charityWallet].add(rCharity) (#1012)
- _rOwned[xHowWallet] = _rOwned[xHowWallet].add(rXHow) (#1004)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1290)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1277)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1305)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#886)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1278)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1292)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1306)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#888)
- _tokenTransfer(from,to,amount,takeFee) (#1136)
- _rTotal = _rTotal.sub(rFee) (#936)
- _tokenTransfer(from,to,amount,takeFee) (#1136)
- _tOwned[xHowWallet] = _tOwned[xHowWallet].add(tXHow) (#1006)
- _tOwned[burnWallet] = _tOwned[burnWallet].add(tBurn) (#1022)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#998)
- _tOwned[charityWallet] = _tOwned[charityWallet].add(tCharity) (#1014)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1304)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#885)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1291)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#887)
Apply the check-effects-interactions pattern.

Additional information: link

RHP._time (#683) is never initialized. It is used in:
- RHP._validateTransfer(address,address,uint256,bool) (#1139-1155)
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

RHP.addLiquidity(uint256,uint256) (#1206-1220) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1211-1219)
Ensure that all the return values of the function calls are used.

Additional information: link

RHP._approve(address,address,uint256).owner (#1086) shadows:
- Ownable.owner() (#415-417) (function)
Rename the local variables that shadow another component.

Additional information: link

RHP.updateSellLimit(uint256) (#1315-1317) should emit an event for:
- sellLimit = limit (#1316)
Emit an event for critical parameter changes.

Additional information: link

RHP.changeBurnWallet(address).newWallet (#918) lacks a zero-check on :
- burnWallet = newWallet (#919)
Check that the address is not zero.

Additional information: link

Reentrancy in RHP.transferFrom(address,address,uint256) (#807-811):
External calls:
- _transfer(sender,recipient,amount) (#808)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1211-1219)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1195-1203)
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1105)
External calls sending eth:
- _transfer(sender,recipient,amount) (#808)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1211-1219)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#809)
- _allowances[owner][spender] = amount (#1090)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in RHP.transferFrom(address,address,uint256) (#807-811):
External calls:
- _transfer(sender,recipient,amount) (#808)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1211-1219)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1195-1203)
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1105)
External calls sending eth:
- _transfer(sender,recipient,amount) (#808)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1211-1219)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1091)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#809)
Apply the check-effects-interactions pattern.

Additional information: link

RHP._validateTransfer(address,address,uint256,bool) (#1139-1155) uses timestamp for comparisons
Dangerous comparisons:
- _time[sender] + 86400 <= now (#1148)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#369-390) uses assembly
- INLINE ASM (#382-385)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.5.0', '^0.6.12']
- ^0.6.12 (#13)
- >=0.5.0 (#657)
Use one Solidity version.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#237-240) is never used and should be removed
Remove unused functions.

Additional information: link

RHP._previousBurnFee (#712) is set pre-construction with a non-constant function or state variable:
- _burnFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

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

Additional information: link

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#369-390):
- (success,returndata) = target.call{value: weiValue}(data) (#373)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable RHP._burnFee (#711) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#249)" inContext (#243-252)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable RHP._transferToExcluded(address,address,uint256).rTransferAmount (#1288) is too similar to RHP._transferStandard(address,address,uint256).tTransferAmount (#1275)
Prevent variables from having similar names.

Additional information: link

RHP.slitherConstructorVariables() (#670-1319) uses literals with too many digits:
- walletLimit = 1000000000000000000 (#715)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

RHP._sellTime (#682) is never used in RHP (#670-1319)
Remove unused state variables.

Additional information: link

RHP._tTotal (#687) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- RHP.isExcludedFromFee(address) (#1082-1084)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


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

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Young tokens have high risks of price dump / death


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for XRHP