The PHENIX is a community-driven cryptocurrency project. Aiming to start with a fair launch, the team did not make ICO and token sale. Instead, to attract the community, developers included a taxation model into the smart contract. Therefore, every token transfer triggers a 10% deduction. Then these funds go to the burning wallet, to existing token holders, and the liquidity pool.
The PHENIX is the BEP20 (BSC) token with automated burning and remuneration. So, to reward holders, the token smart contract deducts 10% from each transaction and reallocates it as follows. 5% goes to liquidity pool acquisition automatically. Also, 3% go to the personal wallets of all token holders. Then the contract swaps another 2% to the SAFEMOON and burns them on the SAFEMOON burning wallet.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in Phenix._transfer(address,address,uint256) (#1051-1097):
External calls:
- swapAndLiquify(contractTokenBalance) (#1082)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1082)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#988)
- _rOwned[_charityWallet] = _rOwned[_charityWallet].add(rCharity) (#997)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1186)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1176)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1198)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1177)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#885)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1199)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1188)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#887)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _rTotal = _rTotal.sub(rFee) (#937)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _tOwned[_charityWallet] = _tOwned[_charityWallet].add(tCharity) (#999)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#990)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1197)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#884)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1187)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#886)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
Phenix.addLiquidity(uint256,uint256) (#1140-1153) ignores return value by pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
Ensure that all the return values of the function calls are used.
Additional information: link
Phenix.allowance(address,address).owner (#798) shadows:
- Ownable.owner() (#424-426) (function)
Phenix._approve(address,address,uint256).owner (#1043) shadows:
- Ownable.owner() (#424-426) (function)
Rename the local variables that shadow another component.
Additional information: link
Phenix.setTaxFeePercent(uint256) (#907-909) should emit an event for:
- _taxFee = taxFee (#908)
Phenix.setLiquidityFeePercent(uint256) (#911-913) should emit an event for:
- _liquidityFee = liquidityFee (#912)
Phenix.setCharityFeePercent(uint256) (#915-917) should emit an event for:
- _charityFee = charityFee (#916)
Phenix.setMaxTxAmount(uint256) (#919-922) should emit an event for:
- _maxTxAmount = maxTxAmount (#920)
Emit an event for critical parameter changes.
Additional information: link
Ownable.constructor().msgSender (#416) lacks a zero-check on :
- _owner = msgSender (#417)
Phenix.constructor(address).charityWallet (#745) lacks a zero-check on :
- _charityWallet = charityWallet (#747)
Phenix.setCharityWallet(address).charityWallet (#902) lacks a zero-check on :
- _charityWallet = charityWallet (#903)
Check that the address is not zero.
Additional information: link
Reentrancy in Phenix._transfer(address,address,uint256) (#1051-1097):
External calls:
- swapAndLiquify(contractTokenBalance) (#1082)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1082)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _charityFee = _previousCharityFee (#1036)
- _charityFee = 0 (#1030)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _liquidityFee = _previousLiquidityFee (#1035)
- _liquidityFee = 0 (#1029)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _previousCharityFee = _charityFee (#1026)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _previousLiquidityFee = _liquidityFee (#1025)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _previousTaxFee = _taxFee (#1024)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _tFeeTotal = _tFeeTotal.add(tFee) (#938)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- _taxFee = _previousTaxFee (#1034)
- _taxFee = 0 (#1028)
Reentrancy in Phenix.constructor(address) (#745-765):
External calls:
- pancakeswapV2Pair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#754-755)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#761)
- _isExcludedFromFee[address(this)] = true (#762)
- pancakeswapV2Router = _pancakeswapV2Router (#758)
Reentrancy in Phenix.swapAndLiquify(uint256) (#1099-1120):
External calls:
- swapTokensForBnb(half) (#1111)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
- addLiquidity(otherHalf,newBalance) (#1117)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1117)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1117)
- _allowances[owner][spender] = amount (#1047)
Reentrancy in Phenix.transferFrom(address,address,uint256) (#807-812):
External calls:
- _transfer(sender,recipient,amount) (#808)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
External calls sending eth:
- _transfer(sender,recipient,amount) (#808)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#809)
- _allowances[owner][spender] = amount (#1047)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Phenix._transfer(address,address,uint256) (#1051-1097):
External calls:
- swapAndLiquify(contractTokenBalance) (#1082)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1082)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1181)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- Transfer(sender,recipient,tTransferAmount) (#1203)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- Transfer(sender,recipient,tTransferAmount) (#1192)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
- Transfer(sender,recipient,tTransferAmount) (#891)
- _tokenTransfer(from,to,amount,takeFee) (#1094)
Reentrancy in Phenix.constructor(address) (#745-765):
External calls:
- pancakeswapV2Pair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#754-755)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#764)
Reentrancy in Phenix.swapAndLiquify(uint256) (#1099-1120):
External calls:
- swapTokensForBnb(half) (#1111)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
- addLiquidity(otherHalf,newBalance) (#1117)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1117)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1048)
- addLiquidity(otherHalf,newBalance) (#1117)
- SwapAndLiquify(half,newBalance,otherHalf) (#1119)
Reentrancy in Phenix.transferFrom(address,address,uint256) (#807-812):
External calls:
- _transfer(sender,recipient,amount) (#808)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
External calls sending eth:
- _transfer(sender,recipient,amount) (#808)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1145-1152)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1048)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#809)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#471-476) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#473)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#276-285) uses assembly
- INLINE ASM (#283)
Address._functionCallWithValue(address,bytes,uint256,string) (#369-390) uses assembly
- INLINE ASM (#382-385)
Do not use evm assembly.
Additional information: link
Phenix.includeInReward(address) (#869-880) has costly operations inside a loop:
- _excluded.pop() (#876)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#369-390) is never used and should be removed
Address.functionCall(address,bytes) (#329-331) is never used and should be removed
Address.functionCall(address,bytes,string) (#339-341) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#354-356) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#364-367) is never used and should be removed
Address.isContract(address) (#276-285) is never used and should be removed
Address.sendValue(address,uint256) (#303-309) is never used and should be removed
Context._msgData() (#248-251) is never used and should be removed
Phenix.deliver(uint256) (#832-841) is never used and should be removed
SafeMath.mod(uint256,uint256) (#221-223) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#237-240) is never used and should be removed
Remove unused functions.
Additional information: link
Phenix._previousTaxFee (#712) is set pre-construction with a non-constant function or state variable:
- _taxFee
Phenix._previousLiquidityFee (#715) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Phenix._previousCharityFee (#718) is set pre-construction with a non-constant function or state variable:
- _charityFee
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.1 (#13) allows old versions
solc-0.8.1 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) (#303-309):
- (success) = recipient.call{value: amount}() (#307)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#369-390):
- (success,returndata) = target.call{value: weiValue}(data) (#373)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeswapV2Pair.DOMAIN_SEPARATOR() (#512) is not in mixedCase
Function IPancakeswapV2Pair.PERMIT_TYPEHASH() (#513) is not in mixedCase
Function IPancakeswapV2Pair.MINIMUM_LIQUIDITY() (#530) is not in mixedCase
Function IPancakeswapV2Router01.WETH() (#552) is not in mixedCase
Parameter Phenix.setSwapAndLiquifyEnabled(bool)._enabled (#924) is not in mixedCase
Parameter Phenix.calculateTaxFee(uint256)._amount (#1003) is not in mixedCase
Parameter Phenix.calculateLiquidityFee(uint256)._amount (#1009) is not in mixedCase
Parameter Phenix.calculateCharityFee(uint256)._amount (#1015) is not in mixedCase
Constant Phenix._tTotal (#703) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Phenix._name (#707) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Phenix._symbol (#708) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Phenix._decimals (#709) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Phenix._taxFee (#711) is not in mixedCase
Variable Phenix._liquidityFee (#714) is not in mixedCase
Variable Phenix._charityFee (#717) is not in mixedCase
Variable Phenix._maxTxAmount (#726) is not in mixedCase
Constant Phenix.numTokensSellToAddToLiquidity (#727) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#249)" inContext (#243-252)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IPancakeswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#557) is too similar to IPancakeswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#558)
Variable Phenix._getValues(uint256).rTransferAmount (#943) is too similar to Phenix._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable Phenix._getValues(uint256).rTransferAmount (#943) is too similar to Phenix._getValues(uint256).tTransferAmount (#942)
Variable Phenix._transferFromExcluded(address,address,uint256).rTransferAmount (#1196) is too similar to Phenix._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable Phenix._transferBothExcluded(address,address,uint256).rTransferAmount (#883) is too similar to Phenix._transferBothExcluded(address,address,uint256).tTransferAmount (#883)
Variable Phenix._transferToExcluded(address,address,uint256).rTransferAmount (#1185) is too similar to Phenix._getValues(uint256).tTransferAmount (#942)
Variable Phenix._getValues(uint256).rTransferAmount (#943) is too similar to Phenix._transferFromExcluded(address,address,uint256).tTransferAmount (#1196)
Variable Phenix._transferFromExcluded(address,address,uint256).rTransferAmount (#1196) is too similar to Phenix._transferBothExcluded(address,address,uint256).tTransferAmount (#883)
Variable Phenix._transferStandard(address,address,uint256).rTransferAmount (#1175) is too similar to Phenix._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable Phenix._transferStandard(address,address,uint256).rTransferAmount (#1175) is too similar to Phenix._transferBothExcluded(address,address,uint256).tTransferAmount (#883)
Variable Phenix.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to Phenix._getValues(uint256).tTransferAmount (#942)
Variable Phenix._getValues(uint256).rTransferAmount (#943) is too similar to Phenix._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable Phenix.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to Phenix._transferBothExcluded(address,address,uint256).tTransferAmount (#883)
Variable Phenix._transferFromExcluded(address,address,uint256).rTransferAmount (#1196) is too similar to Phenix._getTValues(uint256).tTransferAmount (#951)
Variable Phenix._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#960) is too similar to Phenix._transferBothExcluded(address,address,uint256).tTransferAmount (#883)
Variable Phenix._transferFromExcluded(address,address,uint256).rTransferAmount (#1196) is too similar to Phenix._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable Phenix._transferToExcluded(address,address,uint256).rTransferAmount (#1185) is too similar to Phenix._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable Phenix._transferBothExcluded(address,address,uint256).rTransferAmount (#883) is too similar to Phenix._getValues(uint256).tTransferAmount (#942)
Variable Phenix._getValues(uint256).rTransferAmount (#943) is too similar to Phenix._transferBothExcluded(address,address,uint256).tTransferAmount (#883)
Variable Phenix._transferFromExcluded(address,address,uint256).rTransferAmount (#1196) is too similar to Phenix._getValues(uint256).tTransferAmount (#942)
Variable Phenix._transferToExcluded(address,address,uint256).rTransferAmount (#1185) is too similar to Phenix._transferBothExcluded(address,address,uint256).tTransferAmount (#883)
Variable Phenix._transferFromExcluded(address,address,uint256).rTransferAmount (#1196) is too similar to Phenix._transferFromExcluded(address,address,uint256).tTransferAmount (#1196)
Variable Phenix._transferStandard(address,address,uint256).rTransferAmount (#1175) is too similar to Phenix._getTValues(uint256).tTransferAmount (#951)
Variable Phenix._transferStandard(address,address,uint256).rTransferAmount (#1175) is too similar to Phenix._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable Phenix._transferStandard(address,address,uint256).rTransferAmount (#1175) is too similar to Phenix._getValues(uint256).tTransferAmount (#942)
Variable Phenix._getValues(uint256).rTransferAmount (#943) is too similar to Phenix._getTValues(uint256).tTransferAmount (#951)
Variable Phenix._transferStandard(address,address,uint256).rTransferAmount (#1175) is too similar to Phenix._transferFromExcluded(address,address,uint256).tTransferAmount (#1196)
Variable Phenix._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#960) is too similar to Phenix._getValues(uint256).tTransferAmount (#942)
Variable Phenix._transferBothExcluded(address,address,uint256).rTransferAmount (#883) is too similar to Phenix._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable Phenix._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#960) is too similar to Phenix._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable Phenix.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to Phenix._transferFromExcluded(address,address,uint256).tTransferAmount (#1196)
Variable Phenix.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to Phenix._getTValues(uint256).tTransferAmount (#951)
Variable Phenix._transferToExcluded(address,address,uint256).rTransferAmount (#1185) is too similar to Phenix._transferFromExcluded(address,address,uint256).tTransferAmount (#1196)
Variable Phenix._transferToExcluded(address,address,uint256).rTransferAmount (#1185) is too similar to Phenix._getTValues(uint256).tTransferAmount (#951)
Variable Phenix._transferBothExcluded(address,address,uint256).rTransferAmount (#883) is too similar to Phenix._transferFromExcluded(address,address,uint256).tTransferAmount (#1196)
Variable Phenix.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to Phenix._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable Phenix._transferBothExcluded(address,address,uint256).rTransferAmount (#883) is too similar to Phenix._getTValues(uint256).tTransferAmount (#951)
Variable Phenix._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#960) is too similar to Phenix._transferFromExcluded(address,address,uint256).tTransferAmount (#1196)
Variable Phenix._transferToExcluded(address,address,uint256).rTransferAmount (#1185) is too similar to Phenix._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable Phenix._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#960) is too similar to Phenix._getTValues(uint256).tTransferAmount (#951)
Variable Phenix._transferBothExcluded(address,address,uint256).rTransferAmount (#883) is too similar to Phenix._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable Phenix.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to Phenix._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable Phenix._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#960) is too similar to Phenix._transferStandard(address,address,uint256).tTransferAmount (#1175)
Prevent variables from having similar names.
Additional information: link
Phenix.slitherConstructorVariables() (#687-1207) uses literals with too many digits:
- _maxTxAmount = 500000 * 10 ** 6 * 10 ** 9 (#726)
Phenix.slitherConstructorConstantVariables() (#687-1207) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 9 (#703)
Phenix.slitherConstructorConstantVariables() (#687-1207) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#727)
Phenix.slitherConstructorConstantVariables() (#687-1207) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (#728)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#443-446)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#452-456)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#458-460)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#463-468)
unlock() should be declared external:
- Ownable.unlock() (#471-476)
name() should be declared external:
- Phenix.name() (#767-769)
symbol() should be declared external:
- Phenix.symbol() (#771-773)
decimals() should be declared external:
- Phenix.decimals() (#775-777)
totalSupply() should be declared external:
- Phenix.totalSupply() (#779-781)
transfer(address,uint256) should be declared external:
- Phenix.transfer(address,uint256) (#792-796)
allowance(address,address) should be declared external:
- Phenix.allowance(address,address) (#798-800)
approve(address,uint256) should be declared external:
- Phenix.approve(address,uint256) (#802-805)
transferFrom(address,address,uint256) should be declared external:
- Phenix.transferFrom(address,address,uint256) (#807-812)
increaseAllowance(address,uint256) should be declared external:
- Phenix.increaseAllowance(address,uint256) (#814-817)
decreaseAllowance(address,uint256) should be declared external:
- Phenix.decreaseAllowance(address,uint256) (#819-822)
isExcludedFromReward(address) should be declared external:
- Phenix.isExcludedFromReward(address) (#824-826)
totalFees() should be declared external:
- Phenix.totalFees() (#828-830)
reflectionFromToken(uint256,bool) should be declared external:
- Phenix.reflectionFromToken(uint256,bool) (#843-852)
excludeFromReward(address) should be declared external:
- Phenix.excludeFromReward(address) (#860-867)
excludeFromFee(address) should be declared external:
- Phenix.excludeFromFee(address) (#894-896)
includeInFee(address) should be declared external:
- Phenix.includeInFee(address) (#898-900)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Phenix.setSwapAndLiquifyEnabled(bool) (#924-927)
isExcludedFromFee(address) should be declared external:
- Phenix.isExcludedFromFee(address) (#1039-1041)
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.
Contract has 10% buy tax and 10% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d PancakeSwap liquidity is low.
Average 30d number of PancakeSwap swaps is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
Token has only one trading pair
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
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
Telegram account has less than 100 subscribers
Last post in Twitter was more than 180 days ago
Twitter account has relatively few followers
Unable to find Blog account (Reddit or Medium)
Unable to find Discord account