Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Pragma version^0.8.0 (#2) 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
Low level call in Address.sendValue(address,uint256) (#11-17):
- (success) = recipient.call{value: amount}() (#15)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#31-48):
- (success,returndata) = target.call{value: weiValue}(data) (#34)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Address.isContract(address) (#5-10) uses assembly
- INLINE ASM (#8)
Address._functionCallWithValue(address,bytes,uint256,string) (#31-48) uses assembly
- INLINE ASM (#40-43)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#31-48) is never used and should be removed
Address.functionCall(address,bytes) (#18-20) is never used and should be removed
Address.functionCall(address,bytes,string) (#21-23) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#24-26) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#27-30) is never used and should be removed
Address.isContract(address) (#5-10) is never used and should be removed
Address.sendValue(address,uint256) (#11-17) is never used and should be removed
ERC20._msgData() (#76-78) is never used and should be removed
Remove unused functions.
Additional information: link
Parameter ERC20.batchBalanceOf(address[])._accounts (#100) is not in mixedCase
Variable ERC20._balances (#66) is not in mixedCase
Variable ERC20._name (#69) is not in mixedCase
Variable ERC20._symbol (#70) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
name() should be declared external:
- ERC20.name() (#80-82)
symbol() should be declared external:
- ERC20.symbol() (#84-86)
decimals() should be declared external:
- ERC20.decimals() (#88-90)
totalSupply() should be declared external:
- ERC20.totalSupply() (#92-94)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#96-98)
batchBalanceOf(address[]) should be declared external:
- ERC20.batchBalanceOf(address[]) (#100-106)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#108-111)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#113-115)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#117-120)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#122-136)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#138-141)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#143-151)
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 is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts