WifeChangingMoney Token Logo

WCM [WifeChangingMoney] Token

About WCM

Listings

Token 2 years

Description

Social

Laser Scorebeta Last Audit: 2 December 2021

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

Anti-Scam

Links


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

WifeChangingMoney.addLiquidity(uint256,uint256) (#1751-1763) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1754-1761)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#719-735):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#724)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#727)
Apply the check-effects-interactions pattern.

Additional information: link

WifeChangingMoney.withdrawStuckTokens(IERC20,address) (#1799-1802) ignores return value by token.transfer(to,balance) (#1801)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

WifeChangingMoney.changeCooldownSettings(bool,uint8) (#1615-1619) contains a tautology or contradiction:
- require(bool,string)(newInterval <= 600,Exceeds the limit) (#1616)
Fix the incorrect comparison by changing the value type or the comparison.

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.

WifeChangingMoney._transfer(address,address,uint256) (#1625-1711) performs a multiplication on the result of a division:
-BuyFees = amount.div(100).mul(80) (#1673)
Consider ordering multiplication before division.

Additional information: link

WifeChangingMoney._transfer(address,address,uint256).iterations (#1706) 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

WifeChangingMoney.addLiquidity(uint256,uint256) (#1751-1763) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1754-1761)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._symbol (#676) shadows:
- ERC20._symbol (#328) (state variable)
Rename the local variables that shadow another component.

Additional information: link

WifeChangingMoney.launchStatus(uint256) (#1819-1821) should emit an event for:
- launchedAt = _launchblock (#1820)
Emit an event for critical parameter changes.

Additional information: link

WifeChangingMoney.withDrawLeftoverETH(address).receipient (#1795) lacks a zero-check on :
- receipient.transfer(address(this).balance) (#1796)
Check that the address is not zero.

Additional information: link

WifeChangingMoney.multiTransfer_fixed(address,address[],uint256) (#1805-1817) has external calls inside a loop: dividendTracker.setBalance(address(addresses[i]),balanceOf(addresses[i])) (#1815)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'WifeChangingMoney._transfer(address,address,uint256).claims (#1706)' in WifeChangingMoney._transfer(address,address,uint256) (#1625-1711) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1707)
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 WCMBNBDividendTracker.processAccount(address,bool) (#1149-1159):
External calls:
- amount = _withdrawDividendOfUser(account) (#1150)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#724)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1153)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in WifeChangingMoney.swapBack(uint256) (#1713-1749):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1723-1729)
- addLiquidity(tokensToLP,bnbForLiquidity) (#1739)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1754-1761)
- (success) = address(dividendTracker).call{value: bnbForReflection}() (#1744)
External calls sending eth:
- addLiquidity(tokensToLP,bnbForLiquidity) (#1739)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1754-1761)
- address(_marketingWallet).transfer(bnbForMarketing) (#1741)
- address(_devWallet).transfer(bnbForDev) (#1742)
- (success) = address(dividendTracker).call{value: bnbForReflection}() (#1744)
Event emitted after the call(s):
- SendDividends(tokensToLiquify.mul(SellRewardsFee).div(SellTotalFees),bnbForReflection) (#1747)
Apply the check-effects-interactions pattern.

Additional information: link

WifeChangingMoney._transfer(address,address,uint256) (#1625-1711) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[from] < block.timestamp,Please wait for cooldown between buys) (#1651)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (#154-161) is never used and should be removed
Remove unused functions.

Additional information: link

solc-0.8.4 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 WifeChangingMoney.swapBack(uint256) (#1713-1749):
- (success) = address(dividendTracker).call{value: bnbForReflection}() (#1744)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable WifeChangingMoney._isExcludedFromFees (#1403) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#221)" inContext (#215-224)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in WifeChangingMoney.swapBack(uint256) (#1713-1749):
External calls:
- address(_marketingWallet).transfer(bnbForMarketing) (#1741)
- address(_devWallet).transfer(bnbForDev) (#1742)
External calls sending eth:
- addLiquidity(tokensToLP,bnbForLiquidity) (#1739)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1754-1761)
- address(_marketingWallet).transfer(bnbForMarketing) (#1741)
- address(_devWallet).transfer(bnbForDev) (#1742)
- (success) = address(dividendTracker).call{value: bnbForReflection}() (#1744)
Event emitted after the call(s):
- SendDividends(tokensToLiquify.mul(SellRewardsFee).div(SellTotalFees),bnbForReflection) (#1747)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

WifeChangingMoney.slitherConstructorVariables() (#1364-1823) uses literals with too many digits:
- gasForProcessing = 300000 (#1401)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

WifeChangingMoney._presalerCollected (#1406) is never used in WifeChangingMoney (#1364-1823)
Remove unused state variables.

Additional information: link

launchStatus(uint256) should be declared external:
- WifeChangingMoney.launchStatus(uint256) (#1819-1821)
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.


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


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.


Telegram account link seems to be invalid


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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 WCM