The Moon Shiba Token Logo

MOONSHIB [The Moon Shiba] Token

About MOONSHIB

Listings

Token 3 years
white paper

We aim to be a community and utility oriented project. We want holdes to have unique and exciting benefits and that's why we've created a unique model with a sharing economy for all our collectible owner.

Shiba Farmily is a collection of 3,000 unique and randonly generated Shiba Inu divided into 3 unique drops: Shiba Moon, Shiba Mars, and Shiba Earth on the Binance Smart Chain.

Each Shiba Family Collectible us 100% unique programmatically and randomly generated from over 550+ possible traits ands attributes, some are rarer than others!

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

MoonShiba.addLiquidity(uint256,uint256) (#1490-1503) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1495-1502)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in MoonShiba._transfer(address,address,uint256) (#1400-1447):
External calls:
- swapAndLiquify(contractTokenBalance) (#1434)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1495-1502)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1481-1487)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1434)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1495-1502)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1446)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1348)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1542)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1562)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1584)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1543)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1208)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1564)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1585)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1210)
- _tokenTransfer(from,to,amount,takeFee) (#1446)
- _rTotal = _rTotal.sub(rFee) (#1252)
- _tokenTransfer(from,to,amount,takeFee) (#1446)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1350)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1207)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1583)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1563)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1209)
Apply the check-effects-interactions pattern.

Additional information: link

MoonShiba.withdrawToken(address) (#1597-1600) ignores return value by token.transfer(contractOwner,token.balanceOf(address(this))) (#1599)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.

MoonShiba.addLiquidity(uint256,uint256) (#1490-1503) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1495-1502)
Ensure that all the return values of the function calls are used.

Additional information: link

MoonShiba.changeContractOwner(address).owner (#1602) shadows:
- Ownable.owner() (#472-474) (function)
Rename the local variables that shadow another component.

Additional information: link

MoonShiba.setMaxTxPercent(uint256) (#1239-1241) should emit an event for:
- _maxTxAmount = maxTxPercent * 10 ** _decimals (#1240)
Emit an event for critical parameter changes.

Additional information: link

MoonShiba.changeContractOwner(address).owner (#1602) lacks a zero-check on :
- contractOwner = address(owner) (#1603)
Check that the address is not zero.

Additional information: link

Reentrancy in MoonShiba.transferFrom(address,address,uint256) (#1061-1076):
External calls:
- _transfer(sender,recipient,amount) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1495-1502)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1481-1487)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1495-1502)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1067-1074)
- _allowances[owner][spender] = amount (#1396)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MoonShiba.transferFrom(address,address,uint256) (#1061-1076):
External calls:
- _transfer(sender,recipient,amount) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1495-1502)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1481-1487)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1495-1502)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1397)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1067-1074)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#522-530) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#527)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#416-444) uses assembly
- INLINE ASM (#436-439)
Do not use evm assembly.

Additional information: link

MoonShiba.onlyAdmin() (#981-984) compares to a boolean constant:
-require(bool,string)(listAdmins[msg.sender] == true,User is not allowed) (#982)
Remove the equality to the boolean constant.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#248-255) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#416-444):
- (success,returndata) = target.call{value: weiValue}(data) (#425-427)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable MoonShiba._maxTxAmount (#921) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#264)" inContext (#258-267)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable MoonShiba._transferStandard(address,address,uint256).rTransferAmount (#1536) is too similar to MoonShiba._transferFromExcluded(address,address,uint256).tTransferAmount (#1579)
Prevent variables from having similar names.

Additional information: link

changeContractOwner(address) should be declared external:
- MoonShiba.changeContractOwner(address) (#1602-1604)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is low.


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


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 number of swaps.


Twitter account link seems to be invalid


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 contract audit


Unable to find audit 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


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


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for MOONSHIB