Doge verse Token Logo

DV [Doge verse] Token

About DV

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 7 December 2021

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 DogeVerse._transfer(address,address,uint256) (#979-1069):
External calls:
- swapBack() (#1039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1110)
External calls sending eth:
- swapBack() (#1039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1110)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1065)
- _devTokensToSwap += tLiquidity * _buyDevFee / _liquidityFee (#1338)
- _devTokensToSwap += tLiquidity * _sellDevFee / _liquidityFee (#1342)
- _tokenTransfer(from,to,amount) (#1065)
- _liquidityTokensToSwap += tLiquidity * _buyLiquidityFee / _liquidityFee (#1336)
- _liquidityTokensToSwap += tLiquidity * _sellLiquidityFee / _liquidityFee (#1340)
- _tokenTransfer(from,to,amount) (#1065)
- _marketingTokensToSwap += tLiquidity * _buyMarketingFee / _liquidityFee (#1337)
- _marketingTokensToSwap += tLiquidity * _sellMarketingFee / _liquidityFee (#1341)
- _tokenTransfer(from,to,amount) (#1065)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1189)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1169)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1232)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1170)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1211)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1191)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1212)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1234)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1346)
- _tokenTransfer(from,to,amount) (#1065)
- _rTotal = _rTotal.sub(rFee) (#1241)
- _tokenTransfer(from,to,amount) (#1065)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1210)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1231)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1190)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1233)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1348)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable._lockTime (#209) is never initialized. It is used in:
- Ownable.getUnlockTime() (#245-247)
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

Reentrancy in DogeVerse.constructor() (#719-749):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#726)
State variables written after the call(s):
- transferOwnership(newOwner) (#748)
- _owner = newOwner (#242)
Reentrancy in DogeVerse.swapBack() (#1071-1111):
External calls:
- swapTokensForETH(amountToSwapForETH) (#1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
State variables written after the call(s):
- _devTokensToSwap = 0 (#1100)
- _liquidityTokensToSwap = 0 (#1098)
- _marketingTokensToSwap = 0 (#1099)
Apply the check-effects-interactions pattern.

Additional information: link

DogeVerse._transfer(address,address,uint256) (#979-1069) uses tx.origin for authorization: require(bool,string)(_holderLastTransferTimestamp[tx.origin] < block.number,_transfer:: Transfer Delay enabled. Only one purchase per block allowed.) (#1010)
Do not use tx.origin for authorization.

Additional information: link

DogeVerse.addLiquidity(uint256,uint256) (#1127-1137) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
Ensure that all the return values of the function calls are used.

Additional information: link

DogeVerse.allowance(address,address).owner (#781) shadows:
- Ownable.owner() (#222-224) (function)
DogeVerse._approve(address,address,uint256).owner (#968) shadows:
- Ownable.owner() (#222-224) (function)
Rename the local variables that shadow another component.

Additional information: link

DogeVerse.updateMinimumTokensBeforeSwap(uint256) (#887-891) should emit an event for:
- minimumTokensBeforeSwap = newAmount (#890)
DogeVerse.updateMaxAmount(uint256) (#893-896) should emit an event for:
- maxTransactionAmount = newNum * (10 ** 18) (#895)
DogeVerse.setGasPriceLimit(uint256) (#911-914) should emit an event for:
- gasPriceLimit = gas * 1000000000 (#913)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in DogeVerse._transfer(address,address,uint256) (#979-1069):
External calls:
- swapBack() (#1039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1110)
External calls sending eth:
- swapBack() (#1039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1110)
State variables written after the call(s):
- removeAllFee() (#1042)
- _liquidityFee = 0 (#1370)
- _liquidityFee = _buyLiquidityFee + _buyMarketingFee + _buyDevFee (#1050)
- _liquidityFee = _sellLiquidityFee + _sellMarketingFee + _sellDevFee (#1058)
- restoreAllFee() (#1067)
- _liquidityFee = _previousLiquidityFee (#1375)
- removeAllFee() (#1042)
- _previousLiquidityFee = _liquidityFee (#1367)
- removeAllFee() (#1042)
- _previousTaxFee = _taxFee (#1366)
- _tokenTransfer(from,to,amount) (#1065)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1242)
- removeAllFee() (#1042)
- _taxFee = 0 (#1369)
- _taxFee = _buyTaxFee (#1049)
- _taxFee = _sellTaxFee (#1057)
- restoreAllFee() (#1067)
- _taxFee = _previousTaxFee (#1374)
- buyOrSellSwitch = TRANSFER (#1044)
- buyOrSellSwitch = BUY (#1052)
- buyOrSellSwitch = SELL (#1060)
Reentrancy in DogeVerse.constructor() (#719-749):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#726)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#728)
- _excluded.push(account) (#951)
- _excluded[i] = _excluded[_excluded.length - 1] (#958)
- _excluded.pop() (#961)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#728)
- _isExcluded[account] = true (#950)
- _isExcluded[account] = false (#960)
- _isExcludedFromFee[newOwner] = true (#738)
- _isExcludedFromFee[address(this)] = true (#739)
- _isExcludedFromFee[marketingAddress] = true (#740)
- _isExcludedFromFee[liquidityAddress] = true (#741)
- excludeFromMaxTransaction(address(uniswapV2Pair),true) (#727)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#872)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#728)
- _isExcludedMaxTransactionAmount[pair] = value (#906)
- excludeFromMaxTransaction(newOwner,true) (#743)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#872)
- excludeFromMaxTransaction(address(this),true) (#744)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#872)
- excludeFromMaxTransaction(address(0xdead),true) (#745)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#872)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#728)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#948)
- _tOwned[account] = 0 (#959)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#728)
- automatedMarketMakerPairs[pair] = value (#905)
- devAddress = address(0x96683787dC6ff26337A993EC0d75B985BB574F70) (#735)
- liquidityAddress = address(address(0xdead)) (#736)
- marketingAddress = address(0x02116D15AC94F77631f0069dD3A70dD9542Ba364) (#734)
- maxTransactionAmount = _tTotal * 5 / 1000 (#731)
- minimumTokensBeforeSwap = _tTotal * 5 / 10000 (#732)
Reentrancy in DogeVerse.swapBack() (#1071-1111):
External calls:
- swapTokensForETH(amountToSwapForETH) (#1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
External calls sending eth:
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
State variables written after the call(s):
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1105)
- _allowances[owner][spender] = amount (#975)
Reentrancy in DogeVerse.transferFrom(address,address,uint256) (#799-814):
External calls:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1110)
External calls sending eth:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1110)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#805-812)
- _allowances[owner][spender] = amount (#975)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DogeVerse._transfer(address,address,uint256) (#979-1069):
External calls:
- swapBack() (#1039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1110)
External calls sending eth:
- swapBack() (#1039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1110)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1173)
- _tokenTransfer(from,to,amount) (#1065)
- Transfer(sender,recipient,tTransferAmount) (#1215)
- _tokenTransfer(from,to,amount) (#1065)
- Transfer(sender,recipient,tTransferAmount) (#1194)
- _tokenTransfer(from,to,amount) (#1065)
- Transfer(sender,recipient,tTransferAmount) (#1237)
- _tokenTransfer(from,to,amount) (#1065)
Reentrancy in DogeVerse.constructor() (#719-749):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#726)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#241)
- transferOwnership(newOwner) (#748)
- Transfer(address(0),newOwner,_tTotal) (#747)
Reentrancy in DogeVerse.swapBack() (#1071-1111):
External calls:
- swapTokensForETH(amountToSwapForETH) (#1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
External calls sending eth:
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#976)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1105)
- SwapAndLiquify(amountToSwapForETH,ethForLiquidity,tokensForLiquidity) (#1106)
Reentrancy in DogeVerse.transferForeignToken(address,address) (#1445-1455):
External calls:
- _sent = IERC20(_token).transfer(_to,_contractBalance) (#1453)
Event emitted after the call(s):
- TransferForeignToken(_token,_contractBalance) (#1454)
Reentrancy in DogeVerse.transferFrom(address,address,uint256) (#799-814):
External calls:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1110)
External calls sending eth:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1129-1136)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1110)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#976)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#805-812)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#111-122) uses assembly
- INLINE ASM (#118-120)
Address._functionCallWithValue(address,bytes,uint256,string) (#180-203) uses assembly
- INLINE ASM (#195-198)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#180-203) is never used and should be removed
Address.functionCall(address,bytes) (#138-143) is never used and should be removed
Address.functionCall(address,bytes,string) (#145-151) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#153-165) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#167-178) is never used and should be removed
Address.isContract(address) (#111-122) is never used and should be removed
Address.sendValue(address,uint256) (#124-136) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#96-98) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#100-107) is never used and should be removed
Remove unused functions.

Additional information: link

DogeVerse._previousTaxFee (#633) is set pre-construction with a non-constant function or state variable:
- _taxFee
DogeVerse._previousLiquidityFee (#638) 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

Pragma version^0.8.9 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
solc-0.8.9 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#124-136):
- (success) = recipient.call{value: amount}() (#131)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#180-203):
- (success,returndata) = target.call{value: weiValue}(data) (#188-190)
Low level call in DogeVerse.swapBack() (#1071-1111):
- (success,None) = address(devAddress).call{value: ethForDev}() (#1102)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1110)
Low level call in DogeVerse.withdrawStuckETH() (#1458-1462):
- (success,None) = address(msg.sender).call{value: address(this).balance}() (#1461)
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() (#319) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#321) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#351) is not in mixedCase
Function IUniswapV2Router01.WETH() (#395) is not in mixedCase
Parameter DogeVerse.calculateTaxFee(uint256)._amount (#1351) is not in mixedCase
Parameter DogeVerse.calculateLiquidityFee(uint256)._amount (#1355) is not in mixedCase
Parameter DogeVerse.setMarketingAddress(address)._marketingAddress (#1416) is not in mixedCase
Parameter DogeVerse.setLiquidityAddress(address)._liquidityAddress (#1424) is not in mixedCase
Parameter DogeVerse.setDevAddress(address)._devAddress (#1431) is not in mixedCase
Parameter DogeVerse.setSwapAndLiquifyEnabled(bool)._enabled (#1437) is not in mixedCase
Parameter DogeVerse.transferForeignToken(address,address)._token (#1445) is not in mixedCase
Parameter DogeVerse.transferForeignToken(address,address)._to (#1445) is not in mixedCase
Constant DogeVerse._tTotal (#623) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DogeVerse._name (#627) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DogeVerse._symbol (#628) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DogeVerse._decimals (#629) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DogeVerse._buyTaxFee (#645) is not in mixedCase
Variable DogeVerse._buyLiquidityFee (#646) is not in mixedCase
Variable DogeVerse._buyMarketingFee (#647) is not in mixedCase
Variable DogeVerse._buyDevFee (#648) is not in mixedCase
Variable DogeVerse._sellTaxFee (#650) is not in mixedCase
Variable DogeVerse._sellLiquidityFee (#651) is not in mixedCase
Variable DogeVerse._sellMarketingFee (#652) is not in mixedCase
Variable DogeVerse._sellDevFee (#653) is not in mixedCase
Variable DogeVerse._liquidityTokensToSwap (#657) is not in mixedCase
Variable DogeVerse._marketingTokensToSwap (#658) is not in mixedCase
Variable DogeVerse._devTokensToSwap (#659) is not in mixedCase
Variable DogeVerse._isExcludedMaxTransactionAmount (#662) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
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 (#400) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#401)
Variable DogeVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#1204) is too similar to DogeVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable DogeVerse._transferToExcluded(address,address,uint256).rTransferAmount (#1183) is too similar to DogeVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable DogeVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1310) is too similar to DogeVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable DogeVerse._getValues(uint256).rTransferAmount (#1262) is too similar to DogeVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable DogeVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#1225) is too similar to DogeVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable DogeVerse._getValues(uint256).rTransferAmount (#1262) is too similar to DogeVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#1227)
Variable DogeVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#1225) is too similar to DogeVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#1227)
Variable DogeVerse.reflectionFromToken(uint256,bool).rTransferAmount (#926) is too similar to DogeVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable DogeVerse._getValues(uint256).rTransferAmount (#1262) is too similar to DogeVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable DogeVerse._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to DogeVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable DogeVerse.reflectionFromToken(uint256,bool).rTransferAmount (#926) is too similar to DogeVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#1227)
Variable DogeVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#1225) is too similar to DogeVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable DogeVerse._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to DogeVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#1227)
Variable DogeVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#1204) is too similar to DogeVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable DogeVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#1204) is too similar to DogeVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#1227)
Variable DogeVerse._transferToExcluded(address,address,uint256).rTransferAmount (#1183) is too similar to DogeVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable DogeVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1310) is too similar to DogeVerse._transferFromExcluded(address,address,uint256).tTransferAmount (#1206)
Variable DogeVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1310) is too similar to DogeVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#1227)
Variable DogeVerse.reflectionFromToken(uint256,bool).rTransferAmount (#926) is too similar to DogeVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable DogeVerse._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to DogeVerse._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable DogeVerse._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to DogeVerse._getValues(uint256).tTransferAmount (#1258)
Variable DogeVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#1204) is too similar to DogeVerse._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable DogeVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1310) is too similar to DogeVerse._getValues(uint256).tTransferAmount (#1258)
Variable DogeVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#1225) is too similar to DogeVerse._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable DogeVerse.reflectionFromToken(uint256,bool).rTransferAmount (#926) is too similar to DogeVerse._getValues(uint256).tTransferAmount (#1258)
Variable DogeVerse._getValues(uint256).rTransferAmount (#1262) is too similar to DogeVerse._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable DogeVerse._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to DogeVerse._getTValues(uint256).tTransferAmount (#1289)
Variable DogeVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1310) is too similar to DogeVerse._getTValues(uint256).tTransferAmount (#1289)
Variable DogeVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#1204) is too similar to DogeVerse._getValues(uint256).tTransferAmount (#1258)
Variable DogeVerse._transferToExcluded(address,address,uint256).rTransferAmount (#1183) is too similar to DogeVerse._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable DogeVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#1225) is too similar to DogeVerse._getValues(uint256).tTransferAmount (#1258)
Variable DogeVerse.reflectionFromToken(uint256,bool).rTransferAmount (#926) is too similar to DogeVerse._getTValues(uint256).tTransferAmount (#1289)
Variable DogeVerse._transferFromExcluded(address,address,uint256).rTransferAmount (#1204) is too similar to DogeVerse._getTValues(uint256).tTransferAmount (#1289)
Variable DogeVerse._getValues(uint256).rTransferAmount (#1262) is too similar to DogeVerse._getValues(uint256).tTransferAmount (#1258)
Variable DogeVerse._transferToExcluded(address,address,uint256).rTransferAmount (#1183) is too similar to DogeVerse._getValues(uint256).tTransferAmount (#1258)
Variable DogeVerse._transferBothExcluded(address,address,uint256).rTransferAmount (#1225) is too similar to DogeVerse._getTValues(uint256).tTransferAmount (#1289)
Variable DogeVerse._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to DogeVerse._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable DogeVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1310) is too similar to DogeVerse._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable DogeVerse._transferToExcluded(address,address,uint256).rTransferAmount (#1183) is too similar to DogeVerse._transferBothExcluded(address,address,uint256).tTransferAmount (#1227)
Variable DogeVerse.reflectionFromToken(uint256,bool).rTransferAmount (#926) is too similar to DogeVerse._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable DogeVerse._getValues(uint256).rTransferAmount (#1262) is too similar to DogeVerse._getTValues(uint256).tTransferAmount (#1289)
Variable DogeVerse._transferToExcluded(address,address,uint256).rTransferAmount (#1183) is too similar to DogeVerse._getTValues(uint256).tTransferAmount (#1289)
Prevent variables from having similar names.

Additional information: link

DogeVerse.updateMinimumTokensBeforeSwap(uint256) (#887-891) uses literals with too many digits:
- require(bool,string)(newAmount >= _tTotal * 1 / 100000,Swap amount cannot be lower than 0.001% total supply.) (#888)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#208) is never used in DogeVerse (#598-1464)
DogeVerse._marketingFee (#635) is never used in DogeVerse (#598-1464)
Remove unused state variables.

Additional information: link

DogeVerse._marketingFee (#635) should be constant
Ownable._lockTime (#209) should be constant
Ownable._previousOwner (#208) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#231-234)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#245-247)
getTime() should be declared external:
- Ownable.getTime() (#249-251)
approve(address,uint256) should be declared external:
- DogeVerse.approve(address,uint256) (#790-797)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- DogeVerse.setAutomatedMarketMakerPair(address,bool) (#898-902)
setLiquidityAddress(address) should be declared external:
- DogeVerse.setLiquidityAddress(address) (#1424-1429)
setDevAddress(address) should be declared external:
- DogeVerse.setDevAddress(address) (#1431-1435)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DogeVerse.setSwapAndLiquifyEnabled(bool) (#1437-1440)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Unable to find Telegram and Twitter accounts


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 DV