GrapeCheems Token Logo

GRAPECHEEMS Token

About GRAPECHEEMS

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Laser Scorebeta Last Audit: 16 January 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

Reentrancy in GrapeCheems._transfer(address,address,uint256) (#1074-1118):
External calls:
- swapAndLiquify(contractTokenBalance) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#993-999)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1117)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#949)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1068)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1004)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1038)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1069)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#846)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1006)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1039)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#848)
- _tokenTransfer(from,to,amount,takeFee) (#1117)
- _rTotal = _rTotal.sub(rFee) (#878)
- _tokenTransfer(from,to,amount,takeFee) (#1117)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#951)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#845)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1037)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1005)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#847)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#121-130) uses assembly
- INLINE ASM (#128)
Address._functionCallWithValue(address,bytes,uint256,string) (#214-235) uses assembly
- INLINE ASM (#227-230)
Do not use evm assembly.

Additional information: link

GrapeCheems.includeInReward(address) (#831-842) has costly operations inside a loop:
- _excluded.pop() (#838)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#214-235) is never used and should be removed
Address.functionCall(address,bytes) (#174-176) is never used and should be removed
Address.functionCall(address,bytes,string) (#184-186) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#199-201) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#209-212) is never used and should be removed
Address.isContract(address) (#121-130) is never used and should be removed
Address.sendValue(address,uint256) (#148-154) is never used and should be removed
Context._msgData() (#15-18) is never used and should be removed
SafeMath.mod(uint256,uint256) (#359-361) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#375-378) is never used and should be removed
Remove unused functions.

Additional information: link

GrapeCheems._rTotal (#682) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
GrapeCheems._previousTaxFee (#690) is set pre-construction with a non-constant function or state variable:
- _taxFee
GrapeCheems._previousLiquidityFee (#693) 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) (#148-154):
- (success) = recipient.call{value: amount}() (#152)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#214-235):
- (success,returndata) = target.call{value: weiValue}(data) (#218)
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() (#489) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#490) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#507) is not in mixedCase
Function IUniswapV2Router01.WETH() (#529) is not in mixedCase
Parameter GrapeCheems.setSwapAndLiquifyEnabled(bool)._enabled (#869) is not in mixedCase
Parameter GrapeCheems.calculateTaxFee(uint256)._amount (#954) is not in mixedCase
Parameter GrapeCheems.calculateLiquidityFee(uint256)._amount (#960) is not in mixedCase
Variable GrapeCheems._taxFee (#689) is not in mixedCase
Variable GrapeCheems._liquidityFee (#692) is not in mixedCase
Variable GrapeCheems._maxTxAmount (#701) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#16)" inContext (#10-19)
Remove redundant statements if they congest code but offer no value.

Additional information: link

GrapeCheems.addLiquidity(uint256,uint256) (#1052-1065) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
Ensure that all the return values of the function calls are used.

Additional information: link

GrapeCheems.allowance(address,address).owner (#762) shadows:
- Ownable.owner() (#412-414) (function)
GrapeCheems._approve(address,address,uint256).owner (#1044) shadows:
- Ownable.owner() (#412-414) (function)
Rename the local variables that shadow another component.

Additional information: link

GrapeCheems.setLiquidityFeePercent(uint256) (#859-861) should emit an event for:
- _liquidityFee = liquidityFee (#860)
GrapeCheems.setMaxTxPercent(uint256) (#863-867) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#864-866)
GrapeCheems.setTaxFeePercent(uint256) (#907-909) should emit an event for:
- _taxFee = taxFee (#908)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in GrapeCheems._transfer(address,address,uint256) (#1074-1118):
External calls:
- swapAndLiquify(contractTokenBalance) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#993-999)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1117)
- _liquidityFee = _previousLiquidityFee (#978)
- _liquidityFee = 0 (#973)
- _tokenTransfer(from,to,amount,takeFee) (#1117)
- _previousLiquidityFee = _liquidityFee (#970)
- _tokenTransfer(from,to,amount,takeFee) (#1117)
- _previousTaxFee = _taxFee (#969)
- _tokenTransfer(from,to,amount,takeFee) (#1117)
- _tFeeTotal = _tFeeTotal.add(tFee) (#879)
- _tokenTransfer(from,to,amount,takeFee) (#1117)
- _taxFee = _previousTaxFee (#977)
- _taxFee = 0 (#972)
Reentrancy in GrapeCheems.constructor() (#718-734):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#723-724)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#730)
- _isExcludedFromFee[address(this)] = true (#731)
- uniswapV2Router = _uniswapV2Router (#727)
Reentrancy in GrapeCheems.swapAndLiquify(uint256) (#1012-1033):
External calls:
- swapTokensForEth(half) (#1024)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#993-999)
- addLiquidity(otherHalf,newBalance) (#1030)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1030)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1030)
- _allowances[owner][spender] = amount (#1048)
Reentrancy in GrapeCheems.transferFrom(address,address,uint256) (#771-775):
External calls:
- _transfer(sender,recipient,amount) (#772)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#993-999)
External calls sending eth:
- _transfer(sender,recipient,amount) (#772)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#773)
- _allowances[owner][spender] = amount (#1048)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in GrapeCheems._transfer(address,address,uint256) (#1074-1118):
External calls:
- swapAndLiquify(contractTokenBalance) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#993-999)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1072)
- _tokenTransfer(from,to,amount,takeFee) (#1117)
- Transfer(sender,recipient,tTransferAmount) (#1009)
- _tokenTransfer(from,to,amount,takeFee) (#1117)
- Transfer(sender,recipient,tTransferAmount) (#1042)
- _tokenTransfer(from,to,amount,takeFee) (#1117)
- Transfer(sender,recipient,tTransferAmount) (#851)
- _tokenTransfer(from,to,amount,takeFee) (#1117)
Reentrancy in GrapeCheems.constructor() (#718-734):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#723-724)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#733)
Reentrancy in GrapeCheems.swapAndLiquify(uint256) (#1012-1033):
External calls:
- swapTokensForEth(half) (#1024)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#993-999)
- addLiquidity(otherHalf,newBalance) (#1030)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1030)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1049)
- addLiquidity(otherHalf,newBalance) (#1030)
- SwapAndLiquify(half,newBalance,otherHalf) (#1032)
Reentrancy in GrapeCheems.transferFrom(address,address,uint256) (#771-775):
External calls:
- _transfer(sender,recipient,amount) (#772)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#993-999)
External calls sending eth:
- _transfer(sender,recipient,amount) (#772)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1049)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#773)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#534) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#535)
Variable GrapeCheems._getValues(uint256).rTransferAmount (#884) is too similar to GrapeCheems._transferStandard(address,address,uint256).tTransferAmount (#1067)
Variable GrapeCheems.reflectionFromToken(uint256,bool).rTransferAmount (#810) is too similar to GrapeCheems._getValues(uint256).tTransferAmount (#883)
Variable GrapeCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to GrapeCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GrapeCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to GrapeCheems._transferStandard(address,address,uint256).tTransferAmount (#1067)
Variable GrapeCheems.reflectionFromToken(uint256,bool).rTransferAmount (#810) is too similar to GrapeCheems._getTValues(uint256).tTransferAmount (#917)
Variable GrapeCheems._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to GrapeCheems._transferToExcluded(address,address,uint256).tTransferAmount (#1003)
Variable GrapeCheems._transferStandard(address,address,uint256).rTransferAmount (#1067) is too similar to GrapeCheems._getTValues(uint256).tTransferAmount (#917)
Variable GrapeCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#844) is too similar to GrapeCheems._transferStandard(address,address,uint256).tTransferAmount (#1067)
Variable GrapeCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to GrapeCheems._transferToExcluded(address,address,uint256).tTransferAmount (#1003)
Variable GrapeCheems.reflectionFromToken(uint256,bool).rTransferAmount (#810) is too similar to GrapeCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable GrapeCheems._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to GrapeCheems._getValues(uint256).tTransferAmount (#883)
Variable GrapeCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#844) is too similar to GrapeCheems._transferToExcluded(address,address,uint256).tTransferAmount (#1003)
Variable GrapeCheems._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to GrapeCheems._getTValues(uint256).tTransferAmount (#917)
Variable GrapeCheems._getValues(uint256).rTransferAmount (#884) is too similar to GrapeCheems._getTValues(uint256).tTransferAmount (#917)
Variable GrapeCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to GrapeCheems._getValues(uint256).tTransferAmount (#883)
Variable GrapeCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#844) is too similar to GrapeCheems._getValues(uint256).tTransferAmount (#883)
Variable GrapeCheems.reflectionFromToken(uint256,bool).rTransferAmount (#810) is too similar to GrapeCheems._transferStandard(address,address,uint256).tTransferAmount (#1067)
Variable GrapeCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to GrapeCheems._getTValues(uint256).tTransferAmount (#917)
Variable GrapeCheems._transferStandard(address,address,uint256).rTransferAmount (#1067) is too similar to GrapeCheems._transferStandard(address,address,uint256).tTransferAmount (#1067)
Variable GrapeCheems._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to GrapeCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable GrapeCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#844) is too similar to GrapeCheems._getTValues(uint256).tTransferAmount (#917)
Variable GrapeCheems.reflectionFromToken(uint256,bool).rTransferAmount (#810) is too similar to GrapeCheems._transferToExcluded(address,address,uint256).tTransferAmount (#1003)
Variable GrapeCheems._transferFromExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to GrapeCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable GrapeCheems._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to GrapeCheems._transferStandard(address,address,uint256).tTransferAmount (#1067)
Variable GrapeCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#844) is too similar to GrapeCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable GrapeCheems._transferBothExcluded(address,address,uint256).rTransferAmount (#844) is too similar to GrapeCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GrapeCheems._getValues(uint256).rTransferAmount (#884) is too similar to GrapeCheems._getValues(uint256).tTransferAmount (#883)
Variable GrapeCheems._transferStandard(address,address,uint256).rTransferAmount (#1067) is too similar to GrapeCheems._getValues(uint256).tTransferAmount (#883)
Variable GrapeCheems._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to GrapeCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GrapeCheems._transferToExcluded(address,address,uint256).rTransferAmount (#1003) is too similar to GrapeCheems._transferStandard(address,address,uint256).tTransferAmount (#1067)
Variable GrapeCheems._getValues(uint256).rTransferAmount (#884) is too similar to GrapeCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GrapeCheems._transferStandard(address,address,uint256).rTransferAmount (#1067) is too similar to GrapeCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GrapeCheems._getValues(uint256).rTransferAmount (#884) is too similar to GrapeCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable GrapeCheems._transferStandard(address,address,uint256).rTransferAmount (#1067) is too similar to GrapeCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable GrapeCheems._getValues(uint256).rTransferAmount (#884) is too similar to GrapeCheems._transferToExcluded(address,address,uint256).tTransferAmount (#1003)
Variable GrapeCheems._transferStandard(address,address,uint256).rTransferAmount (#1067) is too similar to GrapeCheems._transferToExcluded(address,address,uint256).tTransferAmount (#1003)
Variable GrapeCheems._transferToExcluded(address,address,uint256).rTransferAmount (#1003) is too similar to GrapeCheems._getValues(uint256).tTransferAmount (#883)
Variable GrapeCheems._transferToExcluded(address,address,uint256).rTransferAmount (#1003) is too similar to GrapeCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#1036)
Variable GrapeCheems._transferToExcluded(address,address,uint256).rTransferAmount (#1003) is too similar to GrapeCheems._getTValues(uint256).tTransferAmount (#917)
Variable GrapeCheems._transferToExcluded(address,address,uint256).rTransferAmount (#1003) is too similar to GrapeCheems._transferBothExcluded(address,address,uint256).tTransferAmount (#844)
Variable GrapeCheems._transferToExcluded(address,address,uint256).rTransferAmount (#1003) is too similar to GrapeCheems._transferToExcluded(address,address,uint256).tTransferAmount (#1003)
Variable GrapeCheems.reflectionFromToken(uint256,bool).rTransferAmount (#810) is too similar to GrapeCheems._transferFromExcluded(address,address,uint256).tTransferAmount (#1036)
Prevent variables from having similar names.

Additional information: link

GrapeCheems.slitherConstructorVariables() (#667-1121) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 18 (#681)
GrapeCheems.slitherConstructorVariables() (#667-1121) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#701)
GrapeCheems.slitherConstructorVariables() (#667-1121) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 100000000000 * 10 ** 18 (#702)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

GrapeCheems._decimals (#687) should be constant
GrapeCheems._name (#685) should be constant
GrapeCheems._symbol (#686) should be constant
GrapeCheems._tTotal (#681) should be constant
GrapeCheems.numTokensSellToAddToLiquidity (#702) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#431-434)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#440-444)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#446-448)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#451-456)
unlock() should be declared external:
- Ownable.unlock() (#459-464)
name() should be declared external:
- GrapeCheems.name() (#736-738)
symbol() should be declared external:
- GrapeCheems.symbol() (#740-742)
decimals() should be declared external:
- GrapeCheems.decimals() (#744-746)
totalSupply() should be declared external:
- GrapeCheems.totalSupply() (#748-750)
transfer(address,uint256) should be declared external:
- GrapeCheems.transfer(address,uint256) (#757-760)
allowance(address,address) should be declared external:
- GrapeCheems.allowance(address,address) (#762-764)
approve(address,uint256) should be declared external:
- GrapeCheems.approve(address,uint256) (#766-769)
transferFrom(address,address,uint256) should be declared external:
- GrapeCheems.transferFrom(address,address,uint256) (#771-775)
increaseAllowance(address,uint256) should be declared external:
- GrapeCheems.increaseAllowance(address,uint256) (#777-780)
decreaseAllowance(address,uint256) should be declared external:
- GrapeCheems.decreaseAllowance(address,uint256) (#782-785)
isExcludedFromReward(address) should be declared external:
- GrapeCheems.isExcludedFromReward(address) (#787-789)
totalFees() should be declared external:
- GrapeCheems.totalFees() (#791-793)
deliver(uint256) should be declared external:
- GrapeCheems.deliver(uint256) (#795-802)
reflectionFromToken(uint256,bool) should be declared external:
- GrapeCheems.reflectionFromToken(uint256,bool) (#804-813)
excludeFromReward(address) should be declared external:
- GrapeCheems.excludeFromReward(address) (#821-829)
excludeFromFee(address) should be declared external:
- GrapeCheems.excludeFromFee(address) (#854-856)
setSwapAndLiquifyEnabled(bool) should be declared external:
- GrapeCheems.setSwapAndLiquifyEnabled(bool) (#869-872)
includeInFee(address) should be declared external:
- GrapeCheems.includeInFee(address) (#911-913)
isExcludedFromFee(address) should be declared external:
- GrapeCheems.isExcludedFromFee(address) (#981-983)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Telegram account has less than 100 subscribers


Twitter account has less than 100 followers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


Unable to find website, listings and other project-related information


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for GRAPECHEEMS

News for GRAPECHEEMS