Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in POPTIGER._transfer(address,address,uint256) (#362-415):
External calls:
- swapBack() (#402)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#447-453)
External calls sending eth:
- swapBack() (#402)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
- address(marketingWallet).transfer(address(this).balance) (#433)
State variables written after the call(s):
- balances[to] += transferAmount (#413)
- swapping = false (#403)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
POPTIGER._transfer(address,address,uint256).takeFee (#380) 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
Context._msgData() (#82-85) is never used and should be removed
SafeMath.add(uint256,uint256) (#26-31) is never used and should be removed
SafeMath.mod(uint256,uint256) (#67-69) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#71-74) is never used and should be removed
Remove unused functions.
Additional information: link
Function IUniswapV2Router02.WETH() (#128) is not in mixedCase
Function POPTIGER.POPS() (#287-292) is not in mixedCase
Constant POPTIGER._name (#166) is not in UPPER_CASE_WITH_UNDERSCORES
Constant POPTIGER._symbol (#167) is not in UPPER_CASE_WITH_UNDERSCORES
Constant POPTIGER._decimals (#168) is not in UPPER_CASE_WITH_UNDERSCORES
Variable POPTIGER._maxWalletAmount (#171) is not in mixedCase
Variable POPTIGER._maxTxAmount (#172) is not in mixedCase
Variable POPTIGER._buyCooldown (#194) is not in mixedCase
Variable POPTIGER.Blacklisted (#196) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#83)" inContext (#77-86)
Remove redundant statements if they congest code but offer no value.
Additional information: link
POPTIGER.slitherConstructorVariables() (#156-469) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** _decimals (#169)
POPTIGER.slitherConstructorVariables() (#156-469) uses literals with too many digits:
- _maxWalletAmount = 3000000000000 * 10 ** _decimals (#171)
POPTIGER.slitherConstructorVariables() (#156-469) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** _decimals (#172)
POPTIGER.slitherConstructorVariables() (#156-469) uses literals with too many digits:
- swapTokenAtAmount = 1250000000 * 10 ** _decimals (#173)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
POPTIGER.liquidityFee (#191) is never used in POPTIGER (#156-469)
POPTIGER.marketingFee (#192) is never used in POPTIGER (#156-469)
Remove unused state variables.
Additional information: link
POPTIGER._tTotal (#169) should be constant
POPTIGER.liquidityFee (#191) should be constant
POPTIGER.marketingFee (#192) should be constant
POPTIGER.marketingWallet (#176) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
POPTIGER.swapBack() (#418-434) performs a multiplication on the result of a division:
-liquidityTokens = contractBalance * (buyFee.liquidity + sellFee.liquidity) / (buyFee.marketing + buyFee.liquidity + sellFee.marketing + sellFee.liquidity) (#420)
-ethForLiquidity = ethBalance.mul(liquidityTokens).div(totalTokensToSwap) (#430)
Consider ordering multiplication before division.
Additional information: link
POPTIGER.addLiquidity(uint256,uint256) (#456-467) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
Ensure that all the return values of the function calls are used.
Additional information: link
POPTIGER.allowance(address,address).owner (#252) shadows:
- Ownable.owner() (#99-101) (function)
POPTIGER._approve(address,address,uint256).owner (#316) shadows:
- Ownable.owner() (#99-101) (function)
Rename the local variables that shadow another component.
Additional information: link
POPTIGER.setBuyCooldown(uint256) (#335-337) should emit an event for:
- _buyCooldown = cooldownInSeconds (#336)
POPTIGER.setMaxTxPercent(uint256) (#339-342) should emit an event for:
- _maxTxAmount = _tTotal.mul(newMaxTxPercent).div(10 ** 2) (#341)
POPTIGER.setMaxWalletPercent(uint256) (#344-347) should emit an event for:
- _maxWalletAmount = _tTotal.mul(newMaxWalletPercent).div(10 ** 2) (#346)
POPTIGER.setSwapTokenAtAmountPermille(uint256) (#349-351) should emit an event for:
- swapTokenAtAmount = _tTotal.mul(newSwapTokenAmountPermille).div(10 ** 3) (#350)
Emit an event for critical parameter changes.
Additional information: link
POPTIGER.setLiquidityReceiver(address).newLiqReceiver (#353) lacks a zero-check on :
- liquidityReceiver = newLiqReceiver (#354)
Check that the address is not zero.
Additional information: link
Reentrancy in POPTIGER.constructor() (#205-225):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#215)
State variables written after the call(s):
- _isExcludedFromFee[msg.sender] = true (#221)
- _isExcludedFromFee[address(this)] = true (#222)
- liquidityReceiver = msg.sender (#220)
- uniswapV2Pair = _uniswapV2Pair (#218)
- uniswapV2Router = _uniswapV2Router (#217)
Reentrancy in POPTIGER.swapBack() (#418-434):
External calls:
- swapTokensForEth(amountToSwapForETH) (#427)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#447-453)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#432)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
External calls sending eth:
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#432)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
State variables written after the call(s):
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#432)
- _allowances[owner][spender] = amount (#320)
Reentrancy in POPTIGER.transferFrom(address,address,uint256) (#261-265):
External calls:
- _transfer(sender,recipient,amount) (#262)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#447-453)
External calls sending eth:
- _transfer(sender,recipient,amount) (#262)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
- address(marketingWallet).transfer(address(this).balance) (#433)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#263)
- _allowances[owner][spender] = amount (#320)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in POPTIGER._transfer(address,address,uint256) (#362-415):
External calls:
- swapBack() (#402)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#447-453)
External calls sending eth:
- swapBack() (#402)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
- address(marketingWallet).transfer(address(this).balance) (#433)
Event emitted after the call(s):
- Transfer(from,to,transferAmount) (#414)
Reentrancy in POPTIGER.constructor() (#205-225):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#215)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#224)
Reentrancy in POPTIGER.swapBack() (#418-434):
External calls:
- swapTokensForEth(amountToSwapForETH) (#427)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#447-453)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#432)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
External calls sending eth:
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#432)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#321)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#432)
Reentrancy in POPTIGER.transferFrom(address,address,uint256) (#261-265):
External calls:
- _transfer(sender,recipient,amount) (#262)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#447-453)
External calls sending eth:
- _transfer(sender,recipient,amount) (#262)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
- address(marketingWallet).transfer(address(this).balance) (#433)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#321)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#263)
Apply the check-effects-interactions pattern.
Additional information: link
POPTIGER._transfer(address,address,uint256) (#362-415) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_lastBuy[to] + _buyCooldown < block.timestamp,Must wait til after coooldown to buy) (#391)
Avoid relying on block.timestamp.
Additional information: link
Pragma version^0.8.13 (#11) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.13 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
Reentrancy in POPTIGER._transfer(address,address,uint256) (#362-415):
External calls:
- swapBack() (#402)
- address(marketingWallet).transfer(address(this).balance) (#433)
External calls sending eth:
- swapBack() (#402)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
- address(marketingWallet).transfer(address(this).balance) (#433)
State variables written after the call(s):
- balances[to] += transferAmount (#413)
- swapping = false (#403)
Event emitted after the call(s):
- Transfer(from,to,transferAmount) (#414)
Reentrancy in POPTIGER.transferFrom(address,address,uint256) (#261-265):
External calls:
- _transfer(sender,recipient,amount) (#262)
- address(marketingWallet).transfer(address(this).balance) (#433)
External calls sending eth:
- _transfer(sender,recipient,amount) (#262)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#459-466)
- address(marketingWallet).transfer(address(this).balance) (#433)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#263)
- _allowances[owner][spender] = amount (#320)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#321)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#263)
Apply the check-effects-interactions pattern.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#108-111)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#113-117)
name() should be declared external:
- POPTIGER.name() (#227-229)
symbol() should be declared external:
- POPTIGER.symbol() (#231-233)
decimals() should be declared external:
- POPTIGER.decimals() (#235-237)
totalSupply() should be declared external:
- POPTIGER.totalSupply() (#239-241)
transfer(address,uint256) should be declared external:
- POPTIGER.transfer(address,uint256) (#247-250)
allowance(address,address) should be declared external:
- POPTIGER.allowance(address,address) (#252-254)
approve(address,uint256) should be declared external:
- POPTIGER.approve(address,uint256) (#256-259)
transferFrom(address,address,uint256) should be declared external:
- POPTIGER.transferFrom(address,address,uint256) (#261-265)
increaseAllowance(address,uint256) should be declared external:
- POPTIGER.increaseAllowance(address,uint256) (#267-270)
decreaseAllowance(address,uint256) should be declared external:
- POPTIGER.decreaseAllowance(address,uint256) (#272-275)
excludeFromFee(address) should be declared external:
- POPTIGER.excludeFromFee(address) (#277-279)
includeInFee(address) should be declared external:
- POPTIGER.includeInFee(address) (#281-283)
POPS() should be declared external:
- POPTIGER.POPS() (#287-292)
isExcludedFromFee(address) should be declared external:
- POPTIGER.isExcludedFromFee(address) (#312-314)
setBuyFees(uint256,uint256) should be declared external:
- POPTIGER.setBuyFees(uint256,uint256) (#324-327)
setSellFees(uint256,uint256) should be declared external:
- POPTIGER.setSellFees(uint256,uint256) (#329-333)
setBuyCooldown(uint256) should be declared external:
- POPTIGER.setBuyCooldown(uint256) (#335-337)
setMaxTxPercent(uint256) should be declared external:
- POPTIGER.setMaxTxPercent(uint256) (#339-342)
setMaxWalletPercent(uint256) should be declared external:
- POPTIGER.setMaxWalletPercent(uint256) (#344-347)
setSwapTokenAtAmountPermille(uint256) should be declared external:
- POPTIGER.setSwapTokenAtAmountPermille(uint256) (#349-351)
setLiquidityReceiver(address) should be declared external:
- POPTIGER.setLiquidityReceiver(address) (#353-356)
clearStuckBNB(address) should be declared external:
- POPTIGER.clearStuckBNB(address) (#358-360)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account link seems to be invalid
Unable to find Twitter account
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account