STRAYKATZ Token Logo

SKATZ [STRAYKATZ] Token

ALERT: rug pull scam

About SKATZ

Listings

Not Found
Token 4 years
white paper

Locked Liquidity! Renounced Contract! NFT Staking Shopify merchandise Charitable donations! 100% Token Sniffer Metaverse Play 2 Earn https://t.co/biPQ7aEyQK

Social

Laser Scorebeta Last Audit: 27 June 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links

Reentrancy in SKATZ._transfer(address,address,uint256) (#2015-2069):
External calls:
- swapAndLiquify(contractTokenBalance) (#2039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2138-2145)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2124-2130)
- (success) = address(dividendTracker).call{value: dividends}() (#2102)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2138-2145)
- marketingWallet.transfer(marketingAmount) (#2096)
- charityWallet.transfer(charityAmount) (#2099)
- (success) = address(dividendTracker).call{value: dividends}() (#2102)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2051)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
- super._transfer(from,to,amount) (#2054)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1412-1428):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1420)
Apply the check-effects-interactions pattern.

Additional information: link

SKATZ.swapAndLiquify(uint256) (#2071-2109) sends eth to arbitrary user
Dangerous calls:
- marketingWallet.transfer(marketingAmount) (#2096)
- charityWallet.transfer(charityAmount) (#2099)
SKATZ.addLiquidity(uint256,uint256) (#2135-2147) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2138-2145)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

SafeToken.withdraw(address,uint256) (#1730-1733) ignores return value by IERC20(_token).transfer(safeManager,_amount) (#1732)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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


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.


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.

SKATZ.swapAndLiquify(uint256) (#2071-2109) performs a multiplication on the result of a division:
-tokensToAddLiquidityWith = contractTokenBalance.div(totalFees.mul(2)).mul(liquidityFee) (#2074)
SKATZ.swapAndLiquify(uint256) (#2071-2109) performs a multiplication on the result of a division:
-marketingAmount = deltaBalance.sub(bnbToAddLiquidityWith).div(totalFees.sub(liquidityFee)).mul(marketingFee) (#2095)
SKATZ.swapAndLiquify(uint256) (#2071-2109) performs a multiplication on the result of a division:
-charityAmount = deltaBalance.sub(bnbToAddLiquidityWith).div(totalFees.sub(liquidityFee)).mul(charityFee) (#2098)
Consider ordering multiplication before division.

Additional information: link

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

SKATZ.claim() (#1993-1995) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#1994)
SKATZ._transfer(address,address,uint256) (#2015-2069) ignores return value by dividendTracker.process(gas) (#2062-2067)
SKATZ.addLiquidity(uint256,uint256) (#2135-2147) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2138-2145)
Ensure that all the return values of the function calls are used.

Additional information: link

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

Additional information: link

SKATZ.setFee(uint256,uint256,uint256,uint256) (#1814-1823) should emit an event for:
- liquidityFee = _liquidityFee (#1817)
- marketingFee = _marketingFee (#1818)
- charityFee = _charityFee (#1819)
- totalFees = BNBRewardsFee.add(liquidityFee).add(marketingFee).add(charityFee) (#1821)
SKATZ.setSWapToensAtAmount(uint256) (#1914-1916) should emit an event for:
- swapTokensAtAmount = _newAmount (#1915)
Emit an event for critical parameter changes.

Additional information: link

SafeToken.setSafeManager(address)._safeManager (#1726) lacks a zero-check on :
- safeManager = _safeManager (#1727)
SKATZ.setMarketingWallet(address)._newMarketingWallet (#1825) lacks a zero-check on :
- marketingWallet = _newMarketingWallet (#1826)
SKATZ.setCharityWallet(address)._newCharityWallet (#1831) lacks a zero-check on :
- charityWallet = _newCharityWallet (#1832)
Check that the address is not zero.

Additional information: link

Variable 'SKATZ._transfer(address,address,uint256).lastProcessedIndex (#2062)' in SKATZ._transfer(address,address,uint256) (#2015-2069) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2063)
Variable 'SKATZ._transfer(address,address,uint256).claims (#2062)' in SKATZ._transfer(address,address,uint256) (#2015-2069) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2063)
Variable 'SKATZ._transfer(address,address,uint256).iterations (#2062)' in SKATZ._transfer(address,address,uint256) (#2015-2069) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2063)
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 SKATZ.constructor() (#1837-1874):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1853-1854)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1857)
- uniswapV2Router = _uniswapV2Router (#1856)
Reentrancy in SKATZ.constructor() (#1837-1874):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1853-1854)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1859)
- dividendTracker.excludeFromDividends(pair) (#1923)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1862)
- dividendTracker.excludeFromDividends(address(this)) (#1863)
- dividendTracker.excludeFromDividends(owner()) (#1864)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1865)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1866)
State variables written after the call(s):
- _mint(owner(),1000000000000000 * (10 ** 18)) (#1873)
- _balances[account] += amount (#1047)
- _mint(owner(),1000000000000000 * (10 ** 18)) (#1873)
- _totalSupply += amount (#1046)
Reentrancy in $BNBDeFiDividendTracker.processAccount(address,bool) (#1706-1716):
External calls:
- amount = _withdrawDividendOfUser(account) (#1707)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1710)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SKATZ._setAutomatedMarketMakerPair(address,bool) (#1918-1927):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1923)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1926)
Reentrancy in SKATZ._transfer(address,address,uint256) (#2015-2069):
External calls:
- swapAndLiquify(contractTokenBalance) (#2039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2138-2145)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2124-2130)
- (success) = address(dividendTracker).call{value: dividends}() (#2102)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2138-2145)
- marketingWallet.transfer(marketingAmount) (#2096)
- charityWallet.transfer(charityAmount) (#2099)
- (success) = address(dividendTracker).call{value: dividends}() (#2102)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,address(this),fees) (#2051)
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,to,amount) (#2054)
Reentrancy in SKATZ._transfer(address,address,uint256) (#2015-2069):
External calls:
- swapAndLiquify(contractTokenBalance) (#2039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2138-2145)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2124-2130)
- (success) = address(dividendTracker).call{value: dividends}() (#2102)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#2056)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#2057)
- dividendTracker.process(gas) (#2062-2067)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2138-2145)
- marketingWallet.transfer(marketingAmount) (#2096)
- charityWallet.transfer(charityAmount) (#2099)
- (success) = address(dividendTracker).call{value: dividends}() (#2102)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2063)
Reentrancy in SKATZ.constructor() (#1837-1874):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1853-1854)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1859)
- dividendTracker.excludeFromDividends(pair) (#1923)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1926)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1859)
Reentrancy in SKATZ.constructor() (#1837-1874):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1853-1854)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1859)
- dividendTracker.excludeFromDividends(pair) (#1923)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1862)
- dividendTracker.excludeFromDividends(address(this)) (#1863)
- dividendTracker.excludeFromDividends(owner()) (#1864)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1865)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1866)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#1048)
- _mint(owner(),1000000000000000 * (10 ** 18)) (#1873)
Reentrancy in $BNBDeFiDividendTracker.processAccount(address,bool) (#1706-1716):
External calls:
- amount = _withdrawDividendOfUser(account) (#1707)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1711)
Reentrancy in SKATZ.processDividendTracker(uint256) (#1988-1991):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1989)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1990)
Reentrancy in SKATZ.swapAndLiquify(uint256) (#2071-2109):
External calls:
- swapTokensForBnb(toSwap,address(this)) (#2084)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2124-2130)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2093)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2138-2145)
- (success) = address(dividendTracker).call{value: dividends}() (#2102)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2093)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2138-2145)
- marketingWallet.transfer(marketingAmount) (#2096)
- charityWallet.transfer(charityAmount) (#2099)
- (success) = address(dividendTracker).call{value: dividends}() (#2102)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2105)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2108)
Apply the check-effects-interactions pattern.

Additional information: link

Context._msgData() (#695-697) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1468-1474) is never used and should be removed
SafeCast.toInt128(int256) (#589-592) is never used and should be removed
SafeCast.toInt16(int256) (#643-646) is never used and should be removed
SafeCast.toInt32(int256) (#625-628) is never used and should be removed
SafeCast.toInt64(int256) (#607-610) is never used and should be removed
SafeCast.toInt8(int256) (#661-664) is never used and should be removed
SafeCast.toUint128(uint256) (#484-487) is never used and should be removed
SafeCast.toUint16(uint256) (#544-547) is never used and should be removed
SafeCast.toUint224(uint256) (#469-472) is never used and should be removed
SafeCast.toUint32(uint256) (#529-532) is never used and should be removed
SafeCast.toUint64(uint256) (#514-517) is never used and should be removed
SafeCast.toUint8(uint256) (#559-562) is never used and should be removed
SafeCast.toUint96(uint256) (#499-502) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#405-414) is never used and should be removed
SafeMath.mod(uint256,uint256) (#365-367) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#431-440) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#382-391) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#236-242) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#278-283) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#290-295) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#261-271) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#249-254) is never used and should be removed
SignedSafeMath.div(int256,int256) (#187-189) is never used and should be removed
SignedSafeMath.mul(int256,int256) (#173-175) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version0.8.14 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.14 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 DividendPayingToken._withdrawDividendOfUser(address) (#1412-1428):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
Low level call in SKATZ.swapAndLiquify(uint256) (#2071-2109):
- (success) = address(dividendTracker).call{value: dividends}() (#2102)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router01.WETH() (#7) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1434) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1441) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1448) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1458) is not in mixedCase
Constant DividendPayingToken.magnitude (#1349) is not in UPPER_CASE_WITH_UNDERSCORES
Contract $BNBDeFiDividendTracker (#1510-1717) is not in CapWords
Parameter $BNBDeFiDividendTracker.getAccount(address)._account (#1570) is not in mixedCase
Parameter SafeToken.setSafeManager(address)._safeManager (#1726) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._token (#1730) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._amount (#1730) is not in mixedCase
Parameter SafeToken.withdrawBNB(uint256)._amount (#1735) is not in mixedCase
Parameter SKATZ.setFee(uint256,uint256,uint256,uint256)._bnbRewardFee (#1814) is not in mixedCase
Parameter SKATZ.setFee(uint256,uint256,uint256,uint256)._liquidityFee (#1814) is not in mixedCase
Parameter SKATZ.setFee(uint256,uint256,uint256,uint256)._marketingFee (#1814) is not in mixedCase
Parameter SKATZ.setFee(uint256,uint256,uint256,uint256)._charityFee (#1814) is not in mixedCase
Parameter SKATZ.setMarketingWallet(address)._newMarketingWallet (#1825) is not in mixedCase
Parameter SKATZ.setCharityWallet(address)._newCharityWallet (#1831) is not in mixedCase
Parameter SKATZ.setExcludeFromAll(address)._address (#1895) is not in mixedCase
Parameter SKATZ.setSWapToensAtAmount(uint256)._newAmount (#1914) is not in mixedCase
Parameter SKATZ.setSwapAndLiquifyEnabled(bool)._enabled (#2010) is not in mixedCase
Parameter SKATZ.swapTokensForBnb(uint256,address)._to (#2111) is not in mixedCase
Variable SKATZ.BNBRewardsFee (#1756) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in SKATZ._transfer(address,address,uint256) (#2015-2069):
External calls:
- swapAndLiquify(contractTokenBalance) (#2039)
- marketingWallet.transfer(marketingAmount) (#2096)
- charityWallet.transfer(charityAmount) (#2099)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2039)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2138-2145)
- marketingWallet.transfer(marketingAmount) (#2096)
- charityWallet.transfer(charityAmount) (#2099)
- (success) = address(dividendTracker).call{value: dividends}() (#2102)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2051)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
- super._transfer(from,to,amount) (#2054)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2063)
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,to,amount) (#2054)
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,address(this),fees) (#2051)
Reentrancy in SKATZ.swapAndLiquify(uint256) (#2071-2109):
External calls:
- marketingWallet.transfer(marketingAmount) (#2096)
- charityWallet.transfer(charityAmount) (#2099)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2093)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2138-2145)
- marketingWallet.transfer(marketingAmount) (#2096)
- charityWallet.transfer(charityAmount) (#2099)
- (success) = address(dividendTracker).call{value: dividends}() (#2102)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2105)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2108)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#13)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1413) is too similar to $BNBDeFiDividendTracker.getAccount(address).withdrawableDividends (#1575)
Variable SKATZ.BNBRewardsFee (#1756) is too similar to SKATZ.setFee(uint256,uint256,uint256,uint256)._bnbRewardFee (#1814)
Prevent variables from having similar names.

Additional information: link

$BNBDeFiDividendTracker.getAccountAtIndex(uint256) (#1615-1632) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1626)
SKATZ.constructor() (#1837-1874) uses literals with too many digits:
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1866)
SKATZ.constructor() (#1837-1874) uses literals with too many digits:
- _mint(owner(),1000000000000000 * (10 ** 18)) (#1873)
SKATZ.updateGasForProcessing(uint256) (#1929-1934) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,$BNBDeFi: gasForProcessing must be between 200,000 and 500,000) (#1930)
SKATZ.slitherConstructorVariables() (#1742-2150) uses literals with too many digits:
- swapTokensAtAmount = 500000000000 * (10 ** 18) (#1754)
SKATZ.slitherConstructorVariables() (#1742-2150) uses literals with too many digits:
- gasForProcessing = 300000 (#1767)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

name() should be declared external:
- ERC20.name() (#851-853)
symbol() should be declared external:
- ERC20.symbol() (#859-861)
decimals() should be declared external:
- ERC20.decimals() (#876-878)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#902-905)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#921-924)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#939-953)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#967-970)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#986-994)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1193-1195)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1201-1204)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#1222-1224)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#1226-1231)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#1233-1235)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1239-1241)
withdrawDividend() should be declared external:
- $BNBDeFiDividendTracker.withdrawDividend() (#1539-1541)
- DividendPayingToken.withdrawDividend() (#1406-1408)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1434-1436)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1448-1450)
getAccountAtIndex(uint256) should be declared external:
- $BNBDeFiDividendTracker.getAccountAtIndex(uint256) (#1615-1632)
process(uint256) should be declared external:
- $BNBDeFiDividendTracker.process(uint256) (#1659-1704)
setSafeManager(address) should be declared external:
- SafeToken.setSafeManager(address) (#1726-1728)
setFee(uint256,uint256,uint256,uint256) should be declared external:
- SKATZ.setFee(uint256,uint256,uint256,uint256) (#1814-1823)
setMarketingWallet(address) should be declared external:
- SKATZ.setMarketingWallet(address) (#1825-1827)
setCharityWallet(address) should be declared external:
- SKATZ.setCharityWallet(address) (#1831-1833)
updateUniswapV2Router(address) should be declared external:
- SKATZ.updateUniswapV2Router(address) (#1880-1884)
excludeFromFees(address,bool) should be declared external:
- SKATZ.excludeFromFees(address,bool) (#1886-1891)
setExcludeFromAll(address) should be declared external:
- SKATZ.setExcludeFromAll(address) (#1895-1898)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- SKATZ.excludeMultipleAccountsFromFees(address[],bool) (#1900-1906)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- SKATZ.setAutomatedMarketMakerPair(address,bool) (#1908-1912)
setSWapToensAtAmount(uint256) should be declared external:
- SKATZ.setSWapToensAtAmount(uint256) (#1914-1916)
updateGasForProcessing(uint256) should be declared external:
- SKATZ.updateGasForProcessing(uint256) (#1929-1934)
isExcludedFromFees(address) should be declared external:
- SKATZ.isExcludedFromFees(address) (#1948-1950)
withdrawableDividendOf(address) should be declared external:
- SKATZ.withdrawableDividendOf(address) (#1954-1956)
dividendTokenBalanceOf(address) should be declared external:
- SKATZ.dividendTokenBalanceOf(address) (#1958-1960)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SKATZ.setSwapAndLiquifyEnabled(bool) (#2010-2013)
Use the external attribute for functions never called from the contract.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#1412-1428) has external calls inside a loop: (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
Favor pull over push strategy for external calls.

Additional information: link

$BNBDeFiDividendTracker.getAccount(address) (#1570-1613) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1610-1612)
$BNBDeFiDividendTracker.canAutoClaim(uint256) (#1634-1640) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1635)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1639)
Avoid relying on block.timestamp.

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.

Contract has 10% buy tax and 14% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Average 30d PancakeSwap liquidity is low.


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account has relatively few followers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


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 CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for SKATZ

News for SKATZ