Evermoon is the first Thailand mobile Multiplayer Online Battle Arena (MOBA) game bridged with blockchain technology, added up with Move-To-Earn mechanic. This Free-To-Play & Play-And-Earn GameFi brings superior experience by offering real enjoyment, real ownership to players, and real values to a community.
Evermoon will be created on Binance Smart Chain with a sustainable & attractive tokenomic mechanism, designed by integrating all aspects of the MOBA framework and bringing the Metaverse experience. Evermoon's mission is to bring the innovation that bridges a seamless experience in gaming and investment; that is why we offer a Play-and-Earn game, not a Play-to-Earn game, to grow a sustainable community that will drive a sustainable economy and growth.
Evermoon believes that
Entertainment could be more than entertaining.
Gaming could be more than just about games.
Spending-for-pleasure should be investing-with-pleasure.
Communicating should be value-creating for a broad community.
Spending time in game can now be investing time.
Incentive-driven GameFi should be altered to Pleasure-plus-bonus !
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
BurnableTeamToken.constructor(string,string,uint8,uint256,address,address).name (BurnableTeamToken.sol#15) shadows:
- ERC20.name() (ERC20.sol#65-67) (function)
BurnableTeamToken.constructor(string,string,uint8,uint256,address,address).symbol (BurnableTeamToken.sol#16) shadows:
- ERC20.symbol() (ERC20.sol#73-75) (function)
BurnableTeamToken.constructor(string,string,uint8,uint256,address,address).decimals (BurnableTeamToken.sol#17) shadows:
- ERC20.decimals() (ERC20.sol#90-92) (function)
TeamToken.constructor(string,string,uint8,uint256,address,address).name (TeamToken.sol#19) shadows:
- ERC20.name() (ERC20.sol#65-67) (function)
TeamToken.constructor(string,string,uint8,uint256,address,address).symbol (TeamToken.sol#20) shadows:
- ERC20.symbol() (ERC20.sol#73-75) (function)
TeamToken.constructor(string,string,uint8,uint256,address,address).decimals (TeamToken.sol#21) shadows:
- ERC20.decimals() (ERC20.sol#90-92) (function)
Rename the local variables that shadow another component.
Additional information: link
Different versions of Solidity is used:
- Version used: ['>=0.6.0<0.8.0', '>=0.6.2<0.8.0']
- >=0.6.2<0.8.0 (BurnableTeamToken.sol#3)
- >=0.6.0<0.8.0 (BurnableToken.sol#3)
- >=0.6.0<0.8.0 (Context.sol#3)
- >=0.6.0<0.8.0 (ERC20.sol#4)
- >=0.6.0<0.8.0 (IERC20.sol#3)
- >=0.6.0<0.8.0 (SafeMath.sol#3)
- >=0.6.2<0.8.0 (TeamToken.sol#3)
Use one Solidity version.
Additional information: link
Context._msgData() (Context.sol#20-23) is never used and should be removed
SafeMath.div(uint256,uint256) (SafeMath.sol#135-138) is never used and should be removed
SafeMath.div(uint256,uint256,string) (SafeMath.sol#190-193) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#152-155) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#210-213) is never used and should be removed
SafeMath.mul(uint256,uint256) (SafeMath.sol#116-121) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (SafeMath.sol#24-28) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (SafeMath.sol#60-63) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (SafeMath.sol#70-73) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (SafeMath.sol#45-53) is never used and should be removed
SafeMath.trySub(uint256,uint256) (SafeMath.sol#35-38) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.6.2<0.8.0 (BurnableTeamToken.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (BurnableToken.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (Context.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (ERC20.sol#4) is too complex
Pragma version>=0.6.0<0.8.0 (IERC20.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (SafeMath.sol#3) is too complex
Pragma version>=0.6.2<0.8.0 (TeamToken.sol#3) is too complex
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
Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-25)
Remove redundant statements if they congest code but offer no value.
Additional information: link
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (BurnableToken.sol#21-23)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (BurnableToken.sol#36-41)
name() should be declared external:
- ERC20.name() (ERC20.sol#65-67)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#73-75)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#90-92)
totalSupply() should be declared external:
- ERC20.totalSupply() (ERC20.sol#97-99)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (ERC20.sol#104-106)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#116-119)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#135-138)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#153-157)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#171-174)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#190-193)
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.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Average 30d number of PancakeSwap swaps is low.
Token is deployed only at one blockchain
Token has only one trading pair
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Unable to find Blog account (Reddit or Medium)