DogeWarrior Token Logo

DWR [DogeWarrior] Token

About DWR

Listings

Token 2 years

DogeWarrior is a fusion between gaming and crypto. DogeWarrior's multiplayer online game uses the DogeWarrior Token (DWR), deployed on BSC. This token offers features such as autoburn, a liquidity generation mechanism, and rewards its holders with every transaction.
Besides DogeWarrior's card-based fighting game, Team has also started development on products which they will release in the next quarter such as an NFT Marketplace, DEX and a gaming platform with dozens of games.
DWR's Team is commited to this project and have a very specific goal in mind: to develop an easy to pick up and play card game with full crypto integration!

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

Reentrancy in DogeWarrior._transfer(address,address,uint256) (#1021-1049):
External calls:
- swapAndLiquify(contractTokenBalance) (#1044)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1083-1089)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1044)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1048)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#965)
- _rOwned[sender] = _rOwned[sender].sub(vs.rAmount) (#1141)
- _rOwned[sender] = _rOwned[sender].sub(vs.rAmount) (#1135)
- _rOwned[recipient] = _rOwned[recipient].add(vs.rTransferAmount) (#1136)
- _rOwned[sender] = _rOwned[sender].sub(vs.rAmount) (#1156)
- _rOwned[sender] = _rOwned[sender].sub(vs.rAmount) (#1149)
- _rOwned[recipient] = _rOwned[recipient].add(vs.rTransferAmount) (#1150)
- _rOwned[recipient] = _rOwned[recipient].add(vs.rTransferAmount) (#1143)
- _rOwned[recipient] = _rOwned[recipient].add(vs.rTransferAmount) (#1158)
- _rOwned[marketingAndTeamFeeWallet] = _rOwned[marketingAndTeamFeeWallet].add(rMarketingAndTeam) (#903)
- _tokenTransfer(from,to,amount) (#1048)
- _rTotal = _rTotal.sub(rFee).sub(rBurn) (#898)
- _tokenTransfer(from,to,amount) (#1048)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1155)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1148)
- _tOwned[recipient] = _tOwned[recipient].add(vs.tTransferAmount) (#1142)
- _tOwned[recipient] = _tOwned[recipient].add(vs.tTransferAmount) (#1157)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#967)
- _tOwned[marketingAndTeamFeeWallet] = _tOwned[marketingAndTeamFeeWallet].add(tMarketingAndTeam) (#905)
- _tokenTransfer(from,to,amount) (#1048)
- _tTotal = _tTotal.sub(tBurn) (#900)
Apply the check-effects-interactions pattern.

Additional information: link

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable DogeWarrior._maxTxAmount (#744) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

DogeWarrior.addLiquidity(uint256,uint256) (#1092-1105) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
Ensure that all the return values of the function calls are used.

Additional information: link

DogeWarrior._approve(address,address,uint256).owner (#1013) shadows:
- Ownable.owner() (#414-416) (function)
Rename the local variables that shadow another component.

Additional information: link

DogeWarrior.setMaxTxPercent(uint256) (#1199-1204) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1201-1203)
Emit an event for critical parameter changes.

Additional information: link

DogeWarrior.setMarketingAndTeamWallet(address).newWallet (#1195) lacks a zero-check on :
- marketingAndTeamFeeWallet = newWallet (#1196)
Check that the address is not zero.

Additional information: link

Reentrancy in DogeWarrior.transferFrom(address,address,uint256) (#815-819):
External calls:
- _transfer(sender,recipient,amount) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1083-1089)
External calls sending eth:
- _transfer(sender,recipient,amount) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#817)
- _allowances[owner][spender] = amount (#1017)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DogeWarrior.transferFrom(address,address,uint256) (#815-819):
External calls:
- _transfer(sender,recipient,amount) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1083-1089)
External calls sending eth:
- _transfer(sender,recipient,amount) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1018)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#817)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#227-230) is never used and should be removed
Remove unused functions.

Additional information: link

DogeWarrior._previousLiquidityFee (#734) 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

Variable DogeWarrior._distributeFee(uint256,uint256,uint256,uint256,uint256,uint256).rMarketingAndTeam (#897) is too similar to DogeWarrior._getTValues(uint256).tMarketingAndTeam (#931)
Prevent variables from having similar names.

Additional information: link

DogeWarrior.slitherConstructorVariables() (#669-1212) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#745)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._lockTime (#398) is never used in DogeWarrior (#669-1212)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#397) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

includeInFee(address) should be declared external:
- DogeWarrior.includeInFee(address) (#1166-1168)
Use the external attribute for functions never called from the contract.

Additional information: link

Redundant expression "this (#239)" inContext (#233-242)
Remove redundant statements if they congest code but offer no value.

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.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to crawl data from the website


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for DWR