Dragon Verse is an upcoming Play-to-earn game with PvP/PvE Genre, built on Binance Smart Chain to take advantage of low fees, fast transaction speed, and large user base. Prepare all the weapons for your Dragon Pet and gather your strength to fight against Dark Lord Dragon and other players!
Dragon Verse is designed to focus on the NFT Marketplace system and staking, where players and the DRV community can trade accessories and raise their dragon pets to a higher level. The stronger the dragon pet, the more valuable it is on the trading market. Let's play a simple, fun, relaxing game and make real money!
From the beginning, Dragon Metaverse has aimed to develop long-term assets for the metaverse world, and we are in progress of transferring all of your NFT into the virtual world. In the future, you can use your NFTs to receive rare accessories and gain more profits.
DragonVerse.withdrawTokens(address,address,uint256) (#892-899) ignores return value by IERC20(tokenAddress).transfer(to,amount) (#897)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Reentrancy in DragonVerse._transfer(address,address,uint256) (#737-781):
External calls:
- swapAndLiquify(contractTokenBalance) (#768)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#815-821)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#768)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#780)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#673)
- _rOwned[devWallet] = _rOwned[devWallet].add(rDev) (#682)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#872)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#862)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#884)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#863)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#566)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#885)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#874)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#568)
- _tokenTransfer(from,to,amount,takeFee) (#780)
- _rTotal = _rTotal.sub(rFee) (#626)
- _tokenTransfer(from,to,amount,takeFee) (#780)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#675)
- _tOwned[devWallet] = _tOwned[devWallet].add(tDev) (#684)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#883)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#565)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#873)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#567)
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)
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.
Address.isContract(address) (#82-91) uses assembly
- INLINE ASM (#89)
Address._functionCallWithValue(address,bytes,uint256,string) (#118-139) uses assembly
- INLINE ASM (#131-134)
Do not use evm assembly.
Additional information: link
Ownable._previousOwner (#144) is never used in DragonVerse (#374-910)
Remove unused state variables.
Additional information: link
DragonVerse.allowance(address,address).owner (#481) shadows:
- Ownable.owner() (#154-156) (function)
DragonVerse._approve(address,address,uint256).owner (#729) shadows:
- Ownable.owner() (#154-156) (function)
Rename the local variables that shadow another component.
Additional information: link
DragonVerse.setTaxFeePercent(uint256) (#583-585) should emit an event for:
- _taxFee = taxFee (#584)
DragonVerse.setLiquidityFeePercent(uint256) (#587-589) should emit an event for:
- _liquidityFee = liquidityFee (#588)
DragonVerse.setDevFeePercent(uint256) (#591-593) should emit an event for:
- _devFee = devFee (#592)
DragonVerse.setMaxTxPercent(uint256) (#595-599) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#596-598)
Emit an event for critical parameter changes.
Additional information: link
DragonVerse.addLiquidity(uint256,uint256) (#824-837) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
Ensure that all the return values of the function calls are used.
Additional information: link
Reentrancy in DragonVerse._transfer(address,address,uint256) (#737-781):
External calls:
- swapAndLiquify(contractTokenBalance) (#768)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#815-821)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#768)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#780)
- _devFee = _previousDevFee (#722)
- _devFee = 0 (#716)
- _tokenTransfer(from,to,amount,takeFee) (#780)
- _liquidityFee = _previousLiquidityFee (#721)
- _liquidityFee = 0 (#715)
- _tokenTransfer(from,to,amount,takeFee) (#780)
- _previousDevFee = _devFee (#712)
- _tokenTransfer(from,to,amount,takeFee) (#780)
- _previousLiquidityFee = _liquidityFee (#711)
- _tokenTransfer(from,to,amount,takeFee) (#780)
- _previousTaxFee = _taxFee (#710)
- _tokenTransfer(from,to,amount,takeFee) (#780)
- _tFeeTotal = _tFeeTotal.add(tFee) (#627)
- _tokenTransfer(from,to,amount,takeFee) (#780)
- _taxFee = _previousTaxFee (#720)
- _taxFee = 0 (#714)
Reentrancy in DragonVerse.constructor() (#432-453):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#440)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#448)
- _isExcludedFromFee[address(this)] = true (#449)
- _isExcludedFromFee[devWallet] = true (#450)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#445)
- automatedMarketMakerPairs[pair] = value (#619)
- uniswapV2Pair = _uniswapV2Pair (#444)
- uniswapV2Router = _uniswapV2Router (#443)
Reentrancy in DragonVerse.swapAndLiquify(uint256) (#783-804):
External calls:
- swapTokensForEth(half) (#795)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#815-821)
- addLiquidity(otherHalf,newBalance) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#801)
- _allowances[owner][spender] = amount (#733)
Reentrancy in DragonVerse.transferFrom(address,address,uint256) (#490-494):
External calls:
- _transfer(sender,recipient,amount) (#491)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#815-821)
External calls sending eth:
- _transfer(sender,recipient,amount) (#491)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#492)
- _allowances[owner][spender] = amount (#733)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DragonVerse._transfer(address,address,uint256) (#737-781):
External calls:
- swapAndLiquify(contractTokenBalance) (#768)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#815-821)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#768)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#780)
- Transfer(sender,recipient,tTransferAmount) (#889)
- _tokenTransfer(from,to,amount,takeFee) (#780)
- Transfer(sender,recipient,tTransferAmount) (#878)
- _tokenTransfer(from,to,amount,takeFee) (#780)
- Transfer(sender,recipient,tTransferAmount) (#572)
- _tokenTransfer(from,to,amount,takeFee) (#780)
Reentrancy in DragonVerse.constructor() (#432-453):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#440)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#620)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#445)
- Transfer(address(0),_msgSender(),_tTotal) (#452)
Reentrancy in DragonVerse.swapAndLiquify(uint256) (#783-804):
External calls:
- swapTokensForEth(half) (#795)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#815-821)
- addLiquidity(otherHalf,newBalance) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#734)
- addLiquidity(otherHalf,newBalance) (#801)
- SwapAndLiquify(half,newBalance,otherHalf) (#803)
Reentrancy in DragonVerse.transferFrom(address,address,uint256) (#490-494):
External calls:
- _transfer(sender,recipient,amount) (#491)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#815-821)
External calls sending eth:
- _transfer(sender,recipient,amount) (#491)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#734)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#492)
Reentrancy in DragonVerse.withdrawBNB(address,uint256) (#901-908):
External calls:
- address(to).sendValue(amount) (#906)
Event emitted after the call(s):
- BNBWithdrawn(msg.sender,to,amount) (#907)
Reentrancy in DragonVerse.withdrawTokens(address,address,uint256) (#892-899):
External calls:
- IERC20(tokenAddress).transfer(to,amount) (#897)
Event emitted after the call(s):
- TokenWithDrawn(tokenAddress,to,amount) (#898)
Apply the check-effects-interactions pattern.
Additional information: link
DragonVerse.includeInReward(address) (#550-561) has costly operations inside a loop:
- _excluded.pop() (#557)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#118-139) is never used and should be removed
Address.functionCall(address,bytes) (#101-103) is never used and should be removed
Address.functionCall(address,bytes,string) (#105-107) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#109-111) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#113-116) is never used and should be removed
Address.isContract(address) (#82-91) is never used and should be removed
Context._msgData() (#74-77) is never used and should be removed
SafeMath.mod(uint256,uint256) (#59-61) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#63-66) is never used and should be removed
Remove unused functions.
Additional information: link
DragonVerse._rTotal (#392) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
DragonVerse._previousTaxFee (#400) is set pre-construction with a non-constant function or state variable:
- _taxFee
DragonVerse._previousLiquidityFee (#403) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
DragonVerse._previousDevFee (#406) is set pre-construction with a non-constant function or state variable:
- _devFee
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) (#93-99):
- (success) = recipient.call{value: amount}() (#97)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#118-139):
- (success,returndata) = target.call{value: weiValue}(data) (#122)
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() (#203) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#204) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#221) is not in mixedCase
Function IUniswapV2Router01.WETH() (#241) is not in mixedCase
Parameter DragonVerse.setDevAddress(address)._devWallet (#601) is not in mixedCase
Parameter DragonVerse.setSwapAndLiquifyEnabled(bool)._enabled (#607) is not in mixedCase
Parameter DragonVerse.calculateTaxFee(uint256)._amount (#689) is not in mixedCase
Parameter DragonVerse.calculateLiquidityFee(uint256)._amount (#695) is not in mixedCase
Parameter DragonVerse.calculateDevFee(uint256)._amount (#701) is not in mixedCase
Variable DragonVerse._taxFee (#399) is not in mixedCase
Variable DragonVerse._liquidityFee (#402) is not in mixedCase
Variable DragonVerse._devFee (#405) is not in mixedCase
Variable DragonVerse._maxTxAmount (#416) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#75)" inContext (#69-78)
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 (#246) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#247)
Variable DragonVerse._transferToExcluded(address,address,uint256).rTransferAmount (#871) is too similar to DragonVerse._transferToExcluded(address,address,uint256).tTransferAmount (#871)
Variable DragonVerse.reflectionFromToken(uint256,bool).rTransferAmount (#529) is too similar to DragonVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#564)
Variable DragonVerse._transferToExcluded(address,address,uint256).rTransferAmount (#871) is too similar to DragonVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#882)
Variable DragonVerse._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#649) is too similar to DragonVerse._transferStandard(address,address,uint256).tTransferAmount (#861)
Variable DragonVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#882) is too similar to DragonVerse._transferToExcluded(address,address,uint256).tTransferAmount (#871)
Variable DragonVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#564) is too similar to DragonVerse._getTValues(uint256).tTransferAmount (#640)
Variable DragonVerse._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#649) is too similar to DragonVerse._getTValues(uint256).tTransferAmount (#640)
Variable DragonVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#882) is too similar to DragonVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#882)
Variable DragonVerse._transferToExcluded(address,address,uint256).rTransferAmount (#871) is too similar to DragonVerse._transferStandard(address,address,uint256).tTransferAmount (#861)
Variable DragonVerse._transferToExcluded(address,address,uint256).rTransferAmount (#871) is too similar to DragonVerse._getTValues(uint256).tTransferAmount (#640)
Variable DragonVerse._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#649) is too similar to DragonVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#564)
Variable DragonVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#564) is too similar to DragonVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#564)
Variable DragonVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#882) is too similar to DragonVerse._transferStandard(address,address,uint256).tTransferAmount (#861)
Variable DragonVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#882) is too similar to DragonVerse._getTValues(uint256).tTransferAmount (#640)
Variable DragonVerse._getValues(uint256).rTransferAmount (#632) is too similar to DragonVerse._transferStandard(address,address,uint256).tTransferAmount (#861)
Variable DragonVerse._transferToExcluded(address,address,uint256).rTransferAmount (#871) is too similar to DragonVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#564)
Variable DragonVerse._getValues(uint256).rTransferAmount (#632) is too similar to DragonVerse._getTValues(uint256).tTransferAmount (#640)
Variable DragonVerse._transferStandard(address,address,uint256).rTransferAmount (#861) is too similar to DragonVerse._transferStandard(address,address,uint256).tTransferAmount (#861)
Variable DragonVerse._transferStandard(address,address,uint256).rTransferAmount (#861) is too similar to DragonVerse._getTValues(uint256).tTransferAmount (#640)
Variable DragonVerse._transferToExcluded(address,address,uint256).rTransferAmount (#871) is too similar to DragonVerse._getValues(uint256).tTransferAmount (#631)
Variable DragonVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#882) is too similar to DragonVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#564)
Variable DragonVerse.reflectionFromToken(uint256,bool).rTransferAmount (#529) is too similar to DragonVerse._transferStandard(address,address,uint256).tTransferAmount (#861)
Variable DragonVerse._getValues(uint256).rTransferAmount (#632) is too similar to DragonVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#564)
Variable DragonVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#882) is too similar to DragonVerse._getValues(uint256).tTransferAmount (#631)
Variable DragonVerse.reflectionFromToken(uint256,bool).rTransferAmount (#529) is too similar to DragonVerse._getTValues(uint256).tTransferAmount (#640)
Variable DragonVerse._transferStandard(address,address,uint256).rTransferAmount (#861) is too similar to DragonVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#564)
Variable DragonVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#564) is too similar to DragonVerse._transferStandard(address,address,uint256).tTransferAmount (#861)
Variable DragonVerse._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#649) is too similar to DragonVerse._transferToExcluded(address,address,uint256).tTransferAmount (#871)
Variable DragonVerse._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#649) is too similar to DragonVerse._getValues(uint256).tTransferAmount (#631)
Variable DragonVerse._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#649) is too similar to DragonVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#882)
Variable DragonVerse.reflectionFromToken(uint256,bool).rTransferAmount (#529) is too similar to DragonVerse._getValues(uint256).tTransferAmount (#631)
Variable DragonVerse.reflectionFromToken(uint256,bool).rTransferAmount (#529) is too similar to DragonVerse._transferToExcluded(address,address,uint256).tTransferAmount (#871)
Variable DragonVerse._transferStandard(address,address,uint256).rTransferAmount (#861) is too similar to DragonVerse._getValues(uint256).tTransferAmount (#631)
Variable DragonVerse._transferStandard(address,address,uint256).rTransferAmount (#861) is too similar to DragonVerse._transferToExcluded(address,address,uint256).tTransferAmount (#871)
Variable DragonVerse._getValues(uint256).rTransferAmount (#632) is too similar to DragonVerse._getValues(uint256).tTransferAmount (#631)
Variable DragonVerse._getValues(uint256).rTransferAmount (#632) is too similar to DragonVerse._transferToExcluded(address,address,uint256).tTransferAmount (#871)
Variable DragonVerse.reflectionFromToken(uint256,bool).rTransferAmount (#529) is too similar to DragonVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#882)
Variable DragonVerse._getValues(uint256).rTransferAmount (#632) is too similar to DragonVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#882)
Variable DragonVerse._transferStandard(address,address,uint256).rTransferAmount (#861) is too similar to DragonVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#882)
Variable DragonVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#564) is too similar to DragonVerse._transferToExcluded(address,address,uint256).tTransferAmount (#871)
Variable DragonVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#564) is too similar to DragonVerse._getValues(uint256).tTransferAmount (#631)
Variable DragonVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#564) is too similar to DragonVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#882)
Prevent variables from having similar names.
Additional information: link
DragonVerse.addLiquidity(uint256,uint256) (#824-837) uses literals with too many digits:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#829-836)
DragonVerse.slitherConstructorVariables() (#374-910) uses literals with too many digits:
- _tTotal = 300000000 * 10 ** 18 (#391)
DragonVerse.slitherConstructorVariables() (#374-910) uses literals with too many digits:
- _maxTxAmount = 500000000000000000000000000000 (#416)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DragonVerse._decimals (#397) should be constant
DragonVerse._name (#395) should be constant
DragonVerse._symbol (#396) should be constant
DragonVerse._tTotal (#391) should be constant
DragonVerse.numTokensSellToAddToLiquidity (#417) should be constant
Ownable._previousOwner (#144) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#163-166)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#168-172)
name() should be declared external:
- DragonVerse.name() (#455-457)
symbol() should be declared external:
- DragonVerse.symbol() (#459-461)
decimals() should be declared external:
- DragonVerse.decimals() (#463-465)
totalSupply() should be declared external:
- DragonVerse.totalSupply() (#467-469)
transfer(address,uint256) should be declared external:
- DragonVerse.transfer(address,uint256) (#476-479)
allowance(address,address) should be declared external:
- DragonVerse.allowance(address,address) (#481-483)
approve(address,uint256) should be declared external:
- DragonVerse.approve(address,uint256) (#485-488)
transferFrom(address,address,uint256) should be declared external:
- DragonVerse.transferFrom(address,address,uint256) (#490-494)
increaseAllowance(address,uint256) should be declared external:
- DragonVerse.increaseAllowance(address,uint256) (#496-499)
decreaseAllowance(address,uint256) should be declared external:
- DragonVerse.decreaseAllowance(address,uint256) (#501-504)
isExcludedFromReward(address) should be declared external:
- DragonVerse.isExcludedFromReward(address) (#506-508)
totalFees() should be declared external:
- DragonVerse.totalFees() (#510-512)
deliver(uint256) should be declared external:
- DragonVerse.deliver(uint256) (#514-521)
reflectionFromToken(uint256,bool) should be declared external:
- DragonVerse.reflectionFromToken(uint256,bool) (#523-532)
excludeFromReward(address) should be declared external:
- DragonVerse.excludeFromReward(address) (#540-548)
excludeFromFee(address) should be declared external:
- DragonVerse.excludeFromFee(address) (#575-577)
includeInFee(address) should be declared external:
- DragonVerse.includeInFee(address) (#579-581)
setDevAddress(address) should be declared external:
- DragonVerse.setDevAddress(address) (#601-605)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DragonVerse.setSwapAndLiquifyEnabled(bool) (#607-610)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- DragonVerse.setAutomatedMarketMakerPair(address,bool) (#612-615)
isExcludedFromFee(address) should be declared external:
- DragonVerse.isExcludedFromFee(address) (#725-727)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find whitepaper link on the website
Unable to find code repository for the project
Token is marked as scam (rug pull, honeypot, phishing, 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
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Young tokens have high risks of price dump / death
Last post in Twitter was more than 30 days ago