CRGame Token Logo

CRG [CRGame] Token

About CRG

Listings

Not Found
Token 2 years

If you have
Telegram
, you can contact
@crgame_group
right away.

Social

Laser Scorebeta Last Audit: 22 December 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

CRGame.swapETHForTokens(uint256) (#828-843) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
CRGame.addLiquidity(uint256,uint256) (#845-858) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#850-857)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

CRGame._transfer(address,address,uint256) (#671-788) uses a weak PRNG: "_bBSLimit = _bBSLimitMin + uint256(keccak256(bytes)(abi.encodePacked(block.timestamp,block.difficulty))) % (_bBSLimitMax - _bBSLimitMin + 1) (#732)"
Do not use block.timestamp, now or blockhash as a source of randomness

Additional information: link

Reentrancy in CRGame._transfer(address,address,uint256) (#671-788):
External calls:
- swapTokens(contractTokenBalance) (#700)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#817-823)
External calls sending eth:
- swapTokens(contractTokenBalance) (#700)
- recipient.transfer(amount) (#1141)
State variables written after the call(s):
- _removeOldSellHistories() (#727)
- _sellHistories[i].time = _sellHistories[j].time (#1028)
- _sellHistories[i].bnbAmount = _sellHistories[j].bnbAmount (#1029)
- _sellHistories.pop() (#1039)
Reentrancy in CRGame._transfer(address,address,uint256) (#671-788):
External calls:
- swapTokens(contractTokenBalance) (#700)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#817-823)
- buyBackTokens(_bBSLimit) (#735)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
External calls sending eth:
- swapTokens(contractTokenBalance) (#700)
- recipient.transfer(amount) (#1141)
- buyBackTokens(_bBSLimit) (#735)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#964)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#880)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#889)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#900)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#910)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#881)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#891)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#901)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#912)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _rTotal = _rTotal.sub(rFee) (#919)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#966)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#909)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#899)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#890)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#911)
- buyBackTokens(_bBSLimit) (#735)
- inSwapAndLiquify = true (#517)
- inSwapAndLiquify = false (#519)
Apply the check-effects-interactions pattern.

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.

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

Additional information: link

CRGame.includeInReward(address) (#650-661) has costly operations inside a loop:
- _excluded.pop() (#657)
Use a local variable to hold the loop computation result.

Additional information: link

CRGame._transfer(address,address,uint256).sellHistory (#687) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

CRGame.addLiquidity(uint256,uint256) (#845-858) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#850-857)
Ensure that all the return values of the function calls are used.

Additional information: link

CRGame.allowance(address,address).owner (#572) shadows:
- Ownable.owner() (#162-164) (function)
CRGame._approve(address,address,uint256).owner (#663) shadows:
- Ownable.owner() (#162-164) (function)
Rename the local variables that shadow another component.

Additional information: link

CRGame.SetBuyBackMaxTimeForHistories(uint256) (#1044-1046) should emit an event for:
- _buyBackMaxTimeForHistories = newMinutes * 60 (#1045)
CRGame.SetBuyBackDivisor(uint256) (#1048-1050) should emit an event for:
- _buyBackDivisor = newDivisor (#1049)
CRGame.SetBuyBackTimeInterval(uint256) (#1056-1058) should emit an event for:
- _buyBackTimeInterval = newMinutes * 60 (#1057)
CRGame.SetBuyBackRangeRate(uint256) (#1060-1063) should emit an event for:
- _buyBackRangeRate = newPercent (#1062)
CRGame.SetSwapMinutes(uint256) (#1069-1071) should emit an event for:
- _intervalMinutesForSwap = newMinutes * 60 (#1070)
CRGame.setTaxFeePercent(uint256) (#1073-1075) should emit an event for:
- _taxFee = taxFee (#1074)
CRGame.setBuyFee(uint256,uint256) (#1077-1080) should emit an event for:
- _buyTaxFee = buyTaxFee (#1078)
- _buyLiquidityFee = buyLiquidityFee (#1079)
CRGame.setSellFee(uint256,uint256) (#1082-1085) should emit an event for:
- _sellTaxFee = sellTaxFee (#1083)
- _sellLiquidityFee = sellLiquidityFee (#1084)
CRGame.setLiquidityFeePercent(uint256) (#1087-1089) should emit an event for:
- _liquidityFee = liquidityFee (#1088)
CRGame.setBuyBackSellLimit(uint256) (#1091-1093) should emit an event for:
- buyBackSellLimit = buyBackSellSetLimit (#1092)
CRGame.setMaxTxAmount(uint256) (#1095-1097) should emit an event for:
- _maxTxAmount = maxTxAmount (#1096)
CRGame.setMarketingDivisor(uint256) (#1099-1101) should emit an event for:
- marketingDivisor = divisor (#1100)
CRGame.setNumTokensSellToAddToBuyBack(uint256) (#1103-1105) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#1104)
Emit an event for critical parameter changes.

Additional information: link

CRGame.setMarketingAddress(address)._marketingAddress (#1107) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#1108)
Check that the address is not zero.

Additional information: link

Reentrancy in CRGame._transfer(address,address,uint256) (#671-788):
External calls:
- swapTokens(contractTokenBalance) (#700)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#817-823)
- buyBackTokens(_bBSLimit) (#735)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
External calls sending eth:
- swapTokens(contractTokenBalance) (#700)
- recipient.transfer(amount) (#1141)
- buyBackTokens(_bBSLimit) (#735)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
State variables written after the call(s):
- removeAllFee() (#751)
- _liquidityFee = 0 (#988)
- _liquidityFee = _buyLiquidityFee (#753)
- removeAllFee() (#757)
- _liquidityFee = 0 (#988)
- _liquidityFee = _sellLiquidityFee (#759)
- removeAllFee() (#764)
- _liquidityFee = 0 (#988)
- _liquidityFee = _addressFees[from]._liquidityFee (#766)
- _liquidityFee = _addressFees[from]._sellLiquidityFee (#771)
- removeAllFee() (#778)
- _liquidityFee = 0 (#988)
- _liquidityFee = _addressFees[to]._buyLiquidityFee (#781)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _liquidityFee = _previousLiquidityFee (#993)
- _liquidityFee = 0 (#988)
- removeAllFee() (#751)
- _previousLiquidityFee = _liquidityFee (#985)
- removeAllFee() (#757)
- _previousLiquidityFee = _liquidityFee (#985)
- removeAllFee() (#764)
- _previousLiquidityFee = _liquidityFee (#985)
- removeAllFee() (#778)
- _previousLiquidityFee = _liquidityFee (#985)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _previousLiquidityFee = _liquidityFee (#985)
- removeAllFee() (#751)
- _previousTaxFee = _taxFee (#984)
- removeAllFee() (#757)
- _previousTaxFee = _taxFee (#984)
- removeAllFee() (#764)
- _previousTaxFee = _taxFee (#984)
- removeAllFee() (#778)
- _previousTaxFee = _taxFee (#984)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _previousTaxFee = _taxFee (#984)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _tFeeTotal = _tFeeTotal.add(tFee) (#920)
- removeAllFee() (#751)
- _taxFee = 0 (#987)
- _taxFee = _buyTaxFee (#752)
- removeAllFee() (#757)
- _taxFee = 0 (#987)
- _taxFee = _sellTaxFee (#758)
- removeAllFee() (#764)
- _taxFee = 0 (#987)
- _taxFee = _addressFees[from]._taxFee (#765)
- _taxFee = _addressFees[from]._sellTaxFee (#770)
- removeAllFee() (#778)
- _taxFee = 0 (#987)
- _taxFee = _addressFees[to]._buyTaxFee (#780)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _taxFee = _previousTaxFee (#992)
- _taxFee = 0 (#987)
Reentrancy in CRGame.changeRouterVersion(address) (#1144-1157):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1150-1151)
State variables written after the call(s):
- uniswapV2Pair = _pair (#1153)
- uniswapV2Router = _uniswapV2Router (#1156)
Reentrancy in CRGame.constructor() (#522-544):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#532-533)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#538)
- _isExcludedFromFee[address(this)] = true (#539)
- _startTimeForSwap = block.timestamp (#541)
- uniswapV2Router = _uniswapV2Router (#535)
Reentrancy in CRGame.transferFrom(address,address,uint256) (#581-585):
External calls:
- _transfer(sender,recipient,amount) (#582)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#817-823)
External calls sending eth:
- _transfer(sender,recipient,amount) (#582)
- recipient.transfer(amount) (#1141)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#583)
- _allowances[owner][spender] = amount (#667)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CRGame._transfer(address,address,uint256) (#671-788):
External calls:
- swapTokens(contractTokenBalance) (#700)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#817-823)
- buyBackTokens(_bBSLimit) (#735)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
External calls sending eth:
- swapTokens(contractTokenBalance) (#700)
- recipient.transfer(amount) (#1141)
- buyBackTokens(_bBSLimit) (#735)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#842)
- buyBackTokens(_bBSLimit) (#735)
- Transfer(sender,recipient,tTransferAmount) (#884)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- Transfer(sender,recipient,tTransferAmount) (#904)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- Transfer(sender,recipient,tTransferAmount) (#894)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- Transfer(sender,recipient,tTransferAmount) (#915)
- _tokenTransfer(from,to,amount,takeFee) (#787)
Reentrancy in CRGame.constructor() (#522-544):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#532-533)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#543)
Reentrancy in CRGame.swapETHForTokens(uint256) (#828-843):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#842)
Reentrancy in CRGame.swapTokensForEth(uint256) (#808-826):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#817-823)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#825)
Reentrancy in CRGame.transferFrom(address,address,uint256) (#581-585):
External calls:
- _transfer(sender,recipient,amount) (#582)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#817-823)
External calls sending eth:
- _transfer(sender,recipient,amount) (#582)
- recipient.transfer(amount) (#1141)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#668)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#583)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#197-202) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#199)
CRGame._transfer(address,address,uint256) (#671-788) uses timestamp for comparisons
Dangerous comparisons:
- overMinimumTokenBalance && _startTimeForSwap + _intervalMinutesForSwap <= block.timestamp (#697)
- _sellHistories[i].time >= startTime (#717)
- balance > _bBSLimit (#734)
CRGame.buyBackTokens(uint256) (#802-806) uses timestamp for comparisons
Dangerous comparisons:
- amount > 0 (#803)
CRGame._removeOldSellHistories() (#1020-1042) uses timestamp for comparisons
Dangerous comparisons:
- _sellHistories[j].time >= maxStartTimeForHistories (#1026)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#92-101) uses assembly
- INLINE ASM (#99)
Address._functionCallWithValue(address,bytes,uint256,string) (#129-146) uses assembly
- INLINE ASM (#138-141)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#129-146) is never used and should be removed
Address.functionCall(address,bytes) (#112-114) is never used and should be removed
Address.functionCall(address,bytes,string) (#116-118) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#120-122) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#124-127) is never used and should be removed
Address.isContract(address) (#92-101) is never used and should be removed
Address.sendValue(address,uint256) (#103-109) is never used and should be removed
CRGame.addLiquidity(uint256,uint256) (#845-858) is never used and should be removed
Context._msgData() (#15-18) is never used and should be removed
SafeMath.mod(uint256,uint256) (#80-82) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#84-87) is never used and should be removed
Remove unused functions.

Additional information: link

CRGame._rTotal (#432) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CRGame._previousTaxFee (#455) is set pre-construction with a non-constant function or state variable:
- _taxFee
CRGame._previousLiquidityFee (#458) 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) (#103-109):
- (success) = recipient.call{value: amount}() (#107)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#129-146):
- (success,returndata) = target.call{value: weiValue}(data) (#132)
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() (#242) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#243) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#259) is not in mixedCase
Function IUniswapV2Router01.WETH() (#280) is not in mixedCase
Parameter CRGame.calculateTaxFee(uint256)._amount (#969) is not in mixedCase
Parameter CRGame.calculateLiquidityFee(uint256)._amount (#975) is not in mixedCase
Function CRGame.SetBuyBackMaxTimeForHistories(uint256) (#1044-1046) is not in mixedCase
Function CRGame.SetBuyBackDivisor(uint256) (#1048-1050) is not in mixedCase
Function CRGame.GetBuyBackTimeInterval() (#1052-1054) is not in mixedCase
Function CRGame.SetBuyBackTimeInterval(uint256) (#1056-1058) is not in mixedCase
Function CRGame.SetBuyBackRangeRate(uint256) (#1060-1063) is not in mixedCase
Function CRGame.GetSwapMinutes() (#1065-1067) is not in mixedCase
Function CRGame.SetSwapMinutes(uint256) (#1069-1071) is not in mixedCase
Parameter CRGame.setNumTokensSellToAddToBuyBack(uint256)._minimumTokensBeforeSwap (#1103) is not in mixedCase
Parameter CRGame.setMarketingAddress(address)._marketingAddress (#1107) is not in mixedCase
Parameter CRGame.setSwapAndLiquifyEnabled(bool)._enabled (#1111) is not in mixedCase
Parameter CRGame.setBuyBackEnabled(bool)._enabled (#1116) is not in mixedCase
Parameter CRGame.setAutoBuyBackEnabled(bool)._enabled (#1121) is not in mixedCase
Parameter CRGame.changeRouterVersion(address)._router (#1144) is not in mixedCase
Parameter CRGame.transferForeignToken(address,address)._token (#1163) is not in mixedCase
Parameter CRGame.transferForeignToken(address,address)._to (#1163) is not in mixedCase
Function CRGame.Sweep() (#1169-1172) is not in mixedCase
Parameter CRGame.setAddressFee(address,bool,uint256,uint256)._address (#1174) is not in mixedCase
Parameter CRGame.setAddressFee(address,bool,uint256,uint256)._enable (#1174) is not in mixedCase
Parameter CRGame.setAddressFee(address,bool,uint256,uint256)._addressTaxFee (#1174) is not in mixedCase
Parameter CRGame.setAddressFee(address,bool,uint256,uint256)._addressLiquidityFee (#1174) is not in mixedCase
Parameter CRGame.setBuyAddressFee(address,bool,uint256,uint256)._address (#1180) is not in mixedCase
Parameter CRGame.setBuyAddressFee(address,bool,uint256,uint256)._enable (#1180) is not in mixedCase
Parameter CRGame.setBuyAddressFee(address,bool,uint256,uint256)._addressTaxFee (#1180) is not in mixedCase
Parameter CRGame.setBuyAddressFee(address,bool,uint256,uint256)._addressLiquidityFee (#1180) is not in mixedCase
Parameter CRGame.setSellAddressFee(address,bool,uint256,uint256)._address (#1186) is not in mixedCase
Parameter CRGame.setSellAddressFee(address,bool,uint256,uint256)._enable (#1186) is not in mixedCase
Parameter CRGame.setSellAddressFee(address,bool,uint256,uint256)._addressTaxFee (#1186) is not in mixedCase
Parameter CRGame.setSellAddressFee(address,bool,uint256,uint256)._addressLiquidityFee (#1186) is not in mixedCase
Variable CRGame._taxFee (#454) is not in mixedCase
Variable CRGame._liquidityFee (#457) is not in mixedCase
Variable CRGame._buyTaxFee (#460) is not in mixedCase
Variable CRGame._buyLiquidityFee (#461) is not in mixedCase
Variable CRGame._sellTaxFee (#463) is not in mixedCase
Variable CRGame._sellLiquidityFee (#464) is not in mixedCase
Variable CRGame._startTimeForSwap (#466) is not in mixedCase
Variable CRGame._intervalMinutesForSwap (#467) is not in mixedCase
Variable CRGame._buyBackRangeRate (#469) is not in mixedCase
Variable CRGame._addressFees (#472) is not in mixedCase
Variable CRGame._maxTxAmount (#476) is not in mixedCase
Variable CRGame._sellHistories (#481) is not in mixedCase
Variable CRGame._isAutoBuyBack (#482) is not in mixedCase
Variable CRGame._buyBackDivisor (#483) is not in mixedCase
Variable CRGame._buyBackTimeInterval (#484) is not in mixedCase
Variable CRGame._buyBackMaxTimeForHistories (#485) is not in mixedCase
Variable CRGame._isEnabledBuyBackAndBurn (#494) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in CRGame._transfer(address,address,uint256) (#671-788):
External calls:
- swapTokens(contractTokenBalance) (#700)
- recipient.transfer(amount) (#1141)
State variables written after the call(s):
- _removeOldSellHistories() (#727)
- _sellHistories[i].time = _sellHistories[j].time (#1028)
- _sellHistories[i].bnbAmount = _sellHistories[j].bnbAmount (#1029)
- _sellHistories.pop() (#1039)
Reentrancy in CRGame._transfer(address,address,uint256) (#671-788):
External calls:
- swapTokens(contractTokenBalance) (#700)
- recipient.transfer(amount) (#1141)
External calls sending eth:
- swapTokens(contractTokenBalance) (#700)
- recipient.transfer(amount) (#1141)
- buyBackTokens(_bBSLimit) (#735)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
State variables written after the call(s):
- removeAllFee() (#751)
- _liquidityFee = 0 (#988)
- _liquidityFee = _buyLiquidityFee (#753)
- removeAllFee() (#757)
- _liquidityFee = 0 (#988)
- _liquidityFee = _sellLiquidityFee (#759)
- removeAllFee() (#764)
- _liquidityFee = 0 (#988)
- _liquidityFee = _addressFees[from]._liquidityFee (#766)
- _liquidityFee = _addressFees[from]._sellLiquidityFee (#771)
- removeAllFee() (#778)
- _liquidityFee = 0 (#988)
- _liquidityFee = _addressFees[to]._buyLiquidityFee (#781)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _liquidityFee = _previousLiquidityFee (#993)
- _liquidityFee = 0 (#988)
- removeAllFee() (#751)
- _previousLiquidityFee = _liquidityFee (#985)
- removeAllFee() (#757)
- _previousLiquidityFee = _liquidityFee (#985)
- removeAllFee() (#764)
- _previousLiquidityFee = _liquidityFee (#985)
- removeAllFee() (#778)
- _previousLiquidityFee = _liquidityFee (#985)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _previousLiquidityFee = _liquidityFee (#985)
- removeAllFee() (#751)
- _previousTaxFee = _taxFee (#984)
- removeAllFee() (#757)
- _previousTaxFee = _taxFee (#984)
- removeAllFee() (#764)
- _previousTaxFee = _taxFee (#984)
- removeAllFee() (#778)
- _previousTaxFee = _taxFee (#984)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _previousTaxFee = _taxFee (#984)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#964)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#880)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#889)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#900)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#910)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#881)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#891)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#901)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#912)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _rTotal = _rTotal.sub(rFee) (#919)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _tFeeTotal = _tFeeTotal.add(tFee) (#920)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#966)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#909)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#899)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#890)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#911)
- removeAllFee() (#751)
- _taxFee = 0 (#987)
- _taxFee = _buyTaxFee (#752)
- removeAllFee() (#757)
- _taxFee = 0 (#987)
- _taxFee = _sellTaxFee (#758)
- removeAllFee() (#764)
- _taxFee = 0 (#987)
- _taxFee = _addressFees[from]._taxFee (#765)
- _taxFee = _addressFees[from]._sellTaxFee (#770)
- removeAllFee() (#778)
- _taxFee = 0 (#987)
- _taxFee = _addressFees[to]._buyTaxFee (#780)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- _taxFee = _previousTaxFee (#992)
- _taxFee = 0 (#987)
- buyBackTokens(_bBSLimit) (#735)
- inSwapAndLiquify = true (#517)
- inSwapAndLiquify = false (#519)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#842)
- buyBackTokens(_bBSLimit) (#735)
- Transfer(sender,recipient,tTransferAmount) (#884)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- Transfer(sender,recipient,tTransferAmount) (#904)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- Transfer(sender,recipient,tTransferAmount) (#894)
- _tokenTransfer(from,to,amount,takeFee) (#787)
- Transfer(sender,recipient,tTransferAmount) (#915)
- _tokenTransfer(from,to,amount,takeFee) (#787)
Reentrancy in CRGame.transferFrom(address,address,uint256) (#581-585):
External calls:
- _transfer(sender,recipient,amount) (#582)
- recipient.transfer(amount) (#1141)
External calls sending eth:
- _transfer(sender,recipient,amount) (#582)
- recipient.transfer(amount) (#1141)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#835-840)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#583)
- _allowances[owner][spender] = amount (#667)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#668)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#583)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#285) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#286)
Variable CRGame._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#940) is too similar to CRGame._transferStandard(address,address,uint256).tTransferAmount (#879)
Variable CRGame.reflectionFromToken(uint256,bool).rTransferAmount (#629) is too similar to CRGame._getValues(uint256).tTransferAmount (#924)
Variable CRGame._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#940) is too similar to CRGame._transferBothExcluded(address,address,uint256).tTransferAmount (#908)
Variable CRGame.reflectionFromToken(uint256,bool).rTransferAmount (#629) is too similar to CRGame._transferStandard(address,address,uint256).tTransferAmount (#879)
Variable CRGame._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#940) is too similar to CRGame._transferToExcluded(address,address,uint256).tTransferAmount (#888)
Variable CRGame.reflectionFromToken(uint256,bool).rTransferAmount (#629) is too similar to CRGame._transferBothExcluded(address,address,uint256).tTransferAmount (#908)
Variable CRGame.reflectionFromToken(uint256,bool).rTransferAmount (#629) is too similar to CRGame._transferToExcluded(address,address,uint256).tTransferAmount (#888)
Variable CRGame._transferFromExcluded(address,address,uint256).rTransferAmount (#898) is too similar to CRGame._getValues(uint256).tTransferAmount (#924)
Variable CRGame._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#940) is too similar to CRGame._transferFromExcluded(address,address,uint256).tTransferAmount (#898)
Variable CRGame._transferBothExcluded(address,address,uint256).rTransferAmount (#908) is too similar to CRGame._getValues(uint256).tTransferAmount (#924)
Variable CRGame._transferFromExcluded(address,address,uint256).rTransferAmount (#898) is too similar to CRGame._transferStandard(address,address,uint256).tTransferAmount (#879)
Variable CRGame._transferToExcluded(address,address,uint256).rTransferAmount (#888) is too similar to CRGame._getValues(uint256).tTransferAmount (#924)
Variable CRGame._transferFromExcluded(address,address,uint256).rTransferAmount (#898) is too similar to CRGame._transferBothExcluded(address,address,uint256).tTransferAmount (#908)
Variable CRGame._transferToExcluded(address,address,uint256).rTransferAmount (#888) is too similar to CRGame._transferStandard(address,address,uint256).tTransferAmount (#879)
Variable CRGame.reflectionFromToken(uint256,bool).rTransferAmount (#629) is too similar to CRGame._transferFromExcluded(address,address,uint256).tTransferAmount (#898)
Variable CRGame._transferBothExcluded(address,address,uint256).rTransferAmount (#908) is too similar to CRGame._transferStandard(address,address,uint256).tTransferAmount (#879)
Variable CRGame._transferBothExcluded(address,address,uint256).rTransferAmount (#908) is too similar to CRGame._transferBothExcluded(address,address,uint256).tTransferAmount (#908)
Variable CRGame._transferFromExcluded(address,address,uint256).rTransferAmount (#898) is too similar to CRGame._transferToExcluded(address,address,uint256).tTransferAmount (#888)
Variable CRGame._transferBothExcluded(address,address,uint256).rTransferAmount (#908) is too similar to CRGame._transferToExcluded(address,address,uint256).tTransferAmount (#888)
Variable CRGame._transferStandard(address,address,uint256).rTransferAmount (#879) is too similar to CRGame._transferStandard(address,address,uint256).tTransferAmount (#879)
Variable CRGame._transferToExcluded(address,address,uint256).rTransferAmount (#888) is too similar to CRGame._transferToExcluded(address,address,uint256).tTransferAmount (#888)
Variable CRGame._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#940) is too similar to CRGame._getTValues(uint256).tTransferAmount (#932)
Variable CRGame._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#940) is too similar to CRGame._getValues(uint256).tTransferAmount (#924)
Variable CRGame._transferFromExcluded(address,address,uint256).rTransferAmount (#898) is too similar to CRGame._transferFromExcluded(address,address,uint256).tTransferAmount (#898)
Variable CRGame._transferBothExcluded(address,address,uint256).rTransferAmount (#908) is too similar to CRGame._transferFromExcluded(address,address,uint256).tTransferAmount (#898)
Variable CRGame._transferToExcluded(address,address,uint256).rTransferAmount (#888) is too similar to CRGame._transferFromExcluded(address,address,uint256).tTransferAmount (#898)
Variable CRGame._getValues(uint256).rTransferAmount (#925) is too similar to CRGame._getValues(uint256).tTransferAmount (#924)
Variable CRGame._getValues(uint256).rTransferAmount (#925) is too similar to CRGame._transferFromExcluded(address,address,uint256).tTransferAmount (#898)
Variable CRGame._getValues(uint256).rTransferAmount (#925) is too similar to CRGame._transferToExcluded(address,address,uint256).tTransferAmount (#888)
Variable CRGame._getValues(uint256).rTransferAmount (#925) is too similar to CRGame._transferStandard(address,address,uint256).tTransferAmount (#879)
Variable CRGame._transferStandard(address,address,uint256).rTransferAmount (#879) is too similar to CRGame._transferBothExcluded(address,address,uint256).tTransferAmount (#908)
Variable CRGame._transferStandard(address,address,uint256).rTransferAmount (#879) is too similar to CRGame._getTValues(uint256).tTransferAmount (#932)
Variable CRGame._transferBothExcluded(address,address,uint256).rTransferAmount (#908) is too similar to CRGame._getTValues(uint256).tTransferAmount (#932)
Variable CRGame._transferToExcluded(address,address,uint256).rTransferAmount (#888) is too similar to CRGame._getTValues(uint256).tTransferAmount (#932)
Variable CRGame._transferToExcluded(address,address,uint256).rTransferAmount (#888) is too similar to CRGame._transferBothExcluded(address,address,uint256).tTransferAmount (#908)
Variable CRGame._transferStandard(address,address,uint256).rTransferAmount (#879) is too similar to CRGame._getValues(uint256).tTransferAmount (#924)
Variable CRGame._transferStandard(address,address,uint256).rTransferAmount (#879) is too similar to CRGame._transferFromExcluded(address,address,uint256).tTransferAmount (#898)
Variable CRGame.reflectionFromToken(uint256,bool).rTransferAmount (#629) is too similar to CRGame._getTValues(uint256).tTransferAmount (#932)
Variable CRGame._transferStandard(address,address,uint256).rTransferAmount (#879) is too similar to CRGame._transferToExcluded(address,address,uint256).tTransferAmount (#888)
Variable CRGame._transferFromExcluded(address,address,uint256).rTransferAmount (#898) is too similar to CRGame._getTValues(uint256).tTransferAmount (#932)
Variable CRGame._getValues(uint256).rTransferAmount (#925) is too similar to CRGame._transferBothExcluded(address,address,uint256).tTransferAmount (#908)
Variable CRGame._getValues(uint256).rTransferAmount (#925) is too similar to CRGame._getTValues(uint256).tTransferAmount (#932)
Prevent variables from having similar names.

Additional information: link

CRGame.prepareForPreSale() (#1126-1131) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 9 (#1130)
CRGame.afterPreSale() (#1133-1138) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#1137)
CRGame.slitherConstructorVariables() (#415-1193) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#420)
CRGame.slitherConstructorVariables() (#415-1193) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#431)
CRGame.slitherConstructorVariables() (#415-1193) uses literals with too many digits:
- _maxTxAmount = 10000000000000000000 * 10 ** 6 * 10 ** 9 (#476)
CRGame.slitherConstructorVariables() (#415-1193) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 6 * 10 ** 9 (#477)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CRGame._decimals (#437) should be constant
CRGame._isEnabledBuyBackAndBurn (#494) should be constant
CRGame._name (#435) should be constant
CRGame._symbol (#436) should be constant
CRGame._tTotal (#431) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#171-174)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#176-180)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#182-184)
getTime() should be declared external:
- Ownable.getTime() (#186-188)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#190-195)
unlock() should be declared external:
- Ownable.unlock() (#197-202)
name() should be declared external:
- CRGame.name() (#546-548)
symbol() should be declared external:
- CRGame.symbol() (#550-552)
decimals() should be declared external:
- CRGame.decimals() (#554-556)
totalSupply() should be declared external:
- CRGame.totalSupply() (#558-560)
transfer(address,uint256) should be declared external:
- CRGame.transfer(address,uint256) (#567-570)
allowance(address,address) should be declared external:
- CRGame.allowance(address,address) (#572-574)
approve(address,uint256) should be declared external:
- CRGame.approve(address,uint256) (#576-579)
transferFrom(address,address,uint256) should be declared external:
- CRGame.transferFrom(address,address,uint256) (#581-585)
increaseAllowance(address,uint256) should be declared external:
- CRGame.increaseAllowance(address,uint256) (#587-590)
decreaseAllowance(address,uint256) should be declared external:
- CRGame.decreaseAllowance(address,uint256) (#592-595)
isExcludedFromReward(address) should be declared external:
- CRGame.isExcludedFromReward(address) (#597-599)
totalFees() should be declared external:
- CRGame.totalFees() (#601-603)
minimumTokensBeforeSwapAmount() should be declared external:
- CRGame.minimumTokensBeforeSwapAmount() (#605-607)
buyBackSellLimitAmount() should be declared external:
- CRGame.buyBackSellLimitAmount() (#609-611)
deliver(uint256) should be declared external:
- CRGame.deliver(uint256) (#613-620)
reflectionFromToken(uint256,bool) should be declared external:
- CRGame.reflectionFromToken(uint256,bool) (#623-632)
excludeFromReward(address) should be declared external:
- CRGame.excludeFromReward(address) (#640-648)
isExcludedFromFee(address) should be declared external:
- CRGame.isExcludedFromFee(address) (#996-998)
excludeFromFee(address) should be declared external:
- CRGame.excludeFromFee(address) (#1000-1002)
includeInFee(address) should be declared external:
- CRGame.includeInFee(address) (#1004-1006)
GetBuyBackTimeInterval() should be declared external:
- CRGame.GetBuyBackTimeInterval() (#1052-1054)
GetSwapMinutes() should be declared external:
- CRGame.GetSwapMinutes() (#1065-1067)
setBuyBackEnabled(bool) should be declared external:
- CRGame.setBuyBackEnabled(bool) (#1116-1119)
setAutoBuyBackEnabled(bool) should be declared external:
- CRGame.setAutoBuyBackEnabled(bool) (#1121-1124)
changeRouterVersion(address) should be declared external:
- CRGame.changeRouterVersion(address) (#1144-1157)
transferForeignToken(address,address) should be declared external:
- CRGame.transferForeignToken(address,address) (#1163-1167)
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 link seems to be invalid


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for CRG