Nano Shiba Inu Token Logo

NanoShiba [Nano Shiba Inu] Token

About NanoShiba

Listings

Token 2 years

Nano Shiba Inu is a one-of-a-kind reward and rebase token that uses a proprietary contract on the Binance Smart Chain.

Holders of Nano Shiba Inu are rewarded in $SHIB token rewards that are distributed automatically through one of the contract’s protocols.

At the center of it all, the goal remains to create a project that gives a voice to its holders by creating an unbreakable community foundation.
Creating a community project is embracing and recognising that strength and growth does not come from a single perspective, but by creating a cohesive unit, where the sum of all parts come together to make it whole.

First and foremost we are supporters and enthusiasts of cryptocurrency and decentralised finance, and the technology behind it, and it's ability to revolutionise the world.

We embrace all with open arms, our community is 100% dedicated to respect, equality, and there is no room for discrimination.

We are a team that understands the value in community and collaboration. We come together to share our ideas and content with our community and the world of DeFi, and also
are a team that wants to help others, and keep the global adoption of DeFI as the overlaying goal for us all.

And finally, we care about taking initiative and speaking with our actions. We see the potential this project has and we will do everything we can to make our vision a reality.

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

NANOSHIBAINU.swapBack() (#728-776) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#759)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#760)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in NANOSHIBAINU._transferFrom(address,address,uint256) (#582-631):
External calls:
- swapBack() (#610)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#741-747)
- distributor.deposit{value: amountBNBReflection}() (#758)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#759)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#760)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#766-773)
External calls sending eth:
- swapBack() (#610)
- distributor.deposit{value: amountBNBReflection}() (#758)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#759)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#760)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#766-773)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#613)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#616)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#615)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#665)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#337-348) ignores return value by RWRD.transfer(shareholder,amount) (#343)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

NANOSHIBAINU.swapBack().tmpSuccess (#759) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#760)
tmpSuccess = false (#763)
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.


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.


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

NANOSHIBAINU.slitherConstructorVariables() (#381-963) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(100).mul(2) (#461)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#270-284):
External calls:
- distributeDividend(shareholder) (#272)
- RWRD.transfer(shareholder,amount) (#343)
State variables written after the call(s):
- shares[shareholder].amount = amount (#282)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#283)
Apply the check-effects-interactions pattern.

Additional information: link

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

NANOSHIBAINU.swapBack() (#728-776) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#766-773)
Ensure that all the return values of the function calls are used.

Additional information: link

NANOSHIBAINU.setMaster(address) (#843-845) should emit an event for:
- master = _master (#844)
Emit an event for critical parameter changes.

Additional information: link

NANOSHIBAINU.setMaxTxPercent_base1000(uint256) (#905-907) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#906)
Emit an event for critical parameter changes.

Additional information: link

NANOSHIBAINU.setMaster(address)._master (#843) lacks a zero-check on :
- master = _master (#844)
Check that the address is not zero.

Additional information: link

NANOSHIBAINU.multiTransfer_fixed(address,address[],uint256) (#939-958) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#950)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#270-284):
External calls:
- distributeDividend(shareholder) (#272)
- RWRD.transfer(shareholder,amount) (#343)
State variables written after the call(s):
- addShareholder(shareholder) (#276)
- shareholderIndexes[shareholder] = shareholders.length (#370)
- removeShareholder(shareholder) (#278)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#376)
- addShareholder(shareholder) (#276)
- shareholders.push(shareholder) (#371)
- removeShareholder(shareholder) (#278)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#375)
- shareholders.pop() (#377)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#281)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in NANOSHIBAINU.swapBack() (#728-776):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#741-747)
- distributor.deposit{value: amountBNBReflection}() (#758)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#759)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#760)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#766-773)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#758)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#759)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#760)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#766-773)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#774)
Apply the check-effects-interactions pattern.

Additional information: link

NANOSHIBAINU._transferFrom(address,address,uint256) (#582-631) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#598)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#306-330) has costly operations inside a loop:
- currentIndex ++ (#327)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMathInt.sub(int256,int256) (#74-78) is never used and should be removed
Remove unused functions.

Additional information: link

NANOSHIBAINU.totalFee (#407) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
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.7.4 (#18) 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 NANOSHIBAINU.swapBack() (#728-776):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#759)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#760)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable NANOSHIBAINU._maxWalletToken (#461) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#167) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#168)
Prevent variables from having similar names.

Additional information: link

NANOSHIBAINU.slitherConstructorVariables() (#381-963) uses literals with too many digits:
- distributorGas = 500000 (#432)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#58) is never used in SafeMathInt (#56-90)
Remove unused state variables.

Additional information: link

NANOSHIBAINU.ZERO (#387) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

rescueToken(address,uint256) should be declared external:
- NANOSHIBAINU.rescueToken(address,uint256) (#873-875)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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 link seems to be invalid


Unable to find Youtube account


Unable to crawl data from the website


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

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from 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 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 Telegram link on the website


Unable to find Twitter link on the website


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


Token has no active CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for NanoShiba