GYMMOVE (GYM) is a web 3 mobile application, you earn by moving, you can earn rewards through the heartbeat detected on your smartwatch, movements such as: working out, walking, running, cycling, football, volleyball and everyone else.
GYM will start with aggressive marketing, such as listing on Coinmarketcap, partnerships with major influencers and much more, know about GYM through our social networks, participate in AIRDROP 🎁.
🔥Missed StepN (GMT) ? Join the revolution of GymMov🔥
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
GymMov.setMarketingPool(address)._marketingPool (gym.sol#55) lacks a zero-check on :
- marketingPool = _marketingPool (gym.sol#56)
Check that the address is not zero.
Additional information: link
GymMov._transfer(address,address,uint256) (gym.sol#81-104) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(lastTrade[sender] < (block.timestamp - tradeCooldown),string(No consecutive sells allowed. Please wait.)) (gym.sol#91)
Avoid relying on block.timestamp.
Additional information: link
GymMov._transfer(address,address,uint256) (gym.sol#81-104) compares to a boolean constant:
-liquidityPool[receiver] == true (gym.sol#87)
GymMov._transfer(address,address,uint256) (gym.sol#81-104) compares to a boolean constant:
-liquidityPool[sender] == true (gym.sol#84)
Remove the equality to the boolean constant.
Additional information: link
GymMov.constructor() (gym.sol#29-37) uses literals with too many digits:
- totalTokens = 50000000 * 10 ** uint256(decimals()) (gym.sol#30)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BEP20.allowance(address,address).owner (BEP20.sol#66) shadows:
- BEPOwnable.owner() (BEPOwnable.sol#30-32) (function)
BEP20._approve(address,address,uint256).owner (BEP20.sol#225) shadows:
- BEPOwnable.owner() (BEPOwnable.sol#30-32) (function)
Rename the local variables that shadow another component.
Additional information: link
Redundant expression "this (BEPContext.sol#24)" inBEPContext (BEPContext.sol#14-28)
Remove redundant statements if they congest code but offer no value.
Additional information: link
BEP20._burn(address,uint256) (BEP20.sol#203-209) is never used and should be removed
BEP20._burnFrom(address,uint256) (BEP20.sol#242-249) is never used and should be removed
BEPContext._msgData() (BEPContext.sol#23-26) is never used and should be removed
SafeMath.div(uint256,uint256) (SafeMath.sol#103-105) is never used and should be removed
SafeMath.div(uint256,uint256,string) (SafeMath.sol#120-131) is never used and should be removed
SafeMath.mul(uint256,uint256) (SafeMath.sol#79-90) is never used and should be removed
SafeMath.sub(uint256,uint256) (SafeMath.sol#44-46) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (BEP20.sol#2) allows old versions
Pragma version^0.8.0 (BEP20Detailed.sol#2) allows old versions
Pragma version^0.8.0 (BEPContext.sol#2) allows old versions
Pragma version^0.8.0 (BEPOwnable.sol#2) allows old versions
Pragma version^0.8.0 (IBEP20.sol#2) allows old versions
Pragma version^0.8.0 (SafeMath.sol#2) allows old versions
Pragma version^0.8.0 (gym.sol#2) allows old versions
solc-0.8.0 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
Event GymMovchangeBlacklist(address,bool) (gym.sol#22) is not in CapWords
Event GymMovchangeCooldown(uint8) (gym.sol#23) is not in CapWords
Event GymMovchangeTax(uint8,uint8,uint8) (gym.sol#24) is not in CapWords
Event GymMovchangeLiquidityPoolStatus(address,bool) (gym.sol#25) is not in CapWords
Event GymMovchangeMarketingPool(address) (gym.sol#26) is not in CapWords
Event GymMovchangeWhitelistTax(address,bool) (gym.sol#27) is not in CapWords
Parameter GymMov.setBlacklist(address,bool)._wallet (gym.sol#40) is not in mixedCase
Parameter GymMov.setBlacklist(address,bool)._status (gym.sol#40) is not in mixedCase
Parameter GymMov.setCooldownForTrades(uint8)._tradeCooldown (gym.sol#45) is not in mixedCase
Parameter GymMov.setLiquidityPoolStatus(address,bool)._lpAddress (gym.sol#50) is not in mixedCase
Parameter GymMov.setLiquidityPoolStatus(address,bool)._status (gym.sol#50) is not in mixedCase
Parameter GymMov.setMarketingPool(address)._marketingPool (gym.sol#55) is not in mixedCase
Parameter GymMov.setTaxes(uint8,uint8,uint8)._sellTax (gym.sol#60) is not in mixedCase
Parameter GymMov.setTaxes(uint8,uint8,uint8)._buyTax (gym.sol#60) is not in mixedCase
Parameter GymMov.setTaxes(uint8,uint8,uint8)._transferTax (gym.sol#60) is not in mixedCase
Parameter GymMov.setWhitelist(address,bool)._address (gym.sol#74) is not in mixedCase
Parameter GymMov.setWhitelist(address,bool)._status (gym.sol#74) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
totalSupply() should be declared external:
- BEP20.totalSupply() (BEP20.sol#39-41)
balanceOf(address) should be declared external:
- BEP20.balanceOf(address) (BEP20.sol#46-48)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (BEP20.sol#58-61)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (BEP20.sol#66-68)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (BEP20.sol#77-80)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (BEP20.sol#94-106)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (BEP20.sol#120-123)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (BEP20.sol#139-146)
name() should be declared external:
- BEP20Detailed.name() (BEP20Detailed.sol#29-31)
symbol() should be declared external:
- BEP20Detailed.symbol() (BEP20Detailed.sol#37-39)
owner() should be declared external:
- BEPOwnable.owner() (BEPOwnable.sol#30-32)
renounceOwnership() should be declared external:
- BEPOwnable.renounceOwnership() (BEPOwnable.sol#56-59)
transferOwnership(address) should be declared external:
- BEPOwnable.transferOwnership(address) (BEPOwnable.sol#65-67)
Use the external attribute for functions never called from the contract.
Additional information: link
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 CoinHunt
Additional information: link
Unable to find code repository for the project
Token is not listed at Mobula.Finance
Additional information: link
Young tokens have high risks of scam / price dump / death
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
Unable to find Youtube account