SHIBA X IS A TOKEN THAT WAS BORN WITH THE AIM OF FOSTERING AND GROWING THE SHIBA INU COIN LOVER COMMUNITY. EVERYONE INVOLVED IN CREATING THE SHIBA X ARE HOLDERS AND ENTHUSIASTS OF THE WORLD'S MOST BELOVED MEME COIN, IT's IMPDSSIBLE TO RESIST THE CUTENESS OF THE SHIBA INU DOG AND THE INHERENT REWARD OF OWNING AND HOLDING SHIBA INU COIN (MOON). JUST COME WITH US AND PLAY FRISBEE (HELL DO EVERYTHING ELSE FOR YOU) JUST TRY TO HOLD BADK BECAUSE ITS IMPOESIBLE TO HAVE JUST ONE SHIBA
SHIBA INU S AN ALTCOIN (A CRYPTO CURRENCY OTHER THAN BITCOIN) THAT FEATURES THE SHIBA INU-A JARANE SE BREED OF HUNTING DOG-AS ITS MASCOT. SHIBA INU WAS CREATED IN AUGUST 2020 BY AN INDIVIDUAL OR GROUP CALLED RYOSHI. SHIBA INU'S PRICE SDARED MORE THAN TENFOLD IN OCTOBER 2021 GIVING IT A MARKET CAPITALIZATION OF $35 BILLION (AS OF OCT. 31, 2021) AND RANKING ITI OTH AMONG ALL CRYPTOCURRENCIES BY THIS MEASURE.
SHIBAX.swapAndSendToMarketing(uint256) (#1838-1846) sends eth to arbitrary user
Dangerous calls:
- marketingWallet.transfer(newBalance) (#1845)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SHIBAX._transfer(address,address,uint256) (#1743-1836):
External calls:
- swapAndSendToMarketing(marketingTokens) (#1776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1857-1863)
- swapAndSendDividends(sellTokens) (#1781)
- success = IERC20(ETH).transfer(address(dividendTracker),newBalance) (#1893-1896)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1875-1881)
- dividendTracker.distributeETHDividends(newBalance) (#1899)
External calls sending eth:
- swapAndSendToMarketing(marketingTokens) (#1776)
- marketingWallet.transfer(newBalance) (#1845)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1808)
- _balances[sender] = senderBalance - amount (#1060)
- _balances[recipient] += amount (#1062)
- super._transfer(from,deadWallet,burnAmount) (#1809)
- _balances[sender] = senderBalance - amount (#1060)
- _balances[recipient] += amount (#1062)
- super._transfer(from,to,amount) (#1813)
- _balances[sender] = senderBalance - amount (#1060)
- _balances[recipient] += amount (#1062)
- swapping = false (#1783)
Apply the check-effects-interactions pattern.
Additional information: link
SHIBAX.claimStuckTokens(address) (#1541-1550) ignores return value by erc20token.transfer(owner(),balance) (#1549)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
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.
SafeMathInt.MAX_INT256 (#311) is never used in SafeMathInt (#309-367)
Remove unused state variables.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#13) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#14)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1261) is too similar to TOKENDividendTracker.getAccount(address).withdrawableDividends (#1989)
Prevent variables from having similar names.
Additional information: link
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1260-1276):
External calls:
- success = IERC20(ETH).transfer(user,_withdrawableDividend) (#1265)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1268)
Reentrancy in SHIBAX.updateDividendTracker(address) (#1503-1527):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1518)
- newDividendTracker.excludeFromDividends(address(this)) (#1519)
- newDividendTracker.excludeFromDividends(owner()) (#1520)
- newDividendTracker.excludeFromDividends(deadWallet) (#1521)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1522)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1526)
Apply the check-effects-interactions pattern.
Additional information: link
SHIBAX._transfer(address,address,uint256).fees (#1794) is a local variable never initialized
SHIBAX._transfer(address,address,uint256).iterations (#1822) is a local variable never initialized
SHIBAX._transfer(address,address,uint256).claims (#1823) is a local variable never initialized
SHIBAX._transfer(address,address,uint256).burnAmount (#1795) is a local variable never initialized
SHIBAX._transfer(address,address,uint256).lastProcessedIndex (#1824) 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
SHIBAX.claim() (#1731-1733) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#1732)
SHIBAX._transfer(address,address,uint256) (#1743-1836) ignores return value by dividendTracker.process(gas) (#1821-1834)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(string,string)._name (#1234) shadows:
- ERC20._name (#868) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#1234) shadows:
- ERC20._symbol (#869) (state variable)
DividendPayingToken.dividendOf(address)._owner (#1282) shadows:
- Ownable._owner (#662) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#1289) shadows:
- Ownable._owner (#662) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#1296) shadows:
- Ownable._owner (#662) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#1306) shadows:
- Ownable._owner (#662) (state variable)
SHIBAX.setBuyFees(uint16,uint16,uint16)._burn (#1580) shadows:
- ERC20._burn(address,uint256) (#1101-1116) (function)
SHIBAX.setSellFees(uint16,uint16,uint16)._burn (#1592) shadows:
- ERC20._burn(address,uint256) (#1101-1116) (function)
Rename the local variables that shadow another component.
Additional information: link
SHIBAX.setBuyFees(uint16,uint16,uint16) (#1577-1587) should emit an event for:
- totalBuyFee = buyFee.reward + buyFee.marketing (#1586)
SHIBAX.setSellFees(uint16,uint16,uint16) (#1589-1599) should emit an event for:
- totalSellFee = sellFee.reward + sellFee.marketing (#1598)
SHIBAX.setSwapTokens(uint256) (#1613-1615) should emit an event for:
- swapTokensAtAmount = amount (#1614)
Emit an event for critical parameter changes.
Additional information: link
SHIBAX.updateUniswapV2Router(address)._uniswapV2Pair (#1536-1537) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1538)
SHIBAX.setWallets(address)._marketing (#1573) lacks a zero-check on :
- marketingWallet = _marketing (#1574)
Check that the address is not zero.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (#1260-1276) has external calls inside a loop: success = IERC20(ETH).transfer(user,_withdrawableDividend) (#1265)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'SHIBAX._transfer(address,address,uint256).iterations (#1822)' in SHIBAX._transfer(address,address,uint256) (#1743-1836) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1826-1833)
Variable 'SHIBAX._transfer(address,address,uint256).lastProcessedIndex (#1824)' in SHIBAX._transfer(address,address,uint256) (#1743-1836) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1826-1833)
Variable 'SHIBAX._transfer(address,address,uint256).claims (#1823)' in SHIBAX._transfer(address,address,uint256) (#1743-1836) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1826-1833)
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 SHIBAX._transfer(address,address,uint256) (#1743-1836):
External calls:
- swapAndSendToMarketing(marketingTokens) (#1776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1857-1863)
- swapAndSendDividends(sellTokens) (#1781)
- success = IERC20(ETH).transfer(address(dividendTracker),newBalance) (#1893-1896)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1875-1881)
- dividendTracker.distributeETHDividends(newBalance) (#1899)
External calls sending eth:
- swapAndSendToMarketing(marketingTokens) (#1776)
- marketingWallet.transfer(newBalance) (#1845)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1781)
- _allowances[owner][spender] = amount (#1139)
Reentrancy in SHIBAX.constructor() (#1455-1499):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1461-1462)
State variables written after the call(s):
- buyFee.reward = 140 (#1467)
- buyFee.marketing = 50 (#1468)
- buyFee.burn = 0 (#1469)
- sellFee.reward = 140 (#1472)
- sellFee.marketing = 50 (#1473)
- sellFee.burn = 0 (#1474)
- totalBuyFee = buyFee.reward + buyFee.marketing (#1470)
- totalSellFee = sellFee.reward + sellFee.marketing (#1475)
- uniswapV2Pair = _uniswapV2Pair (#1465)
- uniswapV2Router = _uniswapV2Router (#1464)
Reentrancy in SHIBAX.constructor() (#1455-1499):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1461-1462)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1477)
- dividendTracker.excludeFromDividends(pair) (#1625)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1480)
- dividendTracker.excludeFromDividends(address(this)) (#1481)
- dividendTracker.excludeFromDividends(owner()) (#1482)
- dividendTracker.excludeFromDividends(deadWallet) (#1483)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1484)
State variables written after the call(s):
- _mint(owner(),100 * 10 ** 6 * (10 ** 9)) (#1496)
- _balances[account] += amount (#1084)
- excludeFromFees(owner(),true) (#1487)
- _isExcludedFromFees[account] = excluded (#1557)
- excludeFromFees(marketingWallet,true) (#1488)
- _isExcludedFromFees[account] = excluded (#1557)
- excludeFromFees(deadWallet,true) (#1489)
- _isExcludedFromFees[account] = excluded (#1557)
- excludeFromFees(address(this),true) (#1490)
- _isExcludedFromFees[account] = excluded (#1557)
- _mint(owner(),100 * 10 ** 6 * (10 ** 9)) (#1496)
- _totalSupply += amount (#1083)
- maxTxAmount = totalSupply().mul(100).div(100) (#1498)
Reentrancy in TOKENDividendTracker.processAccount(address,bool) (#2144-2158):
External calls:
- amount = _withdrawDividendOfUser(account) (#2149)
- success = IERC20(ETH).transfer(user,_withdrawableDividend) (#1265)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#2152)
Reentrancy in SHIBAX.updateUniswapV2Router(address) (#1529-1539):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1536-1537)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1538)
Apply the check-effects-interactions pattern.
Additional information: link
SHIBAX.updateGasForProcessing(uint256) (#1631-1642) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,TOKEN: gasForProcessing must be between 200,000 and 500,000) (#1632-1635)
SHIBAX.slitherConstructorVariables() (#1366-1903) uses literals with too many digits:
- gasForProcessing = 300000 (#1404)
TOKENDividendTracker.getAccountAtIndex(uint256) (#2031-2061) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#2046-2055)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Reentrancy in SHIBAX._setAutomatedMarketMakerPair(address,bool) (#1617-1629):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1625)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1628)
Reentrancy in SHIBAX._transfer(address,address,uint256) (#1743-1836):
External calls:
- swapAndSendToMarketing(marketingTokens) (#1776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1857-1863)
- swapAndSendDividends(sellTokens) (#1781)
- success = IERC20(ETH).transfer(address(dividendTracker),newBalance) (#1893-1896)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1875-1881)
- dividendTracker.distributeETHDividends(newBalance) (#1899)
External calls sending eth:
- swapAndSendToMarketing(marketingTokens) (#1776)
- marketingWallet.transfer(newBalance) (#1845)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1140)
- swapAndSendDividends(sellTokens) (#1781)
- SendDividends(tokens,newBalance) (#1900)
- swapAndSendDividends(sellTokens) (#1781)
- Transfer(sender,recipient,amount) (#1064)
- super._transfer(from,to,amount) (#1813)
- Transfer(sender,recipient,amount) (#1064)
- super._transfer(from,address(this),fees) (#1808)
- Transfer(sender,recipient,amount) (#1064)
- super._transfer(from,deadWallet,burnAmount) (#1809)
Reentrancy in SHIBAX._transfer(address,address,uint256) (#1743-1836):
External calls:
- swapAndSendToMarketing(marketingTokens) (#1776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1857-1863)
- swapAndSendDividends(sellTokens) (#1781)
- success = IERC20(ETH).transfer(address(dividendTracker),newBalance) (#1893-1896)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1875-1881)
- dividendTracker.distributeETHDividends(newBalance) (#1899)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1815)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1816)
- dividendTracker.process(gas) (#1821-1834)
External calls sending eth:
- swapAndSendToMarketing(marketingTokens) (#1776)
- marketingWallet.transfer(newBalance) (#1845)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1826-1833)
Reentrancy in SHIBAX.constructor() (#1455-1499):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1461-1462)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1477)
- dividendTracker.excludeFromDividends(pair) (#1625)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1628)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1477)
Reentrancy in SHIBAX.constructor() (#1455-1499):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1461-1462)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1477)
- dividendTracker.excludeFromDividends(pair) (#1625)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1480)
- dividendTracker.excludeFromDividends(address(this)) (#1481)
- dividendTracker.excludeFromDividends(owner()) (#1482)
- dividendTracker.excludeFromDividends(deadWallet) (#1483)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1484)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1559)
- excludeFromFees(address(this),true) (#1490)
- ExcludeFromFees(account,excluded) (#1559)
- excludeFromFees(deadWallet,true) (#1489)
- ExcludeFromFees(account,excluded) (#1559)
- excludeFromFees(marketingWallet,true) (#1488)
- ExcludeFromFees(account,excluded) (#1559)
- excludeFromFees(owner(),true) (#1487)
- Transfer(address(0),account,amount) (#1085)
- _mint(owner(),100 * 10 ** 6 * (10 ** 9)) (#1496)
Reentrancy in TOKENDividendTracker.processAccount(address,bool) (#2144-2158):
External calls:
- amount = _withdrawDividendOfUser(account) (#2149)
- success = IERC20(ETH).transfer(user,_withdrawableDividend) (#1265)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#2153)
Reentrancy in SHIBAX.processDividendTracker(uint256) (#1714-1729):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1715-1719)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1721-1728)
Reentrancy in SHIBAX.swapAndSendDividends(uint256) (#1884-1902):
External calls:
- swapTokensForETH(tokens) (#1887)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1875-1881)
- success = IERC20(ETH).transfer(address(dividendTracker),newBalance) (#1893-1896)
- dividendTracker.distributeETHDividends(newBalance) (#1899)
Event emitted after the call(s):
- SendDividends(tokens,newBalance) (#1900)
Reentrancy in SHIBAX.updateDividendTracker(address) (#1503-1527):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1518)
- newDividendTracker.excludeFromDividends(address(this)) (#1519)
- newDividendTracker.excludeFromDividends(owner()) (#1520)
- newDividendTracker.excludeFromDividends(deadWallet) (#1521)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1522)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1524)
Apply the check-effects-interactions pattern.
Additional information: link
TOKENDividendTracker.getAccount(address) (#1982-2029) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#2026-2028)
TOKENDividendTracker.canAutoClaim(uint256) (#2063-2069) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#2064)
- block.timestamp.sub(lastClaimTime) >= claimWait (#2068)
Avoid relying on block.timestamp.
Additional information: link
Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.8.0', '^0.8.8']
- >=0.6.2 (#4)
- >=0.6.2 (#102)
- >=0.5.0 (#148)
- ^0.8.8 (#169)
- ^0.8.8 (#236)
- ^0.8.8 (#264)
- ^0.8.8 (#303)
- ^0.8.8 (#373)
- ^0.8.0 (#391)
- ^0.8.0 (#620)
- ^0.8.0 (#646)
- ^0.8.0 (#719)
- ^0.8.0 (#803)
- ^0.8.0 (#832)
- ^0.8.8 (#1188)
- ^0.8.8 (#1363)
Use one Solidity version.
Additional information: link
Context._msgData() (#637-639) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1316-1322) is never used and should be removed
IterableMapping.get(IterableMapping.Map,address) (#180-182) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#578-587) is never used and should be removed
SafeMath.mod(uint256,uint256) (#538-540) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#604-613) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#555-564) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#409-415) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#451-456) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#463-468) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#434-444) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#422-427) is never used and should be removed
SafeMathInt.abs(int256) (#357-360) is never used and should be removed
SafeMathInt.div(int256,int256) (#328-334) is never used and should be removed
SafeMathInt.mul(int256,int256) (#316-323) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.6.2 (#4) allows old versions
Pragma version>=0.6.2 (#102) allows old versions
Pragma version>=0.5.0 (#148) allows old versions
Pragma version^0.8.8 (#169) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.8 (#236) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.8 (#264) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.8 (#303) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.8 (#373) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.0 (#391) allows old versions
Pragma version^0.8.0 (#620) allows old versions
Pragma version^0.8.0 (#646) allows old versions
Pragma version^0.8.0 (#719) allows old versions
Pragma version^0.8.0 (#803) allows old versions
Pragma version^0.8.0 (#832) allows old versions
Pragma version^0.8.8 (#1188) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.8 (#1363) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
solc-0.8.8 is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
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
Function IUniswapV2Router01.WETH() (#8) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1282) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1289) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1296) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1306) is not in mixedCase
Constant DividendPayingToken.magnitude (#1214) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter SHIBAX.claimStuckTokens(address)._token (#1541) is not in mixedCase
Parameter SHIBAX.setWallets(address)._marketing (#1573) is not in mixedCase
Parameter SHIBAX.setBuyFees(uint16,uint16,uint16)._reward (#1578) is not in mixedCase
Parameter SHIBAX.setBuyFees(uint16,uint16,uint16)._marketing (#1579) is not in mixedCase
Parameter SHIBAX.setBuyFees(uint16,uint16,uint16)._burn (#1580) is not in mixedCase
Parameter SHIBAX.setSellFees(uint16,uint16,uint16)._reward (#1590) is not in mixedCase
Parameter SHIBAX.setSellFees(uint16,uint16,uint16)._marketing (#1591) is not in mixedCase
Parameter SHIBAX.setSellFees(uint16,uint16,uint16)._burn (#1592) is not in mixedCase
Constant SHIBAX.deadWallet (#1394) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter TOKENDividendTracker.getAccount(address)._account (#1982) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in SHIBAX._transfer(address,address,uint256) (#1743-1836):
External calls:
- swapAndSendToMarketing(marketingTokens) (#1776)
- marketingWallet.transfer(newBalance) (#1845)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1781)
- _allowances[owner][spender] = amount (#1139)
- super._transfer(from,address(this),fees) (#1808)
- _balances[sender] = senderBalance - amount (#1060)
- _balances[recipient] += amount (#1062)
- super._transfer(from,deadWallet,burnAmount) (#1809)
- _balances[sender] = senderBalance - amount (#1060)
- _balances[recipient] += amount (#1062)
- super._transfer(from,to,amount) (#1813)
- _balances[sender] = senderBalance - amount (#1060)
- _balances[recipient] += amount (#1062)
- swapping = false (#1783)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1140)
- swapAndSendDividends(sellTokens) (#1781)
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1826-1833)
- SendDividends(tokens,newBalance) (#1900)
- swapAndSendDividends(sellTokens) (#1781)
- Transfer(sender,recipient,amount) (#1064)
- super._transfer(from,address(this),fees) (#1808)
- Transfer(sender,recipient,amount) (#1064)
- super._transfer(from,to,amount) (#1813)
- Transfer(sender,recipient,amount) (#1064)
- super._transfer(from,deadWallet,burnAmount) (#1809)
Apply the check-effects-interactions pattern.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#695-697)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#703-706)
name() should be declared external:
- ERC20.name() (#888-890)
symbol() should be declared external:
- ERC20.symbol() (#896-898)
decimals() should be declared external:
- ERC20.decimals() (#913-915)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#939-942)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#947-949)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#958-961)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#976-990)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#1004-1007)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#1023-1031)
distributeETHDividends(uint256) should be declared external:
- DividendPayingToken.distributeETHDividends(uint256) (#1239-1250)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1254-1256)
- TOKENDividendTracker.withdrawDividend() (#1944-1949)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1282-1284)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1296-1298)
updateDividendTracker(address) should be declared external:
- SHIBAX.updateDividendTracker(address) (#1503-1527)
updateUniswapV2Router(address) should be declared external:
- SHIBAX.updateUniswapV2Router(address) (#1529-1539)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- SHIBAX.excludeMultipleAccountsFromFees(address[],bool) (#1562-1571)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- SHIBAX.setAutomatedMarketMakerPair(address,bool) (#1601-1611)
updateGasForProcessing(uint256) should be declared external:
- SHIBAX.updateGasForProcessing(uint256) (#1631-1642)
isExcludedFromFees(address) should be declared external:
- SHIBAX.isExcludedFromFees(address) (#1656-1658)
withdrawableDividendOf(address) should be declared external:
- SHIBAX.withdrawableDividendOf(address) (#1660-1666)
dividendTokenBalanceOf(address) should be declared external:
- SHIBAX.dividendTokenBalanceOf(address) (#1668-1674)
getAccountAtIndex(uint256) should be declared external:
- TOKENDividendTracker.getAccountAtIndex(uint256) (#2031-2061)
process(uint256) should be declared external:
- TOKENDividendTracker.process(uint256) (#2090-2142)
Use the external attribute for functions never called from the contract.
Additional information: link
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 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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find whitepaper link on the website
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
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Last post in Twitter was more than 30 days ago