Game Coin Token Logo

GMEX [Game Coin] Token

About GMEX

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

Game Coin aims to allow any athlete in the world the ability to create their own sports token. These athletes will be on a new type of social media platform that allows token holders the ability to speculate on these athletes through tokenization.

Social

Laser Scorebeta Last Audit: 24 April 2022

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

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

GMEX.sendBNBToCharity(uint256) (#1560-1565) sends eth to arbitrary user
Dangerous calls:
- _charityWalletAddress.transfer(newBalance) (#1564)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in GMEX._transfer(address,address,uint256) (#1495-1534):
External calls:
- swapAndLiquify(contractTokenBalance) (#1521)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1551-1557)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1521)
- _charityWalletAddress.transfer(newBalance) (#1564)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _rOwned[address(this)] = _rOwned[address(this)].add(rCharity) (#1435)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1615)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1635)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1657)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1616)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1296)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1637)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1658)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1298)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _rTotal = _rTotal.sub(rFee) (#1341)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _tOwned[address(this)] = _tOwned[address(this)].add(tCharity) (#1437)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1295)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1656)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1636)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1297)
Apply the check-effects-interactions pattern.

Additional information: link

GMEX.withdrawTokens(IERC20,address) (#1664-1667) ignores return value by token.transfer(wallet,balanceOfContract) (#1666)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)

GMEX.includeInReward(address) (#1245-1256) has costly operations inside a loop:
- _excluded.pop() (#1252)
GMEX.removeBotFromBlacklist(address) (#1268-1280) has costly operations inside a loop:
- _blackListedBots.pop() (#1276)
GMEX.removeAllFee() (#1452-1460) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#1455)
GMEX.removeAllFee() (#1452-1460) has costly operations inside a loop:
- _previousLiquidityFee = _charityfee (#1456)
GMEX.removeAllFee() (#1452-1460) has costly operations inside a loop:
- _taxFee = 0 (#1458)
GMEX.removeAllFee() (#1452-1460) has costly operations inside a loop:
- _charityfee = 0 (#1459)
GMEX._reflectFee(uint256,uint256) (#1340-1343) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#1341)
GMEX._reflectFee(uint256,uint256) (#1340-1343) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#1342)
GMEX.restoreAllFee() (#1462-1465) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#1463)
GMEX.restoreAllFee() (#1462-1465) has costly operations inside a loop:
- _charityfee = _previousLiquidityFee (#1464)
Use a local variable to hold the loop computation result.

Additional information: link

GMEX._transfer(address,address,uint256) (#1495-1534) uses tx.origin for authorization: require(bool,string)(! _isBlackListedBot[tx.origin],You are blacklisted) (#1505)
Do not use tx.origin for authorization.

Additional information: link

GMEX.allowance(address,address).owner (#1113) shadows:
- Ownable.owner() (#534-536) (function)
GMEX._approve(address,address,uint256).owner (#1484) shadows:
- Ownable.owner() (#534-536) (function)
Rename the local variables that shadow another component.

Additional information: link

GMEX.withdrawFunds(address).wallet (#1669) lacks a zero-check on :
- address(wallet).transfer(balanceOfContract) (#1671)
Check that the address is not zero.

Additional information: link

Reentrancy in GMEX._transfer(address,address,uint256) (#1495-1534):
External calls:
- swapAndLiquify(contractTokenBalance) (#1521)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1551-1557)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1521)
- _charityWalletAddress.transfer(newBalance) (#1564)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _charityfee = _previousLiquidityFee (#1464)
- _charityfee = 0 (#1459)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _previousLiquidityFee = _charityfee (#1456)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _previousTaxFee = _taxFee (#1455)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1342)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _taxFee = _previousTaxFee (#1463)
- _taxFee = 0 (#1458)
Reentrancy in GMEX.constructor(address) (#1009-1077):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1022-1023)
State variables written after the call(s):
- _blackListedBots.push(address(0x6B4B14F7905e896d5CE38B6FBe32f2dC08dC664E)) (#1037-1039)
- _blackListedBots.push(address(0x899d49C99d9Bd5086e327c1347A5F564B3a2910a)) (#1044-1046)
- _blackListedBots.push(address(0xdeAD926Ec0809bA1F42b010DAb4FB9762671bFf4)) (#1051-1053)
- _blackListedBots.push(address(0x11Be13c352bD3f4FEE81EF21bB9efc2A0C7BAA0c)) (#1058-1060)
- _blackListedBots.push(address(0xc27265362aA001B275936477553d026DA96d7347)) (#1065-1067)
- _blackListedBots.push(address(0x000000000005097D5e39c113a3c7Ab508fe5eaD4)) (#1072-1074)
- _isBlackListedBot[address(0x6B4B14F7905e896d5CE38B6FBe32f2dC08dC664E)] = true (#1034-1036)
- _isBlackListedBot[address(0x899d49C99d9Bd5086e327c1347A5F564B3a2910a)] = true (#1041-1043)
- _isBlackListedBot[address(0xdeAD926Ec0809bA1F42b010DAb4FB9762671bFf4)] = true (#1048-1050)
- _isBlackListedBot[address(0x11Be13c352bD3f4FEE81EF21bB9efc2A0C7BAA0c)] = true (#1055-1057)
- _isBlackListedBot[address(0xc27265362aA001B275936477553d026DA96d7347)] = true (#1062-1064)
- _isBlackListedBot[address(0x000000000005097D5e39c113a3c7Ab508fe5eaD4)] = true (#1069-1071)
- _isExcludedFromFee[owner()] = true (#1029)
- _isExcludedFromFee[address(this)] = true (#1030)
- uniswapV2Router = _uniswapV2Router (#1026)
Reentrancy in GMEX.transferFrom(address,address,uint256) (#1135-1150):
External calls:
- _transfer(sender,recipient,amount) (#1140)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1551-1557)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1140)
- _charityWalletAddress.transfer(newBalance) (#1564)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1141-1148)
- _allowances[owner][spender] = amount (#1491)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in GMEX._transfer(address,address,uint256) (#1495-1534):
External calls:
- swapAndLiquify(contractTokenBalance) (#1521)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1551-1557)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1521)
- _charityWalletAddress.transfer(newBalance) (#1564)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1619)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- Transfer(sender,recipient,tTransferAmount) (#1640)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- Transfer(sender,recipient,tTransferAmount) (#1661)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- Transfer(sender,recipient,tTransferAmount) (#1301)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
Reentrancy in GMEX.constructor(address) (#1009-1077):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1022-1023)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#1076)
Reentrancy in GMEX.swapAndLiquify(uint256) (#1536-1540):
External calls:
- sendBNBToCharity(contractTokenBalance) (#1537)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1551-1557)
External calls sending eth:
- sendBNBToCharity(contractTokenBalance) (#1537)
- _charityWalletAddress.transfer(newBalance) (#1564)
Event emitted after the call(s):
- SwapAndLiquify(contractTokenBalance) (#1539)
Reentrancy in GMEX.transferFrom(address,address,uint256) (#1135-1150):
External calls:
- _transfer(sender,recipient,amount) (#1140)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1551-1557)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1140)
- _charityWalletAddress.transfer(newBalance) (#1564)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1492)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1141-1148)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#584-592) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 48 hours) (#589)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#342-353) uses assembly
- INLINE ASM (#349-351)
Address._functionCallWithValue(address,bytes,uint256,string) (#468-496) uses assembly
- INLINE ASM (#488-491)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#468-496) is never used and should be removed
Address.functionCall(address,bytes) (#403-408) is never used and should be removed
Address.functionCall(address,bytes,string) (#416-422) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#435-447) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#455-466) is never used and should be removed
Address.isContract(address) (#342-353) is never used and should be removed
Address.sendValue(address,uint256) (#371-383) is never used and should be removed
Context._msgData() (#315-318) is never used and should be removed
SafeMath.mod(uint256,uint256) (#241-243) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#257-264) is never used and should be removed
Remove unused functions.

Additional information: link

GMEX._previousTaxFee (#973) is set pre-construction with a non-constant function or state variable:
- _taxFee
GMEX._previousLiquidityFee (#976) is set pre-construction with a non-constant function or state variable:
- _charityfee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#371-383):
- (success) = recipient.call{value: amount}() (#378)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#468-496):
- (success,returndata) = target.call{value: weiValue}(data) (#477-479)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#661) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#663) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#694) is not in mixedCase
Function IUniswapV2Router01.WETH() (#742) is not in mixedCase
Event GMEXexcludedFromFee(address) (#993) is not in CapWords
Event GMEXincludedInFee(address) (#994) is not in CapWords
Event GMEXsetTaxFeePercent(uint256) (#995) is not in CapWords
Event GMEXsetCharityFeePercent(uint256) (#996) is not in CapWords
Event GMEXsetCharityWallet(address) (#997) is not in CapWords
Event GMEXsetMarketingWallet(address) (#998) is not in CapWords
Function GMEX._setTaxFeePercent(uint256) (#1314-1317) is not in mixedCase
Function GMEX._setCharityFeePercent(uint256) (#1319-1322) is not in mixedCase
Parameter GMEX.setSwapAndLiquifyEnabled(bool)._enabled (#1324) is not in mixedCase
Parameter GMEX.setnumTokensSellToAddToLiquidity(uint256).Amount (#1329) is not in mixedCase
Parameter GMEX.calculateTaxFee(uint256)._amount (#1440) is not in mixedCase
Parameter GMEX.calculateCharityFee(uint256)._amount (#1444) is not in mixedCase
Function GMEX._setCharityWallet(address) (#1471-1481) is not in mixedCase
Constant GMEX._tTotal (#965) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GMEX._name (#968) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GMEX._symbol (#969) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GMEX._decimals (#970) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GMEX._taxFee (#972) is not in mixedCase
Variable GMEX._charityfee (#975) is not in mixedCase
Variable GMEX._charityWalletAddress (#980) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#316)" inContext (#310-319)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in GMEX._transfer(address,address,uint256) (#1495-1534):
External calls:
- swapAndLiquify(contractTokenBalance) (#1521)
- _charityWalletAddress.transfer(newBalance) (#1564)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _charityfee = _previousLiquidityFee (#1464)
- _charityfee = 0 (#1459)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _previousLiquidityFee = _charityfee (#1456)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _previousTaxFee = _taxFee (#1455)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _rOwned[address(this)] = _rOwned[address(this)].add(rCharity) (#1435)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1615)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1635)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1657)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1616)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1296)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1637)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1658)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1298)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _rTotal = _rTotal.sub(rFee) (#1341)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1342)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _tOwned[address(this)] = _tOwned[address(this)].add(tCharity) (#1437)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1295)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1656)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1636)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1297)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- _taxFee = _previousTaxFee (#1463)
- _taxFee = 0 (#1458)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1619)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- Transfer(sender,recipient,tTransferAmount) (#1640)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- Transfer(sender,recipient,tTransferAmount) (#1661)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
- Transfer(sender,recipient,tTransferAmount) (#1301)
- _tokenTransfer(from,to,amount,takeFee) (#1533)
Reentrancy in GMEX.swapAndLiquify(uint256) (#1536-1540):
External calls:
- sendBNBToCharity(contractTokenBalance) (#1537)
- _charityWalletAddress.transfer(newBalance) (#1564)
Event emitted after the call(s):
- SwapAndLiquify(contractTokenBalance) (#1539)
Reentrancy in GMEX.transferFrom(address,address,uint256) (#1135-1150):
External calls:
- _transfer(sender,recipient,amount) (#1140)
- _charityWalletAddress.transfer(newBalance) (#1564)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1141-1148)
- _allowances[owner][spender] = amount (#1491)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1492)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1141-1148)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#747) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#748)
Variable GMEX._transferToExcluded(address,address,uint256).rTransferAmount (#1629) is too similar to GMEX._transferToExcluded(address,address,uint256).tTransferAmount (#1631)
Variable GMEX._getValues(uint256).rTransferAmount (#1360) is too similar to GMEX._getTValues(uint256).tTransferAmount (#1387)
Variable GMEX._transferToExcluded(address,address,uint256).rTransferAmount (#1629) is too similar to GMEX._getValues(uint256).tTransferAmount (#1357)
Variable GMEX._transferStandard(address,address,uint256).rTransferAmount (#1609) is too similar to GMEX._getValues(uint256).tTransferAmount (#1357)
Variable GMEX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1408) is too similar to GMEX._transferToExcluded(address,address,uint256).tTransferAmount (#1631)
Variable GMEX._transferBothExcluded(address,address,uint256).rTransferAmount (#1289) is too similar to GMEX._transferStandard(address,address,uint256).tTransferAmount (#1611)
Variable GMEX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1408) is too similar to GMEX._getValues(uint256).tTransferAmount (#1357)
Variable GMEX._transferToExcluded(address,address,uint256).rTransferAmount (#1629) is too similar to GMEX._transferBothExcluded(address,address,uint256).tTransferAmount (#1291)
Variable GMEX._transferBothExcluded(address,address,uint256).rTransferAmount (#1289) is too similar to GMEX._transferBothExcluded(address,address,uint256).tTransferAmount (#1291)
Variable GMEX._transferBothExcluded(address,address,uint256).rTransferAmount (#1289) is too similar to GMEX._getValues(uint256).tTransferAmount (#1357)
Variable GMEX._transferToExcluded(address,address,uint256).rTransferAmount (#1629) is too similar to GMEX._transferStandard(address,address,uint256).tTransferAmount (#1611)
Variable GMEX._transferStandard(address,address,uint256).rTransferAmount (#1609) is too similar to GMEX._transferStandard(address,address,uint256).tTransferAmount (#1611)
Variable GMEX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1408) is too similar to GMEX._transferStandard(address,address,uint256).tTransferAmount (#1611)
Variable GMEX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1408) is too similar to GMEX._transferBothExcluded(address,address,uint256).tTransferAmount (#1291)
Variable GMEX._getValues(uint256).rTransferAmount (#1360) is too similar to GMEX._transferToExcluded(address,address,uint256).tTransferAmount (#1631)
Variable GMEX.reflectionFromToken(uint256,bool).rTransferAmount (#1217) is too similar to GMEX._getValues(uint256).tTransferAmount (#1357)
Variable GMEX._getValues(uint256).rTransferAmount (#1360) is too similar to GMEX._getValues(uint256).tTransferAmount (#1357)
Variable GMEX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1408) is too similar to GMEX._getTValues(uint256).tTransferAmount (#1387)
Variable GMEX._getValues(uint256).rTransferAmount (#1360) is too similar to GMEX._transferStandard(address,address,uint256).tTransferAmount (#1611)
Variable GMEX._getValues(uint256).rTransferAmount (#1360) is too similar to GMEX._transferBothExcluded(address,address,uint256).tTransferAmount (#1291)
Variable GMEX._transferFromExcluded(address,address,uint256).rTransferAmount (#1650) is too similar to GMEX._transferStandard(address,address,uint256).tTransferAmount (#1611)
Variable GMEX.reflectionFromToken(uint256,bool).rTransferAmount (#1217) is too similar to GMEX._getTValues(uint256).tTransferAmount (#1387)
Variable GMEX._transferStandard(address,address,uint256).rTransferAmount (#1609) is too similar to GMEX._transferFromExcluded(address,address,uint256).tTransferAmount (#1652)
Variable GMEX._transferBothExcluded(address,address,uint256).rTransferAmount (#1289) is too similar to GMEX._transferFromExcluded(address,address,uint256).tTransferAmount (#1652)
Variable GMEX._transferFromExcluded(address,address,uint256).rTransferAmount (#1650) is too similar to GMEX._getTValues(uint256).tTransferAmount (#1387)
Variable GMEX.reflectionFromToken(uint256,bool).rTransferAmount (#1217) is too similar to GMEX._transferFromExcluded(address,address,uint256).tTransferAmount (#1652)
Variable GMEX._transferStandard(address,address,uint256).rTransferAmount (#1609) is too similar to GMEX._transferToExcluded(address,address,uint256).tTransferAmount (#1631)
Variable GMEX._transferBothExcluded(address,address,uint256).rTransferAmount (#1289) is too similar to GMEX._transferToExcluded(address,address,uint256).tTransferAmount (#1631)
Variable GMEX._transferStandard(address,address,uint256).rTransferAmount (#1609) is too similar to GMEX._transferBothExcluded(address,address,uint256).tTransferAmount (#1291)
Variable GMEX._transferFromExcluded(address,address,uint256).rTransferAmount (#1650) is too similar to GMEX._transferFromExcluded(address,address,uint256).tTransferAmount (#1652)
Variable GMEX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1408) is too similar to GMEX._transferFromExcluded(address,address,uint256).tTransferAmount (#1652)
Variable GMEX.reflectionFromToken(uint256,bool).rTransferAmount (#1217) is too similar to GMEX._transferToExcluded(address,address,uint256).tTransferAmount (#1631)
Variable GMEX.reflectionFromToken(uint256,bool).rTransferAmount (#1217) is too similar to GMEX._transferBothExcluded(address,address,uint256).tTransferAmount (#1291)
Variable GMEX._transferToExcluded(address,address,uint256).rTransferAmount (#1629) is too similar to GMEX._getTValues(uint256).tTransferAmount (#1387)
Variable GMEX._transferFromExcluded(address,address,uint256).rTransferAmount (#1650) is too similar to GMEX._transferToExcluded(address,address,uint256).tTransferAmount (#1631)
Variable GMEX.reflectionFromToken(uint256,bool).rTransferAmount (#1217) is too similar to GMEX._transferStandard(address,address,uint256).tTransferAmount (#1611)
Variable GMEX._transferFromExcluded(address,address,uint256).rTransferAmount (#1650) is too similar to GMEX._transferBothExcluded(address,address,uint256).tTransferAmount (#1291)
Variable GMEX._transferFromExcluded(address,address,uint256).rTransferAmount (#1650) is too similar to GMEX._getValues(uint256).tTransferAmount (#1357)
Variable GMEX._transferBothExcluded(address,address,uint256).rTransferAmount (#1289) is too similar to GMEX._getTValues(uint256).tTransferAmount (#1387)
Variable GMEX._transferToExcluded(address,address,uint256).rTransferAmount (#1629) is too similar to GMEX._transferFromExcluded(address,address,uint256).tTransferAmount (#1652)
Variable GMEX._transferStandard(address,address,uint256).rTransferAmount (#1609) is too similar to GMEX._getTValues(uint256).tTransferAmount (#1387)
Variable GMEX._getValues(uint256).rTransferAmount (#1360) is too similar to GMEX._transferFromExcluded(address,address,uint256).tTransferAmount (#1652)
Prevent variables from having similar names.

Additional information: link

GMEX.constructor(address) (#1009-1077) uses literals with too many digits:
- _isBlackListedBot[address(0x000000000005097D5e39c113a3c7Ab508fe5eaD4)] = true (#1069-1071)
GMEX.constructor(address) (#1009-1077) uses literals with too many digits:
- _blackListedBots.push(address(0x000000000005097D5e39c113a3c7Ab508fe5eaD4)) (#1072-1074)
GMEX.slitherConstructorVariables() (#947-1674) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 30000000 * 10 ** 1 * 10 ** 9 (#987)
GMEX.slitherConstructorConstantVariables() (#947-1674) uses literals with too many digits:
- _tTotal = 10000000000 * 10 ** 1 * 10 ** 9 (#965)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

reflectionFromToken(uint256,bool) should be declared external:
- GMEX.reflectionFromToken(uint256,bool) (#1207-1220)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain

Contract has 7% buy tax and 7% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Telegram account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find token contract audit


Unable to find audit link on the website


Unable to find Telegram link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


Alexa traffic rank is relatively low

Additional information: link


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


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

Price for GMEX

News for GMEX