SHIRO INU Token Logo

SHIR [SHIRO INU] Token

About SHIR

Listings

Not Found
Token 2 years

SHIRO INU will be one of the best & successful MEME, DeFi, NFT token on the crypto market with best Markting & promising token. DO NOT MISS IT.

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...)

Reentrancy in SHIROINU._transfer(address,address,uint256) (#1707-1783):
External calls:
- swapAndLiquify(contractTokenBalance) (#1743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2041-2053)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
State variables written after the call(s):
- transferAmount = collectFee(sender,amount,rate) (#1751)
- _reflectionBalance[marketingAddress] = _reflectionBalance[marketingAddress].add(marketingFee.mul(rate)) (#1815)
- _reflectionBalance[teamAddress] = _reflectionBalance[teamAddress].add(marketingFee_scope_0.mul(rate)) (#1835)
- _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liquidityFee.mul(rate)) (#1857)
- _reflectionBalance[DEAD] = _reflectionBalance[DEAD].add(burnFee.mul(rate)) (#1883)
- _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)) (#1759)
- _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)) (#1761)
- transferAmount = collectFee(sender,amount,rate) (#1751)
- _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)) (#1799)
- _reflectionTotal = _reflectionTotal.sub(burnFee.mul(rate)) (#1891)
- transferAmount = collectFee(sender,amount,rate) (#1751)
- _tokenBalance[marketingAddress] = _tokenBalance[marketingAddress].add(marketingFee) (#1819)
- _tokenBalance[teamAddress] = _tokenBalance[teamAddress].add(marketingFee_scope_0) (#1839)
- _tokenBalance[address(this)] = _tokenBalance[address(this)].add(liquidityFee) (#1861)
- _tokenBalance[DEAD] = _tokenBalance[DEAD].add(burnFee) (#1887)
- _tokenBalance[sender] = _tokenBalance[sender].sub(amount) (#1769)
- _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount) (#1775)
- transferAmount = collectFee(sender,amount,rate) (#1751)
- _tokenTotal = _tokenTotal.sub(burnFee) (#1881)
Apply the check-effects-interactions pattern.

Additional information: link

SHIROINU.includeAccount(address) (#1657-1679) has costly operations inside a loop:
- _excluded.pop() (#1671)
Use a local variable to hold the loop computation result.

Additional information: link

SHIROINU.collectFee(address,uint256,uint256) (#1787-1905) performs a multiplication on the result of a division:
-taxFee = amount.mul(_taxFee).div(10 ** (_feeDecimal + 2)) (#1795)
-_reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)) (#1799)
SHIROINU.collectFee(address,uint256,uint256) (#1787-1905) performs a multiplication on the result of a division:
-marketingFee = amount.mul(_marketingFee).div(10 ** (_feeDecimal + 2)) (#1811)
-_reflectionBalance[marketingAddress] = _reflectionBalance[marketingAddress].add(marketingFee.mul(rate)) (#1815)
SHIROINU.collectFee(address,uint256,uint256) (#1787-1905) performs a multiplication on the result of a division:
-marketingFee_scope_0 = amount.mul(_teamFee).div(10 ** (_feeDecimal + 2)) (#1831)
-_reflectionBalance[teamAddress] = _reflectionBalance[teamAddress].add(marketingFee_scope_0.mul(rate)) (#1835)
SHIROINU.collectFee(address,uint256,uint256) (#1787-1905) performs a multiplication on the result of a division:
-liquidityFee = amount.mul(_liquidityFee).div(10 ** (_feeDecimal + 2)) (#1853)
-_reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liquidityFee.mul(rate)) (#1857)
SHIROINU.collectFee(address,uint256,uint256) (#1787-1905) performs a multiplication on the result of a division:
-burnFee = amount.mul(_burnFee).div(10 ** (_feeDecimal + 2)) (#1877)
-_reflectionBalance[DEAD] = _reflectionBalance[DEAD].add(burnFee.mul(rate)) (#1883)
SHIROINU.collectFee(address,uint256,uint256) (#1787-1905) performs a multiplication on the result of a division:
-burnFee = amount.mul(_burnFee).div(10 ** (_feeDecimal + 2)) (#1877)
-_reflectionTotal = _reflectionTotal.sub(burnFee.mul(rate)) (#1891)
Consider ordering multiplication before division.

Additional information: link

SHIROINU.addLiquidity(uint256,uint256) (#1955-1981) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
Ensure that all the return values of the function calls are used.

Additional information: link

SHIROINU.allowance(address,address).owner (#1443) shadows:
- Ownable.owner() (#1001-1005) (function)
SHIROINU._approve(address,address,uint256).owner (#1685) shadows:
- Ownable.owner() (#1001-1005) (function)
Rename the local variables that shadow another component.

Additional information: link

SHIROINU.setTaxFee(uint256) (#2097-2101) should emit an event for:
- _taxFee = fee (#2099)
SHIROINU.setMarketingFee(uint256) (#2105-2109) should emit an event for:
- _marketingFee = fee (#2107)
SHIROINU.setTeamFee(uint256) (#2113-2117) should emit an event for:
- _teamFee = fee (#2115)
SHIROINU.setLiquidityFee(uint256) (#2137-2141) should emit an event for:
- _liquidityFee = fee (#2139)
SHIROINU.setBurnFee(uint256) (#2145-2149) should emit an event for:
- _burnFee = fee (#2147)
SHIROINU.setMaxTxAmount(uint256) (#2177-2181) should emit an event for:
- maxTxAmount = amount (#2179)
SHIROINU.setMinTokensBeforeSwap(uint256) (#2183-2187) should emit an event for:
- minTokensBeforeSwap = amount (#2185)
Emit an event for critical parameter changes.

Additional information: link

SHIROINU.setPair(address).pair (#2059) lacks a zero-check on :
- uniswapV2Pair = pair (#2061)
SHIROINU.setMarketingAddress(address).add (#2121) lacks a zero-check on :
- marketingAddress = add (#2123)
SHIROINU.setTeamAddress(address)._address (#2129) lacks a zero-check on :
- teamAddress = _address (#2131)
Check that the address is not zero.

Additional information: link

Reentrancy in SHIROINU._transfer(address,address,uint256) (#1707-1783):
External calls:
- swapAndLiquify(contractTokenBalance) (#1743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2041-2053)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
State variables written after the call(s):
- transferAmount = collectFee(sender,amount,rate) (#1751)
- _burnFeeTotal = _burnFeeTotal.add(burnFee) (#1893)
- transferAmount = collectFee(sender,amount,rate) (#1751)
- _liquidityFeeTotal = _liquidityFeeTotal.add(liquidityFee) (#1865)
- transferAmount = collectFee(sender,amount,rate) (#1751)
- _taxFeeTotal = _taxFeeTotal.add(taxFee) (#1801)
Reentrancy in SHIROINU.constructor() (#1329-1377):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1335-1337)
State variables written after the call(s):
- _excluded.push(address(uniswapV2Pair)) (#1365)
- _excluded.push(DEAD) (#1369)
- _isExcluded[address(uniswapV2Pair)] = true (#1363)
- _isExcluded[DEAD] = true (#1367)
- _maxAmount[owner()] = true (#1353)
- _maxAmount[address(this)] = true (#1355)
- _maxAmount[uniswapV2Pair] = true (#1357)
- _reflectionBalance[owner()] = _reflectionTotal (#1373)
- isTaxless[owner()] = true (#1345)
- isTaxless[address(this)] = true (#1347)
- uniswapV2Router = _uniswapV2Router (#1339)
Reentrancy in SHIROINU.swapAndLiquify(uint256) (#1909-1951):
External calls:
- swapTokensForEth(half) (#1933)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2041-2053)
- addLiquidity(otherHalf,newBalance) (#1945)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1945)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1945)
- _allowances[owner][spender] = amount (#1699)
Reentrancy in SHIROINU.transferFrom(address,address,uint256) (#1479-1497):
External calls:
- _transfer(sender,recipient,amount) (#1489)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2041-2053)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1489)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1493)
- _allowances[owner][spender] = amount (#1699)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SHIROINU._transfer(address,address,uint256) (#1707-1783):
External calls:
- swapAndLiquify(contractTokenBalance) (#1743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2041-2053)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
Event emitted after the call(s):
- Transfer(account,marketingAddress,marketingFee) (#1823)
- transferAmount = collectFee(sender,amount,rate) (#1751)
- Transfer(account,teamAddress,marketingFee_scope_0) (#1843)
- transferAmount = collectFee(sender,amount,rate) (#1751)
- Transfer(sender,recipient,transferAmount) (#1781)
- Transfer(account,address(this),liquidityFee) (#1867)
- transferAmount = collectFee(sender,amount,rate) (#1751)
- Transfer(account,DEAD,burnFee) (#1895)
- transferAmount = collectFee(sender,amount,rate) (#1751)
Reentrancy in SHIROINU.constructor() (#1329-1377):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1335-1337)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tokenTotal) (#1375)
Reentrancy in SHIROINU.swapAndLiquify(uint256) (#1909-1951):
External calls:
- swapTokensForEth(half) (#1933)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2041-2053)
- addLiquidity(otherHalf,newBalance) (#1945)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1945)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1701)
- addLiquidity(otherHalf,newBalance) (#1945)
- SwapAndLiquify(half,newBalance,otherHalf) (#1949)
Reentrancy in SHIROINU.transferFrom(address,address,uint256) (#1479-1497):
External calls:
- _transfer(sender,recipient,amount) (#1489)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2041-2053)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1489)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1965-1979)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1701)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1493)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#615-643) uses assembly
- INLINE ASM (#635-639)
Address._functionCallWithValue(address,bytes,uint256,string) (#873-929) uses assembly
- INLINE ASM (#913-919)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#873-929) is never used and should be removed
Address.functionCall(address,bytes) (#743-753) is never used and should be removed
Address.functionCall(address,bytes,string) (#769-781) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#807-831) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#847-869) is never used and should be removed
Address.isContract(address) (#615-643) is never used and should be removed
Address.sendValue(address,uint256) (#679-703) is never used and should be removed
Context._msgData() (#39-45) is never used and should be removed
SafeMath.ceil(uint256,uint256) (#559-567) is never used and should be removed
SafeMath.mod(uint256,uint256) (#509-513) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#541-555) is never used and should be removed
Remove unused functions.

Additional information: link

SHIROINU._tokenTotal (#1239) is set pre-construction with a non-constant function or state variable:
- 10_000_000_000_000 * (10 ** decimals())
SHIROINU._reflectionTotal (#1241) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tokenTotal))
SHIROINU.maxTxAmount (#1297) is set pre-construction with a non-constant function or state variable:
- _tokenTotal
SHIROINU.minTokensBeforeSwap (#1299) is set pre-construction with a non-constant function or state variable:
- 1_000_000 * (10 ** decimals())
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.8.0 (#5) 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 Address.sendValue(address,uint256) (#679-703):
- (success) = recipient.call{value: amount}() (#693)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#873-929):
- (success,returndata) = target.call{value: weiValue}(data) (#891-895)
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() (#1099) is not in mixedCase
Parameter SHIROINU.setTeamAddress(address)._address (#2129) is not in mixedCase
Parameter SHIROINU.setBlackList(address,bool)._address (#2153) is not in mixedCase
Parameter SHIROINU.exemptMaxTxAmountAddress(address,bool)._address (#2161) is not in mixedCase
Variable SHIROINU._reflectionBalance (#1219) is not in mixedCase
Variable SHIROINU._balanceLimit (#1221) is not in mixedCase
Variable SHIROINU._tokenBalance (#1223) is not in mixedCase
Variable SHIROINU._blackList (#1227) is not in mixedCase
Variable SHIROINU._maxAmount (#1229) is not in mixedCase
Variable SHIROINU._allowances (#1231) is not in mixedCase
Variable SHIROINU._tokenTotal (#1239) is not in mixedCase
Variable SHIROINU._reflectionTotal (#1241) is not in mixedCase
Variable SHIROINU._isExcluded (#1247) is not in mixedCase
Variable SHIROINU._excluded (#1249) is not in mixedCase
Variable SHIROINU._feeDecimal (#1253) is not in mixedCase
Variable SHIROINU._taxFee (#1255) is not in mixedCase
Variable SHIROINU._marketingFee (#1257) is not in mixedCase
Variable SHIROINU._teamFee (#1259) is not in mixedCase
Variable SHIROINU._burnFee (#1261) is not in mixedCase
Variable SHIROINU._liquidityFee (#1263) is not in mixedCase
Variable SHIROINU.DEAD (#1271) is not in mixedCase
Variable SHIROINU._taxFeeTotal (#1279) is not in mixedCase
Variable SHIROINU._burnFeeTotal (#1281) is not in mixedCase
Variable SHIROINU._liquidityFeeTotal (#1283) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#41)" inContext (#29-47)
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 (#1107) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#1109)
Prevent variables from having similar names.

Additional information: link

SHIROINU.slitherConstructorVariables() (#1203-2192) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#1271)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SHIROINU._balanceLimit (#1221) is never used in SHIROINU (#1203-2192)
Remove unused state variables.

Additional information: link

SHIROINU.DEAD (#1271) should be constant
SHIROINU._decimals (#1215) should be constant
SHIROINU._feeDecimal (#1253) should be constant
SHIROINU._name (#1211) should be constant
SHIROINU._symbol (#1213) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1039-1045)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1057-1071)
name() should be declared external:
- SHIROINU.name() (#1381-1385)
symbol() should be declared external:
- SHIROINU.symbol() (#1389-1393)
totalSupply() should be declared external:
- SHIROINU.totalSupply() (#1405-1409)
transfer(address,uint256) should be declared external:
- SHIROINU.transfer(address,uint256) (#1423-1439)
allowance(address,address) should be declared external:
- SHIROINU.allowance(address,address) (#1443-1457)
approve(address,uint256) should be declared external:
- SHIROINU.approve(address,uint256) (#1461-1475)
transferFrom(address,address,uint256) should be declared external:
- SHIROINU.transferFrom(address,address,uint256) (#1479-1497)
increaseAllowance(address,uint256) should be declared external:
- SHIROINU.increaseAllowance(address,uint256) (#1503-1525)
decreaseAllowance(address,uint256) should be declared external:
- SHIROINU.decreaseAllowance(address,uint256) (#1529-1557)
isExcluded(address) should be declared external:
- SHIROINU.isExcluded(address) (#1561-1565)
reflectionFromToken(uint256,bool) should be declared external:
- SHIROINU.reflectionFromToken(uint256,bool) (#1569-1597)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


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


Last post in Twitter was more than 30 days ago


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 verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Twitter 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 SHIR

News for SHIR