ShibaGang Token Logo

SHIG [ShibaGang] Token

About SHIG

Listings

Not Found
Token 2 years

ShibaGang is all about sticking together. As a gang we are stronger, join the ShibaGang.

Social

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

SHIG.addLiquidity(uint256,uint256) (#2178-2190) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SHIG._transfer(address,address,uint256) (#2047-2112):
External calls:
- swapAndLiquify(contractTokenBalance) (#2077)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2164-2170)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2077)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- marketingWallet.transfer(marketingAmount) (#2139)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2090)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
Reentrancy in SHIG._transfer(address,address,uint256) (#2047-2112):
External calls:
- swapAndLiquify(contractTokenBalance) (#2077)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2164-2170)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
- swapAndSendBNBToMarketing(extraFee) (#2093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2164-2170)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2077)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- marketingWallet.transfer(marketingAmount) (#2139)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
State variables written after the call(s):
- swapAndSendBNBToMarketing(extraFee) (#2093)
- _allowances[owner][spender] = amount (#1103)
- super._transfer(from,to,amount) (#2097)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1413-1429):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1418)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1421)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link


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


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


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

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

Additional information: link

SHIG.swapAndLiquify(uint256) (#2114-2149) performs a multiplication on the result of a division:
-tokensToAddLiquidityWith = contractTokenBalance.div(totalFees.mul(2)).mul(liquidityFee) (#2117)
SHIG.swapAndLiquify(uint256) (#2114-2149) performs a multiplication on the result of a division:
-marketingAmount = deltaBalance.sub(bnbToAddLiquidityWith).div(totalFees.sub(liquidityFee)).mul(marketingFee) (#2138)
Consider ordering multiplication before division.

Additional information: link

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

SHIG.claim() (#2021-2023) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#2022)
SHIG._transfer(address,address,uint256) (#2047-2112) ignores return value by dividendTracker.process(gas) (#2105-2110)
SHIG.addLiquidity(uint256,uint256) (#2178-2190) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
Ensure that all the return values of the function calls are used.

Additional information: link

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

Additional information: link

SHIG.setFee(uint256,uint256,uint256) (#1837-1843) should emit an event for:
- liquidityFee = _liquidityFee (#1839)
- marketingFee = _marketingFee (#1840)
- totalFees = BNBRewardsFee.add(liquidityFee).add(marketingFee) (#1842)
SHIG.setExtraFeeOnSell(uint256) (#1845-1847) should emit an event for:
- extraFeeOnSell = _extraFeeOnSell (#1846)
SHIG.setSwapAmont(uint256) (#1849-1851) should emit an event for:
- swapTokensAtAmount = _swapTokensAtAmount (#1850)
SHIG.setMaxtx(uint256) (#1853-1855) should emit an event for:
- maxSellTransactionAmount = _maxSellTxAmount (#1854)
Emit an event for critical parameter changes.

Additional information: link

SafeToken.setSafeManager(address)._safeManager (#1727) lacks a zero-check on :
- safeManager = _safeManager (#1728)
Check that the address is not zero.

Additional information: link

Variable 'SHIG._transfer(address,address,uint256).claims (#2105)' in SHIG._transfer(address,address,uint256) (#2047-2112) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2106)
Variable 'SHIG._transfer(address,address,uint256).iterations (#2105)' in SHIG._transfer(address,address,uint256) (#2047-2112) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2106)
Variable 'SHIG._transfer(address,address,uint256).lastProcessedIndex (#2105)' in SHIG._transfer(address,address,uint256) (#2047-2112) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2106)
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 SHIG.constructor() (#1857-1901):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1870-1871)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1874)
- uniswapV2Router = _uniswapV2Router (#1873)
Reentrancy in SHIG.constructor() (#1857-1901):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1870-1871)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1876)
- dividendTracker.excludeFromDividends(pair) (#1949)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1879)
- dividendTracker.excludeFromDividends(address(this)) (#1880)
- dividendTracker.excludeFromDividends(owner()) (#1881)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1882)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1883)
State variables written after the call(s):
- _mint(owner(),100000000000 * (10 ** 18)) (#1900)
- _balances[account] += amount (#1047)
- excludeFromFees(owner(),true) (#1886)
- _isExcludedFromFees[account] = excluded (#1915)
- excludeFromFees(marketingWallet,true) (#1887)
- _isExcludedFromFees[account] = excluded (#1915)
- excludeFromFees(address(this),true) (#1888)
- _isExcludedFromFees[account] = excluded (#1915)
- _isExcludedFromMaxTx[owner()] = true (#1891)
- _isExcludedFromMaxTx[address(this)] = true (#1892)
- _isExcludedFromMaxTx[marketingWallet] = true (#1893)
- _mint(owner(),100000000000 * (10 ** 18)) (#1900)
- _totalSupply += amount (#1046)
Reentrancy in SHIGDividendTracker.processAccount(address,bool) (#1707-1717):
External calls:
- amount = _withdrawDividendOfUser(account) (#1708)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1418)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1711)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SHIG._setAutomatedMarketMakerPair(address,bool) (#1944-1953):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1949)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1952)
Reentrancy in SHIG._transfer(address,address,uint256) (#2047-2112):
External calls:
- swapAndLiquify(contractTokenBalance) (#2077)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2164-2170)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2077)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- marketingWallet.transfer(marketingAmount) (#2139)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,address(this),fees) (#2090)
Reentrancy in SHIG._transfer(address,address,uint256) (#2047-2112):
External calls:
- swapAndLiquify(contractTokenBalance) (#2077)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2164-2170)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
- swapAndSendBNBToMarketing(extraFee) (#2093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2164-2170)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2077)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- marketingWallet.transfer(marketingAmount) (#2139)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1104)
- swapAndSendBNBToMarketing(extraFee) (#2093)
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,to,amount) (#2097)
Reentrancy in SHIG._transfer(address,address,uint256) (#2047-2112):
External calls:
- swapAndLiquify(contractTokenBalance) (#2077)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2164-2170)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
- swapAndSendBNBToMarketing(extraFee) (#2093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2164-2170)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#2099)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#2100)
- dividendTracker.process(gas) (#2105-2110)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2077)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- marketingWallet.transfer(marketingAmount) (#2139)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2106)
Reentrancy in SHIG.constructor() (#1857-1901):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1870-1871)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1876)
- dividendTracker.excludeFromDividends(pair) (#1949)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1952)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1876)
Reentrancy in SHIG.constructor() (#1857-1901):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1870-1871)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1876)
- dividendTracker.excludeFromDividends(pair) (#1949)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1879)
- dividendTracker.excludeFromDividends(address(this)) (#1880)
- dividendTracker.excludeFromDividends(owner()) (#1881)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1882)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1883)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1917)
- excludeFromFees(address(this),true) (#1888)
- ExcludeFromFees(account,excluded) (#1917)
- excludeFromFees(owner(),true) (#1886)
- ExcludeFromFees(account,excluded) (#1917)
- excludeFromFees(marketingWallet,true) (#1887)
- Transfer(address(0),account,amount) (#1048)
- _mint(owner(),100000000000 * (10 ** 18)) (#1900)
Reentrancy in SHIGDividendTracker.processAccount(address,bool) (#1707-1717):
External calls:
- amount = _withdrawDividendOfUser(account) (#1708)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1418)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1712)
Reentrancy in SHIG.processDividendTracker(uint256) (#2016-2019):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#2017)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#2018)
Reentrancy in SHIG.swapAndLiquify(uint256) (#2114-2149):
External calls:
- swapTokensForBnb(toSwap,address(this)) (#2127)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2164-2170)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2136)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2136)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- marketingWallet.transfer(marketingAmount) (#2139)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2145)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2148)
Apply the check-effects-interactions pattern.

Additional information: link

SHIGDividendTracker.getAccount(address) (#1571-1614) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1611-1613)
SHIGDividendTracker.canAutoClaim(uint256) (#1635-1641) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1636)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1640)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#695-697) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1469-1475) 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 version^0.8.0 (#3) allows old versions
solc-0.8.0 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) (#1413-1429):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1418)
Low level call in SHIG.swapAndLiquify(uint256) (#2114-2149):
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
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 (#1435) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1442) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1449) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1459) is not in mixedCase
Constant DividendPayingToken.magnitude (#1350) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter SHIGDividendTracker.getAccount(address)._account (#1571) is not in mixedCase
Parameter SafeToken.setSafeManager(address)._safeManager (#1727) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._token (#1731) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._amount (#1731) is not in mixedCase
Parameter SafeToken.withdrawBNB(uint256)._amount (#1736) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#1759) is not in mixedCase
Parameter SHIG.setFee(uint256,uint256,uint256)._bnbRewardFee (#1837) is not in mixedCase
Parameter SHIG.setFee(uint256,uint256,uint256)._liquidityFee (#1837) is not in mixedCase
Parameter SHIG.setFee(uint256,uint256,uint256)._marketingFee (#1837) is not in mixedCase
Parameter SHIG.setExtraFeeOnSell(uint256)._extraFeeOnSell (#1845) is not in mixedCase
Parameter SHIG.setSwapAmont(uint256)._swapTokensAtAmount (#1849) is not in mixedCase
Parameter SHIG.setMaxtx(uint256)._maxSellTxAmount (#1853) is not in mixedCase
Parameter SHIG.setExcludeFromMaxTx(address,bool)._address (#1920) is not in mixedCase
Parameter SHIG.setExcludeFromAll(address)._address (#1924) is not in mixedCase
Parameter SHIG.setSwapAndLiquifyEnabled(bool)._enabled (#2038) is not in mixedCase
Parameter SHIG.swapTokensForBnb(uint256,address)._to (#2151) is not in mixedCase
Variable SHIG.BNBRewardsFee (#1782) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in SHIG._transfer(address,address,uint256) (#2047-2112):
External calls:
- swapAndLiquify(contractTokenBalance) (#2077)
- marketingWallet.transfer(marketingAmount) (#2139)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2077)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- marketingWallet.transfer(marketingAmount) (#2139)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
State variables written after the call(s):
- swapAndSendBNBToMarketing(extraFee) (#2093)
- _allowances[owner][spender] = amount (#1103)
- super._transfer(from,address(this),fees) (#2090)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
- super._transfer(from,to,amount) (#2097)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1104)
- swapAndSendBNBToMarketing(extraFee) (#2093)
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2106)
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,address(this),fees) (#2090)
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,to,amount) (#2097)
Reentrancy in SHIG.swapAndLiquify(uint256) (#2114-2149):
External calls:
- marketingWallet.transfer(marketingAmount) (#2139)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2136)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2181-2188)
- marketingWallet.transfer(marketingAmount) (#2139)
- (success) = address(dividendTracker).call{value: dividends}() (#2142)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2145)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2148)
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 (#1414) is too similar to SHIGDividendTracker.getAccount(address).withdrawableDividends (#1576)
Variable SHIG.BNBRewardsFee (#1782) is too similar to SHIG.setFee(uint256,uint256,uint256)._bnbRewardFee (#1837)
Prevent variables from having similar names.

Additional information: link

SHIGDividendTracker.getAccountAtIndex(uint256) (#1616-1633) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1627)
SHIG.constructor() (#1857-1901) uses literals with too many digits:
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1883)
SHIG.constructor() (#1857-1901) uses literals with too many digits:
- _mint(owner(),100000000000 * (10 ** 18)) (#1900)
SHIG.updateGasForProcessing(uint256) (#1955-1960) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,SHIG: gasForProcessing must be between 200,000 and 500,000) (#1956)
SHIG.slitherConstructorVariables() (#1766-2193) uses literals with too many digits:
- maxSellTransactionAmount = 1000000000 * (10 ** 18) (#1778)
SHIG.slitherConstructorVariables() (#1766-2193) uses literals with too many digits:
- swapTokensAtAmount = 500000000 * (10 ** 18) (#1779)
SHIG.slitherConstructorVariables() (#1766-2193) uses literals with too many digits:
- maxWalletToken = 2000000000 * (10 ** 18) (#1780)
SHIG.slitherConstructorVariables() (#1766-2193) uses literals with too many digits:
- gasForProcessing = 300000 (#1790)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SHIG.maxWalletToken (#1780) should be constant
Add the constant attributes to state variables that never change.

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() (#1194-1196)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1202-1205)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#1223-1225)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#1227-1232)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#1234-1236)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1240-1242)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1407-1409)
- SHIGDividendTracker.withdrawDividend() (#1540-1542)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1435-1437)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1449-1451)
getAccountAtIndex(uint256) should be declared external:
- SHIGDividendTracker.getAccountAtIndex(uint256) (#1616-1633)
process(uint256) should be declared external:
- SHIGDividendTracker.process(uint256) (#1660-1705)
setSafeManager(address) should be declared external:
- SafeToken.setSafeManager(address) (#1727-1729)
setFee(uint256,uint256,uint256) should be declared external:
- SHIG.setFee(uint256,uint256,uint256) (#1837-1843)
setExtraFeeOnSell(uint256) should be declared external:
- SHIG.setExtraFeeOnSell(uint256) (#1845-1847)
setSwapAmont(uint256) should be declared external:
- SHIG.setSwapAmont(uint256) (#1849-1851)
setMaxtx(uint256) should be declared external:
- SHIG.setMaxtx(uint256) (#1853-1855)
updateUniswapV2Router(address) should be declared external:
- SHIG.updateUniswapV2Router(address) (#1907-1911)
setExcludeFromMaxTx(address,bool) should be declared external:
- SHIG.setExcludeFromMaxTx(address,bool) (#1920-1922)
setExcludeFromAll(address) should be declared external:
- SHIG.setExcludeFromAll(address) (#1924-1928)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- SHIG.excludeMultipleAccountsFromFees(address[],bool) (#1930-1936)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- SHIG.setAutomatedMarketMakerPair(address,bool) (#1938-1942)
updateGasForProcessing(uint256) should be declared external:
- SHIG.updateGasForProcessing(uint256) (#1955-1960)
isExcludedFromFees(address) should be declared external:
- SHIG.isExcludedFromFees(address) (#1974-1976)
isExcludedFromMaxTx(address) should be declared external:
- SHIG.isExcludedFromMaxTx(address) (#1978-1980)
withdrawableDividendOf(address) should be declared external:
- SHIG.withdrawableDividendOf(address) (#1982-1984)
dividendTokenBalanceOf(address) should be declared external:
- SHIG.dividendTokenBalanceOf(address) (#1986-1988)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SHIG.setSwapAndLiquifyEnabled(bool) (#2038-2041)
burn(uint256) should be declared external:
- SHIG.burn(uint256) (#2043-2045)
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 has less than 100 followers


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


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


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 SHIG

News for SHIG