GEMIT.app Token Logo

GEMIT [GEMIT.app] Token

ALERT: dead

About GEMIT

Listings

Token 4 years
CoinGecko 4 years
CoinMarketCap 4 years

Website

white paper

GEMIT.app is a set of tools designed to help BSC traders (In the future also the other networks). The token is used to unlock higher tiers which unlock premium features and remove limitations. The token holders are rewarded with redistribution from all token transactions.

Laser Scorebeta Last Audit: 8 May 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

GEMIT.addLiquidity(uint256,uint256) (#1063-1076) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in GEMIT._transfer(address,address,uint256) (#1108-1155):
External calls:
- swapAndLiquify(contractTokenBalance) (#1142)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1142)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#981)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1101)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1037)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#891)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1056)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1102)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1039)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1057)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#893)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _rTotal = _rTotal.sub(rFee) (#936)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#983)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#890)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1055)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1038)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#892)
Apply the check-effects-interactions pattern.

Additional information: link

GEMIT.recoverERC20(address,uint256) (#1209-1211) ignores return value by IERC20(tokenAddress).transfer(owner(),tokenAmount) (#1210)
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 name (GEMIT.app) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.


Contract ownership is semi-renounced (passed to a contract)

GEMIT.addLiquidity(uint256,uint256) (#1063-1076) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
Ensure that all the return values of the function calls are used.

Additional information: link

GEMIT.allowance(address,address).owner (#808) shadows:
- Ownable.owner() (#416-418) (function)
GEMIT._approve(address,address,uint256).owner (#1045) shadows:
- Ownable.owner() (#416-418) (function)
GEMIT.extractBNB()._owner (#1215) shadows:
- Ownable._owner (#398) (state variable)
Rename the local variables that shadow another component.

Additional information: link

GEMIT.setLiquidityFeePercent(uint256) (#911-913) should emit an event for:
- _liquidityFee = liquidityFee (#912)
GEMIT.setMaxTxPercent(uint256) (#915-919) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#916-918)
GEMIT.setMaxWalletTokenPercent(uint256) (#921-925) should emit an event for:
- _maxWalletToken = _tTotal.mul(maxWalletTokenPercent).div(10 ** 2) (#922-924)
GEMIT.setTaxFeePercent(uint256) (#1180-1182) should emit an event for:
- _taxFee = taxFee (#1181)
Emit an event for critical parameter changes.

Additional information: link

GEMIT.extractBNB()._owner (#1215) lacks a zero-check on :
- _owner.transfer(address(this).balance) (#1216)
Check that the address is not zero.

Additional information: link

Reentrancy in GEMIT._transfer(address,address,uint256) (#1108-1155):
External calls:
- swapAndLiquify(contractTokenBalance) (#1142)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1142)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _liquidityFee = _previousLiquidityFee (#1010)
- _liquidityFee = 0 (#1005)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _previousLiquidityFee = _liquidityFee (#1002)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _previousTaxFee = _taxFee (#1001)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _tFeeTotal = _tFeeTotal.add(tFee) (#937)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- _taxFee = _previousTaxFee (#1009)
- _taxFee = 0 (#1004)
Reentrancy in GEMIT.constructor() (#744-780):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#749-750)
State variables written after the call(s):
- _antiWhaleExcludedFromAddress[owner()] = true (#777)
- _antiWhaleExcludedToAddress[owner()] = true (#768)
- _antiWhaleExcludedToAddress[address(1)] = true (#769)
- _antiWhaleExcludedToAddress[address(0xDEAD)] = true (#770)
- _antiWhaleExcludedToAddress[marketing] = true (#771)
- _antiWhaleExcludedToAddress[airdrop] = true (#772)
- _antiWhaleExcludedToAddress[maintenance] = true (#773)
- _antiWhaleExcludedToAddress[uniswapV2Pair] = true (#774)
- _isExcluded[uniswapV2Pair] = true (#764)
- _isExcludedFromFee[owner()] = true (#755)
- _isExcludedFromFee[marketing] = true (#756)
- _isExcludedFromFee[maintenance] = true (#757)
- _isExcludedFromFee[address(this)] = true (#758)
- uniswapV2Router = _uniswapV2Router (#753)
Reentrancy in GEMIT.setRouterAddress(address) (#1184-1192):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1186)
State variables written after the call(s):
- _antiWhaleExcludedToAddress[uniswapV2Pair] = true (#1191)
- _isExcluded[uniswapV2Pair] = true (#1190)
- uniswapV2Router = _newPancakeRouter (#1187)
Reentrancy in GEMIT.swapAndLiquify(uint256) (#1157-1178):
External calls:
- swapTokensForEth(half) (#1169)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
- addLiquidity(otherHalf,newBalance) (#1175)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1175)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1175)
- _allowances[owner][spender] = amount (#1049)
Reentrancy in GEMIT.transferFrom(address,address,uint256) (#817-821):
External calls:
- _transfer(sender,recipient,amount) (#818)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
External calls sending eth:
- _transfer(sender,recipient,amount) (#818)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#819)
- _allowances[owner][spender] = amount (#1049)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in GEMIT._transfer(address,address,uint256) (#1108-1155):
External calls:
- swapAndLiquify(contractTokenBalance) (#1142)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1142)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1105)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- Transfer(sender,recipient,tTransferAmount) (#1042)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- Transfer(sender,recipient,tTransferAmount) (#1060)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
- Transfer(sender,recipient,tTransferAmount) (#896)
- _tokenTransfer(from,to,amount,takeFee) (#1154)
Reentrancy in GEMIT.constructor() (#744-780):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#749-750)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#779)
Reentrancy in GEMIT.swapAndLiquify(uint256) (#1157-1178):
External calls:
- swapTokensForEth(half) (#1169)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
- addLiquidity(otherHalf,newBalance) (#1175)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1175)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1050)
- addLiquidity(otherHalf,newBalance) (#1175)
- SwapAndLiquify(half,newBalance,otherHalf) (#1177)
Reentrancy in GEMIT.transferFrom(address,address,uint256) (#817-821):
External calls:
- _transfer(sender,recipient,amount) (#818)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1026-1032)
External calls sending eth:
- _transfer(sender,recipient,amount) (#818)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1068-1075)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1050)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#819)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#463-468) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#465)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#46-55) uses assembly
- INLINE ASM (#53)
Address._functionCallWithValue(address,bytes,uint256,string) (#139-160) uses assembly
- INLINE ASM (#152-155)
Do not use evm assembly.

Additional information: link

GEMIT.includeInReward(address) (#875-886) has costly operations inside a loop:
- _excluded.pop() (#882)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#139-160) is never used and should be removed
Address.functionCall(address,bytes) (#99-101) is never used and should be removed
Address.functionCall(address,bytes,string) (#109-111) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#124-126) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#134-137) is never used and should be removed
Address.isContract(address) (#46-55) is never used and should be removed
Address.sendValue(address,uint256) (#73-79) is never used and should be removed
Context._msgData() (#167-170) is never used and should be removed
SafeMath.mod(uint256,uint256) (#293-295) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#309-312) is never used and should be removed
Remove unused functions.

Additional information: link

GEMIT._rTotal (#703) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
GEMIT._previousTaxFee (#711) is set pre-construction with a non-constant function or state variable:
- _taxFee
GEMIT._previousLiquidityFee (#714) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#73-79):
- (success) = recipient.call{value: amount}() (#77)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#139-160):
- (success,returndata) = target.call{value: weiValue}(data) (#143)
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() (#507) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#508) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#525) is not in mixedCase
Function IUniswapV2Router01.WETH() (#547) is not in mixedCase
Parameter GEMIT.excludeAddressFromFee(address,bool)._exclude (#899) is not in mixedCase
Parameter GEMIT.excludeAddressWhaleFrom(address,bool)._exclude (#903) is not in mixedCase
Parameter GEMIT.excludeAddressWhaleTo(address,bool)._exclude (#907) is not in mixedCase
Parameter GEMIT.setSwapAndLiquifyEnabled(bool)._enabled (#927) is not in mixedCase
Parameter GEMIT.calculateTaxFee(uint256)._amount (#986) is not in mixedCase
Parameter GEMIT.calculateLiquidityFee(uint256)._amount (#992) is not in mixedCase
Variable GEMIT._taxFee (#710) is not in mixedCase
Variable GEMIT._liquidityFee (#713) is not in mixedCase
Variable GEMIT._maxTxAmount (#722) is not in mixedCase
Variable GEMIT._maxWalletToken (#724) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#168)" inContext (#162-171)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#552) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#553)
Variable GEMIT.reflectionFromToken(uint256,bool).rTransferAmount (#855) is too similar to GEMIT._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable GEMIT._getValues(uint256).rTransferAmount (#942) is too similar to GEMIT._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable GEMIT.reflectionFromToken(uint256,bool).rTransferAmount (#855) is too similar to GEMIT._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable GEMIT._transferBothExcluded(address,address,uint256).rTransferAmount (#889) is too similar to GEMIT._getTValues(uint256).tTransferAmount (#949)
Variable GEMIT._getValues(uint256).rTransferAmount (#942) is too similar to GEMIT._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GEMIT.reflectionFromToken(uint256,bool).rTransferAmount (#855) is too similar to GEMIT._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GEMIT._transferFromExcluded(address,address,uint256).rTransferAmount (#1054) is too similar to GEMIT._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GEMIT.reflectionFromToken(uint256,bool).rTransferAmount (#855) is too similar to GEMIT._getTValues(uint256).tTransferAmount (#949)
Variable GEMIT._getValues(uint256).rTransferAmount (#942) is too similar to GEMIT._getTValues(uint256).tTransferAmount (#949)
Variable GEMIT._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#957) is too similar to GEMIT._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable GEMIT._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#957) is too similar to GEMIT._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GEMIT._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#957) is too similar to GEMIT._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable GEMIT._transferFromExcluded(address,address,uint256).rTransferAmount (#1054) is too similar to GEMIT._getTValues(uint256).tTransferAmount (#949)
Variable GEMIT._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#957) is too similar to GEMIT._getTValues(uint256).tTransferAmount (#949)
Variable GEMIT._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to GEMIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1054)
Variable GEMIT._transferBothExcluded(address,address,uint256).rTransferAmount (#889) is too similar to GEMIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1054)
Variable GEMIT._getValues(uint256).rTransferAmount (#942) is too similar to GEMIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1054)
Variable GEMIT.reflectionFromToken(uint256,bool).rTransferAmount (#855) is too similar to GEMIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1054)
Variable GEMIT._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to GEMIT._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GEMIT._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to GEMIT._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable GEMIT._transferFromExcluded(address,address,uint256).rTransferAmount (#1054) is too similar to GEMIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1054)
Variable GEMIT._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to GEMIT._getTValues(uint256).tTransferAmount (#949)
Variable GEMIT._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#957) is too similar to GEMIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1054)
Variable GEMIT._transferBothExcluded(address,address,uint256).rTransferAmount (#889) is too similar to GEMIT._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable GEMIT._transferBothExcluded(address,address,uint256).rTransferAmount (#889) is too similar to GEMIT._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable GEMIT._transferBothExcluded(address,address,uint256).rTransferAmount (#889) is too similar to GEMIT._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GEMIT._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to GEMIT._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GEMIT._getValues(uint256).rTransferAmount (#942) is too similar to GEMIT._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable GEMIT._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to GEMIT._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable GEMIT._transferBothExcluded(address,address,uint256).rTransferAmount (#889) is too similar to GEMIT._getValues(uint256).tTransferAmount (#941)
Variable GEMIT._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to GEMIT._getValues(uint256).tTransferAmount (#941)
Variable GEMIT._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to GEMIT._getValues(uint256).tTransferAmount (#941)
Variable GEMIT._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to GEMIT._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable GEMIT._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to GEMIT._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable GEMIT.reflectionFromToken(uint256,bool).rTransferAmount (#855) is too similar to GEMIT._getValues(uint256).tTransferAmount (#941)
Variable GEMIT._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to GEMIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1054)
Variable GEMIT._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#957) is too similar to GEMIT._getValues(uint256).tTransferAmount (#941)
Variable GEMIT._transferFromExcluded(address,address,uint256).rTransferAmount (#1054) is too similar to GEMIT._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable GEMIT._transferFromExcluded(address,address,uint256).rTransferAmount (#1054) is too similar to GEMIT._getValues(uint256).tTransferAmount (#941)
Variable GEMIT._getValues(uint256).rTransferAmount (#942) is too similar to GEMIT._getValues(uint256).tTransferAmount (#941)
Variable GEMIT._transferFromExcluded(address,address,uint256).rTransferAmount (#1054) is too similar to GEMIT._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable GEMIT._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to GEMIT._getTValues(uint256).tTransferAmount (#949)
Prevent variables from having similar names.

Additional information: link

GEMIT.slitherConstructorVariables() (#685-1219) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 9 (#702)
GEMIT.slitherConstructorVariables() (#685-1219) uses literals with too many digits:
- _maxTxAmount = 1000000 * 10 ** 9 (#722)
GEMIT.slitherConstructorVariables() (#685-1219) uses literals with too many digits:
- _maxWalletToken = 3000000 * 10 ** 9 (#724)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

GEMIT._decimals (#708) should be constant
GEMIT._name (#706) should be constant
GEMIT._symbol (#707) should be constant
GEMIT._tTotal (#702) should be constant
GEMIT.airdrop (#728) should be constant
GEMIT.maintenance (#727) should be constant
GEMIT.marketing (#726) should be constant
GEMIT.numTokensSellToAddToLiquidity (#723) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#435-438)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#444-448)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#450-452)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#455-460)
unlock() should be declared external:
- Ownable.unlock() (#463-468)
name() should be declared external:
- GEMIT.name() (#782-784)
symbol() should be declared external:
- GEMIT.symbol() (#786-788)
decimals() should be declared external:
- GEMIT.decimals() (#790-792)
totalSupply() should be declared external:
- GEMIT.totalSupply() (#794-796)
transfer(address,uint256) should be declared external:
- GEMIT.transfer(address,uint256) (#803-806)
allowance(address,address) should be declared external:
- GEMIT.allowance(address,address) (#808-810)
approve(address,uint256) should be declared external:
- GEMIT.approve(address,uint256) (#812-815)
transferFrom(address,address,uint256) should be declared external:
- GEMIT.transferFrom(address,address,uint256) (#817-821)
increaseAllowance(address,uint256) should be declared external:
- GEMIT.increaseAllowance(address,uint256) (#823-826)
decreaseAllowance(address,uint256) should be declared external:
- GEMIT.decreaseAllowance(address,uint256) (#828-831)
isExcludedFromReward(address) should be declared external:
- GEMIT.isExcludedFromReward(address) (#833-835)
isExcludedFromAntiWhaleFrom(address) should be declared external:
- GEMIT.isExcludedFromAntiWhaleFrom(address) (#837-839)
isExcludedFromAntiWhaleTo(address) should be declared external:
- GEMIT.isExcludedFromAntiWhaleTo(address) (#841-843)
totalFees() should be declared external:
- GEMIT.totalFees() (#845-847)
reflectionFromToken(uint256,bool) should be declared external:
- GEMIT.reflectionFromToken(uint256,bool) (#849-858)
excludeFromReward(address) should be declared external:
- GEMIT.excludeFromReward(address) (#866-873)
excludeAddressFromFee(address,bool) should be declared external:
- GEMIT.excludeAddressFromFee(address,bool) (#899-901)
excludeAddressWhaleFrom(address,bool) should be declared external:
- GEMIT.excludeAddressWhaleFrom(address,bool) (#903-905)
excludeAddressWhaleTo(address,bool) should be declared external:
- GEMIT.excludeAddressWhaleTo(address,bool) (#907-909)
isExcludedFromFee(address) should be declared external:
- GEMIT.isExcludedFromFee(address) (#1013-1015)
setRouterAddress(address) should be declared external:
- GEMIT.setRouterAddress(address) (#1184-1192)
recoverERC20(address,uint256) should be declared external:
- GEMIT.recoverERC20(address,uint256) (#1209-1211)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Token has only one trading pair

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


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Last post in Twitter was more than 30 days ago


Unable to find Discord account


Unable to find audit link on the website


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link


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


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for GEMIT

News for GEMIT