Reentrancy in PangeInu._transfer(address,address,uint256) (#492-543):
External calls:
- swapAndLiquify(contractTokenBalance) (#524)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#589-595)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#524)
- wallet.transfer(amount) (#546)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#541)
- _tOwned[sender] = _tOwned[sender] - tAmount (#626)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#627)
- _tOwned[sender] = _tOwned[sender] - tAmount (#638)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#639)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#640)
- _tOwned[sender] = _tOwned[sender] - tAmount (#651)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#652)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#653)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#541)
- _tTotal = _tTotal - tAmount (#631)
- _tTotal = _tTotal - tTransferAmount (#644)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#657)
- txCount ++ (#537)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
PangeInu.swapAndLiquify(uint256) (#551-581) performs a multiplication on the result of a division:
-split_M = Percent_Marketing * 100 / (Percent_AutoLP + Percent_Marketing + Percent_Dev) (#566)
-BNB_M = BNB_Total * split_M / 100 (#567)
PangeInu.swapAndLiquify(uint256) (#551-581) performs a multiplication on the result of a division:
-split_D = Percent_Dev * 100 / (Percent_AutoLP + Percent_Marketing + Percent_Dev) (#569)
-BNB_D = BNB_Total * split_D / 100 (#570)
Consider ordering multiplication before division.
Additional information: link
PangeInu._transfer(address,address,uint256).isBuy (#528) 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
PangeInu.addLiquidity(uint256,uint256) (#599-610) ignores return value by uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
Ensure that all the return values of the function calls are used.
Additional information: link
Reentrancy in PangeInu.constructor() (#403-424):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#413-414)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#417)
- _isExcludedFromFee[address(this)] = true (#418)
- _isExcludedFromFee[Wallet_Marketing] = true (#419)
- _isExcludedFromFee[Wallet_Burn] = true (#420)
- uniswapV2Router = _uniswapV2Router (#415)
Reentrancy in PangeInu.swapAndLiquify(uint256) (#551-581):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#563)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#589-595)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#573)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#573)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
State variables written after the call(s):
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#573)
- _allowances[theOwner][theSpender] = amount (#487)
Reentrancy in PangeInu.transferFrom(address,address,uint256) (#460-464):
External calls:
- _transfer(sender,recipient,amount) (#461)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#589-595)
External calls sending eth:
- _transfer(sender,recipient,amount) (#461)
- wallet.transfer(amount) (#546)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#462)
- _allowances[theOwner][theSpender] = amount (#487)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PangeInu._transfer(address,address,uint256) (#492-543):
External calls:
- swapAndLiquify(contractTokenBalance) (#524)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#589-595)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#524)
- wallet.transfer(amount) (#546)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#628)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#541)
- Transfer(sender,recipient,tTransferAmount) (#641)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#541)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#654)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#541)
Reentrancy in PangeInu.constructor() (#403-424):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#413-414)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#422)
Reentrancy in PangeInu.swapAndLiquify(uint256) (#551-581):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#563)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#589-595)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#573)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#573)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#488)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#573)
- SwapAndLiquify(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D),tokens_to_LP_Half) (#574)
Reentrancy in PangeInu.transferFrom(address,address,uint256) (#460-464):
External calls:
- _transfer(sender,recipient,amount) (#461)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#589-595)
External calls sending eth:
- _transfer(sender,recipient,amount) (#461)
- wallet.transfer(amount) (#546)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#488)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#462)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#70-74) uses assembly
- INLINE ASM (#72)
Address._verifyCallResult(bool,bytes,string) (#122-135) uses assembly
- INLINE ASM (#127-130)
Do not use evm assembly.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#122-135) is never used and should be removed
Address.functionCall(address,bytes) (#82-84) is never used and should be removed
Address.functionCall(address,bytes,string) (#86-88) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#90-92) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#94-99) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#112-114) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#116-120) is never used and should be removed
Address.functionStaticCall(address,bytes) (#101-103) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#105-109) is never used and should be removed
Address.isContract(address) (#70-74) is never used and should be removed
Address.sendValue(address,uint256) (#76-80) is never used and should be removed
Context._msgData() (#61-64) is never used and should be removed
PangeInu._getCurrentSupply() (#478-480) is never used and should be removed
SafeMath.div(uint256,uint256) (#35-37) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#46-51) is never used and should be removed
SafeMath.mul(uint256,uint256) (#31-33) is never used and should be removed
SafeMath.sub(uint256,uint256) (#27-29) is never used and should be removed
Remove unused functions.
Additional information: link
PangeInu._maxWalletToken (#377) is set pre-construction with a non-constant function or state variable:
- _tTotal * 100 / 100
PangeInu._previousMaxWalletToken (#378) is set pre-construction with a non-constant function or state variable:
- _maxWalletToken
PangeInu._maxTxAmount (#380) is set pre-construction with a non-constant function or state variable:
- _tTotal * 100 / 100
PangeInu._previousMaxTxAmount (#381) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
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 version0.8.10 (#7) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 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.sendValue(address,uint256) (#76-80):
- (success) = recipient.call{value: amount}() (#78)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#94-99):
- (success,returndata) = target.call{value: value}(data) (#97)
Low level call in Address.functionStaticCall(address,bytes,string) (#105-109):
- (success,returndata) = target.staticcall(data) (#107)
Low level call in Address.functionDelegateCall(address,bytes,string) (#116-120):
- (success,returndata) = target.delegatecall(data) (#118)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#164) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#165) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#178) is not in mixedCase
Function IUniswapV2Router01.WETH() (#195) is not in mixedCase
Parameter PangeInu.addLiquidity(uint256,uint256).BNBAmount (#599) is not in mixedCase
Function PangeInu.remove_Random_Tokens(address,uint256) (#612-618) is not in mixedCase
Parameter PangeInu.remove_Random_Tokens(address,uint256).random_Token_Address (#612) is not in mixedCase
Parameter PangeInu.remove_Random_Tokens(address,uint256).percent_of_Tokens (#612) is not in mixedCase
Variable PangeInu._isExcludedFromFee (#353) is not in mixedCase
Variable PangeInu.Wallet_Marketing (#355) is not in mixedCase
Variable PangeInu.Wallet_Dev (#356) is not in mixedCase
Constant PangeInu.Wallet_Burn (#357) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PangeInu._decimals (#361) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PangeInu._name (#363) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PangeInu._symbol (#364) is not in UPPER_CASE_WITH_UNDERSCORES
Variable PangeInu._Tax_On_Buy (#369) is not in mixedCase
Variable PangeInu._Tax_On_Sell (#370) is not in mixedCase
Variable PangeInu.Percent_Marketing (#372) is not in mixedCase
Variable PangeInu.Percent_Dev (#373) is not in mixedCase
Variable PangeInu.Percent_Burn (#374) is not in mixedCase
Variable PangeInu.Percent_AutoLP (#375) is not in mixedCase
Variable PangeInu._maxWalletToken (#377) is not in mixedCase
Variable PangeInu._maxTxAmount (#380) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#62)" inContext (#56-65)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in PangeInu._transfer(address,address,uint256) (#492-543):
External calls:
- swapAndLiquify(contractTokenBalance) (#524)
- wallet.transfer(amount) (#546)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#524)
- wallet.transfer(amount) (#546)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#541)
- _tOwned[sender] = _tOwned[sender] - tAmount (#626)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#627)
- _tOwned[sender] = _tOwned[sender] - tAmount (#638)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#639)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#640)
- _tOwned[sender] = _tOwned[sender] - tAmount (#651)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#652)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#653)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#541)
- _tTotal = _tTotal - tAmount (#631)
- _tTotal = _tTotal - tTransferAmount (#644)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#657)
- txCount ++ (#537)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#628)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#541)
- Transfer(sender,recipient,tTransferAmount) (#641)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#541)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#654)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#541)
Reentrancy in PangeInu.transferFrom(address,address,uint256) (#460-464):
External calls:
- _transfer(sender,recipient,amount) (#461)
- wallet.transfer(amount) (#546)
External calls sending eth:
- _transfer(sender,recipient,amount) (#461)
- wallet.transfer(amount) (#546)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#602-609)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#462)
- _allowances[theOwner][theSpender] = amount (#487)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#488)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#462)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#199) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#200)
Variable PangeInu.swapAndLiquify(uint256).tokens_to_D (#559) is too similar to PangeInu.swapAndLiquify(uint256).tokens_to_M (#558)
Prevent variables from having similar names.
Additional information: link
PangeInu.slitherConstructorConstantVariables() (#329-666) uses literals with too many digits:
- Wallet_Burn = address(0x000000000000000000000000000000000000dEaD) (#357)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
PangeInu.MAX (#360) is never used in PangeInu (#329-666)
PangeInu._previousMaxWalletToken (#378) is never used in PangeInu (#329-666)
PangeInu._previousMaxTxAmount (#381) is never used in PangeInu (#329-666)
Remove unused state variables.
Additional information: link
PangeInu.Percent_AutoLP (#375) should be constant
PangeInu.Percent_Burn (#374) should be constant
PangeInu.Percent_Dev (#373) should be constant
PangeInu.Percent_Marketing (#372) should be constant
PangeInu.Wallet_Dev (#356) should be constant
PangeInu.Wallet_Marketing (#355) should be constant
PangeInu._Tax_On_Buy (#369) should be constant
PangeInu._Tax_On_Sell (#370) should be constant
PangeInu.swapAndLiquifyEnabled (#387) should be constant
PangeInu.swapTrigger (#367) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- PangeInu.renounceOwnership() (#346-349)
name() should be declared external:
- PangeInu.name() (#426-428)
symbol() should be declared external:
- PangeInu.symbol() (#430-432)
decimals() should be declared external:
- PangeInu.decimals() (#434-436)
totalSupply() should be declared external:
- PangeInu.totalSupply() (#438-440)
transfer(address,uint256) should be declared external:
- PangeInu.transfer(address,uint256) (#446-449)
allowance(address,address) should be declared external:
- PangeInu.allowance(address,address) (#451-453)
approve(address,uint256) should be declared external:
- PangeInu.approve(address,uint256) (#455-458)
transferFrom(address,address,uint256) should be declared external:
- PangeInu.transferFrom(address,address,uint256) (#460-464)
increaseAllowance(address,uint256) should be declared external:
- PangeInu.increaseAllowance(address,uint256) (#466-469)
decreaseAllowance(address,uint256) should be declared external:
- PangeInu.decreaseAllowance(address,uint256) (#471-474)
remove_Random_Tokens(address,uint256) should be declared external:
- PangeInu.remove_Random_Tokens(address,uint256) (#612-618)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Contract has 5% buy tax and 4% sell tax.
Taxes are low and contract ownership is renounced.
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
Unable to find Telegram and Twitter accounts