Warriors Doge Token Logo

WDoge [Warriors Doge] Token

About WDoge

Listings

Token 19 months

As an NBA fan, I love the Golden State Warriors very much. I hope the Warriors will win the championship. By issuing this token, more and more people will join the Warriors.

Social

Laser Scorebeta Last Audit: 24 April 2022

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

Anti-Scam

Links


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

Reentrancy in TheWarriosDoge._transfer(address,address,uint256) (#710-754):
External calls:
- swapAndLiquify(contractTokenBalance) (#732)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#732)
- recipient.transfer(amount) (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
State variables written after the call(s):
- youCantEat(recipient) (#741)
- _BOT[recipient] = true (#696)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#735)
- finalAmount = takeFee(sender,recipient,amount) (#742)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#834)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#748)
Apply the check-effects-interactions pattern.

Additional information: link

TheWarriosDoge.manage_CantEat(address[],bool).i (#701) is a local variable never initialized
TheWarriosDoge.manageExcludeFromCut(address[],bool).i (#590) 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

TheWarriosDoge.addLiquidity(uint256,uint256) (#807-820) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
Ensure that all the return values of the function calls are used.

Additional information: link

TheWarriosDoge.allowance(address,address).owner (#539) shadows:
- Ownable.owner() (#154-156) (function)
TheWarriosDoge._approve(address,address,uint256).owner (#562) shadows:
- Ownable.owner() (#154-156) (function)
Rename the local variables that shadow another component.

Additional information: link

TheWarriosDoge.letsEatCake(uint256,bool) (#570-574) should emit an event for:
- _BOTBL = canteat (#571)
TheWarriosDoge.setEatLargeCake(uint256,uint256,uint256) (#595-601) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#600)
TheWarriosDoge.setEatLittleCake(uint256,uint256,uint256) (#603-609) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#608)
TheWarriosDoge.setDistributionSettings(uint256,uint256,uint256) (#611-617) should emit an event for:
- _liquidityShare = newLiquidityShare (#612)
- _teamShare = newTeamShare (#614)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#616)
TheWarriosDoge.setMaxOnceEat(uint256) (#619-621) should emit an event for:
- _TXLi = newMaxOnceEat (#620)
TheWarriosDoge.setMaxTotalEat(uint256) (#631-633) should emit an event for:
- _MHold = newMaxTotalEat (#632)
TheWarriosDoge.setNumTokensBeforeSwap(uint256) (#635-637) should emit an event for:
- minimumTokensBeforeSwap = newValue (#636)
Emit an event for critical parameter changes.

Additional information: link

TheWarriosDoge.setFirstW(address).newAddress (#639) lacks a zero-check on :
- FirstW = address(newAddress) (#640)
TheWarriosDoge.setSecondW(address).newAddress (#643) lacks a zero-check on :
- SecondW = address(newAddress) (#644)
Check that the address is not zero.

Additional information: link

Reentrancy in TheWarriosDoge.constructor(string,string,uint256,uint256[3],uint256[3],uint256[3],uint256[2],address[2]) (#453-517):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#493-494)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#497)
- _balances[TheWarriorsDoge] = _totalSupply (#515)
- isExcludedFromCut[owner()] = true (#499)
- isExcludedFromCut[TheWarriorsDoge] = true (#500)
- isExcludedFromCut[address(this)] = true (#501)
- isMarketPair[address(uniswapPair)] = true (#513)
- isMaxEatExempt[owner()] = true (#503)
- isMaxEatExempt[address(uniswapPair)] = true (#504)
- isMaxEatExempt[address(this)] = true (#505)
- isMaxEatExempt[address(0xdead)] = true (#506)
- isMaxEatExempt[TheWarriorsDoge] = true (#507)
- isOnceEatExempt[owner()] = true (#509)
- isOnceEatExempt[address(this)] = true (#510)
- isOnceEatExempt[TheWarriorsDoge] = true (#511)
- uniswapV2Router = _uniswapV2Router (#496)
Reentrancy in TheWarriosDoge.swapAndLiquify(uint256) (#763-785):
External calls:
- swapTokensForEth(tokensForSwap) (#768)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#784)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
External calls sending eth:
- transferToAddressETH(FirstW,amountBNBMarketing) (#778)
- recipient.transfer(amount) (#661)
- transferToAddressETH(SecondW,amountBNBTeam) (#781)
- recipient.transfer(amount) (#661)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#784)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#784)
- _allowances[owner][spender] = amount (#566)
Reentrancy in TheWarriosDoge.transferFrom(address,address,uint256) (#672-676):
External calls:
- _transfer(sender,recipient,amount) (#673)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
External calls sending eth:
- _transfer(sender,recipient,amount) (#673)
- recipient.transfer(amount) (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#674)
- _allowances[owner][spender] = amount (#566)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TheWarriosDoge._transfer(address,address,uint256) (#710-754):
External calls:
- swapAndLiquify(contractTokenBalance) (#732)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#732)
- recipient.transfer(amount) (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#835)
- finalAmount = takeFee(sender,recipient,amount) (#742)
- Transfer(sender,recipient,finalAmount) (#750)
Reentrancy in TheWarriosDoge.constructor(string,string,uint256,uint256[3],uint256[3],uint256[3],uint256[2],address[2]) (#453-517):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#493-494)
Event emitted after the call(s):
- Transfer(address(0),TheWarriorsDoge,_totalSupply) (#516)
Reentrancy in TheWarriosDoge.swapAndLiquify(uint256) (#763-785):
External calls:
- swapTokensForEth(tokensForSwap) (#768)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#784)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
External calls sending eth:
- transferToAddressETH(FirstW,amountBNBMarketing) (#778)
- recipient.transfer(amount) (#661)
- transferToAddressETH(SecondW,amountBNBTeam) (#781)
- recipient.transfer(amount) (#661)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#784)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#567)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#784)
Reentrancy in TheWarriosDoge.swapTokensForEth(uint256) (#787-805):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#804)
Reentrancy in TheWarriosDoge.transferFrom(address,address,uint256) (#672-676):
External calls:
- _transfer(sender,recipient,amount) (#673)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
External calls sending eth:
- _transfer(sender,recipient,amount) (#673)
- recipient.transfer(amount) (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#567)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#674)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#88-97) uses assembly
- INLINE ASM (#95)
Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) uses assembly
- INLINE ASM (#133-136)
Do not use evm assembly.

Additional information: link

TheWarriosDoge._transfer(address,address,uint256) (#710-754) compares to a boolean constant:
-require(bool,string)(_BOT[sender] == false,You Cant Eat!) (#713)
Remove the equality to the boolean constant.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) is never used and should be removed
Address.functionCall(address,bytes) (#107-109) is never used and should be removed
Address.functionCall(address,bytes,string) (#111-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#119-122) is never used and should be removed
Address.isContract(address) (#88-97) is never used and should be removed
Address.sendValue(address,uint256) (#99-105) is never used and should be removed
Context._msgData() (#17-20) is never used and should be removed
SafeMath.mod(uint256,uint256) (#76-78) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#80-83) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#99-105):
- (success) = recipient.call{value: amount}() (#103)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#124-141):
- (success,returndata) = target.call{value: weiValue}(data) (#127)
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() (#207) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#208) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#224) is not in mixedCase
Function IUniswapV2Router01.WETH() (#243) is not in mixedCase
Parameter TheWarriosDoge.setSwapAndLiquifyEnabled(bool)._enabled (#647) is not in mixedCase
Function TheWarriosDoge.multiTransfer_fixed(address,address[],uint256) (#682-693) is not in mixedCase
Function TheWarriosDoge.manage_CantEat(address[],bool) (#699-704) is not in mixedCase
Function TheWarriosDoge.set_BOT(address,bool) (#706-708) is not in mixedCase
Variable TheWarriosDoge.FirstW (#384) is not in mixedCase
Variable TheWarriosDoge.SecondW (#385) is not in mixedCase
Variable TheWarriosDoge._balances (#388) is not in mixedCase
Variable TheWarriosDoge._BOTBL (#392) is not in mixedCase
Variable TheWarriosDoge.L (#393) is not in mixedCase
Variable TheWarriosDoge.TheWarriorsDoge (#394) is not in mixedCase
Variable TheWarriosDoge._BOT (#399) is not in mixedCase
Variable TheWarriosDoge._buyLiquidityFee (#401) is not in mixedCase
Variable TheWarriosDoge._buyMarketingFee (#402) is not in mixedCase
Variable TheWarriosDoge._buyTeamFee (#403) is not in mixedCase
Variable TheWarriosDoge._sellLiquidityFee (#405) is not in mixedCase
Variable TheWarriosDoge._sellMarketingFee (#406) is not in mixedCase
Variable TheWarriosDoge._sellTeamFee (#407) is not in mixedCase
Variable TheWarriosDoge._liquidityShare (#409) is not in mixedCase
Variable TheWarriosDoge._marketingShare (#410) is not in mixedCase
Variable TheWarriosDoge._teamShare (#411) is not in mixedCase
Variable TheWarriosDoge._totalTaxIfBuying (#413) is not in mixedCase
Variable TheWarriosDoge._totalTaxIfSelling (#414) is not in mixedCase
Variable TheWarriosDoge._totalDistributionShares (#415) is not in mixedCase
Variable TheWarriosDoge._TXLi (#418) is not in mixedCase
Variable TheWarriosDoge._MHold (#419) is not in mixedCase
Variable TheWarriosDoge.LookMaxEat (#428) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#18)" inContext (#12-21)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in TheWarriosDoge._transfer(address,address,uint256) (#710-754):
External calls:
- swapAndLiquify(contractTokenBalance) (#732)
- recipient.transfer(amount) (#661)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#732)
- recipient.transfer(amount) (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
State variables written after the call(s):
- youCantEat(recipient) (#741)
- _BOT[recipient] = true (#696)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#735)
- finalAmount = takeFee(sender,recipient,amount) (#742)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#834)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#748)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#835)
- finalAmount = takeFee(sender,recipient,amount) (#742)
- Transfer(sender,recipient,finalAmount) (#750)
Reentrancy in TheWarriosDoge.swapAndLiquify(uint256) (#763-785):
External calls:
- transferToAddressETH(FirstW,amountBNBMarketing) (#778)
- recipient.transfer(amount) (#661)
- transferToAddressETH(SecondW,amountBNBTeam) (#781)
- recipient.transfer(amount) (#661)
External calls sending eth:
- transferToAddressETH(FirstW,amountBNBMarketing) (#778)
- recipient.transfer(amount) (#661)
- transferToAddressETH(SecondW,amountBNBTeam) (#781)
- recipient.transfer(amount) (#661)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#784)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#784)
- _allowances[owner][spender] = amount (#566)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#567)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#784)
Reentrancy in TheWarriosDoge.transferFrom(address,address,uint256) (#672-676):
External calls:
- _transfer(sender,recipient,amount) (#673)
- recipient.transfer(amount) (#661)
External calls sending eth:
- _transfer(sender,recipient,amount) (#673)
- recipient.transfer(amount) (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#812-819)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#674)
- _allowances[owner][spender] = amount (#566)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#567)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#674)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#247) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#248)
Prevent variables from having similar names.

Additional information: link

TheWarriosDoge.slitherConstructorVariables() (#375-842) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#386)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TheWarriosDoge.TheWarriorsDoge (#394) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#163-166)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#168-172)
name() should be declared external:
- TheWarriosDoge.name() (#519-521)
symbol() should be declared external:
- TheWarriosDoge.symbol() (#523-525)
decimals() should be declared external:
- TheWarriosDoge.decimals() (#527-529)
totalSupply() should be declared external:
- TheWarriosDoge.totalSupply() (#531-533)
allowance(address,address) should be declared external:
- TheWarriosDoge.allowance(address,address) (#539-541)
increaseAllowance(address,uint256) should be declared external:
- TheWarriosDoge.increaseAllowance(address,uint256) (#543-546)
decreaseAllowance(address,uint256) should be declared external:
- TheWarriosDoge.decreaseAllowance(address,uint256) (#548-551)
minimumTokensBeforeSwapAmount() should be declared external:
- TheWarriosDoge.minimumTokensBeforeSwapAmount() (#553-555)
approve(address,uint256) should be declared external:
- TheWarriosDoge.approve(address,uint256) (#557-560)
letsEatCake(uint256,bool) should be declared external:
- TheWarriosDoge.letsEatCake(uint256,bool) (#570-574)
setMarketPairStatus(address,bool) should be declared external:
- TheWarriosDoge.setMarketPairStatus(address,bool) (#576-578)
setisExcludedFromCut(address,bool) should be declared external:
- TheWarriosDoge.setisExcludedFromCut(address,bool) (#584-586)
manageExcludeFromCut(address[],bool) should be declared external:
- TheWarriosDoge.manageExcludeFromCut(address[],bool) (#588-593)
setSwapAndLiquifyEnabled(bool) should be declared external:
- TheWarriosDoge.setSwapAndLiquifyEnabled(bool) (#647-650)
setSwapAndLiquifyBySmallOnly(bool) should be declared external:
- TheWarriosDoge.setSwapAndLiquifyBySmallOnly(bool) (#652-654)
getCirculatingSupply() should be declared external:
- TheWarriosDoge.getCirculatingSupply() (#656-658)
transfer(address,uint256) should be declared external:
- TheWarriosDoge.transfer(address,uint256) (#667-670)
transferFrom(address,address,uint256) should be declared external:
- TheWarriosDoge.transferFrom(address,address,uint256) (#672-676)
isCantEat(address) should be declared external:
- TheWarriosDoge.isCantEat(address) (#678-680)
manage_CantEat(address[],bool) should be declared external:
- TheWarriosDoge.manage_CantEat(address[],bool) (#699-704)
set_BOT(address,bool) should be declared external:
- TheWarriosDoge.set_BOT(address,bool) (#706-708)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 3% buy tax and 9% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account link seems to be invalid


Unable to find Discord account


Twitter account has few posts


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


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


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


Token has no active CoinMarketCap listing / rank


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


Token has no active CoinGecko listing / rank

Price for WDoge

News for WDoge