Shib Generating Token Logo

SHG [Shib Generating] Token

About SHG

Listings

Token 2 years
CoinMarketCap 2 years
white paper

We’re coming with the proposal to be the highest paying token for Shiba Inu
rewards in the world!!!
Besides being the biggest reward payer, SHG will have its own server for NFT
games. This will join two huge communities, the Shiba Inu community and the
NFT game community.

The benefit of having its own server is that most of the amount collected by the
service will be placed directly into SHG's liquidity, bringing a constant
appreciation to the asset.

SHIB GENERATING will promote tournaments and seek partnerships with the
most renowned game streamers, going to another level in the crypto world.
Shib Generating, will have an exclusive online store for its holders, where they
will be able to buy several exclusive SHG products. These purchases can only be
made with rewards from Shib Generating.

The Shib Generating Token (SHG) is a native token of the Smart Chain Network
(BEP20), which will use a smart contract for generating liquidity and passive
income in Shiba Inu to holders. Each purchase transaction will be charged a 14%
fee, and each sale a 18% fee.
This new generation of protocols aims to create a thriving community of likeminded investors.
Shib Generating will join today's largest communities, Shiba inu and NFT games.

Social

Laser Scorebeta Last Audit: 28 February 2022

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

ShibGenerating.addLiquidity(uint256,uint256) (ShibGenerating.sol#468-483) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ShibGenerating._transfer(address,address,uint256) (ShibGenerating.sol#322-393):
External calls:
- swapAndSendToFee(marketingTokens) (ShibGenerating.sol#349)
- IERC20(ShibaInu).transfer(_marketingWalletAddress,newBalance) (ShibGenerating.sol#401)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#459-465)
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#439-445)
- swapAndSendDividends(sellTokens) (ShibGenerating.sol#355)
- success = IERC20(ShibaInu).transfer(address(dividendTracker),dividends) (ShibGenerating.sol#488)
- dividendTracker.distributeShibaInuDividends(dividends) (ShibGenerating.sol#491)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#459-465)
External calls sending eth:
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (ShibGenerating.sol#375)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (ShibGenerating.sol#378)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (ShibGenerating.sol#357)
Apply the check-effects-interactions pattern.

Additional information: link

ShibGenerating.swapAndSendToFee(uint256) (ShibGenerating.sol#395-402) ignores return value by IERC20(ShibaInu).transfer(_marketingWalletAddress,newBalance) (ShibGenerating.sol#401)
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.

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#76-92):
External calls:
- success = IERC20(ShibaInu).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (DividendPayingToken.sol#84)
Reentrancy in ShibGenerating.updateDividendTracker(address) (ShibGenerating.sol#140-155):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (ShibGenerating.sol#147)
- newDividendTracker.excludeFromDividends(address(this)) (ShibGenerating.sol#148)
- newDividendTracker.excludeFromDividends(owner()) (ShibGenerating.sol#149)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (ShibGenerating.sol#150)
State variables written after the call(s):
- dividendTracker = newDividendTracker (ShibGenerating.sol#154)
Apply the check-effects-interactions pattern.

Additional information: link

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

ShibGenerating.claim() (ShibGenerating.sol#309-311) ignores return value by dividendTracker.processAccount(msg.sender,false) (ShibGenerating.sol#310)
ShibGenerating._transfer(address,address,uint256) (ShibGenerating.sol#322-393) ignores return value by dividendTracker.process(gas) (ShibGenerating.sol#386-391)
ShibGenerating.addLiquidity(uint256,uint256) (ShibGenerating.sol#468-483) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (DividendPayingToken.sol#50) shadows:
- ERC20._name (ERC20.sol#43) (state variable)
DividendPayingToken.constructor(string,string)._symbol (DividendPayingToken.sol#50) shadows:
- ERC20._symbol (ERC20.sol#44) (state variable)
DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#98) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#105) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#112) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.

Additional information: link

ShibGenerating.setShibaInuRewardsFee(uint256) (ShibGenerating.sol#185-188) should emit an event for:
- ShibaInuRewardsFee = value (ShibGenerating.sol#186)
- totalFees = ShibaInuRewardsFee.add(liquidityFee).add(marketingFee) (ShibGenerating.sol#187)
ShibGenerating.setSwapTokensAtAmount(uint256) (ShibGenerating.sol#190-192) should emit an event for:
- swapTokensAtAmount = value (ShibGenerating.sol#191)
ShibGenerating.setMaxTxPercent(uint256) (ShibGenerating.sol#194-197) should emit an event for:
- _maxTxAmount = maxTxPercent (ShibGenerating.sol#196)
ShibGenerating.setMaxRxPercent(uint256) (ShibGenerating.sol#199-202) should emit an event for:
- _maxRxAmount = maxRxPercent (ShibGenerating.sol#201)
ShibGenerating.setSellFee(uint256) (ShibGenerating.sol#204-206) should emit an event for:
- sellFee = value (ShibGenerating.sol#205)
ShibGenerating.setLiquiditFee(uint256) (ShibGenerating.sol#208-211) should emit an event for:
- liquidityFee = value (ShibGenerating.sol#209)
- totalFees = ShibaInuRewardsFee.add(liquidityFee).add(marketingFee) (ShibGenerating.sol#210)
ShibGenerating.setMarketingFee(uint256) (ShibGenerating.sol#213-217) should emit an event for:
- marketingFee = value (ShibGenerating.sol#214)
- totalFees = ShibaInuRewardsFee.add(liquidityFee).add(marketingFee) (ShibGenerating.sol#215)
Emit an event for critical parameter changes.

Additional information: link

ShibGenerating.updateUniswapV2Router(address)._uniswapV2Pair (ShibGenerating.sol#161-162) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (ShibGenerating.sol#163)
ShibGenerating.setMarketingWallet(address).wallet (ShibGenerating.sol#181) lacks a zero-check on :
- _marketingWalletAddress = wallet (ShibGenerating.sol#182)
Check that the address is not zero.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#76-92) has external calls inside a loop: success = IERC20(ShibaInu).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'ShibGenerating._transfer(address,address,uint256).lastProcessedIndex (ShibGenerating.sol#386)' in ShibGenerating._transfer(address,address,uint256) (ShibGenerating.sol#322-393) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (ShibGenerating.sol#387)
Variable 'ShibGenerating._transfer(address,address,uint256).claims (ShibGenerating.sol#386)' in ShibGenerating._transfer(address,address,uint256) (ShibGenerating.sol#322-393) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (ShibGenerating.sol#387)
Variable 'ShibGenerating._transfer(address,address,uint256).iterations (ShibGenerating.sol#386)' in ShibGenerating._transfer(address,address,uint256) (ShibGenerating.sol#322-393) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (ShibGenerating.sol#387)
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 ShibGenerating._transfer(address,address,uint256) (ShibGenerating.sol#322-393):
External calls:
- swapAndSendToFee(marketingTokens) (ShibGenerating.sol#349)
- IERC20(ShibaInu).transfer(_marketingWalletAddress,newBalance) (ShibGenerating.sol#401)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#459-465)
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#439-445)
External calls sending eth:
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in ShibGenerating._transfer(address,address,uint256) (ShibGenerating.sol#322-393):
External calls:
- swapAndSendToFee(marketingTokens) (ShibGenerating.sol#349)
- IERC20(ShibaInu).transfer(_marketingWalletAddress,newBalance) (ShibGenerating.sol#401)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#459-465)
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#439-445)
- swapAndSendDividends(sellTokens) (ShibGenerating.sol#355)
- success = IERC20(ShibaInu).transfer(address(dividendTracker),dividends) (ShibGenerating.sol#488)
- dividendTracker.distributeShibaInuDividends(dividends) (ShibGenerating.sol#491)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#459-465)
External calls sending eth:
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (ShibGenerating.sol#355)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in ShibGenerating.constructor() (ShibGenerating.sol#100-134):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (ShibGenerating.sol#109-110)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (ShibGenerating.sol#113)
- uniswapV2Router = _uniswapV2Router (ShibGenerating.sol#112)
Reentrancy in ShibGenerating.constructor() (ShibGenerating.sol#100-134):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (ShibGenerating.sol#109-110)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (ShibGenerating.sol#115)
- dividendTracker.excludeFromDividends(pair) (ShibGenerating.sol#236)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (ShibGenerating.sol#118)
- dividendTracker.excludeFromDividends(address(this)) (ShibGenerating.sol#119)
- dividendTracker.excludeFromDividends(owner()) (ShibGenerating.sol#120)
- dividendTracker.excludeFromDividends(deadWallet) (ShibGenerating.sol#121)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (ShibGenerating.sol#122)
State variables written after the call(s):
- _mint(owner(),_tTotal) (ShibGenerating.sol#133)
- _balances[account] = _balances[account].add(amount) (ERC20.sol#241)
- excludeFromFees(owner(),true) (ShibGenerating.sol#125)
- _isExcludedFromFees[account] = excluded (ShibGenerating.sol#168)
- excludeFromFees(_marketingWalletAddress,true) (ShibGenerating.sol#126)
- _isExcludedFromFees[account] = excluded (ShibGenerating.sol#168)
- excludeFromFees(address(this),true) (ShibGenerating.sol#127)
- _isExcludedFromFees[account] = excluded (ShibGenerating.sol#168)
- _mint(owner(),_tTotal) (ShibGenerating.sol#133)
- _totalSupply = _totalSupply.add(amount) (ERC20.sol#240)
Reentrancy in ShibGeneratingDividendTracker.processAccount(address,bool) (ShibGenerating.sol#693-703):
External calls:
- amount = _withdrawDividendOfUser(account) (ShibGenerating.sol#694)
- success = IERC20(ShibaInu).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (ShibGenerating.sol#697)
Reentrancy in ShibGenerating.swapAndLiquify(uint256) (ShibGenerating.sol#404-425):
External calls:
- swapTokensForEth(half) (ShibGenerating.sol#416)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#439-445)
- addLiquidity(otherHalf,newBalance) (ShibGenerating.sol#422)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (ShibGenerating.sol#422)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (ShibGenerating.sol#422)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in ShibGenerating.updateUniswapV2Router(address) (ShibGenerating.sol#157-164):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (ShibGenerating.sol#161-162)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (ShibGenerating.sol#163)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ShibGenerating._setAutomatedMarketMakerPair(address,bool) (ShibGenerating.sol#231-240):
External calls:
- dividendTracker.excludeFromDividends(pair) (ShibGenerating.sol#236)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (ShibGenerating.sol#239)
Reentrancy in ShibGenerating._transfer(address,address,uint256) (ShibGenerating.sol#322-393):
External calls:
- swapAndSendToFee(marketingTokens) (ShibGenerating.sol#349)
- IERC20(ShibaInu).transfer(_marketingWalletAddress,newBalance) (ShibGenerating.sol#401)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#459-465)
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#439-445)
External calls sending eth:
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- SwapAndLiquify(half,newBalance,otherHalf) (ShibGenerating.sol#424)
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
Reentrancy in ShibGenerating._transfer(address,address,uint256) (ShibGenerating.sol#322-393):
External calls:
- swapAndSendToFee(marketingTokens) (ShibGenerating.sol#349)
- IERC20(ShibaInu).transfer(_marketingWalletAddress,newBalance) (ShibGenerating.sol#401)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#459-465)
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#439-445)
- swapAndSendDividends(sellTokens) (ShibGenerating.sol#355)
- success = IERC20(ShibaInu).transfer(address(dividendTracker),dividends) (ShibGenerating.sol#488)
- dividendTracker.distributeShibaInuDividends(dividends) (ShibGenerating.sol#491)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#459-465)
External calls sending eth:
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndSendDividends(sellTokens) (ShibGenerating.sol#355)
- SendDividends(tokens,dividends) (ShibGenerating.sol#492)
- swapAndSendDividends(sellTokens) (ShibGenerating.sol#355)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,to,amount) (ShibGenerating.sol#378)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,address(this),fees) (ShibGenerating.sol#375)
Reentrancy in ShibGenerating._transfer(address,address,uint256) (ShibGenerating.sol#322-393):
External calls:
- swapAndSendToFee(marketingTokens) (ShibGenerating.sol#349)
- IERC20(ShibaInu).transfer(_marketingWalletAddress,newBalance) (ShibGenerating.sol#401)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#459-465)
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#439-445)
- swapAndSendDividends(sellTokens) (ShibGenerating.sol#355)
- success = IERC20(ShibaInu).transfer(address(dividendTracker),dividends) (ShibGenerating.sol#488)
- dividendTracker.distributeShibaInuDividends(dividends) (ShibGenerating.sol#491)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#459-465)
- dividendTracker.setBalance(address(from),balanceOf(from)) (ShibGenerating.sol#380)
- dividendTracker.setBalance(address(to),balanceOf(to)) (ShibGenerating.sol#381)
- dividendTracker.process(gas) (ShibGenerating.sol#386-391)
External calls sending eth:
- swapAndLiquify(swapTokens) (ShibGenerating.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (ShibGenerating.sol#387)
Reentrancy in ShibGenerating.constructor() (ShibGenerating.sol#100-134):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (ShibGenerating.sol#109-110)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (ShibGenerating.sol#115)
- dividendTracker.excludeFromDividends(pair) (ShibGenerating.sol#236)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (ShibGenerating.sol#239)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (ShibGenerating.sol#115)
Reentrancy in ShibGenerating.constructor() (ShibGenerating.sol#100-134):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (ShibGenerating.sol#109-110)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (ShibGenerating.sol#115)
- dividendTracker.excludeFromDividends(pair) (ShibGenerating.sol#236)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (ShibGenerating.sol#118)
- dividendTracker.excludeFromDividends(address(this)) (ShibGenerating.sol#119)
- dividendTracker.excludeFromDividends(owner()) (ShibGenerating.sol#120)
- dividendTracker.excludeFromDividends(deadWallet) (ShibGenerating.sol#121)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (ShibGenerating.sol#122)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (ShibGenerating.sol#170)
- excludeFromFees(owner(),true) (ShibGenerating.sol#125)
- ExcludeFromFees(account,excluded) (ShibGenerating.sol#170)
- excludeFromFees(address(this),true) (ShibGenerating.sol#127)
- ExcludeFromFees(account,excluded) (ShibGenerating.sol#170)
- excludeFromFees(_marketingWalletAddress,true) (ShibGenerating.sol#126)
- Transfer(address(0),account,amount) (ERC20.sol#242)
- _mint(owner(),_tTotal) (ShibGenerating.sol#133)
Reentrancy in ShibGeneratingDividendTracker.processAccount(address,bool) (ShibGenerating.sol#693-703):
External calls:
- amount = _withdrawDividendOfUser(account) (ShibGenerating.sol#694)
- success = IERC20(ShibaInu).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
Event emitted after the call(s):
- Claim(account,amount,automatic) (ShibGenerating.sol#698)
Reentrancy in ShibGenerating.processDividendTracker(uint256) (ShibGenerating.sol#304-307):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (ShibGenerating.sol#305)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (ShibGenerating.sol#306)
Reentrancy in ShibGenerating.swapAndLiquify(uint256) (ShibGenerating.sol#404-425):
External calls:
- swapTokensForEth(half) (ShibGenerating.sol#416)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#439-445)
- addLiquidity(otherHalf,newBalance) (ShibGenerating.sol#422)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (ShibGenerating.sol#422)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ShibGenerating.sol#474-481)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- addLiquidity(otherHalf,newBalance) (ShibGenerating.sol#422)
- SwapAndLiquify(half,newBalance,otherHalf) (ShibGenerating.sol#424)
Reentrancy in ShibGenerating.swapAndSendDividends(uint256) (ShibGenerating.sol#485-494):
External calls:
- swapTokensForShibaInu(tokens) (ShibGenerating.sol#486)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShibGenerating.sol#459-465)
- success = IERC20(ShibaInu).transfer(address(dividendTracker),dividends) (ShibGenerating.sol#488)
- dividendTracker.distributeShibaInuDividends(dividends) (ShibGenerating.sol#491)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (ShibGenerating.sol#492)
Reentrancy in ShibGenerating.updateDividendTracker(address) (ShibGenerating.sol#140-155):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (ShibGenerating.sol#147)
- newDividendTracker.excludeFromDividends(address(this)) (ShibGenerating.sol#148)
- newDividendTracker.excludeFromDividends(owner()) (ShibGenerating.sol#149)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (ShibGenerating.sol#150)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (ShibGenerating.sol#152)
Apply the check-effects-interactions pattern.

Additional information: link

ShibGeneratingDividendTracker.getAccount(address) (ShibGenerating.sol#557-600) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (ShibGenerating.sol#597-599)
ShibGeneratingDividendTracker.canAutoClaim(uint256) (ShibGenerating.sol#621-627) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (ShibGenerating.sol#622)
- block.timestamp.sub(lastClaimTime) >= claimWait (ShibGenerating.sol#626)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (Context.sol#20-23) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (DividendPayingToken.sol#132-138) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#126-128) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#142-145) is never used and should be removed
SafeMathInt.abs(int256) (SafeMathInt.sol#82-85) is never used and should be removed
SafeMathInt.div(int256,int256) (SafeMathInt.sol#53-59) is never used and should be removed
SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

ShibGenerating._maxTxAmount (ShibGenerating.sol#42) is set pre-construction with a non-constant function or state variable:
- _tTotal / 100
ShibGenerating._maxRxAmount (ShibGenerating.sol#43) is set pre-construction with a non-constant function or state variable:
- _tTotal / 100
ShibGenerating.totalFees (ShibGenerating.sol#51) is set pre-construction with a non-constant function or state variable:
- ShibaInuRewardsFee.add(liquidityFee).add(marketingFee)
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version^0.6.2 (Context.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingToken.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenInterface.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenOptionalInterface.sol#3) allows old versions
Pragma version^0.6.2 (ERC20.sol#3) allows old versions
Pragma version^0.6.2 (IERC20.sol#3) allows old versions
Pragma version^0.6.2 (IERC20Metadata.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Factory.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Pair.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Router.sol#3) allows old versions
Pragma version^0.6.2 (IterableMapping.sol#2) allows old versions
Pragma version^0.6.2 (Ownable.sol#1) allows old versions
Pragma version^0.6.2 (SafeMath.sol#3) allows old versions
Pragma version^0.6.2 (SafeMathInt.sol#28) allows old versions
Pragma version^0.6.2 (SafeMathUint.sol#3) allows old versions
Pragma version^0.6.2 (ShibGenerating.sol#14) 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

Parameter DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#98) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#105) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#112) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) is not in mixedCase
Variable DividendPayingToken.ShibaInu (DividendPayingToken.sol#24) is not in mixedCase
Constant DividendPayingToken.magnitude (DividendPayingToken.sol#30) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (IUniswapV2Pair.sol#20) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (IUniswapV2Pair.sol#21) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (IUniswapV2Pair.sol#38) is not in mixedCase
Function IUniswapV2Router01.WETH() (IUniswapV2Router.sol#7) is not in mixedCase
Variable ShibGenerating.ShibaInu (ShibGenerating.sol#37) is not in mixedCase
Variable ShibGenerating._tTotal (ShibGenerating.sol#41) is not in mixedCase
Variable ShibGenerating._maxTxAmount (ShibGenerating.sol#42) is not in mixedCase
Variable ShibGenerating._maxRxAmount (ShibGenerating.sol#43) is not in mixedCase
Variable ShibGenerating._isDevWallet (ShibGenerating.sol#45) is not in mixedCase
Variable ShibGenerating.ShibaInuRewardsFee (ShibGenerating.sol#47) is not in mixedCase
Variable ShibGenerating._marketingWalletAddress (ShibGenerating.sol#53) is not in mixedCase
Parameter ShibGeneratingDividendTracker.getAccount(address)._account (ShibGenerating.sol#557) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-25)
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 (IUniswapV2Router.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (IUniswapV2Router.sol#13)
Variable ShibGenerating._maxRxAmount (ShibGenerating.sol#43) is too similar to ShibGenerating._maxTxAmount (ShibGenerating.sol#42)
Variable ShibGenerating.setMaxRxPercent(uint256).maxRxPercent (ShibGenerating.sol#199) is too similar to ShibGenerating.setMaxTxPercent(uint256).maxTxPercent (ShibGenerating.sol#194)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#77) is too similar to ShibGeneratingDividendTracker.getAccount(address).withdrawableDividends (ShibGenerating.sol#562)
Prevent variables from having similar names.

Additional information: link

ShibGenerating.updateGasForProcessing(uint256) (ShibGenerating.sol#243-248) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,ShibGenerating: gasForProcessing must be between 200,000 and 500,000) (ShibGenerating.sol#244)
ShibGenerating.slitherConstructorVariables() (ShibGenerating.sol#25-495) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (ShibGenerating.sol#35)
ShibGenerating.slitherConstructorVariables() (ShibGenerating.sol#25-495) uses literals with too many digits:
- swapTokensAtAmount = 50000000 * (10 ** 18) (ShibGenerating.sol#39)
ShibGenerating.slitherConstructorVariables() (ShibGenerating.sol#25-495) uses literals with too many digits:
- _tTotal = 25000000000 * (10 ** 18) (ShibGenerating.sol#41)
ShibGenerating.slitherConstructorVariables() (ShibGenerating.sol#25-495) uses literals with too many digits:
- gasForProcessing = 300000 (ShibGenerating.sol#57)
ShibGeneratingDividendTracker.getAccountAtIndex(uint256) (ShibGenerating.sol#602-619) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (ShibGenerating.sol#613)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-93)
Remove unused state variables.

Additional information: link

ShibGenerating._tTotal (ShibGenerating.sol#41) should be constant
ShibGenerating.deadWallet (ShibGenerating.sol#35) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

distributeShibaInuDividends(uint256) should be declared external:
- DividendPayingToken.distributeShibaInuDividends(uint256) (DividendPayingToken.sol#55-66)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (DividendPayingToken.sol#70-72)
- ShibGeneratingDividendTracker.withdrawDividend() (ShibGenerating.sol#526-528)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (DividendPayingToken.sol#98-100)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (DividendPayingToken.sol#112-114)
name() should be declared external:
- ERC20.name() (ERC20.sol#63-65)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#71-73)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#88-90)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#114-117)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#122-124)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#133-136)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#151-159)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#173-176)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#192-195)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (IterableMapping.sol#13-15)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (IterableMapping.sol#17-22)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (IterableMapping.sol#24-26)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (IterableMapping.sol#30-32)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#43-46)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
updateDividendTracker(address) should be declared external:
- ShibGenerating.updateDividendTracker(address) (ShibGenerating.sol#140-155)
updateUniswapV2Router(address) should be declared external:
- ShibGenerating.updateUniswapV2Router(address) (ShibGenerating.sol#157-164)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- ShibGenerating.excludeMultipleAccountsFromFees(address[],bool) (ShibGenerating.sol#173-179)
setMaxTxPercent(uint256) should be declared external:
- ShibGenerating.setMaxTxPercent(uint256) (ShibGenerating.sol#194-197)
setMaxRxPercent(uint256) should be declared external:
- ShibGenerating.setMaxRxPercent(uint256) (ShibGenerating.sol#199-202)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- ShibGenerating.setAutomatedMarketMakerPair(address,bool) (ShibGenerating.sol#220-224)
updateGasForProcessing(uint256) should be declared external:
- ShibGenerating.updateGasForProcessing(uint256) (ShibGenerating.sol#243-248)
isExcludedFromFees(address) should be declared external:
- ShibGenerating.isExcludedFromFees(address) (ShibGenerating.sol#262-264)
withdrawableDividendOf(address) should be declared external:
- ShibGenerating.withdrawableDividendOf(address) (ShibGenerating.sol#266-268)
dividendTokenBalanceOf(address) should be declared external:
- ShibGenerating.dividendTokenBalanceOf(address) (ShibGenerating.sol#270-272)
getAccountAtIndex(uint256) should be declared external:
- ShibGeneratingDividendTracker.getAccountAtIndex(uint256) (ShibGenerating.sol#602-619)
process(uint256) should be declared external:
- ShibGeneratingDividendTracker.process(uint256) (ShibGenerating.sol#646-691)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.

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


Token is deployed only at one blockchain


Token has only one trading pair


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 CoinHunt

Additional information: link


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 price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for SHG