SHIBA INU 2.0 Token Logo

SHIB [SHIBA INU 2.0] Token

About SHIB

Listings

Not Found
Token 4 years
white paper

The rebirth is happening. 'Shiba Inu 2.0' is officially leading the charge for Binance Smart Chain! They say sequels are never as good as the first but SHIBA INU 2.0 is here to prove them wrong. They obviously haven't seen Top Gun 2, Terminator 2, Aliens, The Dark Knight etc.

Join the second revolution before you have to fomo in when its already too late.

Social

Laser Scorebeta Last Audit: 22 June 2022

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

Anti-Scam

Links

SHIBATWO.swapBack() (#412-461) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess,None) = address(marketingFeeReceiver).call{gas: 30000,value: amountADAMarketing}() (#438)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in SHIBATWO._transferFrom(address,address,uint256) (#330-358):
External calls:
- swapBack() (#347)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#423-429)
- (tmpSuccess,None) = address(marketingFeeReceiver).call{gas: 30000,value: amountADAMarketing}() (#438)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountADADev}() (#439)
- router.addLiquidityETH{value: amountADALiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#443-450)
External calls sending eth:
- swapBack() (#347)
- (tmpSuccess,None) = address(marketingFeeReceiver).call{gas: 30000,value: amountADAMarketing}() (#438)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountADADev}() (#439)
- router.addLiquidityETH{value: amountADALiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#443-450)
State variables written after the call(s):
- _rOwned[sender] = _rOwned[sender].sub(proportionAmount,Insufficient Balance) (#351)
- _rOwned[recipient] = _rOwned[recipient].add(proportionReceived) (#354)
- proportionReceived = takeFeeInProportions(sender,recipient,proportionAmount) (#353)
- _rOwned[address(this)] = _rOwned[address(this)].add(_proportionToContract) (#393)
- proportionReceived = takeFeeInProportions(sender,recipient,proportionAmount) (#353)
- _totalProportion = _totalProportion.sub(proportionReflected) (#389)
Reentrancy in SHIBATWO.swapBack() (#412-461):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#423-429)
- (tmpSuccess,None) = address(marketingFeeReceiver).call{gas: 30000,value: amountADAMarketing}() (#438)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountADADev}() (#439)
- router.addLiquidityETH{value: amountADALiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#443-450)
External calls sending eth:
- (tmpSuccess,None) = address(marketingFeeReceiver).call{gas: 30000,value: amountADAMarketing}() (#438)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountADADev}() (#439)
- router.addLiquidityETH{value: amountADALiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#443-450)
State variables written after the call(s):
- swapThreshold = largeSwapThreshold (#456)
- swapThreshold = smallSwapThreshold (#458)
Apply the check-effects-interactions pattern.

Additional information: link

SHIBATWO.swapBack().tmpSuccess (#437) is written in both
(tmpSuccess,None) = address(marketingFeeReceiver).call{gas: 30000,value: amountADAMarketing}() (#438)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountADADev}() (#439)
Fix or remove the writes.

Additional information: link


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

Contract name (SHIBA INU 2.0) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

SHIBATWO.takeFeeInProportions(address,address,uint256) (#384-398) performs a multiplication on the result of a division:
-proportionFeeAmount = proportionAmount.mul(getTotalFee(receiver == pair)).div(feeDenominator) (#385)
-proportionReflected = proportionFeeAmount.mul(reflectionFee).div(totalFee) (#388)
Consider ordering multiplication before division.

Additional information: link

SHIBATWO.manage_blacklist(address[],bool).i (#492) 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

SHIBATWO.swapBack() (#412-461) ignores return value by router.addLiquidityETH{value: amountADALiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#443-450)
Ensure that all the return values of the function calls are used.

Additional information: link

SHIBATWO.setSwapBackSettings(bool,uint256,uint256,bool) (#463-469) should emit an event for:
- smallSwapThreshold = _amountS (#466)
- largeSwapThreshold = _amountL (#467)
- swapThreshold = smallSwapThreshold (#468)
SHIBATWO.changeFees(uint256,uint256,uint256,uint256) (#471-478) should emit an event for:
- liquidityFee = _liquidityFee (#472)
- reflectionFee = _reflectionFee (#473)
- marketingFee = _marketingFee (#474)
- devFee = _devFee (#475)
- totalFee = liquidityFee.add(reflectionFee).add(marketingFee).add(devFee) (#476)
SHIBATWO.setTxLimit(uint256,uint256) (#497-499) should emit an event for:
- _maxTxAmount = _totalSupply.mul(percent).div(denominator) (#498)
Emit an event for critical parameter changes.

Additional information: link

SHIBATWO.setFeeReceivers(address,address)._marketingFeeReceiver (#513) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#514)
SHIBATWO.setFeeReceivers(address,address)._liquidityReceiver (#513) lacks a zero-check on :
- autoLiquidityReceiver = _liquidityReceiver (#515)
Check that the address is not zero.

Additional information: link

Reentrancy in SHIBATWO.constructor() (#268-286):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#272)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#273)
- _allowances[address(this)][deployer] = type()(uint256).max (#274)
- _rOwned[deployer] = _totalSupply (#284)
- autoLiquidityReceiver = 0x19515e81329488ba400A252F9683ce0d4FE3a715 (#280)
- devFeeReceiver = 0x08ff414bC938BB063A0E0040DF93d170303eDde0 (#282)
- isFeeExempt[deployer] = true (#279)
- isTxLimitExempt[address(this)] = true (#276)
- isTxLimitExempt[address(router)] = true (#277)
- isTxLimitExempt[deployer] = true (#278)
- marketingFeeReceiver = 0x85468D291fd4213A72C37C1af9C7569fa3c04AC3 (#281)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SHIBATWO._transferFrom(address,address,uint256) (#330-358):
External calls:
- swapBack() (#347)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#423-429)
- (tmpSuccess,None) = address(marketingFeeReceiver).call{gas: 30000,value: amountADAMarketing}() (#438)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountADADev}() (#439)
- router.addLiquidityETH{value: amountADALiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#443-450)
External calls sending eth:
- swapBack() (#347)
- (tmpSuccess,None) = address(marketingFeeReceiver).call{gas: 30000,value: amountADAMarketing}() (#438)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountADADev}() (#439)
- router.addLiquidityETH{value: amountADALiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#443-450)
Event emitted after the call(s):
- Reflect(proportionReflected,_totalProportion) (#396)
- proportionReceived = takeFeeInProportions(sender,recipient,proportionAmount) (#353)
- Transfer(sender,address(this),tokenFromReflection(_proportionToContract)) (#395)
- proportionReceived = takeFeeInProportions(sender,recipient,proportionAmount) (#353)
- Transfer(sender,recipient,tokenFromReflection(proportionReceived)) (#356)
Reentrancy in SHIBATWO.constructor() (#268-286):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#272)
Event emitted after the call(s):
- Transfer(address(0),deployer,_totalSupply) (#285)
Reentrancy in SHIBATWO.swapBack() (#412-461):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#423-429)
- (tmpSuccess,None) = address(marketingFeeReceiver).call{gas: 30000,value: amountADAMarketing}() (#438)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountADADev}() (#439)
- router.addLiquidityETH{value: amountADALiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#443-450)
External calls sending eth:
- (tmpSuccess,None) = address(marketingFeeReceiver).call{gas: 30000,value: amountADAMarketing}() (#438)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountADADev}() (#439)
- router.addLiquidityETH{value: amountADALiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#443-450)
Event emitted after the call(s):
- AutoLiquify(amountADALiquidity,amountToLiquify) (#451)
Apply the check-effects-interactions pattern.

Additional information: link

Context._msgData() (#124-127) is never used and should be removed
Remove unused functions.

Additional information: link

SHIBATWO._maxWalletSize (#226) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 3) / 100
SHIBATWO._maxTxAmount (#227) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 3) / 100
SHIBATWO._totalProportion (#231) is set pre-construction with a non-constant function or state variable:
- _totalSupply
SHIBATWO.totalFee (#244) is set pre-construction with a non-constant function or state variable:
- liquidityFee + devFee + marketingFee + reflectionFee
SHIBATWO.smallSwapThreshold (#261) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(413945130).div(100_000_000_000)
SHIBATWO.largeSwapThreshold (#262) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(669493726).div(100_000_000_000)
SHIBATWO.swapThreshold (#264) is set pre-construction with a non-constant function or state variable:
- smallSwapThreshold
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.13 (#7) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.13 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in SHIBATWO.clearBalance() (#400-403):
- (success) = address(autoLiquidityReceiver).call{gas: 30000,value: address(this).balance}() (#401)
Low level call in SHIBATWO.swapBack() (#412-461):
- (tmpSuccess,None) = address(marketingFeeReceiver).call{gas: 30000,value: amountADAMarketing}() (#438)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountADADev}() (#439)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#141) is not in mixedCase
Parameter SHIBATWO.setSwapBackSettings(bool,uint256,uint256,bool)._enabled (#463) is not in mixedCase
Parameter SHIBATWO.setSwapBackSettings(bool,uint256,uint256,bool)._amountS (#463) is not in mixedCase
Parameter SHIBATWO.setSwapBackSettings(bool,uint256,uint256,bool)._amountL (#463) is not in mixedCase
Parameter SHIBATWO.setSwapBackSettings(bool,uint256,uint256,bool)._alternate (#463) is not in mixedCase
Parameter SHIBATWO.changeFees(uint256,uint256,uint256,uint256)._liquidityFee (#471) is not in mixedCase
Parameter SHIBATWO.changeFees(uint256,uint256,uint256,uint256)._reflectionFee (#471) is not in mixedCase
Parameter SHIBATWO.changeFees(uint256,uint256,uint256,uint256)._marketingFee (#471) is not in mixedCase
Parameter SHIBATWO.changeFees(uint256,uint256,uint256,uint256)._devFee (#471) is not in mixedCase
Parameter SHIBATWO.tradingStatus(bool)._status (#480) is not in mixedCase
Function SHIBATWO.enable_blacklist(bool) (#484-486) is not in mixedCase
Parameter SHIBATWO.enable_blacklist(bool)._status (#484) is not in mixedCase
Function SHIBATWO.manage_blacklist(address[],bool) (#488-495) is not in mixedCase
Parameter SHIBATWO.setFeeReceivers(address,address)._marketingFeeReceiver (#513) is not in mixedCase
Parameter SHIBATWO.setFeeReceivers(address,address)._liquidityReceiver (#513) is not in mixedCase
Variable SHIBATWO._name (#221) is not in mixedCase
Variable SHIBATWO._symbol (#222) is not in mixedCase
Constant SHIBATWO._decimals (#223) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SHIBATWO._totalSupply (#225) is not in mixedCase
Variable SHIBATWO._maxWalletSize (#226) is not in mixedCase
Variable SHIBATWO._maxTxAmount (#227) is not in mixedCase
Variable SHIBATWO._rOwned (#230) is not in mixedCase
Variable SHIBATWO._totalProportion (#231) is not in mixedCase
Variable SHIBATWO._allowances (#233) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#125)" inContext (#119-128)
Remove redundant statements if they congest code but offer no value.

Additional information: link

SHIBATWO.slitherConstructorConstantVariables() (#213-525) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#218)
SHIBATWO.slitherConstructorConstantVariables() (#213-525) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#219)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SHIBATWO.targetLiquidity (#251) is never used in SHIBATWO (#213-525)
SHIBATWO.targetLiquidityDenominator (#252) is never used in SHIBATWO (#213-525)
Remove unused state variables.

Additional information: link

SHIBATWO._name (#221) should be constant
SHIBATWO._symbol (#222) should be constant
SHIBATWO._totalSupply (#225) should be constant
SHIBATWO.feeDenominator (#245) should be constant
SHIBATWO.targetLiquidity (#251) should be constant
SHIBATWO.targetLiquidityDenominator (#252) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#197-200)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#206-210)
tradingStatus(bool) should be declared external:
- SHIBATWO.tradingStatus(bool) (#480-482)
enable_blacklist(bool) should be declared external:
- SHIBATWO.enable_blacklist(bool) (#484-486)
manage_blacklist(address[],bool) should be declared external:
- SHIBATWO.manage_blacklist(address[],bool) (#488-495)
getCirculatingSupply() should be declared external:
- SHIBATWO.getCirculatingSupply() (#518-520)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 10% buy tax and 9% sell tax.
Taxes are low and contract ownership is renounced.


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


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


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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 no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for SHIB

News for SHIB