Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in PerseusToken._transfer(address,address,uint256) (#635-665):
External calls:
- swapAndLiquify(contractTokenBalance) (#658)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#658)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#586)
- _rOwned[_developmentWalletAddress] = _rOwned[_developmentWalletAddress].add(rDevelopment) (#593)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#727)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#718)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#738)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#719)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#511)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#739)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#729)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#513)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _rTotal = _rTotal.sub(rFee) (#545)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _tOwned[_developmentWalletAddress] = _tOwned[_developmentWalletAddress].add(tDevelopment) (#595)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#588)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#737)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#510)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#728)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#512)
Apply the check-effects-interactions pattern.
Additional information: link
PerseusToken.addLiquidity(uint256,uint256) (#688-698) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
Ensure that all the return values of the function calls are used.
Additional information: link
PerseusToken.allowance(address,address).owner (#439) shadows:
- Ownable.owner() (#162-164) (function)
PerseusToken._approve(address,address,uint256).owner (#629) shadows:
- Ownable.owner() (#162-164) (function)
Rename the local variables that shadow another component.
Additional information: link
PerseusToken.setTaxFeePercent(uint256) (#525-527) should emit an event for:
- _taxFee = taxFee (#526)
PerseusToken.setDevelopmentFeePercent(uint256) (#528-530) should emit an event for:
- _developmentFee = developmentFee (#529)
PerseusToken.setLiquidityFeePercent(uint256) (#531-533) should emit an event for:
- _liquidityFee = liquidityFee (#532)
PerseusToken.setMaxTxPercent(uint256) (#534-538) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 3) (#535-537)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in PerseusToken._transfer(address,address,uint256) (#635-665):
External calls:
- swapAndLiquify(contractTokenBalance) (#658)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#658)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _developmentFee = _previousDevelopmentFee (#623)
- _developmentFee = 0 (#618)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _liquidityFee = _previousLiquidityFee (#624)
- _liquidityFee = 0 (#619)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _previousDevelopmentFee = _developmentFee (#615)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _previousLiquidityFee = _liquidityFee (#616)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _previousTaxFee = _taxFee (#614)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _tFeeTotal = _tFeeTotal.add(tFee) (#546)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _taxFee = _previousTaxFee (#622)
- _taxFee = 0 (#617)
Reentrancy in PerseusToken.constructor() (#409-418):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#412-413)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#415)
- _isExcludedFromFee[address(this)] = true (#416)
- uniswapV2Router = _uniswapV2Router (#414)
Reentrancy in PerseusToken.swapAndLiquify(uint256) (#666-674):
External calls:
- swapTokensForEth(half) (#670)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
- addLiquidity(otherHalf,newBalance) (#672)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#672)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#672)
- _allowances[owner][spender] = amount (#632)
Reentrancy in PerseusToken.transferFrom(address,address,uint256) (#446-450):
External calls:
- _transfer(sender,recipient,amount) (#447)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- _transfer(sender,recipient,amount) (#447)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#448)
- _allowances[owner][spender] = amount (#632)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PerseusToken._transfer(address,address,uint256) (#635-665):
External calls:
- swapAndLiquify(contractTokenBalance) (#658)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#658)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#723)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- Transfer(sender,recipient,tTransferAmount) (#733)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- Transfer(sender,recipient,tTransferAmount) (#743)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- Transfer(sender,recipient,tTransferAmount) (#517)
- _tokenTransfer(from,to,amount,takeFee) (#664)
Reentrancy in PerseusToken.constructor() (#409-418):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#412-413)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#417)
Reentrancy in PerseusToken.swapAndLiquify(uint256) (#666-674):
External calls:
- swapTokensForEth(half) (#670)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
- addLiquidity(otherHalf,newBalance) (#672)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#672)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#633)
- addLiquidity(otherHalf,newBalance) (#672)
- SwapAndLiquify(half,newBalance,otherHalf) (#673)
Reentrancy in PerseusToken.transferFrom(address,address,uint256) (#446-450):
External calls:
- _transfer(sender,recipient,amount) (#447)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- _transfer(sender,recipient,amount) (#447)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#690-697)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#633)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#448)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#98-102) uses assembly
- INLINE ASM (#100)
Address._verifyCallResult(bool,bytes,string) (#139-152) uses assembly
- INLINE ASM (#144-147)
Do not use evm assembly.
Additional information: link
PerseusToken.includeInReward(address) (#496-507) has costly operations inside a loop:
- _excluded.pop() (#503)
Use a local variable to hold the loop computation result.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#139-152) is never used and should be removed
Address.functionCall(address,bytes) (#108-110) is never used and should be removed
Address.functionCall(address,bytes,string) (#111-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#114-116) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#117-122) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#131-133) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#134-138) is never used and should be removed
Address.functionStaticCall(address,bytes) (#123-125) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#126-130) is never used and should be removed
Address.isContract(address) (#98-102) is never used and should be removed
Address.sendValue(address,uint256) (#103-107) is never used and should be removed
Context._msgData() (#91-94) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#73-78) is never used and should be removed
SafeMath.mod(uint256,uint256) (#64-66) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#79-84) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#19-25) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#40-45) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#46-51) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#32-39) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#26-31) is never used and should be removed
Remove unused functions.
Additional information: link
PerseusToken._rTotal (#379) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
PerseusToken._previousTaxFee (#385) is set pre-construction with a non-constant function or state variable:
- _taxFee
PerseusToken._previousDevelopmentFee (#387) is set pre-construction with a non-constant function or state variable:
- _developmentFee
PerseusToken._previousLiquidityFee (#389) 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) (#103-107):
- (success) = recipient.call{value: amount}() (#105)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#117-122):
- (success,returndata) = target.call{value: value}(data) (#120)
Low level call in Address.functionStaticCall(address,bytes,string) (#126-130):
- (success,returndata) = target.staticcall(data) (#128)
Low level call in Address.functionDelegateCall(address,bytes,string) (#134-138):
- (success,returndata) = target.delegatecall(data) (#136)
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() (#204) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#205) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#219) is not in mixedCase
Function IUniswapV2Router01.WETH() (#237) is not in mixedCase
Parameter PerseusToken.setSwapAndLiquifyEnabled(bool)._enabled (#539) is not in mixedCase
Parameter PerseusToken.calculateTaxFee(uint256)._amount (#597) is not in mixedCase
Parameter PerseusToken.calculateDevelopmentFee(uint256)._amount (#602) is not in mixedCase
Parameter PerseusToken.calculateLiquidityFee(uint256)._amount (#607) is not in mixedCase
Variable PerseusToken._taxFee (#384) is not in mixedCase
Variable PerseusToken._developmentFee (#386) is not in mixedCase
Variable PerseusToken._liquidityFee (#388) is not in mixedCase
Variable PerseusToken._maxTxAmount (#395) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#92)" inContext (#87-95)
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 (#241) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#242)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#564) is too similar to PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).tDevelopment (#560)
Variable PerseusToken._takeDevelopment(uint256).rDevelopment (#592) is too similar to PerseusToken._getValues(uint256).tDevelopment (#549)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#564) is too similar to PerseusToken._getValues(uint256).tDevelopment (#549)
Variable PerseusToken._takeDevelopment(uint256).rDevelopment (#592) is too similar to PerseusToken._takeDevelopment(uint256).tDevelopment (#590)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#564) is too similar to PerseusToken._transferToExcluded(address,address,uint256).tDevelopment (#726)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#564) is too similar to PerseusToken._takeDevelopment(uint256).tDevelopment (#590)
Variable PerseusToken._transferToExcluded(address,address,uint256).rTransferAmount (#726) is too similar to PerseusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#509)
Variable PerseusToken._transferToExcluded(address,address,uint256).rTransferAmount (#726) is too similar to PerseusToken._getValues(uint256).tTransferAmount (#549)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to PerseusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#509)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to PerseusToken._getValues(uint256).tTransferAmount (#549)
Variable PerseusToken._transferStandard(address,address,uint256).rTransferAmount (#717) is too similar to PerseusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#736)
Variable PerseusToken.reflectionFromToken(uint256,bool).rTransferAmount (#479) is too similar to PerseusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#509)
Variable PerseusToken.reflectionFromToken(uint256,bool).rTransferAmount (#479) is too similar to PerseusToken._getValues(uint256).tTransferAmount (#549)
Variable PerseusToken._transferFromExcluded(address,address,uint256).rTransferAmount (#736) is too similar to PerseusToken._transferToExcluded(address,address,uint256).tTransferAmount (#726)
Variable PerseusToken._transferFromExcluded(address,address,uint256).rTransferAmount (#736) is too similar to PerseusToken._getTValues(uint256).tTransferAmount (#557)
Variable PerseusToken._transferStandard(address,address,uint256).rTransferAmount (#717) is too similar to PerseusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#509)
Variable PerseusToken._transferStandard(address,address,uint256).rTransferAmount (#717) is too similar to PerseusToken._getValues(uint256).tTransferAmount (#549)
Variable PerseusToken._transferToExcluded(address,address,uint256).rTransferAmount (#726) is too similar to PerseusToken._transferToExcluded(address,address,uint256).tTransferAmount (#726)
Variable PerseusToken._transferToExcluded(address,address,uint256).rTransferAmount (#726) is too similar to PerseusToken._getTValues(uint256).tTransferAmount (#557)
Variable PerseusToken._transferBothExcluded(address,address,uint256).rTransferAmount (#509) is too similar to PerseusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#509)
Variable PerseusToken._transferFromExcluded(address,address,uint256).rTransferAmount (#736) is too similar to PerseusToken._transferStandard(address,address,uint256).tTransferAmount (#717)
Variable PerseusToken.reflectionFromToken(uint256,bool).rTransferAmount (#479) is too similar to PerseusToken._transferToExcluded(address,address,uint256).tTransferAmount (#726)
Variable PerseusToken.reflectionFromToken(uint256,bool).rTransferAmount (#479) is too similar to PerseusToken._getTValues(uint256).tTransferAmount (#557)
Variable PerseusToken._transferStandard(address,address,uint256).rTransferAmount (#717) is too similar to PerseusToken._transferToExcluded(address,address,uint256).tTransferAmount (#726)
Variable PerseusToken._transferStandard(address,address,uint256).rTransferAmount (#717) is too similar to PerseusToken._getTValues(uint256).tTransferAmount (#557)
Variable PerseusToken._transferFromExcluded(address,address,uint256).rTransferAmount (#736) is too similar to PerseusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#736)
Variable PerseusToken._transferFromExcluded(address,address,uint256).rTransferAmount (#736) is too similar to PerseusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#509)
Variable PerseusToken._transferFromExcluded(address,address,uint256).rTransferAmount (#736) is too similar to PerseusToken._getValues(uint256).tTransferAmount (#549)
Variable PerseusToken._transferStandard(address,address,uint256).rTransferAmount (#717) is too similar to PerseusToken._transferStandard(address,address,uint256).tTransferAmount (#717)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#564) is too similar to PerseusToken._transferStandard(address,address,uint256).tDevelopment (#717)
Variable PerseusToken._takeDevelopment(uint256).rDevelopment (#592) is too similar to PerseusToken._transferStandard(address,address,uint256).tDevelopment (#717)
Variable PerseusToken._takeDevelopment(uint256).rDevelopment (#592) is too similar to PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).tDevelopment (#560)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#564) is too similar to PerseusToken._getTValues(uint256).tDevelopment (#556)
Variable PerseusToken._takeDevelopment(uint256).rDevelopment (#592) is too similar to PerseusToken._getTValues(uint256).tDevelopment (#556)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#564) is too similar to PerseusToken._transferBothExcluded(address,address,uint256).tDevelopment (#509)
Variable PerseusToken._takeDevelopment(uint256).rDevelopment (#592) is too similar to PerseusToken._transferBothExcluded(address,address,uint256).tDevelopment (#509)
Variable PerseusToken._takeDevelopment(uint256).rDevelopment (#592) is too similar to PerseusToken._transferToExcluded(address,address,uint256).tDevelopment (#726)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#564) is too similar to PerseusToken._transferFromExcluded(address,address,uint256).tDevelopment (#736)
Variable PerseusToken._takeDevelopment(uint256).rDevelopment (#592) is too similar to PerseusToken._transferFromExcluded(address,address,uint256).tDevelopment (#736)
Variable PerseusToken._getValues(uint256).rTransferAmount (#550) is too similar to PerseusToken._getValues(uint256).tTransferAmount (#549)
Variable PerseusToken._transferBothExcluded(address,address,uint256).rTransferAmount (#509) is too similar to PerseusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#736)
Variable PerseusToken._getValues(uint256).rTransferAmount (#550) is too similar to PerseusToken._transferStandard(address,address,uint256).tTransferAmount (#717)
Variable PerseusToken._transferBothExcluded(address,address,uint256).rTransferAmount (#509) is too similar to PerseusToken._transferToExcluded(address,address,uint256).tTransferAmount (#726)
Variable PerseusToken.reflectionFromToken(uint256,bool).rTransferAmount (#479) is too similar to PerseusToken._transferStandard(address,address,uint256).tTransferAmount (#717)
Variable PerseusToken._getValues(uint256).rTransferAmount (#550) is too similar to PerseusToken._getTValues(uint256).tTransferAmount (#557)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to PerseusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#736)
Variable PerseusToken._transferBothExcluded(address,address,uint256).rTransferAmount (#509) is too similar to PerseusToken._getValues(uint256).tTransferAmount (#549)
Variable PerseusToken._getValues(uint256).rTransferAmount (#550) is too similar to PerseusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#509)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to PerseusToken._transferToExcluded(address,address,uint256).tTransferAmount (#726)
Variable PerseusToken._transferBothExcluded(address,address,uint256).rTransferAmount (#509) is too similar to PerseusToken._transferStandard(address,address,uint256).tTransferAmount (#717)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to PerseusToken._getTValues(uint256).tTransferAmount (#557)
Variable PerseusToken._transferToExcluded(address,address,uint256).rTransferAmount (#726) is too similar to PerseusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#736)
Variable PerseusToken._transferBothExcluded(address,address,uint256).rTransferAmount (#509) is too similar to PerseusToken._getTValues(uint256).tTransferAmount (#557)
Variable PerseusToken._getValues(uint256).rTransferAmount (#550) is too similar to PerseusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#736)
Variable PerseusToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to PerseusToken._transferStandard(address,address,uint256).tTransferAmount (#717)
Variable PerseusToken._getValues(uint256).rTransferAmount (#550) is too similar to PerseusToken._transferToExcluded(address,address,uint256).tTransferAmount (#726)
Variable PerseusToken.reflectionFromToken(uint256,bool).rTransferAmount (#479) is too similar to PerseusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#736)
Variable PerseusToken._transferToExcluded(address,address,uint256).rTransferAmount (#726) is too similar to PerseusToken._transferStandard(address,address,uint256).tTransferAmount (#717)
Prevent variables from having similar names.
Additional information: link
PerseusToken.slitherConstructorVariables() (#367-746) uses literals with too many digits:
- _tTotal = 10000000000000 * 10 ** 18 (#378)
PerseusToken.slitherConstructorVariables() (#367-746) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 18 (#395)
PerseusToken.slitherConstructorVariables() (#367-746) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000000 * 10 ** 18 (#396)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
PerseusToken._decimals (#383) should be constant
PerseusToken._developmentWalletAddress (#376) should be constant
PerseusToken._name (#381) should be constant
PerseusToken._symbol (#382) should be constant
PerseusToken._tTotal (#378) should be constant
PerseusToken.numTokensSellToAddToLiquidity (#396) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#169-172)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#173-177)
name() should be declared external:
- PerseusToken.name() (#419-421)
symbol() should be declared external:
- PerseusToken.symbol() (#422-424)
decimals() should be declared external:
- PerseusToken.decimals() (#425-427)
totalSupply() should be declared external:
- PerseusToken.totalSupply() (#428-430)
transfer(address,uint256) should be declared external:
- PerseusToken.transfer(address,uint256) (#435-438)
allowance(address,address) should be declared external:
- PerseusToken.allowance(address,address) (#439-441)
approve(address,uint256) should be declared external:
- PerseusToken.approve(address,uint256) (#442-445)
transferFrom(address,address,uint256) should be declared external:
- PerseusToken.transferFrom(address,address,uint256) (#446-450)
increaseAllowance(address,uint256) should be declared external:
- PerseusToken.increaseAllowance(address,uint256) (#451-454)
decreaseAllowance(address,uint256) should be declared external:
- PerseusToken.decreaseAllowance(address,uint256) (#455-458)
isExcludedFromReward(address) should be declared external:
- PerseusToken.isExcludedFromReward(address) (#459-461)
totalFees() should be declared external:
- PerseusToken.totalFees() (#462-464)
deliver(uint256) should be declared external:
- PerseusToken.deliver(uint256) (#465-472)
reflectionFromToken(uint256,bool) should be declared external:
- PerseusToken.reflectionFromToken(uint256,bool) (#473-482)
excludeFromReward(address) should be declared external:
- PerseusToken.excludeFromReward(address) (#488-495)
excludeFromFee(address) should be declared external:
- PerseusToken.excludeFromFee(address) (#519-521)
includeInFee(address) should be declared external:
- PerseusToken.includeInFee(address) (#522-524)
setSwapAndLiquifyEnabled(bool) should be declared external:
- PerseusToken.setSwapAndLiquifyEnabled(bool) (#539-542)
isExcludedFromFee(address) should be declared external:
- PerseusToken.isExcludedFromFee(address) (#626-628)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts