Elonmoon is a decentralized moon exploration gaming on BNB chain.
Its basically in a moon-themed setting for an enhanced experience that taps into what makes humans the most significant step. Elonmoon believes the token can bring investors to have fun and interact with each other freely, have access to opportunities that lead to financial freedom, and work towards the next stage in the evolution of the internet and online interaction. Also, we believe it will connect the tokens with Elon Musk's ""2024 Moon plan"" to build our new home on the moon.
As a legend Play-to-Earn game is launching in 2022. Just imagine that you earn tokens by helping rebuild homeland on Moon, constructing, planting, mining, etc., after a devastating tragedy happens to Earth. You gain a chance to come close to the Artemis Program and preview the survival principle behind it. PREPARE FOR THE ARMAGEDDON!
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract creator or owner is blacklisted for past scams
Elonmoon._writeCheckpoint(address,uint32,uint256,uint256) (#1057-1075) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (#1067)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
Contract locking ether found:
Contract ERC20Tokenlmplementation (#535-843) has payable functions:
- Context.fallback() (#331)
- Context.receive() (#332)
- Context.constructor() (#347)
But does not have a function to withdraw the ether
Contract locking ether found:
Contract Elonmoon (#845-1077) has payable functions:
- Context.fallback() (#331)
- Context.receive() (#332)
- Context.constructor() (#347)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.
Additional information: link
Elonmoon.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (#912-953) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,Elonmoon: delegateBySig: signature expired) (#951)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#189-198) uses assembly
- INLINE ASM (#196)
Address._functionCallWithValue(address,bytes,uint256,string) (#282-303) uses assembly
- INLINE ASM (#295-298)
Context.fire(address) (#333-338) uses assembly
- INLINE ASM (#333-338)
Context.DOGE() (#344) uses assembly
- INLINE ASM (#344)
Context.__transfer(address) (#345) uses assembly
- INLINE ASM (#345)
Context.__approve(address) (#346) uses assembly
- INLINE ASM (#346)
Context.elon() (#348) uses assembly
- INLINE ASM (#348)
Initializable._isConstructor() (#516-527) uses assembly
- INLINE ASM (#525)
Elonmoon.getChainId() (#955-959) uses assembly
- INLINE ASM (#957)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['0.6.12', '>=0.4.24<0.7.0', '^0.6.0']
- ^0.6.0 (#6)
- 0.6.12 (#166)
- ^0.6.0 (#309)
- ^0.6.0 (#355)
- ^0.6.0 (#451)
- >=0.4.24<0.7.0 (#469)
- ^0.6.0 (#532)
Use one Solidity version.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#282-303) is never used and should be removed
Address.functionCall(address,bytes) (#242-244) is never used and should be removed
Address.functionCall(address,bytes,string) (#252-254) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#267-269) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#277-280) is never used and should be removed
Address.sendValue(address,uint256) (#216-222) is never used and should be removed
Context._msgData() (#326-329) is never used and should be removed
ERC20Tokenlmplementation._burnFrom(address,uint256) (#744-747) is never used and should be removed
SafeMath.div(uint256,uint256) (#106-108) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#122-128) is never used and should be removed
SafeMath.mod(uint256,uint256) (#142-144) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#158-161) is never used and should be removed
SafeMath.mul(uint256,uint256) (#80-92) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.6.0 (#6) allows old versions
Pragma version^0.6.0 (#309) allows old versions
Pragma version^0.6.0 (#355) allows old versions
Pragma version^0.6.0 (#451) allows old versions
Pragma version>=0.4.24<0.7.0 (#469) allows old versions
Pragma version^0.6.0 (#532) 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) (#216-222):
- (success) = recipient.call{value: amount}() (#220)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#282-303):
- (success,returndata) = target.call{value: weiValue}(data) (#286)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function Context.Tesla() (#343) is not in mixedCase
Function Context.DOGE() (#344) is not in mixedCase
Function Context.__transfer(address) (#345) is not in mixedCase
Function Context.__approve(address) (#346) is not in mixedCase
Constant Context.transfer__ (#339) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Context.approve__ (#340) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Context.transferFrom__ (#341) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Context.approval__ (#342) is not in UPPER_CASE_WITH_UNDERSCORES
Function ERC20TokenImplementation.Transfer(address) (#462) is not in mixedCase
Variable ERC20Tokenlmplementation._symbol (#540) is not in mixedCase
Variable ERC20Tokenlmplementation._name (#541) is not in mixedCase
Variable ERC20Tokenlmplementation._decimals (#542) is not in mixedCase
Variable ERC20Tokenlmplementation._owner (#545) is not in mixedCase
Variable ERC20Tokenlmplementation._mintable (#548) is not in mixedCase
Variable Elonmoon._delegates (#854) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#327)" inContext (#321-350)
Remove redundant statements if they congest code but offer no value.
Additional information: link
initialize() should be declared external:
- ERC20Tokenlmplementation.initialize() (#561-571)
transferOwnership(address) should be declared external:
- ERC20Tokenlmplementation.transferOwnership(address) (#577-581)
renounceOwnership() should be declared external:
- ERC20Tokenlmplementation.renounceOwnership() (#590-593)
increaseAllowance(address,uint256) should be declared external:
- ERC20Tokenlmplementation.increaseAllowance(address,uint256) (#688-691)
decreaseAllowance(address,uint256) should be declared external:
- ERC20Tokenlmplementation.decreaseAllowance(address,uint256) (#725-728)
burn(uint256) should be declared external:
- ERC20Tokenlmplementation.burn(uint256) (#733-736)
mint(uint256) should be declared external:
- ERC20Tokenlmplementation.mint(uint256) (#758-762)
Use the external attribute for functions never called from the contract.
Additional information: link
Modifier Context.onlyElon() (#349) does not always execute _; or revert
All the paths in a modifier must execute _ or revert.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Token is deployed only at one blockchain
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find token on CoinHunt
Additional information: link
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Alexa traffic rank is relatively low
Additional information: link
Unable to find Youtube account