PhoenixChain, Is a next-gen unique chain, bringing the real value with real utility on cryptocurrency. Providing for the other token that would join on our unique and next-gen Ecosystem The main idea behind PhoenixChain is to provide Decentralized Finance network, which operates on the Binance Smart Chain (BEP-20). The path forward for PCN is not just a token but we evolve into a coin, Building our independent own ecosystems.
Reentrancy in PhoenixChain._transfer(address,address,uint256,uint256) (#1032-1057):
External calls:
- swapAndLiquify(from,to) (#1045)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1348-1354)
External calls sending eth:
- swapAndLiquify(from,to) (#1045)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1056)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#986)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1085)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1094)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1105)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1086)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#906)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1096)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1106)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#908)
- _tokenTransfer(from,to,amount,takeFee) (#1056)
- _rTotal = _rTotal.sub(rFee) (#939)
- _tokenTransfer(from,to,amount,takeFee) (#1056)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#988)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#905)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1104)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1095)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#907)
Reentrancy in PhoenixChain.claimBNBReward() (#1158-1179):
External calls:
- (success) = address(charityAddress).call{value: charityamount}() (#1167)
State variables written after the call(s):
- nextAvailableClaimDate[msg.sender] = block.timestamp + getRewardCycleBlock() (#1174)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
PhoenixChain.claimBNBReward() (#1158-1179) contains a tautology or contradiction:
- require(bool,string)(balanceOf(msg.sender) >= 0,Error: must own PhoenixChain to claim reward) (#1160)
Fix the incorrect comparison by changing the value type or the comparison.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
PhoenixChain.includeInReward(address) (#890-901) has costly operations inside a loop:
- _excluded.pop() (#897)
Use a local variable to hold the loop computation result.
Additional information: link
Low level call in PhoenixChain.claimBNBReward() (#1158-1179):
- (success) = address(charityAddress).call{value: charityamount}() (#1167)
- (sent) = address(msg.sender).call{value: reward}() (#1177)
Low level call in Address.sendValue(address,uint256) (#278-284):
- (success) = recipient.call{value: amount}() (#282)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#344-365):
- (success,returndata) = target.call{value: weiValue}(data) (#348)
Low level call in PhoenixChain.migrateBnb(address,uint256) (#1301-1304):
- (success) = address(_newadd).call{value: amount}() (#1302)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
PhoenixChain._addLiquidity(address,uint256,uint256) (#1375-1389) ignores return value by pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
Ensure that all the return values of the function calls are used.
Additional information: link
PhoenixChain._addLiquidity(address,uint256,uint256).owner (#1376) shadows:
- Ownable.owner() (#387-389) (function)
PhoenixChain._approve(address,address,uint256).owner (#1024) shadows:
- Ownable.owner() (#387-389) (function)
PhoenixChain.allowance(address,address).owner (#821) shadows:
- Ownable.owner() (#387-389) (function)
Rename the local variables that shadow another component.
Additional information: link
PhoenixChain.changethreshHoldTopUpRate(uint256) (#1306-1308) should emit an event for:
- threshHoldTopUpRate = _newrate (#1307)
PhoenixChain.setMaxTxPercent(uint256) (#1134-1136) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10000) (#1135)
PhoenixChain.setLiquidityFeePercent(uint256) (#926-928) should emit an event for:
- _liquidityFee = liquidityFee (#927)
PhoenixChain.setTaxFeePercent(uint256) (#922-924) should emit an event for:
- _taxFee = taxFee (#923)
PhoenixChain.changerewardCycleBlock(uint256) (#1282-1284) should emit an event for:
- rewardCycleBlock = newcycle (#1283)
Emit an event for critical parameter changes.
Additional information: link
PhoenixChain.migrateBnb(address,uint256)._newadd (#1301) lacks a zero-check on :
- (success) = address(_newadd).call{value: amount}() (#1302)
PhoenixChain.changeCharityAddress(address)._newaddress (#1286) lacks a zero-check on :
- charityAddress = _newaddress (#1287)
Check that the address is not zero.
Additional information: link
Reentrancy in PhoenixChain._transfer(address,address,uint256,uint256) (#1032-1057):
External calls:
- swapAndLiquify(from,to) (#1045)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1348-1354)
External calls sending eth:
- swapAndLiquify(from,to) (#1045)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1056)
- _liquidityFee = _previousLiquidityFee (#1016)
- _liquidityFee = 0 (#1010)
- _tokenTransfer(from,to,amount,takeFee) (#1056)
- _previousLiquidityFee = _liquidityFee (#1007)
- _tokenTransfer(from,to,amount,takeFee) (#1056)
- _previousTaxFee = _taxFee (#1006)
- _tokenTransfer(from,to,amount,takeFee) (#1056)
- _tFeeTotal = _tFeeTotal.add(tFee) (#940)
- _tokenTransfer(from,to,amount,takeFee) (#1056)
- _taxFee = _previousTaxFee (#1015)
- _taxFee = 0 (#1009)
- _tokenTransfer(from,to,amount,takeFee) (#1056)
- nextAvailableClaimDate[recipient] = block.timestamp (#1186)
- nextAvailableClaimDate[recipient] = nextAvailableClaimDate[recipient] + _calculateTopUpClaim(currentRecipientBalance,basedRewardCycleBlock,amount) (#1189-1193)
Reentrancy in PhoenixChain.transferFrom(address,address,uint256) (#830-834):
External calls:
- _transfer(sender,recipient,amount,0) (#831)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1348-1354)
External calls sending eth:
- _transfer(sender,recipient,amount,0) (#831)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#832)
- _allowances[owner][spender] = amount (#1028)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PhoenixChain.transferFrom(address,address,uint256) (#830-834):
External calls:
- _transfer(sender,recipient,amount,0) (#831)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1348-1354)
External calls sending eth:
- _transfer(sender,recipient,amount,0) (#831)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1029)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#832)
Reentrancy in PhoenixChain.claimBNBReward() (#1158-1179):
External calls:
- (success) = address(charityAddress).call{value: charityamount}() (#1167)
Event emitted after the call(s):
- ClaimBNBSuccessfully(msg.sender,reward,nextAvailableClaimDate[msg.sender]) (#1175)
Reentrancy in PhoenixChain._transfer(address,address,uint256,uint256) (#1032-1057):
External calls:
- swapAndLiquify(from,to) (#1045)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1348-1354)
External calls sending eth:
- swapAndLiquify(from,to) (#1045)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1089)
- _tokenTransfer(from,to,amount,takeFee) (#1056)
- Transfer(sender,recipient,tTransferAmount) (#1109)
- _tokenTransfer(from,to,amount,takeFee) (#1056)
- Transfer(sender,recipient,tTransferAmount) (#1099)
- _tokenTransfer(from,to,amount,takeFee) (#1056)
- Transfer(sender,recipient,tTransferAmount) (#911)
- _tokenTransfer(from,to,amount,takeFee) (#1056)
Reentrancy in PhoenixChain.swapAndLiquify(address,address) (#1217-1264):
External calls:
- _swapTokensForEth(tokenAmountToBeSwapped) (#1248)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1348-1354)
- _addLiquidity(owner(),tokenAmountToLiquidity,bnbToBeAddedToLiquidity) (#1260)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
External calls sending eth:
- _addLiquidity(owner(),tokenAmountToLiquidity,bnbToBeAddedToLiquidity) (#1260)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1381-1388)
Event emitted after the call(s):
- SwapAndLiquify(tokenAmountToLiquidity,deltaBalance,tokenAmountToLiquidity) (#1262)
Apply the check-effects-interactions pattern.
Additional information: link
PhoenixChain.getRewardCycleBlock() (#1153-1156) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp >= disableEasyRewardFrom (#1154)
Ownable.unlock() (#434-439) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#436)
PhoenixChain.claimBNBReward() (#1158-1179) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(nextAvailableClaimDate[msg.sender] <= block.timestamp,Error: next available not reached) (#1159)
PhoenixChain.ensureMaxTxAmount(address,address,uint256,uint256) (#1196-1210) uses timestamp for comparisons
Dangerous comparisons:
- value < disruptiveCoverageFee && block.timestamp >= disruptiveTransferEnabledFrom (#1206)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#344-365) uses assembly
- INLINE ASM (#357-360)
Address.isContract(address) (#251-260) uses assembly
- INLINE ASM (#258)
Do not use evm assembly.
Additional information: link
PhoenixChain.ensureMaxTxAmount(address,address,uint256,uint256) (#1196-1210) compares to a boolean constant:
-_isExcludedFromMaxTx[from] == false && _isExcludedFromMaxTx[to] == false (#1203-1204)
Remove the equality to the boolean constant.
Additional information: link
Address.sendValue(address,uint256) (#278-284) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#329-331) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#215-218) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#339-342) is never used and should be removed
Context._msgData() (#226-230) is never used and should be removed
SafeMath.mod(uint256,uint256) (#199-201) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#344-365) is never used and should be removed
Address.isContract(address) (#251-260) is never used and should be removed
Address.functionCall(address,bytes,string) (#314-316) is never used and should be removed
Address.functionCall(address,bytes) (#304-306) is never used and should be removed
Remove unused functions.
Additional information: link
PhoenixChain._maxTxAmount (#1116) is set pre-construction with a non-constant function or state variable:
- _tTotal
PhoenixChain._previousTaxFee (#1126) is set pre-construction with a non-constant function or state variable:
- _taxFee
PhoenixChain._rTotal (#740) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
PhoenixChain._previousLiquidityFee (#1129) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
PhoenixChain.minTokenNumberToSell (#1132) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(1).div(10000).div(10)
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.6.8 (#7) allows old versions
Pragma version>=0.6.8 (#688) allows old versions
solc-0.6.8 is not recommended for deployment
Pragma version>=0.6.8 (#720) allows old versions
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
Parameter PhoenixChain.migrateToken(address,uint256)._newadress (#1295) is not in mixedCase
Parameter PhoenixChain._calculateBNBReward(uint256,uint256,uint256)._totalSupply (#1313) is not in mixedCase
Function IPancakeRouter01.WETH() (#536) is not in mixedCase
Function PhoenixChain._calculateBNBReward(uint256,uint256,uint256) (#1310-1316) is not in mixedCase
Parameter PhoenixChain.setSwapAndLiquifyEnabled(bool)._enabled (#930) is not in mixedCase
Parameter PhoenixChain.migrateBnb(address,uint256)._newadd (#1301) is not in mixedCase
Parameter PhoenixChain.calculateTaxFee(uint256)._amount (#991) is not in mixedCase
Function PhoenixChain._swapETHForTokens(address,uint256) (#1357-1373) is not in mixedCase
Parameter PhoenixChain.migrateToken(address,uint256)._amount (#1295) is not in mixedCase
Function PhoenixChain._addLiquidity(address,uint256,uint256) (#1375-1389) is not in mixedCase
Parameter PhoenixChain.changeCharityAddress(address)._newaddress (#1286) is not in mixedCase
Variable PhoenixChain._liquidityFee (#1128) is not in mixedCase
Function PhoenixChain._calculateTopUpClaim(uint256,uint256,uint256) (#1318-1339) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#504) is not in mixedCase
Parameter PhoenixChain.reflectionfeestartstop(bool)._value (#1291) is not in mixedCase
Parameter PhoenixChain.calculateLiquidityFee(uint256)._amount (#997) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#486) is not in mixedCase
Function IPancakePair.DOMAIN_SEPARATOR() (#484) is not in mixedCase
Parameter PhoenixChain.changethreshHoldTopUpRate(uint256)._newrate (#1306) is not in mixedCase
Variable PhoenixChain._taxFee (#1125) is not in mixedCase
Function PhoenixChain._swapTokensForEth(uint256) (#1341-1355) is not in mixedCase
Parameter PhoenixChain.setExcludeFromMaxTx(address,bool)._address (#1138) is not in mixedCase
Variable PhoenixChain._maxTxAmount (#1116) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#227)" inContext (#221-231)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable PhoenixChain._transferBothExcluded(address,address,uint256).rTransferAmount (#904) is too similar to PhoenixChain._transferFromExcluded(address,address,uint256).tTransferAmount (#1103)
Variable PhoenixChain._transferBothExcluded(address,address,uint256).rTransferAmount (#904) is too similar to PhoenixChain._getValues(uint256).tTransferAmount (#945)
Variable PhoenixChain._transferStandard(address,address,uint256).rTransferAmount (#1084) is too similar to PhoenixChain._getTValues(uint256).tTransferAmount (#953)
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#541) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#542)
Variable PhoenixChain._transferStandard(address,address,uint256).rTransferAmount (#1084) is too similar to PhoenixChain._transferStandard(address,address,uint256).tTransferAmount (#1084)
Variable PhoenixChain._getValues(uint256).rTransferAmount (#946) is too similar to PhoenixChain._transferToExcluded(address,address,uint256).tTransferAmount (#1093)
Variable PhoenixChain._transferFromExcluded(address,address,uint256).rTransferAmount (#1103) is too similar to PhoenixChain._getValues(uint256).tTransferAmount (#945)
Variable PhoenixChain._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#961) is too similar to PhoenixChain._transferBothExcluded(address,address,uint256).tTransferAmount (#904)
Variable PhoenixChain._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#961) is too similar to PhoenixChain._transferToExcluded(address,address,uint256).tTransferAmount (#1093)
Variable PhoenixChain._transferFromExcluded(address,address,uint256).rTransferAmount (#1103) is too similar to PhoenixChain._transferStandard(address,address,uint256).tTransferAmount (#1084)
Variable PhoenixChain._transferToExcluded(address,address,uint256).rTransferAmount (#1093) is too similar to PhoenixChain._getValues(uint256).tTransferAmount (#945)
Variable PhoenixChain._transferToExcluded(address,address,uint256).rTransferAmount (#1093) is too similar to PhoenixChain._transferBothExcluded(address,address,uint256).tTransferAmount (#904)
Variable PhoenixChain._getValues(uint256).rTransferAmount (#946) is too similar to PhoenixChain._transferStandard(address,address,uint256).tTransferAmount (#1084)
Variable PhoenixChain._getValues(uint256).rTransferAmount (#946) is too similar to PhoenixChain._getTValues(uint256).tTransferAmount (#953)
Variable PhoenixChain._transferBothExcluded(address,address,uint256).rTransferAmount (#904) is too similar to PhoenixChain._transferToExcluded(address,address,uint256).tTransferAmount (#1093)
Variable PhoenixChain._transferStandard(address,address,uint256).rTransferAmount (#1084) is too similar to PhoenixChain._getValues(uint256).tTransferAmount (#945)
Variable PhoenixChain._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#961) is too similar to PhoenixChain._transferStandard(address,address,uint256).tTransferAmount (#1084)
Variable PhoenixChain._getValues(uint256).rTransferAmount (#946) is too similar to PhoenixChain._getValues(uint256).tTransferAmount (#945)
Variable PhoenixChain.reflectionFromToken(uint256,bool).rTransferAmount (#869) is too similar to PhoenixChain._transferStandard(address,address,uint256).tTransferAmount (#1084)
Variable PhoenixChain.reflectionFromToken(uint256,bool).rTransferAmount (#869) is too similar to PhoenixChain._getValues(uint256).tTransferAmount (#945)
Variable PhoenixChain._transferBothExcluded(address,address,uint256).rTransferAmount (#904) is too similar to PhoenixChain._transferStandard(address,address,uint256).tTransferAmount (#1084)
Variable PhoenixChain._transferBothExcluded(address,address,uint256).rTransferAmount (#904) is too similar to PhoenixChain._getTValues(uint256).tTransferAmount (#953)
Variable PhoenixChain._transferStandard(address,address,uint256).rTransferAmount (#1084) is too similar to PhoenixChain._transferToExcluded(address,address,uint256).tTransferAmount (#1093)
Variable PhoenixChain._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#961) is too similar to PhoenixChain._getValues(uint256).tTransferAmount (#945)
Variable PhoenixChain._transferToExcluded(address,address,uint256).rTransferAmount (#1093) is too similar to PhoenixChain._transferFromExcluded(address,address,uint256).tTransferAmount (#1103)
Variable PhoenixChain._getValues(uint256).rTransferAmount (#946) is too similar to PhoenixChain._transferBothExcluded(address,address,uint256).tTransferAmount (#904)
Variable PhoenixChain._transferToExcluded(address,address,uint256).rTransferAmount (#1093) is too similar to PhoenixChain._getTValues(uint256).tTransferAmount (#953)
Variable PhoenixChain._transferFromExcluded(address,address,uint256).rTransferAmount (#1103) is too similar to PhoenixChain._transferToExcluded(address,address,uint256).tTransferAmount (#1093)
Variable PhoenixChain._transferToExcluded(address,address,uint256).rTransferAmount (#1093) is too similar to PhoenixChain._transferToExcluded(address,address,uint256).tTransferAmount (#1093)
Variable PhoenixChain._transferFromExcluded(address,address,uint256).rTransferAmount (#1103) is too similar to PhoenixChain._transferBothExcluded(address,address,uint256).tTransferAmount (#904)
Variable PhoenixChain._transferToExcluded(address,address,uint256).rTransferAmount (#1093) is too similar to PhoenixChain._transferStandard(address,address,uint256).tTransferAmount (#1084)
Variable PhoenixChain._transferBothExcluded(address,address,uint256).rTransferAmount (#904) is too similar to PhoenixChain._transferBothExcluded(address,address,uint256).tTransferAmount (#904)
Variable PhoenixChain._transferStandard(address,address,uint256).rTransferAmount (#1084) is too similar to PhoenixChain._transferFromExcluded(address,address,uint256).tTransferAmount (#1103)
Variable PhoenixChain._transferFromExcluded(address,address,uint256).rTransferAmount (#1103) is too similar to PhoenixChain._getTValues(uint256).tTransferAmount (#953)
Variable PhoenixChain.reflectionFromToken(uint256,bool).rTransferAmount (#869) is too similar to PhoenixChain._transferBothExcluded(address,address,uint256).tTransferAmount (#904)
Variable PhoenixChain.reflectionFromToken(uint256,bool).rTransferAmount (#869) is too similar to PhoenixChain._transferFromExcluded(address,address,uint256).tTransferAmount (#1103)
Variable PhoenixChain.reflectionFromToken(uint256,bool).rTransferAmount (#869) is too similar to PhoenixChain._transferToExcluded(address,address,uint256).tTransferAmount (#1093)
Variable PhoenixChain._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#961) is too similar to PhoenixChain._transferFromExcluded(address,address,uint256).tTransferAmount (#1103)
Variable PhoenixChain._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#961) is too similar to PhoenixChain._getTValues(uint256).tTransferAmount (#953)
Variable PhoenixChain._transferStandard(address,address,uint256).rTransferAmount (#1084) is too similar to PhoenixChain._transferBothExcluded(address,address,uint256).tTransferAmount (#904)
Variable PhoenixChain._transferFromExcluded(address,address,uint256).rTransferAmount (#1103) is too similar to PhoenixChain._transferFromExcluded(address,address,uint256).tTransferAmount (#1103)
Variable PhoenixChain.reflectionFromToken(uint256,bool).rTransferAmount (#869) is too similar to PhoenixChain._getTValues(uint256).tTransferAmount (#953)
Variable PhoenixChain._getValues(uint256).rTransferAmount (#946) is too similar to PhoenixChain._transferFromExcluded(address,address,uint256).tTransferAmount (#1103)
Prevent variables from having similar names.
Additional information: link
PhoenixChain.constructor() (#771-793) uses literals with too many digits:
- _isExcludedFromMaxTx[address(0x000000000000000000000000000000000000dEaD)] = true (#789)
PhoenixChain.calculateBNBReward(address) (#1142-1151) uses literals with too many digits:
- _totalSupply = uint256(_tTotal).sub(balanceOf(address(0))).sub(balanceOf(0x000000000000000000000000000000000000dEaD)).sub(balanceOf(address(pancakePair))) (#1143)
PhoenixChain.slitherConstructorVariables() (#722-1391) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 9 (#739)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
PhoenixChain._name (#743) should be constant
PhoenixChain._symbol (#744) should be constant
PhoenixChain.rewardThreshold (#1130) should be constant
PhoenixChain._tTotal (#739) should be constant
PhoenixChain._decimals (#745) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
claimBNBReward() should be declared external:
- PhoenixChain.claimBNBReward() (#1158-1179)
migrateToken(address,uint256) should be declared external:
- PhoenixChain.migrateToken(address,uint256) (#1295-1299)
isExcludedFromFee(address) should be declared external:
- PhoenixChain.isExcludedFromFee(address) (#1020-1022)
totalFees() should be declared external:
- PhoenixChain.totalFees() (#850-852)
reflectionFromToken(uint256,bool) should be declared external:
- PhoenixChain.reflectionFromToken(uint256,bool) (#863-872)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#406-409)
setExcludeFromMaxTx(address,bool) should be declared external:
- PhoenixChain.setExcludeFromMaxTx(address,bool) (#1138-1140)
allowance(address,address) should be declared external:
- PhoenixChain.allowance(address,address) (#821-823)
decimals() should be declared external:
- PhoenixChain.decimals() (#803-805)
changethreshHoldTopUpRate(uint256) should be declared external:
- PhoenixChain.changethreshHoldTopUpRate(uint256) (#1306-1308)
_swapETHForTokens(address,uint256) should be declared external:
- PhoenixChain._swapETHForTokens(address,uint256) (#1357-1373)
disruptiveTransfer(address,uint256) should be declared external:
- PhoenixChain.disruptiveTransfer(address,uint256) (#1212-1215)
reflectionfeestartstop(bool) should be declared external:
- PhoenixChain.reflectionfeestartstop(bool) (#1291-1293)
decreaseAllowance(address,uint256) should be declared external:
- PhoenixChain.decreaseAllowance(address,uint256) (#841-844)
excludeFromReward(address) should be declared external:
- PhoenixChain.excludeFromReward(address) (#880-888)
isExcludedFromReward(address) should be declared external:
- PhoenixChain.isExcludedFromReward(address) (#846-848)
activateContract() should be declared external:
- PhoenixChain.activateContract() (#1266-1280)
totalSupply() should be declared external:
- PhoenixChain.totalSupply() (#807-809)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#415-419)
transfer(address,uint256) should be declared external:
- PhoenixChain.transfer(address,uint256) (#816-819)
increaseAllowance(address,uint256) should be declared external:
- PhoenixChain.increaseAllowance(address,uint256) (#836-839)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#421-423)
transferFrom(address,address,uint256) should be declared external:
- PhoenixChain.transferFrom(address,address,uint256) (#830-834)
symbol() should be declared external:
- PhoenixChain.symbol() (#799-801)
name() should be declared external:
- PhoenixChain.name() (#795-797)
approve(address,uint256) should be declared external:
- PhoenixChain.approve(address,uint256) (#825-828)
unlock() should be declared external:
- Ownable.unlock() (#434-439)
migrateBnb(address,uint256) should be declared external:
- PhoenixChain.migrateBnb(address,uint256) (#1301-1304)
changerewardCycleBlock(uint256) should be declared external:
- PhoenixChain.changerewardCycleBlock(uint256) (#1282-1284)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#426-431)
excludeFromFee(address) should be declared external:
- PhoenixChain.excludeFromFee(address) (#914-916)
deliver(uint256) should be declared external:
- PhoenixChain.deliver(uint256) (#854-861)
includeInFee(address) should be declared external:
- PhoenixChain.includeInFee(address) (#918-920)
changeCharityAddress(address) should be declared external:
- PhoenixChain.changeCharityAddress(address) (#1286-1288)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Contract has 3% buy tax and 1% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find website, listings and other project-related information
Token has a considerable age, but we're still unable to find its website
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Last post in Twitter was more than 180 days ago