PopDoge v2 Token Logo

PopDoge [PopDoge v2] Token

About PopDoge

Listings

Token 2 years
white paper

PopDoge which operates on Binance Smart Chain is the latest cryptocurrency that's a descendant of meme father Dogecoin.

Laser Scorebeta Last Audit: 2 December 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 PopDoge._transfer(address,address,uint256) (#626-664):
External calls:
- swapTokens(contractTokenBalance) (#644)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#693-699)
- buyBackTokens(balance.div(100)) (#652)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#711-716)
External calls sending eth:
- swapTokens(contractTokenBalance) (#644)
- recipient.transfer(amount) (#937)
- buyBackTokens(balance.div(100)) (#652)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#711-716)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#663)
- _liquidityFee = _previousLiquidityFee (#869)
- _liquidityFee = 0 (#864)
- _tokenTransfer(from,to,amount,takeFee) (#663)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#840)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#756)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#765)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#776)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#786)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#757)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#767)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#777)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#788)
- _tokenTransfer(from,to,amount,takeFee) (#663)
- _rTotal = _rTotal.sub(rFee) (#795)
- _tokenTransfer(from,to,amount,takeFee) (#663)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#842)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#785)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#775)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#766)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#787)
- buyBackTokens(balance.div(100)) (#652)
- inSwapAndLiquify = true (#480)
- inSwapAndLiquify = false (#482)
Apply the check-effects-interactions pattern.

Additional information: link

PopDoge.swapTokens(uint256) (#666-675) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#673)
Consider ordering multiplication before division.

Additional information: link

PopDoge.addLiquidity(uint256,uint256) (#721-734) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#726-733)
Ensure that all the return values of the function calls are used.

Additional information: link

PopDoge._approve(address,address,uint256).owner (#618) shadows:
- Ownable.owner() (#161-163) (function)
Rename the local variables that shadow another component.

Additional information: link

PopDoge.setBuybackUpperLimit(uint256) (#904-906) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#905)
Emit an event for critical parameter changes.

Additional information: link

PopDoge.setMarketingAddress(address)._marketingAddress (#908) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#909)
Check that the address is not zero.

Additional information: link

Reentrancy in PopDoge.transferFrom(address,address,uint256) (#536-540):
External calls:
- _transfer(sender,recipient,amount) (#537)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#711-716)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#693-699)
External calls sending eth:
- _transfer(sender,recipient,amount) (#537)
- recipient.transfer(amount) (#937)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#711-716)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#538)
- _allowances[owner][spender] = amount (#622)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in PopDoge.transferFrom(address,address,uint256) (#536-540):
External calls:
- _transfer(sender,recipient,amount) (#537)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#711-716)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#693-699)
External calls sending eth:
- _transfer(sender,recipient,amount) (#537)
- recipient.transfer(amount) (#937)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#711-716)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#623)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#538)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#128-145) uses assembly
- INLINE ASM (#137-140)
Do not use evm assembly.

Additional information: link

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

Additional information: link

PopDoge._previousLiquidityFee (#444) 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

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

Additional information: link

Variable PopDoge._maxTxAmount (#448) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#15)" inContext (#9-18)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in PopDoge.transferFrom(address,address,uint256) (#536-540):
External calls:
- _transfer(sender,recipient,amount) (#537)
- recipient.transfer(amount) (#937)
External calls sending eth:
- _transfer(sender,recipient,amount) (#537)
- recipient.transfer(amount) (#937)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#711-716)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#538)
- _allowances[owner][spender] = amount (#622)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#623)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#538)
Apply the check-effects-interactions pattern.

Additional information: link

Variable PopDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#784) is too similar to PopDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#784)
Prevent variables from having similar names.

Additional information: link

PopDoge.slitherConstructorVariables() (#415-943) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#420)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

PopDoge.deadAddress (#420) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setBuyBackEnabled(bool) should be declared external:
- PopDoge.setBuyBackEnabled(bool) (#917-920)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is low.


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


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


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 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 contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for PopDoge