BaseToken._isExcludedFromFee (#78) is never initialized. It is used in:
- BaseToken._transfer(address,address,uint256) (#98-129)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
Token is flagged by TokenSniffer due to presence of exploit in contract code
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract locking ether found:
Contract Token (#223-238) has payable functions:
- Token.fallback() (#234-236)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
SafeMath.mod(uint256,uint256) (#32-35) is never used and should be removed
Remove unused functions.
Additional information: link
BaseToken._previousTaxFee (#84) is set pre-construction with a non-constant function or state variable:
- _taxFee
BaseToken._previousBurnFee (#87) is set pre-construction with a non-constant function or state variable:
- _burnFee
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.4.25 (#1) allows old versions
solc-0.4.25 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
Parameter BaseToken.calculateTaxFee(uint256)._amount (#175) is not in mixedCase
Parameter BaseToken.calculateBurnFee(uint256)._amount (#181) is not in mixedCase
Constant BaseToken.MAXSupply (#73) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BaseToken._taxFee (#83) is not in mixedCase
Variable BaseToken._burnFee (#86) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Token.slitherConstructorVariables() (#223-238) uses literals with too many digits:
- totalSupply = 1000000000 * 10 ** uint256(decimals) (#71)
Token.slitherConstructorVariables() (#223-238) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#93)
Token.slitherConstructorConstantVariables() (#223-238) uses literals with too many digits:
- MAXSupply = 10000000000000000000000000000000000000000000000000 * 10 ** uint256(decimals) (#73)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BaseToken.burnAddress (#93) should be constant
BaseToken.projectAddress (#90) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#48-52)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#54-57)
transfer(address,uint256) should be declared external:
- BaseToken.transfer(address,uint256) (#132-135)
transferFrom(address,address,uint256) should be declared external:
- BaseToken.transferFrom(address,address,uint256) (#137-141)
approve(address,uint256) should be declared external:
- BaseToken.approve(address,uint256) (#143-148)
increaseAllowance(address,uint256) should be declared external:
- BaseToken.increaseAllowance(address,uint256) (#150-155)
decreaseAllowance(address,uint256) should be declared external:
- BaseToken.decreaseAllowance(address,uint256) (#157-162)
mintToken(address,uint256) should be declared external:
- BaseToken.mintToken(address,uint256) (#165-173)
setLocked(address) should be declared external:
- BaseToken.setLocked(address) (#204-206)
setUnlocked(address) should be declared external:
- BaseToken.setUnlocked(address) (#209-211)
isLocked(address) should be declared external:
- BaseToken.isLocked(address) (#214-217)
fallback() should be declared external:
- Token.fallback() (#234-236)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Contract has 5% buy tax and 0% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d number of PancakeSwap swaps is low.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
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