CyberVerse is a GameFi PlayToEarn project, with an upcoming open-world game, with a native currency in the form of a CyberVerse (CBV) token.
Reentrancy in CyberVerse._transfer(address,address,uint256) (#1004-1048):
External calls:
- swapAndLiquify(contractTokenBalance) (#1035)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1035)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#960)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1138)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1129)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1149)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#876)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1130)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1140)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1150)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#878)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _rTotal = _rTotal.sub(rFee) (#915)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#962)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1148)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#875)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1139)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#877)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
Address.isContract(address) (#280-289) uses assembly
- INLINE ASM (#287)
Address._functionCallWithValue(address,bytes,uint256,string) (#373-394) uses assembly
- INLINE ASM (#386-389)
Do not use evm assembly.
Additional information: link
CyberVerse.includeInReward(address) (#861-872) has costly operations inside a loop:
- _excluded.pop() (#868)
Use a local variable to hold the loop computation result.
Additional information: link
Redundant expression "this (#253)" inContext (#247-256)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#373-394) is never used and should be removed
Address.functionCall(address,bytes) (#333-335) is never used and should be removed
Address.functionCall(address,bytes,string) (#343-345) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#358-360) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#368-371) is never used and should be removed
Address.isContract(address) (#280-289) is never used and should be removed
Address.sendValue(address,uint256) (#307-313) is never used and should be removed
Context._msgData() (#252-255) is never used and should be removed
SafeMath.mod(uint256,uint256) (#225-227) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#241-244) is never used and should be removed
Remove unused functions.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#564) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#565)
Variable CyberVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#936) is too similar to CyberVerse._getTValues(uint256).tTransferAmount (#928)
Variable CyberVerse._transferStandard(address,address,uint256).rTransferAmount (#1128) is too similar to CyberVerse._getTValues(uint256).tTransferAmount (#928)
Variable CyberVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#936) is too similar to CyberVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable CyberVerse._transferStandard(address,address,uint256).rTransferAmount (#1128) is too similar to CyberVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable CyberVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to CyberVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable CyberVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#936) is too similar to CyberVerse._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable CyberVerse._transferStandard(address,address,uint256).rTransferAmount (#1128) is too similar to CyberVerse._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable CyberVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to CyberVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable CyberVerse._getValues(uint256).rTransferAmount (#921) is too similar to CyberVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable CyberVerse.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to CyberVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable CyberVerse._transferToExcluded(address,address,uint256).rTransferAmount (#1137) is too similar to CyberVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable CyberVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to CyberVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable CyberVerse._getValues(uint256).rTransferAmount (#921) is too similar to CyberVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable CyberVerse._getValues(uint256).rTransferAmount (#921) is too similar to CyberVerse._getTValues(uint256).tTransferAmount (#928)
Variable CyberVerse.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to CyberVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable CyberVerse._transferToExcluded(address,address,uint256).rTransferAmount (#1137) is too similar to CyberVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable CyberVerse._getValues(uint256).rTransferAmount (#921) is too similar to CyberVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable CyberVerse.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to CyberVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable CyberVerse._transferStandard(address,address,uint256).rTransferAmount (#1128) is too similar to CyberVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable CyberVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#936) is too similar to CyberVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable CyberVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#1147) is too similar to CyberVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable CyberVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#936) is too similar to CyberVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable CyberVerse._transferStandard(address,address,uint256).rTransferAmount (#1128) is too similar to CyberVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable CyberVerse._transferToExcluded(address,address,uint256).rTransferAmount (#1137) is too similar to CyberVerse._getTValues(uint256).tTransferAmount (#928)
Variable CyberVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to CyberVerse._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable CyberVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#936) is too similar to CyberVerse._getValues(uint256).tTransferAmount (#920)
Variable CyberVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#1147) is too similar to CyberVerse._getTValues(uint256).tTransferAmount (#928)
Variable CyberVerse._getValues(uint256).rTransferAmount (#921) is too similar to CyberVerse._getValues(uint256).tTransferAmount (#920)
Variable CyberVerse._transferToExcluded(address,address,uint256).rTransferAmount (#1137) is too similar to CyberVerse._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable CyberVerse.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to CyberVerse._getValues(uint256).tTransferAmount (#920)
Variable CyberVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#1147) is too similar to CyberVerse._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable CyberVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to CyberVerse._getValues(uint256).tTransferAmount (#920)
Variable CyberVerse._transferToExcluded(address,address,uint256).rTransferAmount (#1137) is too similar to CyberVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable CyberVerse.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to CyberVerse._getTValues(uint256).tTransferAmount (#928)
Variable CyberVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#1147) is too similar to CyberVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#874)
Variable CyberVerse._transferToExcluded(address,address,uint256).rTransferAmount (#1137) is too similar to CyberVerse._getValues(uint256).tTransferAmount (#920)
Variable CyberVerse._getValues(uint256).rTransferAmount (#921) is too similar to CyberVerse._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable CyberVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to CyberVerse._getTValues(uint256).tTransferAmount (#928)
Variable CyberVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#1147) is too similar to CyberVerse._getValues(uint256).tTransferAmount (#920)
Variable CyberVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#1147) is too similar to CyberVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable CyberVerse.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to CyberVerse._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable CyberVerse._transferStandard(address,address,uint256).rTransferAmount (#1128) is too similar to CyberVerse._getValues(uint256).tTransferAmount (#920)
Prevent variables from having similar names.
Additional information: link
CyberVerse._decimals (#717) should be constant
CyberVerse._name (#715) should be constant
CyberVerse._symbol (#716) should be constant
CyberVerse._tTotal (#711) should be constant
CyberVerse.numTokensSellToAddToLiquidity (#732) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#447-450)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#456-460)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#462-464)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#467-472)
unlock() should be declared external:
- Ownable.unlock() (#475-480)
name() should be declared external:
- CyberVerse.name() (#766-768)
symbol() should be declared external:
- CyberVerse.symbol() (#770-772)
decimals() should be declared external:
- CyberVerse.decimals() (#774-776)
totalSupply() should be declared external:
- CyberVerse.totalSupply() (#778-780)
transfer(address,uint256) should be declared external:
- CyberVerse.transfer(address,uint256) (#787-790)
allowance(address,address) should be declared external:
- CyberVerse.allowance(address,address) (#792-794)
approve(address,uint256) should be declared external:
- CyberVerse.approve(address,uint256) (#796-799)
transferFrom(address,address,uint256) should be declared external:
- CyberVerse.transferFrom(address,address,uint256) (#801-805)
increaseAllowance(address,uint256) should be declared external:
- CyberVerse.increaseAllowance(address,uint256) (#807-810)
decreaseAllowance(address,uint256) should be declared external:
- CyberVerse.decreaseAllowance(address,uint256) (#812-815)
isExcludedFromReward(address) should be declared external:
- CyberVerse.isExcludedFromReward(address) (#817-819)
totalFees() should be declared external:
- CyberVerse.totalFees() (#821-823)
deliver(uint256) should be declared external:
- CyberVerse.deliver(uint256) (#825-832)
reflectionFromToken(uint256,bool) should be declared external:
- CyberVerse.reflectionFromToken(uint256,bool) (#834-843)
excludeFromReward(address) should be declared external:
- CyberVerse.excludeFromReward(address) (#851-859)
excludeFromFee(address) should be declared external:
- CyberVerse.excludeFromFee(address) (#884-886)
includeInFee(address) should be declared external:
- CyberVerse.includeInFee(address) (#888-890)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CyberVerse.setSwapAndLiquifyEnabled(bool) (#906-909)
isExcludedFromFee(address) should be declared external:
- CyberVerse.isExcludedFromFee(address) (#992-994)
Use the external attribute for functions never called from the contract.
Additional information: link
CyberVerse._rTotal (#712) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CyberVerse._previousTaxFee (#720) is set pre-construction with a non-constant function or state variable:
- _taxFee
CyberVerse._previousLiquidityFee (#723) 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) (#307-313):
- (success) = recipient.call{value: amount}() (#311)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#373-394):
- (success,returndata) = target.call{value: weiValue}(data) (#377)
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() (#519) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#520) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#537) is not in mixedCase
Function IUniswapV2Router01.WETH() (#559) is not in mixedCase
Parameter CyberVerse.setSwapAndLiquifyEnabled(bool)._enabled (#906) is not in mixedCase
Parameter CyberVerse.calculateTaxFee(uint256)._amount (#965) is not in mixedCase
Parameter CyberVerse.calculateLiquidityFee(uint256)._amount (#971) is not in mixedCase
Variable CyberVerse._taxFee (#719) is not in mixedCase
Variable CyberVerse._liquidityFee (#722) is not in mixedCase
Variable CyberVerse._maxTxAmount (#731) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
CyberVerse.addLiquidity(uint256,uint256) (#1091-1104) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
Ensure that all the return values of the function calls are used.
Additional information: link
CyberVerse.allowance(address,address).owner (#792) shadows:
- Ownable.owner() (#428-430) (function)
CyberVerse._approve(address,address,uint256).owner (#996) shadows:
- Ownable.owner() (#428-430) (function)
Rename the local variables that shadow another component.
Additional information: link
CyberVerse.setTaxFeePercent(uint256) (#892-894) should emit an event for:
- _taxFee = taxFee (#893)
CyberVerse.setLiquidityFeePercent(uint256) (#896-898) should emit an event for:
- _liquidityFee = liquidityFee (#897)
CyberVerse.setMaxTxPercent(uint256) (#900-904) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#901-903)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in CyberVerse._transfer(address,address,uint256) (#1004-1048):
External calls:
- swapAndLiquify(contractTokenBalance) (#1035)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1035)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _liquidityFee = _previousLiquidityFee (#989)
- _liquidityFee = 0 (#984)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _previousLiquidityFee = _liquidityFee (#981)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _previousTaxFee = _taxFee (#980)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _tFeeTotal = _tFeeTotal.add(tFee) (#916)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _taxFee = _previousTaxFee (#988)
- _taxFee = 0 (#983)
Reentrancy in CyberVerse.constructor() (#748-764):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#753-754)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#760)
- _isExcludedFromFee[address(this)] = true (#761)
- uniswapV2Router = _uniswapV2Router (#757)
Reentrancy in CyberVerse.swapAndLiquify(uint256) (#1050-1071):
External calls:
- swapTokensForEth(half) (#1062)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
- addLiquidity(otherHalf,newBalance) (#1068)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1068)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1068)
- _allowances[owner][spender] = amount (#1000)
Reentrancy in CyberVerse.transferFrom(address,address,uint256) (#801-805):
External calls:
- _transfer(sender,recipient,amount) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- _transfer(sender,recipient,amount) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#803)
- _allowances[owner][spender] = amount (#1000)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CyberVerse._transfer(address,address,uint256) (#1004-1048):
External calls:
- swapAndLiquify(contractTokenBalance) (#1035)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1035)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1133)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#1143)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#1153)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#881)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
Reentrancy in CyberVerse.constructor() (#748-764):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#753-754)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#763)
Reentrancy in CyberVerse.swapAndLiquify(uint256) (#1050-1071):
External calls:
- swapTokensForEth(half) (#1062)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
- addLiquidity(otherHalf,newBalance) (#1068)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1068)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1001)
- addLiquidity(otherHalf,newBalance) (#1068)
- SwapAndLiquify(half,newBalance,otherHalf) (#1070)
Reentrancy in CyberVerse.transferFrom(address,address,uint256) (#801-805):
External calls:
- _transfer(sender,recipient,amount) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- _transfer(sender,recipient,amount) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1096-1103)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1001)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#803)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#475-480) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#477)
Avoid relying on block.timestamp.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Token has only one trading pair
Token is deployed only at one blockchain
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
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