PomeRocket Token Logo

POME [PomeRocket] Token

About POME

Listings

Token 2 years
white paper

We love pomeranian, this little dogs are really nice and very friendly. A lot of famous people have them in their homes. You will be rewarded with Doge. Also $POME has low taxes!, so most investors could be interested. You will love $POME!

Social

Laser Scorebeta Last Audit: 30 November 2021

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

PomeRocket.swapBnbForDoge(uint256) (PomeRocket.sol#543-556) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (PomeRocket.sol#550-555)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in PomeRocket._transfer(address,address,uint256) (PomeRocket.sol#334-400):
External calls:
- swapTokens(contractTokenBalance) (PomeRocket.sol#365)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (PomeRocket.sol#520-527)
- success = IERC20(DOGE).transfer(address(dividendTracker),dividends) (PomeRocket.sol#535)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (PomeRocket.sol#550-555)
- dividendTracker.distributeDOGEDividends(dividends) (PomeRocket.sol#538)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (PomeRocket.sol#503-509)
External calls sending eth:
- swapTokens(contractTokenBalance) (PomeRocket.sol#365)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (PomeRocket.sol#520-527)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (PomeRocket.sol#550-555)
- marketingWalletAddress.transfer(bnbForFees) (PomeRocket.sol#422)
- coreWalletAddress.transfer(bnbForFees) (PomeRocket.sol#425)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (PomeRocket.sol#383)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (PomeRocket.sol#386)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
Apply the check-effects-interactions pattern.

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.

PomeRocket.swapTokensOnDemand(bool,bool,bool) (PomeRocket.sol#435-491) performs a multiplication on the result of a division:
-dividendTokens = contractTokenBalance.mul(dividendsFee).div(totalFees) (PomeRocket.sol#461)
-bnbAmount_scope_1 = bnbReceived.mul(dividendTokens).div(tokensToSwap) (PomeRocket.sol#485)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in PomeRocket.updateDividendTracker(address) (PomeRocket.sol#138-154):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (PomeRocket.sol#145)
- newDividendTracker.excludeFromDividends(address(this)) (PomeRocket.sol#146)
- newDividendTracker.excludeFromDividends(owner()) (PomeRocket.sol#147)
- newDividendTracker.excludeFromDividends(deadWallet) (PomeRocket.sol#148)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (PomeRocket.sol#149)
State variables written after the call(s):
- dividendTracker = newDividendTracker (PomeRocket.sol#153)
Apply the check-effects-interactions pattern.

Additional information: link

PomeRocket._transfer(address,address,uint256).lastProcessedIndex (PomeRocket.sol#394) is a local variable never initialized
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

PomeRocket.addLiquidity(uint256,uint256) (PomeRocket.sol#514-530) ignores return value by uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (PomeRocket.sol#520-527)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#118) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.

Additional information: link

PomeRocketDividendTracker.setLastProcessedIndex(uint256) (PomeRocket.sol#609-611) should emit an event for:
- lastProcessedIndex = index (PomeRocket.sol#610)
Emit an event for critical parameter changes.

Additional information: link

PomeRocket.setAirdropAddress(address).wallet (PomeRocket.sol#192) lacks a zero-check on :
- airdropAddress = wallet (PomeRocket.sol#193)
Check that the address is not zero.

Additional information: link

Variable 'PomeRocket._transfer(address,address,uint256).iterations (PomeRocket.sol#394)' in PomeRocket._transfer(address,address,uint256) (PomeRocket.sol#334-400) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (PomeRocket.sol#395)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in PomeRocket.updateUniswapV2Router(address) (PomeRocket.sol#156-163):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (PomeRocket.sol#160-161)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (PomeRocket.sol#162)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in PomeRocket.updateDividendTracker(address) (PomeRocket.sol#138-154):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (PomeRocket.sol#145)
- newDividendTracker.excludeFromDividends(address(this)) (PomeRocket.sol#146)
- newDividendTracker.excludeFromDividends(owner()) (PomeRocket.sol#147)
- newDividendTracker.excludeFromDividends(deadWallet) (PomeRocket.sol#148)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (PomeRocket.sol#149)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (PomeRocket.sol#151)
Apply the check-effects-interactions pattern.

Additional information: link

PomeRocketDividendTracker.canAutoClaim(uint256) (PomeRocket.sol#685-691) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (PomeRocket.sol#686)
- block.timestamp.sub(lastClaimTime) >= claimWait (PomeRocket.sol#690)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

PomeRocket.totalFees (PomeRocket.sol#49) is set pre-construction with a non-constant function or state variable:
- dividendsFee.add(marketingFee).add(coreFee).add(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

Pragma version^0.6.2 (SafeMathUint.sol#3) 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

Parameter PomeRocketDividendTracker.getAccount(address)._account (PomeRocket.sol#621) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-25)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in PomeRocket.swapTokensOnDemand(bool,bool,bool) (PomeRocket.sol#435-491):
External calls:
- marketingWalletAddress.transfer(bnbAmount_scope_0) (PomeRocket.sol#477)
- coreWalletAddress.transfer(bnbAmount_scope_0) (PomeRocket.sol#480)
External calls sending eth:
- addLiquidity(liquidityTokens.sub(half),bnbAmount) (PomeRocket.sol#472)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (PomeRocket.sol#520-527)
- marketingWalletAddress.transfer(bnbAmount_scope_0) (PomeRocket.sol#477)
- coreWalletAddress.transfer(bnbAmount_scope_0) (PomeRocket.sol#480)
- swapAndSendDividends(bnbAmount_scope_1) (PomeRocket.sol#486)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (PomeRocket.sol#550-555)
State variables written after the call(s):
- swapping = false (PomeRocket.sol#490)
Event emitted after the call(s):
- SendDividends(dividends) (PomeRocket.sol#539)
- swapAndSendDividends(bnbAmount_scope_1) (PomeRocket.sol#486)
Apply the check-effects-interactions pattern.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#73) is too similar to PomeRocketDividendTracker.getAccount(address).withdrawableDividends (PomeRocket.sol#626)
Prevent variables from having similar names.

Additional information: link

PomeRocketDividendTracker.getAccountAtIndex(uint256) (PomeRocket.sol#666-683) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (PomeRocket.sol#677)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-92)
Remove unused state variables.

Additional information: link

PomeRocket.transferredOwner (PomeRocket.sol#33) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

process(uint256) should be declared external:
- PomeRocketDividendTracker.process(uint256) (PomeRocket.sol#710-755)
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.


Number of Binance Smart Chain (BSC) token holders is low.


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 Blog account (Reddit or Medium)


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 on CoinHunt

Additional information: link


Unable to find code repository for the project


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 CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for POME