Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Token.allowance(address,address).owner (#566) shadows:
- Ownable.owner() (#455-457) (function)
Token._approve(address,address,uint256).owner (#656) shadows:
- Ownable.owner() (#455-457) (function)
Rename the local variables that shadow another component.
Additional information: link
Token.setMaxStopFeeTotal(uint256) (#651-654) should emit an event for:
- MAX_STOP_FEE_TOTAL = total (#652)
Emit an event for critical parameter changes.
Additional information: link
Address.isContract(address) (#303-312) uses assembly
- INLINE ASM (#310)
Address._functionCallWithValue(address,bytes,uint256,string) (#396-417) uses assembly
- INLINE ASM (#409-412)
Do not use evm assembly.
Additional information: link
Token.includeAccount(address) (#638-649) has costly operations inside a loop:
- _excluded.pop() (#645)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#396-417) is never used and should be removed
Address.functionCall(address,bytes) (#356-358) is never used and should be removed
Address.functionCall(address,bytes,string) (#366-368) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#381-383) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#391-394) is never used and should be removed
Address.isContract(address) (#303-312) is never used and should be removed
Address.sendValue(address,uint256) (#330-336) is never used and should be removed
Context._msgData() (#28-31) is never used and should be removed
SafeMath.mod(uint256,uint256) (#254-256) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#270-273) is never used and should be removed
Remove unused functions.
Additional information: link
Token._rTotal (#507) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Token._previousTaxFee (#524) is set pre-construction with a non-constant function or state variable:
- _taxFee
Token._previousBurnFee (#526) is set pre-construction with a non-constant function or state variable:
- _burnFee
Token._previousFundFee (#528) is set pre-construction with a non-constant function or state variable:
- _fundFee
Token.MAX_STOP_FEE_TOTAL (#529) is set pre-construction with a non-constant function or state variable:
- 388 * 10 ** uint256(_decimals)
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.0 (#11) allows old versions
Pragma version^0.6.0 (#38) allows old versions
Pragma version^0.6.0 (#118) allows old versions
Pragma version^0.6.0 (#280) allows old versions
Pragma version^0.6.0 (#424) allows old versions
Pragma version^0.6.0 (#492) allows old versions
solc-0.6.2 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) (#330-336):
- (success) = recipient.call{value: amount}() (#334)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#396-417):
- (success,returndata) = target.call{value: weiValue}(data) (#400)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter Token.calculateTaxFee(uint256)._amount (#705) is not in mixedCase
Parameter Token.calculateBurnFee(uint256)._amount (#711) is not in mixedCase
Parameter Token.calculateFundFee(uint256)._amount (#717) is not in mixedCase
Variable Token._taxFee (#523) is not in mixedCase
Variable Token._burnFee (#525) is not in mixedCase
Variable Token._fundFee (#527) is not in mixedCase
Variable Token.MAX_STOP_FEE_TOTAL (#529) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#29)" inContext (#23-32)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable Token._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#781) is too similar to Token._getTValues(uint256).tTransferAmount (#769)
Variable Token.reflectionFromToken(uint256,bool).rTransferAmount (#618) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (#686)
Variable Token._getValues(uint256).rTransferAmount (#760) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (#686)
Variable Token._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#781) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (#686)
Variable Token.reflectionFromToken(uint256,bool).rTransferAmount (#618) is too similar to Token._getValues(uint256).tTransferAmount (#759)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (#686) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (#686)
Variable Token._getValues(uint256).rTransferAmount (#760) is too similar to Token._getValues(uint256).tTransferAmount (#759)
Variable Token._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#781) is too similar to Token._getValues(uint256).tTransferAmount (#759)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (#686) is too similar to Token._getValues(uint256).tTransferAmount (#759)
Variable Token._getValues(uint256).rTransferAmount (#760) is too similar to Token._getTValues(uint256).tTransferAmount (#769)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (#686) is too similar to Token._getTValues(uint256).tTransferAmount (#769)
Variable Token.reflectionFromToken(uint256,bool).rTransferAmount (#618) is too similar to Token._getTValues(uint256).tTransferAmount (#769)
Prevent variables from having similar names.
Additional information: link
Token.slitherConstructorVariables() (#494-802) uses literals with too many digits:
- _burnPool = 0x000000000000000000000000000000000000dEaD (#516)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Token._burnPool (#516) should be constant
Token._decimals (#514) should be constant
Token._name (#512) should be constant
Token._symbol (#513) should be constant
Token.fundAddress (#518) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#474-477)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#483-487)
name() should be declared external:
- Token.name() (#540-542)
symbol() should be declared external:
- Token.symbol() (#544-546)
decimals() should be declared external:
- Token.decimals() (#548-550)
totalSupply() should be declared external:
- Token.totalSupply() (#552-554)
balanceOf(address) should be declared external:
- Token.balanceOf(address) (#556-559)
transfer(address,uint256) should be declared external:
- Token.transfer(address,uint256) (#561-564)
allowance(address,address) should be declared external:
- Token.allowance(address,address) (#566-568)
approve(address,uint256) should be declared external:
- Token.approve(address,uint256) (#570-573)
transferFrom(address,address,uint256) should be declared external:
- Token.transferFrom(address,address,uint256) (#575-579)
increaseAllowance(address,uint256) should be declared external:
- Token.increaseAllowance(address,uint256) (#581-584)
decreaseAllowance(address,uint256) should be declared external:
- Token.decreaseAllowance(address,uint256) (#586-589)
isExcluded(address) should be declared external:
- Token.isExcluded(address) (#591-593)
totalFees() should be declared external:
- Token.totalFees() (#595-597)
totalBurn() should be declared external:
- Token.totalBurn() (#599-601)
reflect(uint256) should be declared external:
- Token.reflect(uint256) (#603-610)
reflectionFromToken(uint256,bool) should be declared external:
- Token.reflectionFromToken(uint256,bool) (#612-621)
setMaxStopFeeTotal(uint256) should be declared external:
- Token.setMaxStopFeeTotal(uint256) (#651-654)
excludeFromFee(address) should be declared external:
- Token.excludeFromFee(address) (#739-741)
includeInFee(address) should be declared external:
- Token.includeInFee(address) (#743-745)
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