Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in PlatonicCoin._transfer(address,address,uint256) (#639-669):
External calls:
- swapAndLiquify(contractTokenBalance) (#662)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#684-690)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#662)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#590)
- _rOwned[_developmentWalletAddress] = _rOwned[_developmentWalletAddress].add(rDevelopment) (#597)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#731)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#722)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#742)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#723)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#515)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#743)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#733)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#517)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _rTotal = _rTotal.sub(rFee) (#549)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _tOwned[_developmentWalletAddress] = _tOwned[_developmentWalletAddress].add(tDevelopment) (#599)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#592)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#741)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#514)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#732)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#516)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ticker ($PLATONIC) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
Redundant expression "this (#96)" inContext (#91-99)
Remove redundant statements if they congest code but offer no value.
Additional information: link
PlatonicCoin.addLiquidity(uint256,uint256) (#692-702) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
Ensure that all the return values of the function calls are used.
Additional information: link
PlatonicCoin.allowance(address,address).owner (#443) shadows:
- Ownable.owner() (#166-168) (function)
PlatonicCoin._approve(address,address,uint256).owner (#633) shadows:
- Ownable.owner() (#166-168) (function)
Rename the local variables that shadow another component.
Additional information: link
PlatonicCoin.setTaxFeePercent(uint256) (#529-531) should emit an event for:
- _taxFee = taxFee (#530)
PlatonicCoin.setDevelopmentFeePercent(uint256) (#532-534) should emit an event for:
- _developmentFee = developmentFee (#533)
PlatonicCoin.setLiquidityFeePercent(uint256) (#535-537) should emit an event for:
- _liquidityFee = liquidityFee (#536)
PlatonicCoin.setMaxTxPercent(uint256) (#538-542) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 3) (#539-541)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in PlatonicCoin._transfer(address,address,uint256) (#639-669):
External calls:
- swapAndLiquify(contractTokenBalance) (#662)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#684-690)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#662)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _developmentFee = _previousDevelopmentFee (#627)
- _developmentFee = 0 (#622)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _liquidityFee = _previousLiquidityFee (#628)
- _liquidityFee = 0 (#623)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousDevelopmentFee = _developmentFee (#619)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousLiquidityFee = _liquidityFee (#620)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousTaxFee = _taxFee (#618)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _tFeeTotal = _tFeeTotal.add(tFee) (#550)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _taxFee = _previousTaxFee (#626)
- _taxFee = 0 (#621)
Reentrancy in PlatonicCoin.constructor() (#413-422):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#416-417)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#419)
- _isExcludedFromFee[address(this)] = true (#420)
- uniswapV2Router = _uniswapV2Router (#418)
Reentrancy in PlatonicCoin.swapAndLiquify(uint256) (#670-678):
External calls:
- swapTokensForEth(half) (#674)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#684-690)
- addLiquidity(otherHalf,newBalance) (#676)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#676)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#676)
- _allowances[owner][spender] = amount (#636)
Reentrancy in PlatonicCoin.transferFrom(address,address,uint256) (#450-454):
External calls:
- _transfer(sender,recipient,amount) (#451)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#684-690)
External calls sending eth:
- _transfer(sender,recipient,amount) (#451)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#452)
- _allowances[owner][spender] = amount (#636)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PlatonicCoin._transfer(address,address,uint256) (#639-669):
External calls:
- swapAndLiquify(contractTokenBalance) (#662)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#684-690)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#662)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#727)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#737)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#747)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#521)
- _tokenTransfer(from,to,amount,takeFee) (#668)
Reentrancy in PlatonicCoin.constructor() (#413-422):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#416-417)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#421)
Reentrancy in PlatonicCoin.swapAndLiquify(uint256) (#670-678):
External calls:
- swapTokensForEth(half) (#674)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#684-690)
- addLiquidity(otherHalf,newBalance) (#676)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#676)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#637)
- addLiquidity(otherHalf,newBalance) (#676)
- SwapAndLiquify(half,newBalance,otherHalf) (#677)
Reentrancy in PlatonicCoin.transferFrom(address,address,uint256) (#450-454):
External calls:
- _transfer(sender,recipient,amount) (#451)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#684-690)
External calls sending eth:
- _transfer(sender,recipient,amount) (#451)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#694-701)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#637)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#452)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#102-106) uses assembly
- INLINE ASM (#104)
Address._verifyCallResult(bool,bytes,string) (#143-156) uses assembly
- INLINE ASM (#148-151)
Do not use evm assembly.
Additional information: link
PlatonicCoin.includeInReward(address) (#500-511) has costly operations inside a loop:
- _excluded.pop() (#507)
Use a local variable to hold the loop computation result.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#143-156) is never used and should be removed
Address.functionCall(address,bytes) (#112-114) is never used and should be removed
Address.functionCall(address,bytes,string) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#118-120) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#121-126) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#135-137) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#138-142) is never used and should be removed
Address.functionStaticCall(address,bytes) (#127-129) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#130-134) is never used and should be removed
Address.isContract(address) (#102-106) is never used and should be removed
Address.sendValue(address,uint256) (#107-111) is never used and should be removed
Context._msgData() (#95-98) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#77-82) is never used and should be removed
SafeMath.mod(uint256,uint256) (#68-70) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#83-88) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#23-29) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#44-49) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#50-55) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#36-43) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#30-35) is never used and should be removed
Remove unused functions.
Additional information: link
PlatonicCoin._rTotal (#383) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
PlatonicCoin._previousTaxFee (#389) is set pre-construction with a non-constant function or state variable:
- _taxFee
PlatonicCoin._previousDevelopmentFee (#391) is set pre-construction with a non-constant function or state variable:
- _developmentFee
PlatonicCoin._previousLiquidityFee (#393) 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) (#107-111):
- (success) = recipient.call{value: amount}() (#109)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#121-126):
- (success,returndata) = target.call{value: value}(data) (#124)
Low level call in Address.functionStaticCall(address,bytes,string) (#130-134):
- (success,returndata) = target.staticcall(data) (#132)
Low level call in Address.functionDelegateCall(address,bytes,string) (#138-142):
- (success,returndata) = target.delegatecall(data) (#140)
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() (#208) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#209) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#223) is not in mixedCase
Function IUniswapV2Router01.WETH() (#241) is not in mixedCase
Parameter PlatonicCoin.setSwapAndLiquifyEnabled(bool)._enabled (#543) is not in mixedCase
Parameter PlatonicCoin.calculateTaxFee(uint256)._amount (#601) is not in mixedCase
Parameter PlatonicCoin.calculateDevelopmentFee(uint256)._amount (#606) is not in mixedCase
Parameter PlatonicCoin.calculateLiquidityFee(uint256)._amount (#611) is not in mixedCase
Variable PlatonicCoin._developmentWalletAddress (#380) is not in mixedCase
Variable PlatonicCoin._taxFee (#388) is not in mixedCase
Variable PlatonicCoin._developmentFee (#390) is not in mixedCase
Variable PlatonicCoin._liquidityFee (#392) is not in mixedCase
Variable PlatonicCoin._maxTxAmount (#399) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#245) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#246)
Variable PlatonicCoin._takeDevelopment(uint256).rDevelopment (#596) is too similar to PlatonicCoin._transferStandard(address,address,uint256).tDevelopment (#721)
Variable PlatonicCoin._takeDevelopment(uint256).rDevelopment (#596) is too similar to PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).tDevelopment (#564)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#568) is too similar to PlatonicCoin._transferStandard(address,address,uint256).tDevelopment (#721)
Variable PlatonicCoin._takeDevelopment(uint256).rDevelopment (#596) is too similar to PlatonicCoin._takeDevelopment(uint256).tDevelopment (#594)
Variable PlatonicCoin._takeDevelopment(uint256).rDevelopment (#596) is too similar to PlatonicCoin._transferFromExcluded(address,address,uint256).tDevelopment (#740)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#568) is too similar to PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).tDevelopment (#564)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#568) is too similar to PlatonicCoin._transferFromExcluded(address,address,uint256).tDevelopment (#740)
Variable PlatonicCoin._takeDevelopment(uint256).rDevelopment (#596) is too similar to PlatonicCoin._getValues(uint256).tDevelopment (#553)
Variable PlatonicCoin._takeDevelopment(uint256).rDevelopment (#596) is too similar to PlatonicCoin._transferBothExcluded(address,address,uint256).tDevelopment (#513)
Variable PlatonicCoin._takeDevelopment(uint256).rDevelopment (#596) is too similar to PlatonicCoin._getTValues(uint256).tDevelopment (#560)
Variable PlatonicCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#740) is too similar to PlatonicCoin._transferStandard(address,address,uint256).tTransferAmount (#721)
Variable PlatonicCoin._transferToExcluded(address,address,uint256).rTransferAmount (#730) is too similar to PlatonicCoin._transferStandard(address,address,uint256).tTransferAmount (#721)
Variable PlatonicCoin._getValues(uint256).rTransferAmount (#554) is too similar to PlatonicCoin._getTValues(uint256).tTransferAmount (#561)
Variable PlatonicCoin._transferStandard(address,address,uint256).rTransferAmount (#721) is too similar to PlatonicCoin._getTValues(uint256).tTransferAmount (#561)
Variable PlatonicCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#513) is too similar to PlatonicCoin._getTValues(uint256).tTransferAmount (#561)
Variable PlatonicCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#740) is too similar to PlatonicCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#740)
Variable PlatonicCoin._transferToExcluded(address,address,uint256).rTransferAmount (#730) is too similar to PlatonicCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#740)
Variable PlatonicCoin.reflectionFromToken(uint256,bool).rTransferAmount (#483) is too similar to PlatonicCoin._getTValues(uint256).tTransferAmount (#561)
Variable PlatonicCoin.reflectionFromToken(uint256,bool).rTransferAmount (#483) is too similar to PlatonicCoin._transferToExcluded(address,address,uint256).tTransferAmount (#730)
Variable PlatonicCoin._transferToExcluded(address,address,uint256).rTransferAmount (#730) is too similar to PlatonicCoin._getValues(uint256).tTransferAmount (#553)
Variable PlatonicCoin._transferToExcluded(address,address,uint256).rTransferAmount (#730) is too similar to PlatonicCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#513)
Variable PlatonicCoin._getValues(uint256).rTransferAmount (#554) is too similar to PlatonicCoin._transferStandard(address,address,uint256).tTransferAmount (#721)
Variable PlatonicCoin._transferStandard(address,address,uint256).rTransferAmount (#721) is too similar to PlatonicCoin._transferStandard(address,address,uint256).tTransferAmount (#721)
Variable PlatonicCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#513) is too similar to PlatonicCoin._transferStandard(address,address,uint256).tTransferAmount (#721)
Variable PlatonicCoin._getValues(uint256).rTransferAmount (#554) is too similar to PlatonicCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#740)
Variable PlatonicCoin._transferStandard(address,address,uint256).rTransferAmount (#721) is too similar to PlatonicCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#740)
Variable PlatonicCoin.reflectionFromToken(uint256,bool).rTransferAmount (#483) is too similar to PlatonicCoin._transferStandard(address,address,uint256).tTransferAmount (#721)
Variable PlatonicCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#513) is too similar to PlatonicCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#740)
Variable PlatonicCoin._transferToExcluded(address,address,uint256).rTransferAmount (#730) is too similar to PlatonicCoin._getTValues(uint256).tTransferAmount (#561)
Variable PlatonicCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#740) is too similar to PlatonicCoin._getTValues(uint256).tTransferAmount (#561)
Variable PlatonicCoin.reflectionFromToken(uint256,bool).rTransferAmount (#483) is too similar to PlatonicCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#740)
Variable PlatonicCoin._transferToExcluded(address,address,uint256).rTransferAmount (#730) is too similar to PlatonicCoin._transferToExcluded(address,address,uint256).tTransferAmount (#730)
Variable PlatonicCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#513) is too similar to PlatonicCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#513)
Variable PlatonicCoin.reflectionFromToken(uint256,bool).rTransferAmount (#483) is too similar to PlatonicCoin._getValues(uint256).tTransferAmount (#553)
Variable PlatonicCoin.reflectionFromToken(uint256,bool).rTransferAmount (#483) is too similar to PlatonicCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#513)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#568) is too similar to PlatonicCoin._transferToExcluded(address,address,uint256).tDevelopment (#730)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#568) is too similar to PlatonicCoin._takeDevelopment(uint256).tDevelopment (#594)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#568) is too similar to PlatonicCoin._getValues(uint256).tDevelopment (#553)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#568) is too similar to PlatonicCoin._getTValues(uint256).tDevelopment (#560)
Variable PlatonicCoin._takeDevelopment(uint256).rDevelopment (#596) is too similar to PlatonicCoin._transferToExcluded(address,address,uint256).tDevelopment (#730)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#568) is too similar to PlatonicCoin._transferBothExcluded(address,address,uint256).tDevelopment (#513)
Variable PlatonicCoin._getValues(uint256).rTransferAmount (#554) is too similar to PlatonicCoin._transferToExcluded(address,address,uint256).tTransferAmount (#730)
Variable PlatonicCoin._transferStandard(address,address,uint256).rTransferAmount (#721) is too similar to PlatonicCoin._transferToExcluded(address,address,uint256).tTransferAmount (#730)
Variable PlatonicCoin._getValues(uint256).rTransferAmount (#554) is too similar to PlatonicCoin._getValues(uint256).tTransferAmount (#553)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#569) is too similar to PlatonicCoin._transferStandard(address,address,uint256).tTransferAmount (#721)
Variable PlatonicCoin._transferStandard(address,address,uint256).rTransferAmount (#721) is too similar to PlatonicCoin._getValues(uint256).tTransferAmount (#553)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#569) is too similar to PlatonicCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#513)
Variable PlatonicCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#740) is too similar to PlatonicCoin._transferToExcluded(address,address,uint256).tTransferAmount (#730)
Variable PlatonicCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#740) is too similar to PlatonicCoin._getValues(uint256).tTransferAmount (#553)
Variable PlatonicCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#513) is too similar to PlatonicCoin._transferToExcluded(address,address,uint256).tTransferAmount (#730)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#569) is too similar to PlatonicCoin._getTValues(uint256).tTransferAmount (#561)
Variable PlatonicCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#513) is too similar to PlatonicCoin._getValues(uint256).tTransferAmount (#553)
Variable PlatonicCoin._getValues(uint256).rTransferAmount (#554) is too similar to PlatonicCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#513)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#569) is too similar to PlatonicCoin._transferToExcluded(address,address,uint256).tTransferAmount (#730)
Variable PlatonicCoin._transferStandard(address,address,uint256).rTransferAmount (#721) is too similar to PlatonicCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#513)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#569) is too similar to PlatonicCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#740)
Variable PlatonicCoin._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#569) is too similar to PlatonicCoin._getValues(uint256).tTransferAmount (#553)
Variable PlatonicCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#740) is too similar to PlatonicCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#513)
Prevent variables from having similar names.
Additional information: link
PlatonicCoin.slitherConstructorVariables() (#371-750) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 18 (#382)
PlatonicCoin.slitherConstructorVariables() (#371-750) uses literals with too many digits:
- _maxTxAmount = 30000000000 * 10 ** 18 (#399)
PlatonicCoin.slitherConstructorVariables() (#371-750) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000000 * 10 ** 18 (#400)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
PlatonicCoin._decimals (#387) should be constant
PlatonicCoin._developmentWalletAddress (#380) should be constant
PlatonicCoin._name (#385) should be constant
PlatonicCoin._symbol (#386) should be constant
PlatonicCoin._tTotal (#382) should be constant
PlatonicCoin.numTokensSellToAddToLiquidity (#400) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#173-176)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#177-181)
name() should be declared external:
- PlatonicCoin.name() (#423-425)
symbol() should be declared external:
- PlatonicCoin.symbol() (#426-428)
decimals() should be declared external:
- PlatonicCoin.decimals() (#429-431)
totalSupply() should be declared external:
- PlatonicCoin.totalSupply() (#432-434)
transfer(address,uint256) should be declared external:
- PlatonicCoin.transfer(address,uint256) (#439-442)
allowance(address,address) should be declared external:
- PlatonicCoin.allowance(address,address) (#443-445)
approve(address,uint256) should be declared external:
- PlatonicCoin.approve(address,uint256) (#446-449)
transferFrom(address,address,uint256) should be declared external:
- PlatonicCoin.transferFrom(address,address,uint256) (#450-454)
increaseAllowance(address,uint256) should be declared external:
- PlatonicCoin.increaseAllowance(address,uint256) (#455-458)
decreaseAllowance(address,uint256) should be declared external:
- PlatonicCoin.decreaseAllowance(address,uint256) (#459-462)
isExcludedFromReward(address) should be declared external:
- PlatonicCoin.isExcludedFromReward(address) (#463-465)
totalFees() should be declared external:
- PlatonicCoin.totalFees() (#466-468)
deliver(uint256) should be declared external:
- PlatonicCoin.deliver(uint256) (#469-476)
reflectionFromToken(uint256,bool) should be declared external:
- PlatonicCoin.reflectionFromToken(uint256,bool) (#477-486)
excludeFromReward(address) should be declared external:
- PlatonicCoin.excludeFromReward(address) (#492-499)
excludeFromFee(address) should be declared external:
- PlatonicCoin.excludeFromFee(address) (#523-525)
includeInFee(address) should be declared external:
- PlatonicCoin.includeInFee(address) (#526-528)
setSwapAndLiquifyEnabled(bool) should be declared external:
- PlatonicCoin.setSwapAndLiquifyEnabled(bool) (#543-546)
isExcludedFromFee(address) should be declared external:
- PlatonicCoin.isExcludedFromFee(address) (#630-632)
Use the external attribute for functions never called from the contract.
Additional information: link
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap liquidity 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
Average 30d number of PancakeSwap swaps is low.
Contract has 5% buy tax and 6% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
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