MetaCat is the first cat project in the meta. The Metaverse is right now the next trending topic in Crypto and MetaCat joins and push this fever through one of the oldest cats in internet, Nyan cat.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in MCAT._transfer(address,address,uint256) (#638-676):
External calls:
- swapTokens(contractTokenBalance) (#656)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#705-711)
- buyBackTokens(balance.div(100)) (#664)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#723-728)
External calls sending eth:
- swapTokens(contractTokenBalance) (#656)
- recipient.transfer(amount) (#949)
- buyBackTokens(balance.div(100)) (#664)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#723-728)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _liquidityFee = _previousLiquidityFee (#881)
- _liquidityFee = 0 (#876)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#852)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#768)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#777)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#788)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#798)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#769)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#779)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#789)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#800)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _rTotal = _rTotal.sub(rFee) (#807)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#854)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#787)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#797)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#778)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#799)
- buyBackTokens(balance.div(100)) (#664)
- inSwapAndLiquify = true (#492)
- inSwapAndLiquify = false (#494)
Apply the check-effects-interactions pattern.
Additional information: link
MCAT.swapTokens(uint256) (#678-687) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#685)
Consider ordering multiplication before division.
Additional information: link
MCAT.addLiquidity(uint256,uint256) (#733-746) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#738-745)
Ensure that all the return values of the function calls are used.
Additional information: link
MCAT._approve(address,address,uint256).owner (#630) shadows:
- Ownable.owner() (#173-175) (function)
Rename the local variables that shadow another component.
Additional information: link
MCAT.setBuybackUpperLimit(uint256) (#916-918) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#917)
Emit an event for critical parameter changes.
Additional information: link
MCAT.setMarketingAddress(address)._marketingAddress (#920) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#921)
Check that the address is not zero.
Additional information: link
Reentrancy in MCAT.transferFrom(address,address,uint256) (#548-552):
External calls:
- _transfer(sender,recipient,amount) (#549)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#723-728)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#705-711)
External calls sending eth:
- _transfer(sender,recipient,amount) (#549)
- recipient.transfer(amount) (#949)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#723-728)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#550)
- _allowances[owner][spender] = amount (#634)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MCAT.transferFrom(address,address,uint256) (#548-552):
External calls:
- _transfer(sender,recipient,amount) (#549)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#723-728)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#705-711)
External calls sending eth:
- _transfer(sender,recipient,amount) (#549)
- recipient.transfer(amount) (#949)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#723-728)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#635)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#550)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#208-213) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#210)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#140-157) uses assembly
- INLINE ASM (#149-152)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#95-98) is never used and should be removed
Remove unused functions.
Additional information: link
MCAT._previousLiquidityFee (#456) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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
solc-0.8.4 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 Address._functionCallWithValue(address,bytes,uint256,string) (#140-157):
- (success,returndata) = target.call{value: weiValue}(data) (#143)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable MCAT._maxTxAmount (#460) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#27)" inContext (#21-30)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in MCAT.transferFrom(address,address,uint256) (#548-552):
External calls:
- _transfer(sender,recipient,amount) (#549)
- recipient.transfer(amount) (#949)
External calls sending eth:
- _transfer(sender,recipient,amount) (#549)
- recipient.transfer(amount) (#949)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#723-728)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#550)
- _allowances[owner][spender] = amount (#634)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#635)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#550)
Apply the check-effects-interactions pattern.
Additional information: link
Variable MCAT._transferToExcluded(address,address,uint256).rTransferAmount (#776) is too similar to MCAT._transferBothExcluded(address,address,uint256).tTransferAmount (#796)
Prevent variables from having similar names.
Additional information: link
MCAT.slitherConstructorVariables() (#427-955) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 6 * 10 ** 9 (#443)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
MCAT.deadAddress (#432) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setBuyBackEnabled(bool) should be declared external:
- MCAT.setBuyBackEnabled(bool) (#929-932)
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
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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper 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
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