SafePizza is a safe and community owned project. LP tokens have been 100% burnt and ownership has been renounced. Together we can make a difference!
Reentrancy in SafePizza._transfer(address,address,uint256) (#1022-1066):
External calls:
- swapAndLiquify(contractTokenBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#978)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1147)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1156)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1167)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#894)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1148)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1158)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1168)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#896)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _rTotal = _rTotal.sub(rFee) (#933)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#980)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#893)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1166)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1157)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#895)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
SafePizza.addLiquidity(uint256,uint256) (#1109-1122) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Ensure that all the return values of the function calls are used.
Additional information: link
SafePizza.allowance(address,address).owner (#810) shadows:
- Ownable.owner() (#446-448) (function)
SafePizza._approve(address,address,uint256).owner (#1014) shadows:
- Ownable.owner() (#446-448) (function)
Rename the local variables that shadow another component.
Additional information: link
SafePizza.setTaxFeePercent(uint256) (#910-912) should emit an event for:
- _taxFee = taxFee (#911)
SafePizza.setLiquidityFeePercent(uint256) (#914-916) should emit an event for:
- _liquidityFee = liquidityFee (#915)
SafePizza.setMaxTxPercent(uint256) (#918-922) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#919-921)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in SafePizza._transfer(address,address,uint256) (#1022-1066):
External calls:
- swapAndLiquify(contractTokenBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _liquidityFee = _previousLiquidityFee (#1007)
- _liquidityFee = 0 (#1002)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _previousLiquidityFee = _liquidityFee (#999)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _previousTaxFee = _taxFee (#998)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _tFeeTotal = _tFeeTotal.add(tFee) (#934)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _taxFee = _previousTaxFee (#1006)
- _taxFee = 0 (#1001)
Reentrancy in SafePizza.constructor() (#766-782):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#771-772)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#778)
- _isExcludedFromFee[address(this)] = true (#779)
- uniswapV2Router = _uniswapV2Router (#775)
Reentrancy in SafePizza.swapAndLiquify(uint256) (#1068-1089):
External calls:
- swapTokensForEth(half) (#1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
- addLiquidity(otherHalf,newBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1086)
- _allowances[owner][spender] = amount (#1018)
Reentrancy in SafePizza.transferFrom(address,address,uint256) (#819-823):
External calls:
- _transfer(sender,recipient,amount) (#820)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
External calls sending eth:
- _transfer(sender,recipient,amount) (#820)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#821)
- _allowances[owner][spender] = amount (#1018)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SafePizza._transfer(address,address,uint256) (#1022-1066):
External calls:
- swapAndLiquify(contractTokenBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1151)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- Transfer(sender,recipient,tTransferAmount) (#1161)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- Transfer(sender,recipient,tTransferAmount) (#1171)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- Transfer(sender,recipient,tTransferAmount) (#899)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
Reentrancy in SafePizza.constructor() (#766-782):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#771-772)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#781)
Reentrancy in SafePizza.swapAndLiquify(uint256) (#1068-1089):
External calls:
- swapTokensForEth(half) (#1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
- addLiquidity(otherHalf,newBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1019)
- addLiquidity(otherHalf,newBalance) (#1086)
- SwapAndLiquify(half,newBalance,otherHalf) (#1088)
Reentrancy in SafePizza.transferFrom(address,address,uint256) (#819-823):
External calls:
- _transfer(sender,recipient,amount) (#820)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
External calls sending eth:
- _transfer(sender,recipient,amount) (#820)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1019)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#821)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#493-498) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#495)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#298-307) uses assembly
- INLINE ASM (#305)
Address._functionCallWithValue(address,bytes,uint256,string) (#391-412) uses assembly
- INLINE ASM (#404-407)
Do not use evm assembly.
Additional information: link
SafePizza.includeInReward(address) (#879-890) has costly operations inside a loop:
- _excluded.pop() (#886)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#391-412) is never used and should be removed
Address.functionCall(address,bytes) (#351-353) is never used and should be removed
Address.functionCall(address,bytes,string) (#361-363) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#376-378) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#386-389) is never used and should be removed
Address.isContract(address) (#298-307) is never used and should be removed
Address.sendValue(address,uint256) (#325-331) is never used and should be removed
Context._msgData() (#270-273) is never used and should be removed
SafeMath.mod(uint256,uint256) (#243-245) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#259-262) is never used and should be removed
Remove unused functions.
Additional information: link
SafePizza._rTotal (#730) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SafePizza._previousTaxFee (#738) is set pre-construction with a non-constant function or state variable:
- _taxFee
SafePizza._previousLiquidityFee (#741) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#325-331):
- (success) = recipient.call{value: amount}() (#329)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#391-412):
- (success,returndata) = target.call{value: weiValue}(data) (#395)
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() (#537) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#538) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#555) is not in mixedCase
Function IUniswapV2Router01.WETH() (#577) is not in mixedCase
Parameter SafePizza.setSwapAndLiquifyEnabled(bool)._enabled (#924) is not in mixedCase
Parameter SafePizza.calculateTaxFee(uint256)._amount (#983) is not in mixedCase
Parameter SafePizza.calculateLiquidityFee(uint256)._amount (#989) is not in mixedCase
Variable SafePizza._taxFee (#737) is not in mixedCase
Variable SafePizza._liquidityFee (#740) is not in mixedCase
Variable SafePizza._maxTxAmount (#749) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#271)" inContext (#265-274)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#582) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#583)
Variable SafePizza._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SafePizza._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable SafePizza._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to SafePizza._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable SafePizza._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to SafePizza._getValues(uint256).tTransferAmount (#938)
Variable SafePizza._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to SafePizza._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable SafePizza._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SafePizza._getValues(uint256).tTransferAmount (#938)
Variable SafePizza._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to SafePizza._getValues(uint256).tTransferAmount (#938)
Variable SafePizza._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to SafePizza._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable SafePizza._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SafePizza._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable SafePizza._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to SafePizza._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable SafePizza._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to SafePizza._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable SafePizza._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to SafePizza._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable SafePizza._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SafePizza._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable SafePizza._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SafePizza._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable SafePizza._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to SafePizza._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable SafePizza._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to SafePizza._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable SafePizza._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#954) is too similar to SafePizza._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable SafePizza._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to SafePizza._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable SafePizza._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#954) is too similar to SafePizza._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable SafePizza._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to SafePizza._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable SafePizza._getValues(uint256).rTransferAmount (#939) is too similar to SafePizza._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable SafePizza.reflectionFromToken(uint256,bool).rTransferAmount (#858) is too similar to SafePizza._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable SafePizza._getValues(uint256).rTransferAmount (#939) is too similar to SafePizza._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable SafePizza._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#954) is too similar to SafePizza._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable SafePizza._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#954) is too similar to SafePizza._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable SafePizza._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to SafePizza._getTValues(uint256).tTransferAmount (#946)
Variable SafePizza.reflectionFromToken(uint256,bool).rTransferAmount (#858) is too similar to SafePizza._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable SafePizza._getValues(uint256).rTransferAmount (#939) is too similar to SafePizza._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable SafePizza._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to SafePizza._getValues(uint256).tTransferAmount (#938)
Variable SafePizza.reflectionFromToken(uint256,bool).rTransferAmount (#858) is too similar to SafePizza._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable SafePizza._getValues(uint256).rTransferAmount (#939) is too similar to SafePizza._getValues(uint256).tTransferAmount (#938)
Variable SafePizza._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to SafePizza._getTValues(uint256).tTransferAmount (#946)
Variable SafePizza._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#954) is too similar to SafePizza._getValues(uint256).tTransferAmount (#938)
Variable SafePizza.reflectionFromToken(uint256,bool).rTransferAmount (#858) is too similar to SafePizza._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable SafePizza._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to SafePizza._getTValues(uint256).tTransferAmount (#946)
Variable SafePizza._getValues(uint256).rTransferAmount (#939) is too similar to SafePizza._getTValues(uint256).tTransferAmount (#946)
Variable SafePizza._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to SafePizza._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable SafePizza.reflectionFromToken(uint256,bool).rTransferAmount (#858) is too similar to SafePizza._getValues(uint256).tTransferAmount (#938)
Variable SafePizza._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#954) is too similar to SafePizza._getTValues(uint256).tTransferAmount (#946)
Variable SafePizza.reflectionFromToken(uint256,bool).rTransferAmount (#858) is too similar to SafePizza._getTValues(uint256).tTransferAmount (#946)
Variable SafePizza._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to SafePizza._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable SafePizza._getValues(uint256).rTransferAmount (#939) is too similar to SafePizza._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable SafePizza._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SafePizza._getTValues(uint256).tTransferAmount (#946)
Prevent variables from having similar names.
Additional information: link
SafePizza.slitherConstructorVariables() (#715-1178) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 6 * 10 ** 9 (#729)
SafePizza.slitherConstructorVariables() (#715-1178) uses literals with too many digits:
- _maxTxAmount = 500000000 * 10 ** 6 * 10 ** 9 (#749)
SafePizza.slitherConstructorVariables() (#715-1178) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 50000000 * 10 ** 6 * 10 ** 9 (#750)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafePizza._decimals (#735) should be constant
SafePizza._name (#733) should be constant
SafePizza._symbol (#734) should be constant
SafePizza._tTotal (#729) should be constant
SafePizza.numTokensSellToAddToLiquidity (#750) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#465-468)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#474-478)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#480-482)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#485-490)
unlock() should be declared external:
- Ownable.unlock() (#493-498)
name() should be declared external:
- SafePizza.name() (#784-786)
symbol() should be declared external:
- SafePizza.symbol() (#788-790)
decimals() should be declared external:
- SafePizza.decimals() (#792-794)
totalSupply() should be declared external:
- SafePizza.totalSupply() (#796-798)
transfer(address,uint256) should be declared external:
- SafePizza.transfer(address,uint256) (#805-808)
allowance(address,address) should be declared external:
- SafePizza.allowance(address,address) (#810-812)
approve(address,uint256) should be declared external:
- SafePizza.approve(address,uint256) (#814-817)
transferFrom(address,address,uint256) should be declared external:
- SafePizza.transferFrom(address,address,uint256) (#819-823)
increaseAllowance(address,uint256) should be declared external:
- SafePizza.increaseAllowance(address,uint256) (#825-828)
decreaseAllowance(address,uint256) should be declared external:
- SafePizza.decreaseAllowance(address,uint256) (#830-833)
isExcludedFromReward(address) should be declared external:
- SafePizza.isExcludedFromReward(address) (#835-837)
totalFees() should be declared external:
- SafePizza.totalFees() (#839-841)
deliver(uint256) should be declared external:
- SafePizza.deliver(uint256) (#843-850)
reflectionFromToken(uint256,bool) should be declared external:
- SafePizza.reflectionFromToken(uint256,bool) (#852-861)
excludeFromReward(address) should be declared external:
- SafePizza.excludeFromReward(address) (#869-877)
excludeFromFee(address) should be declared external:
- SafePizza.excludeFromFee(address) (#902-904)
includeInFee(address) should be declared external:
- SafePizza.includeInFee(address) (#906-908)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SafePizza.setSwapAndLiquifyEnabled(bool) (#924-927)
isExcludedFromFee(address) should be declared external:
- SafePizza.isExcludedFromFee(address) (#1010-1012)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
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 number of swaps.
Token was delisted from CoinGecko
Additional information: link
Unable to find whitepaper link on the website
Token has no active CoinGecko listing / rank
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinMarketCap rank
Last post in Twitter was more than 30 days ago