- ($MESHI) is a token launched on Binance Smart Chain with automatic liquidity pool growth and holder rewards through transaction taxation.
- MetaShibaSwap DeFi Platform Beta Launch
- Meta Shiba Social Platform Beta release
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
MetaShiba.addLiquidity(uint256,uint256) (#1097-1110) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in MetaShiba._transfer(address,address,uint256) (#1010-1054):
External calls:
- swapAndLiquify(contractTokenBalance) (#1041)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1088-1094)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1041)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1053)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#961)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1144)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1135)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1155)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1136)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#875)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1146)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1156)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#877)
- _tokenTransfer(from,to,amount,takeFee) (#1053)
- _rTotal = _rTotal.sub(rFee) (#916)
- _tokenTransfer(from,to,amount,takeFee) (#1053)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#963)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#874)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1154)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1145)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#876)
Apply the check-effects-interactions pattern.
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.
MetaShiba.addLiquidity(uint256,uint256) (#1097-1110) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
Ensure that all the return values of the function calls are used.
Additional information: link
MetaShiba._approve(address,address,uint256).owner (#1002) shadows:
- Ownable.owner() (#412-414) (function)
Rename the local variables that shadow another component.
Additional information: link
MetaShiba.setMaxTxPercent(uint256) (#903-905) should emit an event for:
- _maxTxAmount = maxTxPercent * 10 ** _decimals (#904)
Emit an event for critical parameter changes.
Additional information: link
MetaShiba.constructor(string,string,uint256,uint256,uint256,uint256,uint256,uint256,address,address).tokenOwner (#732) lacks a zero-check on :
- _owner = tokenOwner (#760)
Check that the address is not zero.
Additional information: link
Reentrancy in MetaShiba.transferFrom(address,address,uint256) (#800-804):
External calls:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1088-1094)
External calls sending eth:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#802)
- _allowances[owner][spender] = amount (#1006)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MetaShiba.transferFrom(address,address,uint256) (#800-804):
External calls:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1088-1094)
External calls sending eth:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1007)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#802)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#459-464) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#461)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#365-386) uses assembly
- INLINE ASM (#378-381)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#233-236) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#365-386):
- (success,returndata) = target.call{value: weiValue}(data) (#369)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable MetaShiba._maxTxAmount (#715) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#245)" inContext (#239-248)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable MetaShiba._getValues(uint256).rTransferAmount (#922) is too similar to MetaShiba._transferToExcluded(address,address,uint256).tTransferAmount (#1143)
Prevent variables from having similar names.
Additional information: link
isExcludedFromFee(address) should be declared external:
- MetaShiba.isExcludedFromFee(address) (#998-1000)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
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 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
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
Token has no active CoinMarketCap listing / rank
Token has relatively low CoinGecko rank
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