shera Token Logo

SHR [shera] Token

About SHR

Listings

Token 4 years
CoinGecko 4 years
CoinMarketCap 4 years
[CoinGecko] alert: Shera has recently migrated from their old contract to a new one. Visit this post for more information and visit the new token page here.
white paper

Shira Token is a pioneering idea in the field of digital currencies along with NFT and many games. There will be an Arab academy in the Middle East to learn digital trading and create digital currencies in the right and effective way and provide a fertile environment for free trading in cryptocurrencies

Social

Laser Scorebeta Last Audit: 20 February 2022

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

shera.swapAndLiquify(uint256) (#2117-2155) sends eth to arbitrary user
Dangerous calls:
- marketingWallet.transfer(marketingAmount) (#2142)
- developmentAndDonationWallet.transfer(buybackAmount) (#2145)
shera.addLiquidity(uint256,uint256) (#2189-2201) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2192-2199)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in shera._transfer(address,address,uint256) (#2059-2115):
External calls:
- swapAndLiquify(contractTokenBalance) (#2082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2192-2199)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2170-2176)
- (success) = address(dividendTracker).call{value: dividends}() (#2148)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2192-2199)
- marketingWallet.transfer(marketingAmount) (#2142)
- developmentAndDonationWallet.transfer(buybackAmount) (#2145)
- (success) = address(dividendTracker).call{value: dividends}() (#2148)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2092)
- _balances[sender] = senderBalance - amount (#1032)
- _balances[recipient] += amount (#1034)
- super._transfer(from,deadWallet,burnShare) (#2096)
- _balances[sender] = senderBalance - amount (#1032)
- _balances[recipient] += amount (#1034)
- super._transfer(from,to,amount) (#2100)
- _balances[sender] = senderBalance - amount (#1032)
- _balances[recipient] += amount (#1034)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1421-1437):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1426)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1429)
Apply the check-effects-interactions pattern.

Additional information: link

SafeToken.withdraw(address,uint256) (#1739-1742) ignores return value by IERC20(_token).transfer(safeManager,_amount) (#1741)
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.

shera.deadWallet (#1786) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

shera.swapAndLiquify(uint256) (#2117-2155) performs a multiplication on the result of a division:
-tokensToAddLiquidityWith = contractTokenBalance.div(totalFees.mul(2)).mul(liquidityFee) (#2120)
shera.swapAndLiquify(uint256) (#2117-2155) performs a multiplication on the result of a division:
-marketingAmount = deltaBalance.sub(bnbToAddLiquidityWith).div(totalFees.sub(liquidityFee).sub(developmentFee)).mul(marketingFee) (#2141)
shera.swapAndLiquify(uint256) (#2117-2155) performs a multiplication on the result of a division:
-buybackAmount = deltaBalance.sub(bnbToAddLiquidityWith).div(totalFees.sub(liquidityFee).sub(marketingFee)).mul(developmentFee) (#2144)
Consider ordering multiplication before division.

Additional information: link

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

shera.claim() (#2037-2039) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#2038)
shera._transfer(address,address,uint256) (#2059-2115) ignores return value by dividendTracker.process(gas) (#2108-2113)
shera.addLiquidity(uint256,uint256) (#2189-2201) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2192-2199)
Ensure that all the return values of the function calls are used.

Additional information: link

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

Additional information: link

shera.setFee(uint256,uint256,uint256,uint256,uint256) (#1847-1855) should emit an event for:
- liquidityFee = _liquidityFee (#1849)
- marketingFee = _marketingFee (#1850)
- developmentFee = _developmentFee (#1851)
- burnFee = _burnFee (#1852)
- totalFees = BNBRewardsFee.add(liquidityFee).add(marketingFee).add(developmentFee).add(burnFee) (#1854)
shera.setSWapToensAtAmount(uint256) (#1956-1958) should emit an event for:
- swapTokensAtAmount = _newAmount (#1957)
Emit an event for critical parameter changes.

Additional information: link

SafeToken.setSafeManager(address)._safeManager (#1735) lacks a zero-check on :
- safeManager = _safeManager (#1736)
shera.setMarketingWallet(address)._newMarketingWallet (#1857) lacks a zero-check on :
- marketingWallet = _newMarketingWallet (#1858)
shera.setdevelopmentAndDonationWallet(address)._newBuybakWallet (#1861) lacks a zero-check on :
- developmentAndDonationWallet = _newBuybakWallet (#1862)
Check that the address is not zero.

Additional information: link

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

Additional information: link

Variable 'shera._transfer(address,address,uint256).lastProcessedIndex (#2108)' in shera._transfer(address,address,uint256) (#2059-2115) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2109)
Variable 'shera._transfer(address,address,uint256).claims (#2108)' in shera._transfer(address,address,uint256) (#2059-2115) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2109)
Variable 'shera._transfer(address,address,uint256).iterations (#2108)' in shera._transfer(address,address,uint256) (#2059-2115) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2109)
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 shera.constructor() (#1865-1913):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1880-1881)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1884)
- uniswapV2Router = _uniswapV2Router (#1883)
Reentrancy in shera.constructor() (#1865-1913):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1880-1881)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1886)
- dividendTracker.excludeFromDividends(pair) (#1965)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1889)
- dividendTracker.excludeFromDividends(address(this)) (#1890)
- dividendTracker.excludeFromDividends(owner()) (#1891)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1892)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1893)
State variables written after the call(s):
- _mint(owner(),2000000000000000000 * (10 ** 9)) (#1912)
- _balances[account] += amount (#1056)
- excludeFromFees(owner(),true) (#1896)
- _isExcludedFromFees[account] = excluded (#1927)
- excludeFromFees(marketingWallet,true) (#1897)
- _isExcludedFromFees[account] = excluded (#1927)
- excludeFromFees(developmentAndDonationWallet,true) (#1898)
- _isExcludedFromFees[account] = excluded (#1927)
- excludeFromFees(address(this),true) (#1899)
- _isExcludedFromFees[account] = excluded (#1927)
- _isExcludedFromMaxTx[owner()] = true (#1902)
- _isExcludedFromMaxTx[address(this)] = true (#1903)
- _isExcludedFromMaxTx[marketingWallet] = true (#1904)
- _isExcludedFromMaxTx[developmentAndDonationWallet] = true (#1905)
- _mint(owner(),2000000000000000000 * (10 ** 9)) (#1912)
- _totalSupply += amount (#1055)
Reentrancy in sheraDividendTracker.processAccount(address,bool) (#1715-1725):
External calls:
- amount = _withdrawDividendOfUser(account) (#1716)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1426)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1719)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in shera._setAutomatedMarketMakerPair(address,bool) (#1960-1969):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1965)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1968)
Reentrancy in shera._transfer(address,address,uint256) (#2059-2115):
External calls:
- swapAndLiquify(contractTokenBalance) (#2082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2192-2199)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2170-2176)
- (success) = address(dividendTracker).call{value: dividends}() (#2148)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2192-2199)
- marketingWallet.transfer(marketingAmount) (#2142)
- developmentAndDonationWallet.transfer(buybackAmount) (#2145)
- (success) = address(dividendTracker).call{value: dividends}() (#2148)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#1036)
- super._transfer(from,deadWallet,burnShare) (#2096)
- Transfer(sender,recipient,amount) (#1036)
- super._transfer(from,address(this),fees) (#2092)
- Transfer(sender,recipient,amount) (#1036)
- super._transfer(from,to,amount) (#2100)
Reentrancy in shera._transfer(address,address,uint256) (#2059-2115):
External calls:
- swapAndLiquify(contractTokenBalance) (#2082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2192-2199)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2170-2176)
- (success) = address(dividendTracker).call{value: dividends}() (#2148)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#2102)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#2103)
- dividendTracker.process(gas) (#2108-2113)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2192-2199)
- marketingWallet.transfer(marketingAmount) (#2142)
- developmentAndDonationWallet.transfer(buybackAmount) (#2145)
- (success) = address(dividendTracker).call{value: dividends}() (#2148)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2109)
Reentrancy in shera.constructor() (#1865-1913):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1880-1881)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1886)
- dividendTracker.excludeFromDividends(pair) (#1965)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1968)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1886)
Reentrancy in shera.constructor() (#1865-1913):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1880-1881)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1886)
- dividendTracker.excludeFromDividends(pair) (#1965)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1889)
- dividendTracker.excludeFromDividends(address(this)) (#1890)
- dividendTracker.excludeFromDividends(owner()) (#1891)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1892)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1893)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1929)
- excludeFromFees(developmentAndDonationWallet,true) (#1898)
- ExcludeFromFees(account,excluded) (#1929)
- excludeFromFees(marketingWallet,true) (#1897)
- ExcludeFromFees(account,excluded) (#1929)
- excludeFromFees(address(this),true) (#1899)
- ExcludeFromFees(account,excluded) (#1929)
- excludeFromFees(owner(),true) (#1896)
- Transfer(address(0),account,amount) (#1057)
- _mint(owner(),2000000000000000000 * (10 ** 9)) (#1912)
Reentrancy in sheraDividendTracker.processAccount(address,bool) (#1715-1725):
External calls:
- amount = _withdrawDividendOfUser(account) (#1716)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1426)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1720)
Reentrancy in shera.processDividendTracker(uint256) (#2032-2035):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#2033)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#2034)
Reentrancy in shera.swapAndLiquify(uint256) (#2117-2155):
External calls:
- swapTokensForBnb(toSwap,address(this)) (#2130)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2170-2176)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2192-2199)
- (success) = address(dividendTracker).call{value: dividends}() (#2148)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2192-2199)
- marketingWallet.transfer(marketingAmount) (#2142)
- developmentAndDonationWallet.transfer(buybackAmount) (#2145)
- (success) = address(dividendTracker).call{value: dividends}() (#2148)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2151)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2154)
Apply the check-effects-interactions pattern.

Additional information: link

sheraDividendTracker.getAccount(address) (#1579-1622) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1619-1621)
sheraDividendTracker.canAutoClaim(uint256) (#1643-1649) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1644)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1648)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#704-706) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1477-1483) is never used and should be removed
SafeCast.toInt128(int256) (#598-601) is never used and should be removed
SafeCast.toInt16(int256) (#652-655) is never used and should be removed
SafeCast.toInt32(int256) (#634-637) is never used and should be removed
SafeCast.toInt64(int256) (#616-619) is never used and should be removed
SafeCast.toInt8(int256) (#670-673) is never used and should be removed
SafeCast.toUint128(uint256) (#493-496) is never used and should be removed
SafeCast.toUint16(uint256) (#553-556) is never used and should be removed
SafeCast.toUint224(uint256) (#478-481) is never used and should be removed
SafeCast.toUint32(uint256) (#538-541) is never used and should be removed
SafeCast.toUint64(uint256) (#523-526) is never used and should be removed
SafeCast.toUint8(uint256) (#568-571) is never used and should be removed
SafeCast.toUint96(uint256) (#508-511) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#414-423) is never used and should be removed
SafeMath.mod(uint256,uint256) (#374-376) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#440-449) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#391-400) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#245-251) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#287-292) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#299-304) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#270-280) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#258-263) is never used and should be removed
SignedSafeMath.div(int256,int256) (#196-198) is never used and should be removed
SignedSafeMath.mul(int256,int256) (#182-184) is never used and should be removed
shera.swapAndSendBNBToBuybak(uint256) (#2184-2186) is never used and should be removed
shera.swapAndSendBNBToMarketing(uint256) (#2180-2182) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#12) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in DividendPayingToken._withdrawDividendOfUser(address) (#1421-1437):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1426)
Low level call in shera.swapAndLiquify(uint256) (#2117-2155):
- (success) = address(dividendTracker).call{value: dividends}() (#2148)
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() (#16) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1443) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1450) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1457) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1467) is not in mixedCase
Constant DividendPayingToken.magnitude (#1358) is not in UPPER_CASE_WITH_UNDERSCORES
Contract sheraDividendTracker (#1519-1726) is not in CapWords
Parameter sheraDividendTracker.getAccount(address)._account (#1579) is not in mixedCase
Parameter SafeToken.setSafeManager(address)._safeManager (#1735) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._token (#1739) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._amount (#1739) is not in mixedCase
Parameter SafeToken.withdrawBNB(uint256)._amount (#1744) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#1767) is not in mixedCase
Contract shera (#1774-2204) is not in CapWords
Parameter shera.setFee(uint256,uint256,uint256,uint256,uint256)._bnbRewardFee (#1847) is not in mixedCase
Parameter shera.setFee(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#1847) is not in mixedCase
Parameter shera.setFee(uint256,uint256,uint256,uint256,uint256)._marketingFee (#1847) is not in mixedCase
Parameter shera.setFee(uint256,uint256,uint256,uint256,uint256)._developmentFee (#1847) is not in mixedCase
Parameter shera.setFee(uint256,uint256,uint256,uint256,uint256)._burnFee (#1847) is not in mixedCase
Parameter shera.setMarketingWallet(address)._newMarketingWallet (#1857) is not in mixedCase
Parameter shera.setdevelopmentAndDonationWallet(address)._newBuybakWallet (#1861) is not in mixedCase
Parameter shera.setExcludeFromMaxTx(address,bool)._address (#1932) is not in mixedCase
Parameter shera.setExcludeFromAll(address)._address (#1936) is not in mixedCase
Parameter shera.setSWapToensAtAmount(uint256)._newAmount (#1956) is not in mixedCase
Parameter shera.setSwapAndLiquifyEnabled(bool)._enabled (#2054) is not in mixedCase
Parameter shera.swapTokensForBnb(uint256,address)._to (#2157) is not in mixedCase
Variable shera.BNBRewardsFee (#1790) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in shera._transfer(address,address,uint256) (#2059-2115):
External calls:
- swapAndLiquify(contractTokenBalance) (#2082)
- marketingWallet.transfer(marketingAmount) (#2142)
- developmentAndDonationWallet.transfer(buybackAmount) (#2145)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2082)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2192-2199)
- marketingWallet.transfer(marketingAmount) (#2142)
- developmentAndDonationWallet.transfer(buybackAmount) (#2145)
- (success) = address(dividendTracker).call{value: dividends}() (#2148)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2092)
- _balances[sender] = senderBalance - amount (#1032)
- _balances[recipient] += amount (#1034)
- super._transfer(from,deadWallet,burnShare) (#2096)
- _balances[sender] = senderBalance - amount (#1032)
- _balances[recipient] += amount (#1034)
- super._transfer(from,to,amount) (#2100)
- _balances[sender] = senderBalance - amount (#1032)
- _balances[recipient] += amount (#1034)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2109)
- Transfer(sender,recipient,amount) (#1036)
- super._transfer(from,address(this),fees) (#2092)
- Transfer(sender,recipient,amount) (#1036)
- super._transfer(from,to,amount) (#2100)
- Transfer(sender,recipient,amount) (#1036)
- super._transfer(from,deadWallet,burnShare) (#2096)
Reentrancy in shera.swapAndLiquify(uint256) (#2117-2155):
External calls:
- marketingWallet.transfer(marketingAmount) (#2142)
- developmentAndDonationWallet.transfer(buybackAmount) (#2145)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2192-2199)
- marketingWallet.transfer(marketingAmount) (#2142)
- developmentAndDonationWallet.transfer(buybackAmount) (#2145)
- (success) = address(dividendTracker).call{value: dividends}() (#2148)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2151)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2154)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#21) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#22)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1422) is too similar to sheraDividendTracker.getAccount(address).withdrawableDividends (#1584)
Variable shera.BNBRewardsFee (#1790) is too similar to shera.setFee(uint256,uint256,uint256,uint256,uint256)._bnbRewardFee (#1847)
Prevent variables from having similar names.

Additional information: link

sheraDividendTracker.constructor() (#1539-1542) uses literals with too many digits:
- minimumTokenBalanceForDividends = 100000 * (10 ** 9) (#1541)
sheraDividendTracker.getAccountAtIndex(uint256) (#1624-1641) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1635)
shera.constructor() (#1865-1913) uses literals with too many digits:
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1893)
shera.constructor() (#1865-1913) uses literals with too many digits:
- _mint(owner(),2000000000000000000 * (10 ** 9)) (#1912)
shera.updateGasForProcessing(uint256) (#1971-1976) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,shera: gasForProcessing must be between 200,000 and 500,000) (#1972)
shera.slitherConstructorVariables() (#1774-2204) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#1786)
shera.slitherConstructorVariables() (#1774-2204) uses literals with too many digits:
- swapTokensAtAmount = 2000000000000000 * (10 ** 9) (#1788)
shera.slitherConstructorVariables() (#1774-2204) uses literals with too many digits:
- gasForProcessing = 300000 (#1800)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

name() should be declared external:
- ERC20.name() (#860-862)
symbol() should be declared external:
- ERC20.symbol() (#868-870)
decimals() should be declared external:
- ERC20.decimals() (#885-887)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#911-914)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#930-933)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#948-962)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#976-979)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#995-1003)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1202-1204)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1210-1213)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#1231-1233)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#1235-1240)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#1242-1244)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1248-1250)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1415-1417)
- sheraDividendTracker.withdrawDividend() (#1548-1550)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1443-1445)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1457-1459)
getAccountAtIndex(uint256) should be declared external:
- sheraDividendTracker.getAccountAtIndex(uint256) (#1624-1641)
process(uint256) should be declared external:
- sheraDividendTracker.process(uint256) (#1668-1713)
setSafeManager(address) should be declared external:
- SafeToken.setSafeManager(address) (#1735-1737)
setFee(uint256,uint256,uint256,uint256,uint256) should be declared external:
- shera.setFee(uint256,uint256,uint256,uint256,uint256) (#1847-1855)
setMarketingWallet(address) should be declared external:
- shera.setMarketingWallet(address) (#1857-1859)
setdevelopmentAndDonationWallet(address) should be declared external:
- shera.setdevelopmentAndDonationWallet(address) (#1861-1863)
updateUniswapV2Router(address) should be declared external:
- shera.updateUniswapV2Router(address) (#1919-1923)
setExcludeFromMaxTx(address,bool) should be declared external:
- shera.setExcludeFromMaxTx(address,bool) (#1932-1934)
setExcludeFromAll(address) should be declared external:
- shera.setExcludeFromAll(address) (#1936-1940)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- shera.excludeMultipleAccountsFromFees(address[],bool) (#1942-1948)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- shera.setAutomatedMarketMakerPair(address,bool) (#1950-1954)
setSWapToensAtAmount(uint256) should be declared external:
- shera.setSWapToensAtAmount(uint256) (#1956-1958)
updateGasForProcessing(uint256) should be declared external:
- shera.updateGasForProcessing(uint256) (#1971-1976)
isExcludedFromFees(address) should be declared external:
- shera.isExcludedFromFees(address) (#1990-1992)
isExcludedFromMaxTx(address) should be declared external:
- shera.isExcludedFromMaxTx(address) (#1994-1996)
withdrawableDividendOf(address) should be declared external:
- shera.withdrawableDividendOf(address) (#1998-2000)
dividendTokenBalanceOf(address) should be declared external:
- shera.dividendTokenBalanceOf(address) (#2002-2004)
setSwapAndLiquifyEnabled(bool) should be declared external:
- shera.setSwapAndLiquifyEnabled(bool) (#2054-2057)
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 14% buy tax and 14% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Token is deployed only at one blockchain


Twitter account has relatively few followers


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


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


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


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for SHR

News for SHR