MOVE Earn Token Logo

MOVE [MOVE Earn] Token

About MOVE

Listings

Token 2 years
white paper

MOVE Earn is a Web3 Activity App.
With Game-Fi, MOVE Earn aims to bring millions of people together toward a healthier lifestyle with activities they are interested in or already love using Web 3.0
Players earn by walking, running, hiking, club activities, users will earn game currency, which can either be used in-game, or cashed out for profit.
Phase #1 includes Staking, user stake their $MOVE Tokens to earn others.

Laser Scorebeta Last Audit: 8 June 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.


Contract ownership is not renounced (belongs to a wallet)

Reentrancy in MoveEarn._transfer(address,address,uint256) (#1205-1232):
External calls:
- swapBack() (#1223)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiverEth,block.timestamp) (#1257-1263)
State variables written after the call(s):
- super._transfer(sender,recipient,_amount) (#1231)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#988-991)
- _balances[recipient] = _balances[recipient].add(amount) (#992)
- _amount = takeFee(sender,amount) (#1227-1229)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#988-991)
- _balances[recipient] = _balances[recipient].add(amount) (#992)
- _amount = takeFee(sender,amount) (#1227-1229)
- inSwap = true (#1185)
- inSwap = false (#1187)
Apply the check-effects-interactions pattern.

Additional information: link

TokenERC20.constructor(string,string,uint8).name (#1117) shadows:
- ERC20.name() (#782-784) (function)
TokenERC20.constructor(string,string,uint8).symbol (#1118) shadows:
- ERC20.symbol() (#790-792) (function)
TokenERC20.constructor(string,string,uint8).decimals (#1119) shadows:
- ERC20.decimals() (#807-809) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in MoveEarn._transfer(address,address,uint256) (#1205-1232):
External calls:
- swapBack() (#1223)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiverEth,block.timestamp) (#1257-1263)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#993)
- _amount = takeFee(sender,amount) (#1227-1229)
- Transfer(sender,recipient,amount) (#993)
- super._transfer(sender,recipient,_amount) (#1231)
Apply the check-effects-interactions pattern.

Additional information: link

TokenERC20.isAntiWhaleEnded() (#1131-1133) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp > antiWhaleStartTime + antiWhaleDuration (#1132)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#323-327) is never used and should be removed
ERC20._setupDecimals(uint8) (#1071-1073) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#200-207) is never used and should be removed
SafeMath.mod(uint256,uint256) (#158-161) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#224-231) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#10-18) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#58-65) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#72-79) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#39-51) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#25-32) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.2 (#2) allows old versions
solc-0.8.12 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

Function IUniswapV2Router01.WETH() (#363) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#599) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#601) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#632) is not in mixedCase
Parameter TokenERC20.setAntiWhaleAmount(uint256)._amount (#1122) is not in mixedCase
Parameter TokenERC20.setStakingAddress(address)._stakingAddress (#1134) is not in mixedCase
Parameter TokenERC20.setTransferFeeRate(uint256,uint256,uint256)._buyFeeRate (#1141) is not in mixedCase
Parameter TokenERC20.setTransferFeeRate(uint256,uint256,uint256)._treasuryAndMarketingFeeRate (#1142) is not in mixedCase
Parameter TokenERC20.setTransferFeeRate(uint256,uint256,uint256)._stakeFeeRate (#1143) is not in mixedCase
Parameter TokenERC20.setPresaleAddress(address)._presaleAddress (#1155) is not in mixedCase
Parameter TokenERC20.sweepToken(address,address)._token (#1164) is not in mixedCase
Parameter TokenERC20.sweepToken(address,address)._to (#1164) is not in mixedCase
Constant TokenERC20.feeDenominator (#1102) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TokenERC20.antiWhaleDuration (#1106) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TokenERC20.antiWhaleMin (#1111) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TokenERC20.antiWhaleMax (#1112) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter MoveEarn.takeFee(address,uint256)._amount (#1277) is not in mixedCase
Constant MoveEarn.maxSupply (#1178) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#368) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#369)
Prevent variables from having similar names.

Additional information: link

TokenERC20.treasuryAddress (#1108) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#728-731)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#737-744)
name() should be declared external:
- ERC20.name() (#782-784)
symbol() should be declared external:
- ERC20.symbol() (#790-792)
decimals() should be declared external:
- ERC20.decimals() (#807-809)
totalSupply() should be declared external:
- ERC20.totalSupply() (#814-816)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#839-847)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#852-860)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#869-877)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#892-907)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#921-932)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#948-962)
setAntiWhaleAmount(uint256) should be declared external:
- TokenERC20.setAntiWhaleAmount(uint256) (#1122-1129)
setTransferFeeRate(uint256,uint256,uint256) should be declared external:
- TokenERC20.setTransferFeeRate(uint256,uint256,uint256) (#1140-1153)
setPresaleAddress(address) should be declared external:
- TokenERC20.setPresaleAddress(address) (#1155-1157)
sweepBNB() should be declared external:
- TokenERC20.sweepBNB() (#1159-1162)
sweepToken(address,address) should be declared external:
- TokenERC20.sweepToken(address,address) (#1164-1168)
burn(uint256) should be declared external:
- MoveEarn.burn(uint256) (#1201-1203)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Telegram account has less than 100 subscribers


Unable to find Discord account


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

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

Price for MOVE

News for MOVE