P. Ness Monster Token Logo

PESSY [P. Ness Monster] Token

About PESSY

Listings

Token 2 years

Description

Not Found

Social

Laser Scorebeta Last Audit: 7 December 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...)

Pessy.addLiquidity(uint256,uint256) (#850-860) sends eth to arbitrary user
Dangerous calls:
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Pessy._transfer(address,address,uint256) (#770-806):
External calls:
- swapAndLiquify(contractTokenBalance) (#797)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#841-847)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#797)
- recipient.transfer(amount) (#953)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _liquidityFee = 0 (#870)
- _liquidityFee = previousLiquidityFee (#890)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _marketingFees = 0 (#871)
- _marketingFees = previousMarketingAndDevelopmentFee (#891)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _rOwned[to] = _rOwned[to].add(rAmount) (#751)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#900)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#928)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#901)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#914)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#943)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#944)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#930)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#916)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _rTotal = _rTotal.sub(rFee) (#703)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _tOwned[to] = _tOwned[to].add(tAmount) (#753)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#913)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#942)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#929)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#915)
Apply the check-effects-interactions pattern.

Additional information: link


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.

Contract name (P. Ness Monster) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Pessy.addLiquidity(uint256,uint256) (#850-860) ignores return value by pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
Ensure that all the return values of the function calls are used.

Additional information: link

Pessy.allowance(address,address).owner (#556) shadows:
- Ownable.owner() (#244-246) (function)
Pessy._approve(address,address,uint256).owner (#761) shadows:
- Ownable.owner() (#244-246) (function)
Rename the local variables that shadow another component.

Additional information: link

Pessy.setTaxFeePercent(uint256) (#644-647) should emit an event for:
- _taxFee = taxFee (#645)
Pessy.setLiquidityFeePercent(uint256) (#649-652) should emit an event for:
- _liquidityFee = liquidityFee (#650)
Pessy.setMarketingAndDevelopmentFeePercent(uint256) (#654-657) should emit an event for:
- _marketingFees = marketingAndDevelopmentFee (#655)
Pessy.setBurnFeePercent(uint256) (#659-662) should emit an event for:
- _burnFee = burnFee (#660)
Pessy.setMaxTx(uint256) (#664-666) should emit an event for:
- _maxTxAmount = maxTx (#665)
Pessy.setMinimumTokenBalance(uint256) (#668-670) should emit an event for:
- _minimumTokenBalance = minimumTokenBalance (#669)
Emit an event for critical parameter changes.

Additional information: link

Pessy.setMarketingAndDevelopmentWallet(address).wallet (#635) lacks a zero-check on :
- _marketingWallet = address(wallet) (#636)
Pessy.sweep(address).to (#957) lacks a zero-check on :
- address(to).transfer(balance) (#959)
Check that the address is not zero.

Additional information: link

Reentrancy in Pessy._transfer(address,address,uint256) (#770-806):
External calls:
- swapAndLiquify(contractTokenBalance) (#797)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#841-847)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#797)
- recipient.transfer(amount) (#953)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _burnFee = 0 (#872)
- _burnFee = previousBurnFee (#892)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _tFeeTotal = _tFeeTotal.add(tFee) (#704)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _taxFee = 0 (#869)
- _taxFee = previousTaxFee (#889)
Reentrancy in Pessy.constructor() (#510-528):
External calls:
- pancakeV2Pair = IPancakeV2Factory(_pancakeV2Router.factory()).createPair(address(this),_pancakeV2Router.WETH()) (#515-516)
State variables written after the call(s):
- _isExcludedFromAutoLiquidity[pancakeV2Pair] = true (#524)
- _isExcludedFromAutoLiquidity[address(pancakeV2Router)] = true (#525)
- _isExcludedFromFee[owner()] = true (#520)
- _isExcludedFromFee[address(this)] = true (#521)
- _isExcludedFromFee[_marketingWallet] = true (#522)
- pancakeV2Router = _pancakeV2Router (#517)
Reentrancy in Pessy.swapAndLiquify(uint256) (#808-833):
External calls:
- swapTokensForBnb(half) (#821)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#841-847)
- addLiquidity(otherHalf,newBalance) (#823)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#823)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#823)
- _allowances[owner][spender] = amount (#765)
Reentrancy in Pessy.swapAndLiquify(uint256) (#808-833):
External calls:
- swapTokensForBnb(half) (#821)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#841-847)
- addLiquidity(otherHalf,newBalance) (#823)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
- swapTokensForBnb(marketingAndDevelopmentPart) (#829)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#841-847)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#823)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
State variables written after the call(s):
- swapTokensForBnb(marketingAndDevelopmentPart) (#829)
- _allowances[owner][spender] = amount (#765)
Reentrancy in Pessy.transferFrom(address,address,uint256) (#565-569):
External calls:
- _transfer(sender,recipient,amount) (#566)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#841-847)
External calls sending eth:
- _transfer(sender,recipient,amount) (#566)
- recipient.transfer(amount) (#953)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#567)
- _allowances[owner][spender] = amount (#765)
Reentrancy in Pessy.updateNewRouter(address) (#680-695):
External calls:
- _pair = IPancakeV2Factory(_pancakeV2Router.factory()).createPair(address(this),_pancakeV2Router.WETH()) (#686-687)
State variables written after the call(s):
- _isExcludedFromAutoLiquidity[pancakeV2Pair] = true (#692)
- _isExcludedFromAutoLiquidity[address(pancakeV2Router)] = true (#693)
- pancakeV2Pair = _pair (#689)
- pancakeV2Router = _pancakeV2Router (#691)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Pessy._transfer(address,address,uint256) (#770-806):
External calls:
- swapAndLiquify(contractTokenBalance) (#797)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#841-847)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#797)
- recipient.transfer(amount) (#953)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#905)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,recipient,tTransferAmount) (#948)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,_burnAddress,tBurn) (#906)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,recipient,tTransferAmount) (#934)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,_burnAddress,tBurn) (#935)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,recipient,tTransferAmount) (#920)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,_burnAddress,tBurn) (#949)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,_burnAddress,tBurn) (#921)
- _tokenTransfer(from,to,amount,takeFee) (#805)
Reentrancy in Pessy.constructor() (#510-528):
External calls:
- pancakeV2Pair = IPancakeV2Factory(_pancakeV2Router.factory()).createPair(address(this),_pancakeV2Router.WETH()) (#515-516)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#527)
Reentrancy in Pessy.swapAndLiquify(uint256) (#808-833):
External calls:
- swapTokensForBnb(half) (#821)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#841-847)
- addLiquidity(otherHalf,newBalance) (#823)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#823)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#766)
- addLiquidity(otherHalf,newBalance) (#823)
- SwapAndLiquify(half,newBalance,otherHalf) (#824)
Reentrancy in Pessy.swapAndLiquify(uint256) (#808-833):
External calls:
- swapTokensForBnb(half) (#821)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#841-847)
- addLiquidity(otherHalf,newBalance) (#823)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
- swapTokensForBnb(marketingAndDevelopmentPart) (#829)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#841-847)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#823)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#766)
- swapTokensForBnb(marketingAndDevelopmentPart) (#829)
Reentrancy in Pessy.transferFrom(address,address,uint256) (#565-569):
External calls:
- _transfer(sender,recipient,amount) (#566)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#841-847)
External calls sending eth:
- _transfer(sender,recipient,amount) (#566)
- recipient.transfer(amount) (#953)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#766)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#567)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#34-43) uses assembly
- INLINE ASM (#41)
Address._functionCallWithValue(address,bytes,uint256,string) (#71-88) uses assembly
- INLINE ASM (#80-83)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#71-88) is never used and should be removed
Address.functionCall(address,bytes) (#54-56) is never used and should be removed
Address.functionCall(address,bytes,string) (#58-60) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#62-64) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#66-69) is never used and should be removed
Address.isContract(address) (#34-43) is never used and should be removed
Address.sendValue(address,uint256) (#45-51) is never used and should be removed
Context._msgData() (#14-17) is never used and should be removed
SafeMath.mod(uint256,uint256) (#212-214) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#228-231) is never used and should be removed
Remove unused functions.

Additional information: link

Pessy._rTotal (#474) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Pessy._totalFees (#485) is set pre-construction with a non-constant function or state variable:
- _taxFee.add(_liquidityFee).add(_marketingFees).add(_burnFee)
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.8.7 (#7) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
solc-0.8.7 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) (#45-51):
- (success) = recipient.call{value: amount}() (#49)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#71-88):
- (success,returndata) = target.call{value: weiValue}(data) (#74)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeV2Pair.DOMAIN_SEPARATOR() (#291) is not in mixedCase
Function IPancakeV2Pair.PERMIT_TYPEHASH() (#292) is not in mixedCase
Function IPancakeV2Pair.MINIMUM_LIQUIDITY() (#305) is not in mixedCase
Function IPancakeV2Router01.WETH() (#323) is not in mixedCase
Parameter Pessy.setSwapAndLiquifyEnabled(bool)._enabled (#672) is not in mixedCase
Parameter Pessy.updateNewRouter(address)._router (#680) is not in mixedCase
Variable Pessy._isExcludedFromAutoLiquidity (#467) is not in mixedCase
Variable Pessy._marketingWallet (#470) is not in mixedCase
Variable Pessy._burnAddress (#471) is not in mixedCase
Constant Pessy._name (#477) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Pessy._symbol (#478) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Pessy._decimals (#479) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Pessy._taxFee (#481) is not in mixedCase
Variable Pessy._liquidityFee (#482) is not in mixedCase
Variable Pessy._marketingFees (#483) is not in mixedCase
Variable Pessy._burnFee (#484) is not in mixedCase
Variable Pessy._totalFees (#485) is not in mixedCase
Variable Pessy._maxTxAmount (#487) 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 Pessy._transfer(address,address,uint256) (#770-806):
External calls:
- swapAndLiquify(contractTokenBalance) (#797)
- recipient.transfer(amount) (#953)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#797)
- recipient.transfer(amount) (#953)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _burnFee = 0 (#872)
- _burnFee = previousBurnFee (#892)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _liquidityFee = 0 (#870)
- _liquidityFee = previousLiquidityFee (#890)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _marketingFees = 0 (#871)
- _marketingFees = previousMarketingAndDevelopmentFee (#891)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _rOwned[to] = _rOwned[to].add(rAmount) (#751)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#900)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#928)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#901)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#914)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#943)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#944)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#930)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#916)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _rTotal = _rTotal.sub(rFee) (#703)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _tFeeTotal = _tFeeTotal.add(tFee) (#704)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _tOwned[to] = _tOwned[to].add(tAmount) (#753)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#913)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#942)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#929)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#915)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- _taxFee = 0 (#869)
- _taxFee = previousTaxFee (#889)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#905)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,recipient,tTransferAmount) (#948)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,_burnAddress,tBurn) (#906)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,recipient,tTransferAmount) (#934)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,_burnAddress,tBurn) (#935)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,recipient,tTransferAmount) (#920)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,_burnAddress,tBurn) (#949)
- _tokenTransfer(from,to,amount,takeFee) (#805)
- Transfer(sender,_burnAddress,tBurn) (#921)
- _tokenTransfer(from,to,amount,takeFee) (#805)
Reentrancy in Pessy.transferFrom(address,address,uint256) (#565-569):
External calls:
- _transfer(sender,recipient,amount) (#566)
- recipient.transfer(amount) (#953)
External calls sending eth:
- _transfer(sender,recipient,amount) (#566)
- recipient.transfer(amount) (#953)
- pancakeV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852-859)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#567)
- _allowances[owner][spender] = amount (#765)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#766)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#567)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IPancakeV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#328) is too similar to IPancakeV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#329)
Variable Pessy._transferToExcluded(address,address,uint256).rTransferAmount (#927) is too similar to Pessy._transferToExcluded(address,address,uint256).tTransferAmount (#925)
Variable Pessy._transferStandard(address,address,uint256).rTransferAmount (#899) is too similar to Pessy._transferToExcluded(address,address,uint256).tTransferAmount (#925)
Variable Pessy._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#724) is too similar to Pessy._getTValues(uint256).tTransferAmount (#713)
Variable Pessy._transferToExcluded(address,address,uint256).rTransferAmount (#927) is too similar to Pessy._transferBothExcluded(address,address,uint256).tTransferAmount (#910)
Variable Pessy._transferStandard(address,address,uint256).rTransferAmount (#899) is too similar to Pessy._transferBothExcluded(address,address,uint256).tTransferAmount (#910)
Variable Pessy._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#724) is too similar to Pessy._transferStandard(address,address,uint256).tTransferAmount (#897)
Variable Pessy.reflectionFromToken(uint256,bool).rTransferAmount (#599) is too similar to Pessy._transferToExcluded(address,address,uint256).tTransferAmount (#925)
Variable Pessy._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#724) is too similar to Pessy._transferFromExcluded(address,address,uint256).tTransferAmount (#939)
Variable Pessy._transferFromExcluded(address,address,uint256).rTransferAmount (#941) is too similar to Pessy._transferStandard(address,address,uint256).tTransferAmount (#897)
Variable Pessy.reflectionFromToken(uint256,bool).rTransferAmount (#599) is too similar to Pessy._transferBothExcluded(address,address,uint256).tTransferAmount (#910)
Variable Pessy._transferToExcluded(address,address,uint256).rTransferAmount (#927) is too similar to Pessy._getTValues(uint256).tTransferAmount (#713)
Variable Pessy._transferStandard(address,address,uint256).rTransferAmount (#899) is too similar to Pessy._getTValues(uint256).tTransferAmount (#713)
Variable Pessy._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#724) is too similar to Pessy._transferToExcluded(address,address,uint256).tTransferAmount (#925)
Variable Pessy._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#724) is too similar to Pessy._transferBothExcluded(address,address,uint256).tTransferAmount (#910)
Variable Pessy._transferToExcluded(address,address,uint256).rTransferAmount (#927) is too similar to Pessy._transferStandard(address,address,uint256).tTransferAmount (#897)
Variable Pessy._transferStandard(address,address,uint256).rTransferAmount (#899) is too similar to Pessy._transferStandard(address,address,uint256).tTransferAmount (#897)
Variable Pessy._transferFromExcluded(address,address,uint256).rTransferAmount (#941) is too similar to Pessy._transferToExcluded(address,address,uint256).tTransferAmount (#925)
Variable Pessy._transferFromExcluded(address,address,uint256).rTransferAmount (#941) is too similar to Pessy._transferBothExcluded(address,address,uint256).tTransferAmount (#910)
Variable Pessy._transferToExcluded(address,address,uint256).rTransferAmount (#927) is too similar to Pessy._transferFromExcluded(address,address,uint256).tTransferAmount (#939)
Variable Pessy._transferStandard(address,address,uint256).rTransferAmount (#899) is too similar to Pessy._transferFromExcluded(address,address,uint256).tTransferAmount (#939)
Variable Pessy.reflectionFromToken(uint256,bool).rTransferAmount (#599) is too similar to Pessy._transferStandard(address,address,uint256).tTransferAmount (#897)
Variable Pessy.reflectionFromToken(uint256,bool).rTransferAmount (#599) is too similar to Pessy._transferFromExcluded(address,address,uint256).tTransferAmount (#939)
Variable Pessy._transferFromExcluded(address,address,uint256).rTransferAmount (#941) is too similar to Pessy._transferFromExcluded(address,address,uint256).tTransferAmount (#939)
Variable Pessy._transferBothExcluded(address,address,uint256).rTransferAmount (#912) is too similar to Pessy._transferToExcluded(address,address,uint256).tTransferAmount (#925)
Variable Pessy._transferBothExcluded(address,address,uint256).rTransferAmount (#912) is too similar to Pessy._getTValues(uint256).tTransferAmount (#713)
Variable Pessy._transferBothExcluded(address,address,uint256).rTransferAmount (#912) is too similar to Pessy._transferFromExcluded(address,address,uint256).tTransferAmount (#939)
Variable Pessy._transferBothExcluded(address,address,uint256).rTransferAmount (#912) is too similar to Pessy._transferStandard(address,address,uint256).tTransferAmount (#897)
Variable Pessy._transferBothExcluded(address,address,uint256).rTransferAmount (#912) is too similar to Pessy._transferBothExcluded(address,address,uint256).tTransferAmount (#910)
Variable Pessy.reflectionFromToken(uint256,bool).rTransferAmount (#599) is too similar to Pessy._getTValues(uint256).tTransferAmount (#713)
Variable Pessy._transferFromExcluded(address,address,uint256).rTransferAmount (#941) is too similar to Pessy._getTValues(uint256).tTransferAmount (#713)
Prevent variables from having similar names.

Additional information: link

Pessy.slitherConstructorVariables() (#458-963) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#471)
Pessy.slitherConstructorVariables() (#458-963) uses literals with too many digits:
- _tTotal = 100000 * 10 ** 6 * 10 ** 9 (#473)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Pessy._burnAddress (#471) should be constant
Pessy._tTotal (#473) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#253-256)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#258-262)
name() should be declared external:
- Pessy.name() (#530-532)
symbol() should be declared external:
- Pessy.symbol() (#534-536)
decimals() should be declared external:
- Pessy.decimals() (#538-540)
totalSupply() should be declared external:
- Pessy.totalSupply() (#542-544)
transfer(address,uint256) should be declared external:
- Pessy.transfer(address,uint256) (#551-554)
allowance(address,address) should be declared external:
- Pessy.allowance(address,address) (#556-558)
approve(address,uint256) should be declared external:
- Pessy.approve(address,uint256) (#560-563)
transferFrom(address,address,uint256) should be declared external:
- Pessy.transferFrom(address,address,uint256) (#565-569)
increaseAllowance(address,uint256) should be declared external:
- Pessy.increaseAllowance(address,uint256) (#571-574)
decreaseAllowance(address,uint256) should be declared external:
- Pessy.decreaseAllowance(address,uint256) (#576-579)
isExcludedFromReward(address) should be declared external:
- Pessy.isExcludedFromReward(address) (#581-583)
totalFees() should be declared external:
- Pessy.totalFees() (#585-587)
reflectionFromToken(uint256,bool) should be declared external:
- Pessy.reflectionFromToken(uint256,bool) (#589-602)
excludeFromReward(address) should be declared external:
- Pessy.excludeFromReward(address) (#611-619)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Pessy.setSwapAndLiquifyEnabled(bool) (#672-675)
updateNewRouter(address) should be declared external:
- Pessy.updateNewRouter(address) (#680-695)
isExcludedFromFee(address) should be declared external:
- Pessy.isExcludedFromFee(address) (#757-759)
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.


Twitter account link seems to be invalid


Unable to find Youtube account


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


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinHunt, CoinGecko, CoinMarketCap


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for PESSY