Puss.addLiquidity(uint256,uint256) (#1258-1271) sends eth to arbitrary user
Dangerous calls:
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Puss._transfer(address,address,uint256) (#1179-1215):
External calls:
- swapAndLiquify(contractTokenBalance) (#1210)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1249-1255)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1210)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1214)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1062)
- _rOwned[_charityWallet] = _rOwned[_charityWallet].add(rCharity) (#1070)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1321)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1331)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1343)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1354)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1322)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1333)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1344)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1356)
- _tokenTransfer(from,to,amount) (#1214)
- _rTotal = _rTotal.sub(rFee) (#993)
- _tokenTransfer(from,to,amount) (#1214)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1064)
- _tOwned[_charityWallet] = _tOwned[_charityWallet].add(tCharity) (#1072)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1342)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1353)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1332)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1355)
Apply the check-effects-interactions pattern.
Additional information: link
Puss._pancakeV2RouterAddress (#724) is never initialized. It is used in:
- Puss._tokenTransfer(address,address,uint256) (#1282-1317)
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
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Puss.calculatePercentFee(uint8,bool,bool,bool,bool) (#1093-1141) uses a dangerous strict equality:
- _daoFeeVotingTime == 0 (#1096)
Don't use strict equality to determine if an account has enough Ether or tokens.
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.
Puss.addLiquidity(uint256,uint256) (#1258-1271) ignores return value by pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
Ensure that all the return values of the function calls are used.
Additional information: link
Puss.allowance(address,address).owner (#814) shadows:
- Ownable.owner() (#412-414) (function)
Puss._approve(address,address,uint256).owner (#1171) shadows:
- Ownable.owner() (#412-414) (function)
Rename the local variables that shadow another component.
Additional information: link
Puss.setBuyTaxFeePercent(uint256) (#909-912) should emit an event for:
- _buyTaxFee = percent (#911)
Puss.setSellTaxFeePercent(uint256) (#914-917) should emit an event for:
- _sellTaxFee = percent (#916)
Puss.setTransferTaxFeePercent(uint256) (#919-922) should emit an event for:
- _transferTaxFee = percent (#921)
Puss.setBuyLiquidityFeePercent(uint256) (#924-927) should emit an event for:
- _buyLiquidityFee = percent (#926)
Puss.setSellLiquidityFeePercent(uint256) (#929-932) should emit an event for:
- _sellLiquidityFee = percent (#931)
Puss.setTransferLiquidityFeePercent(uint256) (#934-937) should emit an event for:
- _transferLiquidityFee = percent (#936)
Puss.setBuyCharityFeePercent(uint256) (#939-942) should emit an event for:
- _buyCharityFee = percent (#941)
Puss.setSellCharityFeePercent(uint256) (#944-947) should emit an event for:
- _sellCharityFee = percent (#946)
Puss.setTransferCharityFeePercent(uint256) (#949-952) should emit an event for:
- _transferCharityFee = percent (#951)
Puss.setMaxTxPercent(uint256) (#954-958) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#955-957)
Puss.setNumTokensToAddToLiquidity(uint256) (#960-962) should emit an event for:
- _numTokensToAddToLiquidity = numTokens (#961)
Emit an event for critical parameter changes.
Additional information: link
Puss.setCharityWallet(address).charityWallet (#969) lacks a zero-check on :
- _charityWallet = charityWallet (#970)
Puss.setLiquidityTokenWallet(address).lpTokenWallet (#984) lacks a zero-check on :
- _liquidityTokenWallet = lpTokenWallet (#985)
Puss.withdrawLockedBNB(address,uint256).recipient (#1276) lacks a zero-check on :
- recipient.transfer(amount) (#1278)
Check that the address is not zero.
Additional information: link
Reentrancy in Puss._transfer(address,address,uint256) (#1179-1215):
External calls:
- swapAndLiquify(contractTokenBalance) (#1210)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1249-1255)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1210)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1214)
- _tFeeTotal = _tFeeTotal.add(tFee) (#994)
Reentrancy in Puss.constructor() (#749-762):
External calls:
- setRouterAddress(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#752)
- pancakeV2Pair = IPancakeV2Factory(newPancakeRouter.factory()).createPair(address(this),newPancakeRouter.WETH()) (#769-770)
State variables written after the call(s):
- setCharityWallet(owner()) (#754)
- _charityWallet = charityWallet (#970)
- _isExcludedFromFee[owner()] = true (#757)
- _isExcludedFromFee[address(this)] = true (#758)
- _isExcludedFromFee[_charityWallet] = true (#759)
- setLiquidityTokenWallet(owner()) (#753)
- _liquidityTokenWallet = lpTokenWallet (#985)
Reentrancy in Puss.setRouterAddress(address) (#767-774):
External calls:
- pancakeV2Pair = IPancakeV2Factory(newPancakeRouter.factory()).createPair(address(this),newPancakeRouter.WETH()) (#769-770)
State variables written after the call(s):
- pancakeV2Router = newPancakeRouter (#771)
Reentrancy in Puss.swapAndLiquify(uint256) (#1217-1238):
External calls:
- swapTokensForEth(half) (#1229)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1249-1255)
- addLiquidity(otherHalf,newBalance) (#1235)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1235)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1235)
- _allowances[owner][spender] = amount (#1175)
Reentrancy in Puss.transferFrom(address,address,uint256) (#823-827):
External calls:
- _transfer(sender,recipient,amount) (#824)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1249-1255)
External calls sending eth:
- _transfer(sender,recipient,amount) (#824)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#825)
- _allowances[owner][spender] = amount (#1175)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Puss._transfer(address,address,uint256) (#1179-1215):
External calls:
- swapAndLiquify(contractTokenBalance) (#1210)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1249-1255)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1210)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1326)
- _tokenTransfer(from,to,amount) (#1214)
- Transfer(sender,recipient,tTransferAmount) (#1337)
- _tokenTransfer(from,to,amount) (#1214)
- Transfer(sender,recipient,tTransferAmount) (#1348)
- _tokenTransfer(from,to,amount) (#1214)
- Transfer(sender,recipient,tTransferAmount) (#1360)
- _tokenTransfer(from,to,amount) (#1214)
Reentrancy in Puss.constructor() (#749-762):
External calls:
- setRouterAddress(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#752)
- pancakeV2Pair = IPancakeV2Factory(newPancakeRouter.factory()).createPair(address(this),newPancakeRouter.WETH()) (#769-770)
Event emitted after the call(s):
- CharityWalletUpdated(charityWallet) (#971)
- setCharityWallet(owner()) (#754)
- LiquidityTokenWalletUpdated(lpTokenWallet) (#986)
- setLiquidityTokenWallet(owner()) (#753)
- Transfer(address(0),_msgSender(),_tTotal) (#761)
Reentrancy in Puss.setRouterAddress(address) (#767-774):
External calls:
- pancakeV2Pair = IPancakeV2Factory(newPancakeRouter.factory()).createPair(address(this),newPancakeRouter.WETH()) (#769-770)
Event emitted after the call(s):
- PancakeswapRouterAddressUpdated(routerAddress) (#773)
Reentrancy in Puss.swapAndLiquify(uint256) (#1217-1238):
External calls:
- swapTokensForEth(half) (#1229)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1249-1255)
- addLiquidity(otherHalf,newBalance) (#1235)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1235)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1176)
- addLiquidity(otherHalf,newBalance) (#1235)
- SwapAndLiquify(half,newBalance,otherHalf) (#1237)
Reentrancy in Puss.transferFrom(address,address,uint256) (#823-827):
External calls:
- _transfer(sender,recipient,amount) (#824)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1249-1255)
External calls sending eth:
- _transfer(sender,recipient,amount) (#824)
- pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityTokenWallet,block.timestamp) (#1263-1270)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1176)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#825)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#460-465) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#462)
Puss.setBuyTaxFeePercent(uint256) (#909-912) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_daoFeeVotingTime == 0,DAO fee voting finished. No changes possible.) (#910)
Puss.setSellTaxFeePercent(uint256) (#914-917) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_daoFeeVotingTime == 0,DAO fee voting finished. No changes possible.) (#915)
Puss.setTransferTaxFeePercent(uint256) (#919-922) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_daoFeeVotingTime == 0,DAO fee voting finished. No changes possible.) (#920)
Puss.setBuyLiquidityFeePercent(uint256) (#924-927) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_daoFeeVotingTime == 0,DAO fee voting finished. No changes possible.) (#925)
Puss.setSellLiquidityFeePercent(uint256) (#929-932) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_daoFeeVotingTime == 0,DAO fee voting finished. No changes possible.) (#930)
Puss.setTransferLiquidityFeePercent(uint256) (#934-937) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_daoFeeVotingTime == 0,DAO fee voting finished. No changes possible.) (#935)
Puss.setBuyCharityFeePercent(uint256) (#939-942) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_daoFeeVotingTime == 0,DAO fee voting finished. No changes possible.) (#940)
Puss.setSellCharityFeePercent(uint256) (#944-947) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_daoFeeVotingTime == 0,DAO fee voting finished. No changes possible.) (#945)
Puss.setTransferCharityFeePercent(uint256) (#949-952) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_daoFeeVotingTime == 0,DAO fee voting finished. No changes possible.) (#950)
Puss.daoVotingPassed() (#974-978) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_daoFeeVotingTime == 0,DAO has already voted, no changes possible.) (#975)
Puss.calculatePercentFee(uint8,bool,bool,bool,bool) (#1093-1141) uses timestamp for comparisons
Dangerous comparisons:
- _daoFeeVotingTime == 0 (#1096)
- block.timestamp < _daoFeeVotingTime + 15552000 (#1105)
- block.timestamp < _daoFeeVotingTime + 31104000 (#1106)
- block.timestamp < _daoFeeVotingTime + 46656000 (#1107)
- block.timestamp < _daoFeeVotingTime + 15552000 (#1110)
- block.timestamp < _daoFeeVotingTime + 31104000 (#1111)
- block.timestamp < _daoFeeVotingTime + 46656000 (#1112)
- block.timestamp < _daoFeeVotingTime + 15552000 (#1115)
- block.timestamp < _daoFeeVotingTime + 31104000 (#1116)
- block.timestamp < _daoFeeVotingTime + 46656000 (#1117)
- block.timestamp < _daoFeeVotingTime + 15552000 (#1120)
- block.timestamp < _daoFeeVotingTime + 31104000 (#1121)
- block.timestamp < _daoFeeVotingTime + 46656000 (#1122)
- block.timestamp < _daoFeeVotingTime + 15552000 (#1125)
- block.timestamp < _daoFeeVotingTime + 31104000 (#1126)
- block.timestamp < _daoFeeVotingTime + 46656000 (#1127)
- block.timestamp < _daoFeeVotingTime + 15552000 (#1130)
- block.timestamp < _daoFeeVotingTime + 31104000 (#1131)
- block.timestamp < _daoFeeVotingTime + 46656000 (#1132)
- block.timestamp < ESCAPE_TO_MARS (#1136)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#264-273) uses assembly
- INLINE ASM (#271)
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) uses assembly
- INLINE ASM (#370-373)
Do not use evm assembly.
Additional information: link
Puss.includeInReward(address) (#888-899) has costly operations inside a loop:
- _excluded.pop() (#895)
Use a local variable to hold the loop computation result.
Additional information: link
Function IPancakeV2Pair.DOMAIN_SEPARATOR() (#504) is not in mixedCase
Function IPancakeV2Pair.PERMIT_TYPEHASH() (#505) is not in mixedCase
Function IPancakeV2Pair.MINIMUM_LIQUIDITY() (#522) is not in mixedCase
Function IPancakeV2Router01.WETH() (#544) is not in mixedCase
Parameter Puss.setSwapAndLiquifyEnabled(bool)._enabled (#964) is not in mixedCase
Parameter Puss.calculateTaxFee(uint256,uint8,bool)._amount (#1075) is not in mixedCase
Parameter Puss.calculateLiquidityFee(uint256,uint8,bool)._amount (#1080) is not in mixedCase
Parameter Puss.calculateCharityFee(uint256,uint8,bool)._amount (#1085) is not in mixedCase
Constant Puss._tTotal (#700) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Puss.slitherConstructorConstantVariables() (#682-1363) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 6 * 10 ** 15 (#700)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Puss._decimals (#699) should be constant
Puss._name (#704) should be constant
Puss._pancakeV2RouterAddress (#724) should be constant
Puss._symbol (#705) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#431-435)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#441-445)
unlockTime() should be declared external:
- Ownable.unlockTime() (#447-449)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#452-457)
unlock() should be declared external:
- Ownable.unlock() (#460-465)
name() should be declared external:
- Puss.name() (#776-778)
symbol() should be declared external:
- Puss.symbol() (#780-782)
decimals() should be declared external:
- Puss.decimals() (#784-786)
totalSupply() should be declared external:
- Puss.totalSupply() (#788-790)
daoVotingTime() should be declared external:
- Puss.daoVotingTime() (#792-794)
maxTxAmount() should be declared external:
- Puss.maxTxAmount() (#796-798)
numTokensToAddToLiquidity() should be declared external:
- Puss.numTokensToAddToLiquidity() (#800-802)
transfer(address,uint256) should be declared external:
- Puss.transfer(address,uint256) (#809-812)
allowance(address,address) should be declared external:
- Puss.allowance(address,address) (#814-816)
approve(address,uint256) should be declared external:
- Puss.approve(address,uint256) (#818-821)
transferFrom(address,address,uint256) should be declared external:
- Puss.transferFrom(address,address,uint256) (#823-827)
increaseAllowance(address,uint256) should be declared external:
- Puss.increaseAllowance(address,uint256) (#829-832)
decreaseAllowance(address,uint256) should be declared external:
- Puss.decreaseAllowance(address,uint256) (#834-837)
isExcludedFromReward(address) should be declared external:
- Puss.isExcludedFromReward(address) (#839-841)
totalFees() should be declared external:
- Puss.totalFees() (#843-845)
reflectionFromTokenBuy(uint256,bool) should be declared external:
- Puss.reflectionFromTokenBuy(uint256,bool) (#847-849)
reflectionFromTokenSell(uint256,bool) should be declared external:
- Puss.reflectionFromTokenSell(uint256,bool) (#851-853)
reflectionFromTokenTransfer(uint256,bool) should be declared external:
- Puss.reflectionFromTokenTransfer(uint256,bool) (#855-857)
excludeFromReward(address) should be declared external:
- Puss.excludeFromReward(address) (#879-886)
excludeFromFee(address) should be declared external:
- Puss.excludeFromFee(address) (#901-903)
includeInFee(address) should be declared external:
- Puss.includeInFee(address) (#905-907)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Puss.setSwapAndLiquifyEnabled(bool) (#964-967)
daoVotingPassed() should be declared external:
- Puss.daoVotingPassed() (#974-978)
isExcludedFromFee(address) should be declared external:
- Puss.isExcludedFromFee(address) (#1167-1169)
Use the external attribute for functions never called from the contract.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) is never used and should be removed
Address.functionCall(address,bytes) (#317-319) is never used and should be removed
Address.functionCall(address,bytes,string) (#327-329) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#342-344) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#352-355) is never used and should be removed
Address.isContract(address) (#264-273) is never used and should be removed
Address.sendValue(address,uint256) (#291-297) is never used and should be removed
Context._msgData() (#236-239) is never used and should be removed
SafeMath.mod(uint256,uint256) (#209-211) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#225-228) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#291-297):
- (success) = recipient.call{value: amount}() (#295)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#357-378):
- (success,returndata) = target.call{value: weiValue}(data) (#361)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Redundant expression "this (#237)" inContext (#231-240)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IPancakeV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#549) is too similar to IPancakeV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#550)
Variable Puss._transferBothExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1352) is too similar to Puss._transferBothExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1352)
Variable Puss._transferStandard(address,address,uint256,uint8,bool).rTransferAmount (#1320) is too similar to Puss._transferStandard(address,address,uint256,uint8,bool).tTransferAmount (#1320)
Variable Puss._transferStandard(address,address,uint256,uint8,bool).rTransferAmount (#1320) is too similar to Puss._getTValues(uint256,uint8,bool).tTransferAmount (#1021)
Variable Puss._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1038) is too similar to Puss._transferToExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1330)
Variable Puss._transferStandard(address,address,uint256,uint8,bool).rTransferAmount (#1320) is too similar to Puss._transferFromExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1341)
Variable Puss._transferBothExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1352) is too similar to Puss._transferToExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1330)
Variable Puss._transferToExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1330) is too similar to Puss._transferFromExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1341)
Variable Puss._transferFromExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1341) is too similar to Puss._transferFromExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1341)
Variable Puss._transferStandard(address,address,uint256,uint8,bool).rTransferAmount (#1320) is too similar to Puss._transferBothExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1352)
Variable Puss._transferBothExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1352) is too similar to Puss._getTValues(uint256,uint8,bool).tTransferAmount (#1021)
Variable Puss._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1038) is too similar to Puss._transferFromExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1341)
Variable Puss._transferBothExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1352) is too similar to Puss._transferFromExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1341)
Variable Puss._transferStandard(address,address,uint256,uint8,bool).rTransferAmount (#1320) is too similar to Puss._transferToExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1330)
Variable Puss._transferToExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1330) is too similar to Puss._transferToExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1330)
Variable Puss._transferToExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1330) is too similar to Puss._transferStandard(address,address,uint256,uint8,bool).tTransferAmount (#1320)
Variable Puss._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1038) is too similar to Puss._transferStandard(address,address,uint256,uint8,bool).tTransferAmount (#1320)
Variable Puss._reflectionFromToken(uint256,bool,uint8).rTransferAmount (#868) is too similar to Puss._transferStandard(address,address,uint256,uint8,bool).tTransferAmount (#1320)
Variable Puss._reflectionFromToken(uint256,bool,uint8).rTransferAmount (#868) is too similar to Puss._transferFromExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1341)
Variable Puss._transferToExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1330) is too similar to Puss._getTValues(uint256,uint8,bool).tTransferAmount (#1021)
Variable Puss._reflectionFromToken(uint256,bool,uint8).rTransferAmount (#868) is too similar to Puss._transferToExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1330)
Variable Puss._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1038) is too similar to Puss._getTValues(uint256,uint8,bool).tTransferAmount (#1021)
Variable Puss._transferFromExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1341) is too similar to Puss._transferStandard(address,address,uint256,uint8,bool).tTransferAmount (#1320)
Variable Puss._transferToExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1330) is too similar to Puss._transferBothExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1352)
Variable Puss._getValues(uint256,uint8,bool).rTransferAmount (#1000) is too similar to Puss._transferStandard(address,address,uint256,uint8,bool).tTransferAmount (#1320)
Variable Puss._reflectionFromToken(uint256,bool,uint8).rTransferAmount (#868) is too similar to Puss._getTValues(uint256,uint8,bool).tTransferAmount (#1021)
Variable Puss._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1038) is too similar to Puss._transferBothExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1352)
Variable Puss._getValues(uint256,uint8,bool).rTransferAmount (#1000) is too similar to Puss._transferFromExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1341)
Variable Puss._reflectionFromToken(uint256,bool,uint8).rTransferAmount (#868) is too similar to Puss._transferBothExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1352)
Variable Puss._transferFromExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1341) is too similar to Puss._transferToExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1330)
Variable Puss._getValues(uint256,uint8,bool).rTransferAmount (#1000) is too similar to Puss._transferToExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1330)
Variable Puss._transferBothExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1352) is too similar to Puss._transferStandard(address,address,uint256,uint8,bool).tTransferAmount (#1320)
Variable Puss._transferFromExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1341) is too similar to Puss._getTValues(uint256,uint8,bool).tTransferAmount (#1021)
Variable Puss._getValues(uint256,uint8,bool).rTransferAmount (#1000) is too similar to Puss._getTValues(uint256,uint8,bool).tTransferAmount (#1021)
Variable Puss._transferFromExcluded(address,address,uint256,uint8,bool).rTransferAmount (#1341) is too similar to Puss._transferBothExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1352)
Variable Puss._getValues(uint256,uint8,bool).rTransferAmount (#1000) is too similar to Puss._transferBothExcluded(address,address,uint256,uint8,bool).tTransferAmount (#1352)
Prevent variables from having similar names.
Additional information: link
Contract has 10% buy tax and 15% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.
Average 30d number of PancakeSwap swaps is low.
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 website, listings and other project-related information
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts