WifeZillaDoge Token Logo

WifeZillaDoge Token

About WifeZillaDoge

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 November 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...)

WIFEZILLADOGE.addLiquidity(uint256,uint256) (WIFEZILLADOGE.sol#512-525) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (WIFEZILLADOGE.sol#517-524)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in WIFEZILLADOGE._transfer(address,address,uint256) (WIFEZILLADOGE.sol#348-441):
External calls:
- swapAndSendToFee(marketingTokens) (WIFEZILLADOGE.sol#388)
- IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (WIFEZILLADOGE.sol#450)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (WIFEZILLADOGE.sol#503-509)
- swapAndLiquify(swapTokens) (WIFEZILLADOGE.sol#394)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (WIFEZILLADOGE.sol#517-524)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (WIFEZILLADOGE.sol#485-491)
- swapAndSendDividends(sellTokens) (WIFEZILLADOGE.sol#398)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (WIFEZILLADOGE.sol#530-533)
- dividendTracker.distributeBUSDDividends(dividends) (WIFEZILLADOGE.sol#536)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (WIFEZILLADOGE.sol#503-509)
External calls sending eth:
- swapAndLiquify(swapTokens) (WIFEZILLADOGE.sol#394)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (WIFEZILLADOGE.sol#517-524)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (WIFEZILLADOGE.sol#413)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#269-272)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#273)
- super._transfer(from,to,amount) (WIFEZILLADOGE.sol#416)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#269-272)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#273)
- swapping = false (WIFEZILLADOGE.sol#400)
Apply the check-effects-interactions pattern.

Additional information: link

WIFEZILLADOGE.swapAndSendToFee(uint256) (WIFEZILLADOGE.sol#443-451) ignores return value by IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (WIFEZILLADOGE.sol#450)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


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.


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

WIFEZILLADOGE.totalFees (WIFEZILLADOGE.sol#36) is set pre-construction with a non-constant function or state variable:
- rewardsFee.add(liquidityFee).add(marketingFee)
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

Parameter WIFEZILLADOGEDividendTracker.getAccount(address)._account (WIFEZILLADOGE.sol#623) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#76) is too similar to WIFEZILLADOGEDividendTracker.getAccount(address).withdrawableDividends (WIFEZILLADOGE.sol#630)
Prevent variables from having similar names.

Additional information: link

Reentrancy in WIFEZILLADOGE.updateDividendTracker(address) (WIFEZILLADOGE.sol#145-168):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (WIFEZILLADOGE.sol#160)
- newDividendTracker.excludeFromDividends(address(this)) (WIFEZILLADOGE.sol#161)
- newDividendTracker.excludeFromDividends(owner()) (WIFEZILLADOGE.sol#162)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (WIFEZILLADOGE.sol#163)
State variables written after the call(s):
- dividendTracker = newDividendTracker (WIFEZILLADOGE.sol#167)
Apply the check-effects-interactions pattern.

Additional information: link

WIFEZILLADOGE._transfer(address,address,uint256).lastProcessedIndex (WIFEZILLADOGE.sol#429) 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

WIFEZILLADOGE.addLiquidity(uint256,uint256) (WIFEZILLADOGE.sol#512-525) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (WIFEZILLADOGE.sol#517-524)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#127) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.

Additional information: link

WIFEZILLADOGE.setMarketingWallet(address).wallet (WIFEZILLADOGE.sol#203) lacks a zero-check on :
- _marketingWalletAddress = wallet (WIFEZILLADOGE.sol#204)
Check that the address is not zero.

Additional information: link

Variable 'WIFEZILLADOGE._transfer(address,address,uint256).claims (WIFEZILLADOGE.sol#428)' in WIFEZILLADOGE._transfer(address,address,uint256) (WIFEZILLADOGE.sol#348-441) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (WIFEZILLADOGE.sol#431-438)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in WIFEZILLADOGE.updateUniswapV2Router(address) (WIFEZILLADOGE.sol#170-180):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (WIFEZILLADOGE.sol#177-178)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (WIFEZILLADOGE.sol#179)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in WIFEZILLADOGE.updateDividendTracker(address) (WIFEZILLADOGE.sol#145-168):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (WIFEZILLADOGE.sol#160)
- newDividendTracker.excludeFromDividends(address(this)) (WIFEZILLADOGE.sol#161)
- newDividendTracker.excludeFromDividends(owner()) (WIFEZILLADOGE.sol#162)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (WIFEZILLADOGE.sol#163)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (WIFEZILLADOGE.sol#165)
Apply the check-effects-interactions pattern.

Additional information: link

WIFEZILLADOGEDividendTracker.canAutoClaim(uint256) (WIFEZILLADOGE.sol#704-710) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (WIFEZILLADOGE.sol#705)
- block.timestamp.sub(lastClaimTime) >= claimWait (WIFEZILLADOGE.sol#709)
Avoid relying on block.timestamp.

Additional information: link

WIFEZILLADOGE.isContractaddr(address) (WIFEZILLADOGE.sol#133-139) uses assembly
- INLINE ASM (WIFEZILLADOGE.sol#135-137)
Do not use evm assembly.

Additional information: link

SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

WIFEZILLADOGEDividendTracker.getAccountAtIndex(uint256) (WIFEZILLADOGE.sol#672-702) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (WIFEZILLADOGE.sol#687-696)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-91)
Remove unused state variables.

Additional information: link

WIFEZILLADOGE.swapTokensAtAmount (WIFEZILLADOGE.sol#28) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

process(uint256) should be declared external:
- WIFEZILLADOGEDividendTracker.process(uint256) (WIFEZILLADOGE.sol#731-783)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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 WifeZillaDoge