POOROCKET Token Logo

POOROCKET Token

About POOROCKET

Listings

Token 2 years

Description

Not Found

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

Reentrancy in POOROCKET._transfer(address,address,uint256) (#948-997):
External calls:
- swapAndLiquify(contractTokenBalance) (#984)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1045-1052)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1031-1037)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#984)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1045-1052)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#996)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#904)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1087)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1078)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1098)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1079)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#817)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1099)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1089)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#819)
- _tokenTransfer(from,to,amount,takeFee) (#996)
- _rTotal = _rTotal.sub(rFee) (#859)
- _tokenTransfer(from,to,amount,takeFee) (#996)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#906)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#816)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1097)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1088)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#818)
Apply the check-effects-interactions pattern.

Additional information: link

POOROCKET.addLiquidity(uint256,uint256) (#1040-1053) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1045-1052)
Ensure that all the return values of the function calls are used.

Additional information: link

POOROCKET._approve(address,address,uint256).owner (#940) shadows:
- Ownable.owner() (#381-383) (function)
Rename the local variables that shadow another component.

Additional information: link

POOROCKET.setMaxTxPercent(uint256) (#841-845) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#842-844)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in POOROCKET.transferFrom(address,address,uint256) (#743-747):
External calls:
- _transfer(sender,recipient,amount) (#744)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1045-1052)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1031-1037)
External calls sending eth:
- _transfer(sender,recipient,amount) (#744)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1045-1052)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#745)
- _allowances[owner][spender] = amount (#944)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in POOROCKET.transferFrom(address,address,uint256) (#743-747):
External calls:
- _transfer(sender,recipient,amount) (#744)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1045-1052)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1031-1037)
External calls sending eth:
- _transfer(sender,recipient,amount) (#744)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1045-1052)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#945)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#745)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#428-433) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#430)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#338-359) uses assembly
- INLINE ASM (#351-354)
Do not use evm assembly.

Additional information: link

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

Additional information: link

POOROCKET._previousLiquidityFee (#664) 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._functionCallWithValue(address,bytes,uint256,string) (#338-359):
- (success,returndata) = target.call{value: weiValue}(data) (#342)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable POOROCKET._maxTxAmount (#673) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#222)" inContext (#216-225)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable POOROCKET._transferToExcluded(address,address,uint256).rTransferAmount (#1086) is too similar to POOROCKET._transferStandard(address,address,uint256).tTransferAmount (#1077)
Prevent variables from having similar names.

Additional information: link

POOROCKET.slitherConstructorVariables() (#638-1109) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#674)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

POOROCKET.numTokensSellToAddToLiquidity (#674) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- POOROCKET.isExcludedFromFee(address) (#936-938)
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.


Telegram account link seems to be invalid


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Token has a considerable age, but we're still unable to find its website


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


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


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death

Price for POOROCKET