HOWLX TOKEN Token Logo

HWXT [HOWLX] Token

About HWXT

Listings

Token 2 years

HOWLX TOKEN is a community driven game project that rewards holders in BNB and aims to develop 2 top selling games. These games are unique in the sense that all characters are custom made from scratch and their story lines are captivating. Some of the characters were created to represent meme tokens such as Shiba inu, Doge etc. The games will consist of an array of NFTs such as changeable costumes, masks and inventory. A game preview is already available and has received great feedbacks from the community.

Social

Laser Scorebeta Last Audit: 9 December 2021

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

HOWLX.addLiquidity(uint256,uint256) (#2154-2167) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
HOWLX.swapAndSendDividends(uint256) (#2169-2201) sends eth to arbitrary user
Dangerous calls:
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2182-2184)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2185-2187)
- (gameFeeSuccess) = address(gameWallet).call{value: gameAmount}() (#2189-2191)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in HOWLX._transfer(address,address,uint256) (#2013-2111):
External calls:
- swapAndLiquify(swapTokens) (#2056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2145-2151)
- swapAndSendDividends(swapTokenAmount) (#2059)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2145-2151)
- (devSuccess) = address(this).call{value: forGasFee}() (#2180)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2182-2184)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2185-2187)
- (gameFeeSuccess) = address(gameWallet).call{value: gameAmount}() (#2189-2191)
External calls sending eth:
- swapAndLiquify(swapTokens) (#2056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
- swapAndSendDividends(swapTokenAmount) (#2059)
- (devSuccess) = address(this).call{value: forGasFee}() (#2180)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2182-2184)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2185-2187)
- (gameFeeSuccess) = address(gameWallet).call{value: gameAmount}() (#2189-2191)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2084)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#565-568)
- _balances[recipient] = _balances[recipient].add(amount) (#569)
- super._transfer(from,to,amount) (#2086)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#565-568)
- _balances[recipient] = _balances[recipient].add(amount) (#569)
- swapping = false (#2061)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#926-952):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#936-939)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#942-944)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

HOWLX.swapAndSendDividends(uint256) (#2169-2201) performs a multiplication on the result of a division:
-forDevelopers = dividends.mul(buyMarketingFee).div(otherFee) (#2174)
-forGasFee = forDevelopers.mul(30).div(100) (#2176)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in HOWLX.updateDividendTracker(address) (#1704-1727):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1719)
- newDividendTracker.excludeFromDividends(address(this)) (#1720)
- newDividendTracker.excludeFromDividends(owner()) (#1721)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1722)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1726)
Apply the check-effects-interactions pattern.

Additional information: link

HOWLX._transfer(address,address,uint256).iterations (#2097) is a local variable never initialized
HOWLX._transfer(address,address,uint256).claims (#2098) is a local variable never initialized
HOWLX._transfer(address,address,uint256).lastProcessedIndex (#2099) 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

HOWLX.claim() (#1993-1995) ignores return value by dividendTracker.processAccount(msg.sender,false) (#1994)
HOWLX._transfer(address,address,uint256) (#2013-2111) ignores return value by dividendTracker.process(gas) (#2096-2109)
HOWLX.addLiquidity(uint256,uint256) (#2154-2167) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (#880) shadows:
- ERC20._name (#339) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#880) shadows:
- ERC20._symbol (#340) (state variable)
Rename the local variables that shadow another component.

Additional information: link

HOWLX.updateBuyFees(uint256,uint256,uint256,uint256) (#1878-1894) should emit an event for:
- buyRewardFee = rewardFee (#1884)
- buyLiquidityFee = liquidityFee (#1885)
- buyMarketingFee = marketingFee (#1886)
- buyGameFee = gameFee (#1887)
- totalBuyFees = buyRewardFee.add(buyLiquidityFee).add(buyMarketingFee).add(buyGameFee) (#1890-1893)
HOWLX.updateSellFees(uint256,uint256,uint256,uint256) (#1897-1913) should emit an event for:
- totalSellFees = sellRewardFee.add(sellLiquidityFee).add(sellMarketingFee).add(sellGameFee) (#1909-1912)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor().msgSender (#1154) lacks a zero-check on :
- _owner = msgSender (#1155)
HOWLX.updateGameFeeReceiver(address).newGameFeeReceiver (#1870) lacks a zero-check on :
- gameWallet = newGameFeeReceiver (#1874)
Check that the address is not zero.

Additional information: link

Variable 'HOWLX._transfer(address,address,uint256).claims (#2098)' in HOWLX._transfer(address,address,uint256) (#2013-2111) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2101-2108)
Variable 'HOWLX._transfer(address,address,uint256).iterations (#2097)' in HOWLX._transfer(address,address,uint256) (#2013-2111) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2101-2108)
Variable 'HOWLX._transfer(address,address,uint256).lastProcessedIndex (#2099)' in HOWLX._transfer(address,address,uint256) (#2013-2111) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2101-2108)
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 HOWLX._transfer(address,address,uint256) (#2013-2111):
External calls:
- swapAndLiquify(swapTokens) (#2056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2145-2151)
- swapAndSendDividends(swapTokenAmount) (#2059)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2145-2151)
- (devSuccess) = address(this).call{value: forGasFee}() (#2180)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2182-2184)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2185-2187)
- (gameFeeSuccess) = address(gameWallet).call{value: gameAmount}() (#2189-2191)
External calls sending eth:
- swapAndLiquify(swapTokens) (#2056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
- swapAndSendDividends(swapTokenAmount) (#2059)
- (devSuccess) = address(this).call{value: forGasFee}() (#2180)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2182-2184)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2185-2187)
- (gameFeeSuccess) = address(gameWallet).call{value: gameAmount}() (#2189-2191)
State variables written after the call(s):
- swapAndSendDividends(swapTokenAmount) (#2059)
- _allowances[owner][spender] = amount (#637)
- lastBuyBlockNum[to] = block.number (#2065)
Reentrancy in HOWLX.constructor(address) (#1664-1700):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1671-1672)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1675)
- uniswapV2Router = _uniswapV2Router (#1674)
Reentrancy in HOWLX.constructor(address) (#1664-1700):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1671-1672)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1677)
- dividendTracker.excludeFromDividends(pair) (#1787)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1680)
- dividendTracker.excludeFromDividends(address(this)) (#1681)
- dividendTracker.excludeFromDividends(owner()) (#1682)
- dividendTracker.excludeFromDividends(ownerWallet) (#1683)
- dividendTracker.excludeFromDividends(deadAddress) (#1684)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1685)
State variables written after the call(s):
- _mint(ownerWallet,100 * 10 ** 12 * (10 ** 9)) (#1699)
- _balances[account] = _balances[account].add(amount) (#588)
- excludeFromFees(owner(),true) (#1688)
- _isExcludedFromFees[account] = excluded (#1743)
- excludeFromFees(address(this),true) (#1689)
- _isExcludedFromFees[account] = excluded (#1743)
- _mint(ownerWallet,100 * 10 ** 12 * (10 ** 9)) (#1699)
- _totalSupply = _totalSupply.add(amount) (#587)
- canTransferBeforeLiquidityIsEnabled[owner()] = true (#1692)
- canTransferBeforeLiquidityIsEnabled[ownerWallet] = true (#1693)
Reentrancy in HOWLXDividendTracker.processAccount(address,bool) (#2444-2458):
External calls:
- amount = _withdrawDividendOfUser(account) (#2449)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#936-939)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#2452)
Reentrancy in HOWLX.swapAndLiquify(uint256) (#2113-2134):
External calls:
- swapTokensForEth(half) (#2125)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2145-2151)
- addLiquidity(otherHalf,newBalance) (#2131)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#2131)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#2131)
- _allowances[owner][spender] = amount (#637)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HOWLX._setAutomatedMarketMakerPair(address,bool) (#1779-1791):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1787)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1790)
Reentrancy in HOWLX._transfer(address,address,uint256) (#2013-2111):
External calls:
- swapAndLiquify(swapTokens) (#2056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2145-2151)
- swapAndSendDividends(swapTokenAmount) (#2059)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2145-2151)
- (devSuccess) = address(this).call{value: forGasFee}() (#2180)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2182-2184)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2185-2187)
- (gameFeeSuccess) = address(gameWallet).call{value: gameAmount}() (#2189-2191)
External calls sending eth:
- swapAndLiquify(swapTokens) (#2056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
- swapAndSendDividends(swapTokenAmount) (#2059)
- (devSuccess) = address(this).call{value: forGasFee}() (#2180)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2182-2184)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2185-2187)
- (gameFeeSuccess) = address(gameWallet).call{value: gameAmount}() (#2189-2191)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#638)
- swapAndSendDividends(swapTokenAmount) (#2059)
- SendDividends(tokens,dividends) (#2199)
- swapAndSendDividends(swapTokenAmount) (#2059)
- Transfer(sender,recipient,amount) (#570)
- super._transfer(from,address(this),fees) (#2084)
- Transfer(sender,recipient,amount) (#570)
- super._transfer(from,to,amount) (#2086)
Reentrancy in HOWLX._transfer(address,address,uint256) (#2013-2111):
External calls:
- swapAndLiquify(swapTokens) (#2056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2145-2151)
- swapAndSendDividends(swapTokenAmount) (#2059)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2145-2151)
- (devSuccess) = address(this).call{value: forGasFee}() (#2180)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2182-2184)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2185-2187)
- (gameFeeSuccess) = address(gameWallet).call{value: gameAmount}() (#2189-2191)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#2088-2090)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#2091)
- dividendTracker.process(gas) (#2096-2109)
External calls sending eth:
- swapAndLiquify(swapTokens) (#2056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
- swapAndSendDividends(swapTokenAmount) (#2059)
- (devSuccess) = address(this).call{value: forGasFee}() (#2180)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2182-2184)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2185-2187)
- (gameFeeSuccess) = address(gameWallet).call{value: gameAmount}() (#2189-2191)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2101-2108)
Reentrancy in HOWLX.constructor(address) (#1664-1700):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1671-1672)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1677)
- dividendTracker.excludeFromDividends(pair) (#1787)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1790)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1677)
Reentrancy in HOWLX.constructor(address) (#1664-1700):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1671-1672)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1677)
- dividendTracker.excludeFromDividends(pair) (#1787)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1680)
- dividendTracker.excludeFromDividends(address(this)) (#1681)
- dividendTracker.excludeFromDividends(owner()) (#1682)
- dividendTracker.excludeFromDividends(ownerWallet) (#1683)
- dividendTracker.excludeFromDividends(deadAddress) (#1684)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1685)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1745)
- excludeFromFees(owner(),true) (#1688)
- ExcludeFromFees(account,excluded) (#1745)
- excludeFromFees(address(this),true) (#1689)
- Transfer(address(0),account,amount) (#589)
- _mint(ownerWallet,100 * 10 ** 12 * (10 ** 9)) (#1699)
Reentrancy in HOWLXDividendTracker.processAccount(address,bool) (#2444-2458):
External calls:
- amount = _withdrawDividendOfUser(account) (#2449)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#936-939)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#2453)
Reentrancy in HOWLX.processDividendTracker(uint256) (#1977-1991):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1978-1982)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1983-1990)
Reentrancy in HOWLX.swapAndLiquify(uint256) (#2113-2134):
External calls:
- swapTokensForEth(half) (#2125)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2145-2151)
- addLiquidity(otherHalf,newBalance) (#2131)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#2131)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2159-2166)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#638)
- addLiquidity(otherHalf,newBalance) (#2131)
- SwapAndLiquify(half,newBalance,otherHalf) (#2133)
Reentrancy in HOWLX.swapAndSendDividends(uint256) (#2169-2201):
External calls:
- swapTokensForEth(tokens) (#2170)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2145-2151)
- (devSuccess) = address(this).call{value: forGasFee}() (#2180)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2182-2184)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2185-2187)
- (gameFeeSuccess) = address(gameWallet).call{value: gameAmount}() (#2189-2191)
External calls sending eth:
- (devSuccess) = address(this).call{value: forGasFee}() (#2180)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2182-2184)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2185-2187)
- (gameFeeSuccess) = address(gameWallet).call{value: gameAmount}() (#2189-2191)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#2199)
Reentrancy in HOWLX.updateDividendTracker(address) (#1704-1727):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1719)
- newDividendTracker.excludeFromDividends(address(this)) (#1720)
- newDividendTracker.excludeFromDividends(owner()) (#1721)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1722)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1724)
Apply the check-effects-interactions pattern.

Additional information: link

HOWLXDividendTracker.getAccount(address) (#2282-2329) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#2326-2328)
HOWLXDividendTracker.canAutoClaim(uint256) (#2363-2369) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#2364)
- block.timestamp.sub(lastClaimTime) >= claimWait (#2368)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#137-140) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1009-1024) is never used and should be removed
SafeMath.mod(uint256,uint256) (#276-278) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#292-299) is never used and should be removed
SafeMathInt.abs(int256) (#759-762) is never used and should be removed
SafeMathInt.div(int256,int256) (#730-736) is never used and should be removed
SafeMathInt.mul(int256,int256) (#718-725) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.6.2 (#3) allows old versions
Pragma version^0.6.2 (#94) allows old versions
Pragma version^0.6.2 (#120) allows old versions
Pragma version^0.6.2 (#145) allows old versions
Pragma version^0.6.2 (#304) allows old versions
Pragma version^0.6.2 (#664) allows old versions
Pragma version^0.6.2 (#705) allows old versions
Pragma version^0.6.2 (#772) allows old versions
Pragma version^0.6.2 (#807) allows old versions
Pragma version^0.6.2 (#841) allows old versions
Pragma version^0.6.2 (#1065) allows old versions
Pragma version^0.6.2 (#1140) allows old versions
Pragma version^0.6.2 (#1202) allows old versions
Pragma version^0.6.2 (#1315) allows old versions
Pragma version^0.6.2 (#1349) allows old versions
Pragma version^0.6.2 (#1561) allows old versions
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 DividendPayingToken._withdrawDividendOfUser(address) (#926-952):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#936-939)
Low level call in HOWLX.swapAndSendDividends(uint256) (#2169-2201):
- (devSuccess) = address(this).call{value: forGasFee}() (#2180)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2182-2184)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2185-2187)
- (gameFeeSuccess) = address(gameWallet).call{value: gameAmount}() (#2189-2191)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter DividendPayingToken.dividendOf(address)._owner (#957) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#964) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#976) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#990) is not in mixedCase
Constant DividendPayingToken.magnitude (#860) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#1237) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#1239) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#1270) is not in mixedCase
Function IUniswapV2Router01.WETH() (#1354) is not in mixedCase
Event HOWLXmaxBuyTransactionAmountUpdated(uint256,uint256) (#1629-1632) is not in CapWords
Event HOWLXmaxSellTransactionAmountUpdated(uint256,uint256) (#1633-1636) is not in CapWords
Event HOWLXmaxWalletTokenUpdated(uint256,uint256) (#1637-1640) is not in CapWords
Event HOWLXsetswapTokensAtAmount(uint256,uint256) (#1641-1644) is not in CapWords
Parameter HOWLX.startTrading(bool)._status (#1848) is not in mixedCase
Parameter HOWLXDividendTracker.getAccount(address)._account (#2282) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#138)" inContext (#132-141)
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 (#1359) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#1360)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#930) is too similar to HOWLXDividendTracker.getAccount(address).withdrawableDividends (#2289)
Prevent variables from having similar names.

Additional information: link

HOWLX.updateGasForProcessing(uint256) (#1852-1863) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,HOWLX: gasForProcessing must be between 200,000 and 500,000) (#1853-1856)
HOWLX.slitherConstructorVariables() (#1563-2202) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#1575)
HOWLX.slitherConstructorVariables() (#1563-2202) uses literals with too many digits:
- gasForProcessing = 300000 (#1595)
HOWLXDividendTracker.constructor() (#2228-2234) uses literals with too many digits:
- minimumTokenBalanceForDividends = 100000 * (10 ** 9) (#2233)
HOWLXDividendTracker.getAccountAtIndex(uint256) (#2331-2361) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#2346-2355)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#713) is never used in SafeMathInt (#711-768)
Remove unused state variables.

Additional information: link

HOWLX.deadAddress (#1575) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20.name() (#359-361)
symbol() should be declared external:
- ERC20.symbol() (#367-369)
decimals() should be declared external:
- ERC20.decimals() (#384-386)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#416-424)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#429-437)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#446-454)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#469-484)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#498-509)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#525-539)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#920-922)
- HOWLXDividendTracker.withdrawDividend() (#2244-2249)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#957-959)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#976-983)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#1076-1078)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#1080-1089)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#1091-1097)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1099-1101)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1181-1184)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1190-1197)
updateDividendTracker(address) should be declared external:
- HOWLX.updateDividendTracker(address) (#1704-1727)
updateUniswapV2Router(address) should be declared external:
- HOWLX.updateUniswapV2Router(address) (#1729-1736)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- HOWLX.excludeMultipleAccountsFromFees(address[],bool) (#1748-1757)
excludeFromRewards(address) should be declared external:
- HOWLX.excludeFromRewards(address) (#1759-1761)
allowAddLiquidity(address) should be declared external:
- HOWLX.allowAddLiquidity(address) (#1763-1765)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- HOWLX.setAutomatedMarketMakerPair(address,bool) (#1767-1777)
updatemaxBuyTransactionAmount(uint256) should be declared external:
- HOWLX.updatemaxBuyTransactionAmount(uint256) (#1793-1806)
updatemaxSellTransactionAmount(uint256) should be declared external:
- HOWLX.updatemaxSellTransactionAmount(uint256) (#1808-1821)
updateswapTokensAtAmount(uint256) should be declared external:
- HOWLX.updateswapTokensAtAmount(uint256) (#1823-1833)
updateMarketingWallet(address) should be declared external:
- HOWLX.updateMarketingWallet(address) (#1835-1846)
startTrading(bool) should be declared external:
- HOWLX.startTrading(bool) (#1848-1850)
updateGasForProcessing(uint256) should be declared external:
- HOWLX.updateGasForProcessing(uint256) (#1852-1863)
isExcludedFromFees(address) should be declared external:
- HOWLX.isExcludedFromFees(address) (#1923-1925)
withdrawableDividendOf(address) should be declared external:
- HOWLX.withdrawableDividendOf(address) (#1927-1933)
dividendTokenBalanceOf(address) should be declared external:
- HOWLX.dividendTokenBalanceOf(address) (#1935-1941)
getLiquidityIsAdded() should be declared external:
- HOWLX.getLiquidityIsAdded() (#2005-2007)
getAccountAtIndex(uint256) should be declared external:
- HOWLXDividendTracker.getAccountAtIndex(uint256) (#2331-2361)
process(uint256) should be declared external:
- HOWLXDividendTracker.process(uint256) (#2390-2442)
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.


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Discord account


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

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


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


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for HWXT