MetaNet Token Logo

MNet [MetaNet] Token

About MNet

Listings

Token 4 years
CoinMarketCap 4 years

Website

white paper

MetaNetflix (MetaNet) is a proprietary, hyper deflationary token on the Binance Smart Chain network. MetaNet is not a regular platform in Metaverse, but it is a platform in where content creators buy and sell NFTs. This token encompasses multi-platforms from different galaxies from the infinity and brings them to the Metaverse. It was born from the idea of Metaverse, where in the future it will be highly developed.

Social

Laser Scorebeta Last Audit: 14 January 2022

report
Token seems to be a scam (type: honeypot scam).

Anti-Scam

Links


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


Contract creator or owner is blacklisted for past scams

MetaNet.swapAndLiquify(uint256) (#823-838) sends eth to arbitrary user
Dangerous calls:
- marketingWallet.transfer(newBalance.div(allFee).mul(_marketingFee)) (#837)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in MetaNet._transfer(address,address,uint256) (#803-819):
External calls:
- checkForBuyBack() (#814)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
- swapAndLiquify(contractTokenBalance) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#846)
External calls sending eth:
- checkForBuyBack() (#814)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
- swapAndLiquify(contractTokenBalance) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
- marketingWallet.transfer(newBalance.div(allFee).mul(_marketingFee)) (#837)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#818)
- _liquidityFee = _saleLiquidityFee (#538)
- _liquidityFee = 0 (#531)
- _liquidityFee = _previousLiquidityFee (#544)
- _tokenTransfer(from,to,amount) (#818)
- _marketingFee = _saleMarketingFee (#539)
- _marketingFee = 0 (#532)
- _marketingFee = _previousMarketingFee (#545)
- _tokenTransfer(from,to,amount) (#818)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#776)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#918)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#928)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#940)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#717)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#919)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#930)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#941)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#719)
- _tokenTransfer(from,to,amount) (#818)
- _rTotal = _rTotal.sub(rFee) (#728)
- _tokenTransfer(from,to,amount) (#818)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#778)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#939)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#716)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#929)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#718)
- swapAndLiquify(contractTokenBalance) (#816)
- inSwapAndLiquify = true (#503)
- inSwapAndLiquify = false (#505)
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.

Low level call in Address.sendValue(address,uint256) (#91-95):
- (success) = recipient.call{value: amount}() (#93)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#118-135):
- (success,returndata) = target.call{value: weiValue}(data) (#121)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

MetaNet.setmarketingWallet(address).newWallet (#964) lacks a zero-check on :
- marketingWallet = address(newWallet) (#966)
Check that the address is not zero.

Additional information: link

MetaNet.slitherConstructorVariables() (#429-1056) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#480)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#229) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#230) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#246) is not in mixedCase
Function IUniswapV2Router01.WETH() (#267) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#422) is not in mixedCase
Parameter MetaNet.calculateTaxFee(uint256)._amount (#781) is not in mixedCase
Parameter MetaNet.calculateLiquidityFee(uint256)._amount (#785) is not in mixedCase
Parameter MetaNet.setExcludedFromWhale(address,bool)._enabled (#959) is not in mixedCase
Parameter MetaNet.setSwapAndLiquifyEnabled(bool)._enabled (#981) is not in mixedCase
Parameter MetaNet.setBuyBackEnabled(bool)._enabled (#1046) is not in mixedCase
Variable MetaNet._rewarded (#441) is not in mixedCase
Variable MetaNet._taxFee (#464) is not in mixedCase
Variable MetaNet._liquidityFee (#467) is not in mixedCase
Variable MetaNet._marketingFee (#470) is not in mixedCase
Variable MetaNet._saleTaxFee (#475) is not in mixedCase
Variable MetaNet._saleLiquidityFee (#476) is not in mixedCase
Variable MetaNet._saleMarketingFee (#477) is not in mixedCase
Variable MetaNet._maxSaleAmount (#489) is not in mixedCase
Variable MetaNet._maxBuyAmount (#490) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#75)" inContext (#69-78)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in MetaNet._transfer(address,address,uint256) (#803-819):
External calls:
- swapAndLiquify(contractTokenBalance) (#816)
- marketingWallet.transfer(newBalance.div(allFee).mul(_marketingFee)) (#837)
External calls sending eth:
- checkForBuyBack() (#814)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
- swapAndLiquify(contractTokenBalance) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
- marketingWallet.transfer(newBalance.div(allFee).mul(_marketingFee)) (#837)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#818)
- _liquidityFee = _saleLiquidityFee (#538)
- _liquidityFee = 0 (#531)
- _liquidityFee = _previousLiquidityFee (#544)
- _tokenTransfer(from,to,amount) (#818)
- _marketingFee = _saleMarketingFee (#539)
- _marketingFee = 0 (#532)
- _marketingFee = _previousMarketingFee (#545)
- _tokenTransfer(from,to,amount) (#818)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#776)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#918)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#928)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#940)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#717)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#919)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#930)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#941)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#719)
- _tokenTransfer(from,to,amount) (#818)
- _rTotal = _rTotal.sub(rFee) (#728)
- _tokenTransfer(from,to,amount) (#818)
- _tFeeTotal = _tFeeTotal.add(tFee) (#729)
- _tokenTransfer(from,to,amount) (#818)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#778)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#939)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#716)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#929)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#718)
- _tokenTransfer(from,to,amount) (#818)
- _taxFee = 0 (#530)
- _taxFee = _previousTaxFee (#543)
- _taxFee = _saleTaxFee (#537)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#922)
- _tokenTransfer(from,to,amount) (#818)
- Transfer(sender,recipient,tTransferAmount) (#944)
- _tokenTransfer(from,to,amount) (#818)
- Transfer(sender,recipient,tTransferAmount) (#933)
- _tokenTransfer(from,to,amount) (#818)
- Transfer(sender,recipient,tTransferAmount) (#722)
- _tokenTransfer(from,to,amount) (#818)
Reentrancy in MetaNet.transferFrom(address,address,uint256) (#639-643):
External calls:
- _transfer(sender,recipient,amount) (#640)
- marketingWallet.transfer(newBalance.div(allFee).mul(_marketingFee)) (#837)
External calls sending eth:
- _transfer(sender,recipient,amount) (#640)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
- marketingWallet.transfer(newBalance.div(allFee).mul(_marketingFee)) (#837)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#641)
- _allowances[owner][spender] = amount (#799)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#800)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#641)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#272) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#273)
Variable MetaNet._transferStandard(address,address,uint256).rTransferAmount (#917) is too similar to MetaNet._transferStandard(address,address,uint256).tTransferAmount (#917)
Variable MetaNet._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#752) is too similar to MetaNet._getTValues(uint256).tTransferAmount (#744)
Variable MetaNet._getValues(uint256).rTransferAmount (#736) is too similar to MetaNet._transferBothExcluded(address,address,uint256).tTransferAmount (#715)
Variable MetaNet.reflectionFromToken(uint256,bool).rTransferAmount (#678) is too similar to MetaNet._transferStandard(address,address,uint256).tTransferAmount (#917)
Variable MetaNet._transferToExcluded(address,address,uint256).rTransferAmount (#927) is too similar to MetaNet._getTValues(uint256).tTransferAmount (#744)
Variable MetaNet._transferToExcluded(address,address,uint256).rTransferAmount (#927) is too similar to MetaNet._transferToExcluded(address,address,uint256).tTransferAmount (#927)
Variable MetaNet._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#752) is too similar to MetaNet._transferBothExcluded(address,address,uint256).tTransferAmount (#715)
Variable MetaNet._transferStandard(address,address,uint256).rTransferAmount (#917) is too similar to MetaNet._getTValues(uint256).tTransferAmount (#744)
Variable MetaNet._transferStandard(address,address,uint256).rTransferAmount (#917) is too similar to MetaNet._transferToExcluded(address,address,uint256).tTransferAmount (#927)
Variable MetaNet._transferBothExcluded(address,address,uint256).rTransferAmount (#715) is too similar to MetaNet._transferBothExcluded(address,address,uint256).tTransferAmount (#715)
Variable MetaNet._transferToExcluded(address,address,uint256).rTransferAmount (#927) is too similar to MetaNet._transferBothExcluded(address,address,uint256).tTransferAmount (#715)
Variable MetaNet._getValues(uint256).rTransferAmount (#736) is too similar to MetaNet._transferStandard(address,address,uint256).tTransferAmount (#917)
Variable MetaNet._transferStandard(address,address,uint256).rTransferAmount (#917) is too similar to MetaNet._transferBothExcluded(address,address,uint256).tTransferAmount (#715)
Variable MetaNet.reflectionFromToken(uint256,bool).rTransferAmount (#678) is too similar to MetaNet._transferToExcluded(address,address,uint256).tTransferAmount (#927)
Variable MetaNet.reflectionFromToken(uint256,bool).rTransferAmount (#678) is too similar to MetaNet._getTValues(uint256).tTransferAmount (#744)
Variable MetaNet.reflectionFromToken(uint256,bool).rTransferAmount (#678) is too similar to MetaNet._transferBothExcluded(address,address,uint256).tTransferAmount (#715)
Variable MetaNet._getValues(uint256).rTransferAmount (#736) is too similar to MetaNet._getTValues(uint256).tTransferAmount (#744)
Variable MetaNet._getValues(uint256).rTransferAmount (#736) is too similar to MetaNet._transferToExcluded(address,address,uint256).tTransferAmount (#927)
Variable MetaNet._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#752) is too similar to MetaNet._transferStandard(address,address,uint256).tTransferAmount (#917)
Variable MetaNet.reflectionFromToken(uint256,bool).rTransferAmount (#678) is too similar to MetaNet._transferFromExcluded(address,address,uint256).tTransferAmount (#938)
Variable MetaNet._getValues(uint256).rTransferAmount (#736) is too similar to MetaNet._transferFromExcluded(address,address,uint256).tTransferAmount (#938)
Variable MetaNet._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#752) is too similar to MetaNet._transferFromExcluded(address,address,uint256).tTransferAmount (#938)
Variable MetaNet._transferToExcluded(address,address,uint256).rTransferAmount (#927) is too similar to MetaNet._getValues(uint256).tTransferAmount (#735)
Variable MetaNet._transferStandard(address,address,uint256).rTransferAmount (#917) is too similar to MetaNet._transferFromExcluded(address,address,uint256).tTransferAmount (#938)
Variable MetaNet._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#752) is too similar to MetaNet._transferToExcluded(address,address,uint256).tTransferAmount (#927)
Variable MetaNet._transferBothExcluded(address,address,uint256).rTransferAmount (#715) is too similar to MetaNet._getValues(uint256).tTransferAmount (#735)
Variable MetaNet._transferFromExcluded(address,address,uint256).rTransferAmount (#938) is too similar to MetaNet._getValues(uint256).tTransferAmount (#735)
Variable MetaNet.reflectionFromToken(uint256,bool).rTransferAmount (#678) is too similar to MetaNet._getValues(uint256).tTransferAmount (#735)
Variable MetaNet._transferFromExcluded(address,address,uint256).rTransferAmount (#938) is too similar to MetaNet._getTValues(uint256).tTransferAmount (#744)
Variable MetaNet._transferBothExcluded(address,address,uint256).rTransferAmount (#715) is too similar to MetaNet._getTValues(uint256).tTransferAmount (#744)
Variable MetaNet._getValues(uint256).rTransferAmount (#736) is too similar to MetaNet._getValues(uint256).tTransferAmount (#735)
Variable MetaNet._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#752) is too similar to MetaNet._getValues(uint256).tTransferAmount (#735)
Variable MetaNet._transferToExcluded(address,address,uint256).rTransferAmount (#927) is too similar to MetaNet._transferStandard(address,address,uint256).tTransferAmount (#917)
Variable MetaNet._transferToExcluded(address,address,uint256).rTransferAmount (#927) is too similar to MetaNet._transferFromExcluded(address,address,uint256).tTransferAmount (#938)
Variable MetaNet._transferFromExcluded(address,address,uint256).rTransferAmount (#938) is too similar to MetaNet._transferToExcluded(address,address,uint256).tTransferAmount (#927)
Variable MetaNet._transferFromExcluded(address,address,uint256).rTransferAmount (#938) is too similar to MetaNet._transferBothExcluded(address,address,uint256).tTransferAmount (#715)
Variable MetaNet._transferBothExcluded(address,address,uint256).rTransferAmount (#715) is too similar to MetaNet._transferToExcluded(address,address,uint256).tTransferAmount (#927)
Variable MetaNet._transferStandard(address,address,uint256).rTransferAmount (#917) is too similar to MetaNet._getValues(uint256).tTransferAmount (#735)
Variable MetaNet._transferFromExcluded(address,address,uint256).rTransferAmount (#938) is too similar to MetaNet._transferStandard(address,address,uint256).tTransferAmount (#917)
Variable MetaNet._transferBothExcluded(address,address,uint256).rTransferAmount (#715) is too similar to MetaNet._transferStandard(address,address,uint256).tTransferAmount (#917)
Variable MetaNet._transferFromExcluded(address,address,uint256).rTransferAmount (#938) is too similar to MetaNet._transferFromExcluded(address,address,uint256).tTransferAmount (#938)
Variable MetaNet._transferBothExcluded(address,address,uint256).rTransferAmount (#715) is too similar to MetaNet._transferFromExcluded(address,address,uint256).tTransferAmount (#938)
Prevent variables from having similar names.

Additional information: link

MetaNet._decimals (#462) should be constant
MetaNet._name (#460) should be constant
MetaNet._symbol (#461) should be constant
MetaNet._tTotal (#456) should be constant
MetaNet.deadWallet (#480) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

MetaNet.afterPresale() (#585-600) performs a multiplication on the result of a division:
-maxLimit = _tTotal.div(100).mul(2) (#596)
MetaNet.afterPresale() (#585-600) performs a multiplication on the result of a division:
-_maxSaleAmount = _tTotal.div(100).mul(1) (#597)
MetaNet.afterPresale() (#585-600) performs a multiplication on the result of a division:
-_maxBuyAmount = _tTotal.div(100).mul(2) (#598)
MetaNet.swapAndLiquify(uint256) (#823-838) performs a multiplication on the result of a division:
-halfLiquidityTokens = contractTokenBalance.div(allFee).mul(_liquidityFee - buybackDivisor).div(2) (#826)
MetaNet.swapAndLiquify(uint256) (#823-838) performs a multiplication on the result of a division:
-ethForLiquidity = newBalance.div(allFee).mul(_liquidityFee - buybackDivisor).div(2) (#831)
MetaNet.swapAndLiquify(uint256) (#823-838) performs a multiplication on the result of a division:
-marketingWallet.transfer(newBalance.div(allFee).mul(_marketingFee)) (#837)
Consider ordering multiplication before division.

Additional information: link

MetaNet.addLiquidity(uint256,uint256) (#849-853) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
Ensure that all the return values of the function calls are used.

Additional information: link

MetaNet.allowance(address,address).owner (#628) shadows:
- Ownable.owner() (#152-154) (function)
MetaNet._approve(address,address,uint256).owner (#795) shadows:
- Ownable.owner() (#152-154) (function)
Rename the local variables that shadow another component.

Additional information: link

MetaNet.setAllBuyFees(uint256,uint256,uint256) (#549-557) should emit an event for:
- _taxFee = taxFee (#551)
- _previousTaxFee = taxFee (#552)
- _liquidityFee = liquidityFee (#553)
- _previousLiquidityFee = liquidityFee (#554)
- _marketingFee = marketingFee (#555)
- _previousMarketingFee = marketingFee (#556)
MetaNet.setAllSaleFees(uint256,uint256,uint256) (#559-564) should emit an event for:
- _saleTaxFee = taxFee (#561)
- _saleLiquidityFee = liquidityFee (#562)
- _saleMarketingFee = marketingFee (#563)
MetaNet.setMaxSaleAmount(uint256) (#969-971) should emit an event for:
- _maxSaleAmount = amount (#970)
MetaNet.setBuybackDivisor(uint256) (#973-975) should emit an event for:
- buybackDivisor = amount (#974)
MetaNet.setMaxBuyAmount(uint256) (#977-979) should emit an event for:
- _maxBuyAmount = amount (#978)
MetaNet.setMaxWalletLimit(uint256) (#992-995) should emit an event for:
- maxLimit = amount (#994)
MetaNet.setBuybackUpperLimit(uint256) (#1042-1044) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#1043)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in MetaNet._transfer(address,address,uint256) (#803-819):
External calls:
- checkForBuyBack() (#814)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
- swapAndLiquify(contractTokenBalance) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#846)
External calls sending eth:
- checkForBuyBack() (#814)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
- swapAndLiquify(contractTokenBalance) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
- marketingWallet.transfer(newBalance.div(allFee).mul(_marketingFee)) (#837)
State variables written after the call(s):
- swapAndLiquify(contractTokenBalance) (#816)
- _allowances[owner][spender] = amount (#799)
- _tokenTransfer(from,to,amount) (#818)
- _tFeeTotal = _tFeeTotal.add(tFee) (#729)
- _tokenTransfer(from,to,amount) (#818)
- _taxFee = 0 (#530)
- _taxFee = _previousTaxFee (#543)
- _taxFee = _saleTaxFee (#537)
Reentrancy in MetaNet.constructor() (#508-526):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#512-513)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#515)
- _isExcludedFromFee[address(this)] = true (#516)
- _isExcludedFromWhale[owner()] = true (#519)
- _isExcludedFromWhale[address(this)] = true (#520)
- _isExcludedFromWhale[address(0)] = true (#521)
- _isExcludedFromWhale[marketingWallet] = true (#522)
- _isExcludedFromWhale[uniswapV2Pair] = true (#523)
- uniswapV2Router = _uniswapV2Router (#514)
Reentrancy in MetaNet.swapAndLiquify(uint256) (#823-838):
External calls:
- swapTokensForEth(swapableTokens) (#829)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#846)
- addLiquidity(halfLiquidityTokens,ethForLiquidity) (#834)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,ethForLiquidity) (#834)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
State variables written after the call(s):
- addLiquidity(halfLiquidityTokens,ethForLiquidity) (#834)
- _allowances[owner][spender] = amount (#799)
Reentrancy in MetaNet.transferFrom(address,address,uint256) (#639-643):
External calls:
- _transfer(sender,recipient,amount) (#640)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#846)
External calls sending eth:
- _transfer(sender,recipient,amount) (#640)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
- marketingWallet.transfer(newBalance.div(allFee).mul(_marketingFee)) (#837)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#641)
- _allowances[owner][spender] = amount (#799)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MetaNet._transfer(address,address,uint256) (#803-819):
External calls:
- checkForBuyBack() (#814)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
- swapAndLiquify(contractTokenBalance) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#846)
External calls sending eth:
- checkForBuyBack() (#814)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
- swapAndLiquify(contractTokenBalance) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
- marketingWallet.transfer(newBalance.div(allFee).mul(_marketingFee)) (#837)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#800)
- swapAndLiquify(contractTokenBalance) (#816)
- SwapAndLiquify(halfLiquidityTokens,ethForLiquidity,halfLiquidityTokens) (#835)
- swapAndLiquify(contractTokenBalance) (#816)
- Transfer(sender,recipient,tTransferAmount) (#922)
- _tokenTransfer(from,to,amount) (#818)
- Transfer(sender,recipient,tTransferAmount) (#944)
- _tokenTransfer(from,to,amount) (#818)
- Transfer(sender,recipient,tTransferAmount) (#933)
- _tokenTransfer(from,to,amount) (#818)
- Transfer(sender,recipient,tTransferAmount) (#722)
- _tokenTransfer(from,to,amount) (#818)
Reentrancy in MetaNet.constructor() (#508-526):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#512-513)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#525)
Reentrancy in MetaNet.swapAndLiquify(uint256) (#823-838):
External calls:
- swapTokensForEth(swapableTokens) (#829)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#846)
- addLiquidity(halfLiquidityTokens,ethForLiquidity) (#834)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,ethForLiquidity) (#834)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#800)
- addLiquidity(halfLiquidityTokens,ethForLiquidity) (#834)
- SwapAndLiquify(halfLiquidityTokens,ethForLiquidity,halfLiquidityTokens) (#835)
Reentrancy in MetaNet.swapETHForTokens(uint256) (#1028-1040):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#1039)
Reentrancy in MetaNet.transferFrom(address,address,uint256) (#639-643):
External calls:
- _transfer(sender,recipient,amount) (#640)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#846)
External calls sending eth:
- _transfer(sender,recipient,amount) (#640)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#852)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadWallet,block.timestamp.add(300)) (#1035-1038)
- marketingWallet.transfer(newBalance.div(allFee).mul(_marketingFee)) (#837)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#800)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#641)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#187-192) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp < _lockTime,Contract is locked until 7 days) (#189)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#83-88) uses assembly
- INLINE ASM (#86)
Address._functionCallWithValue(address,bytes,uint256,string) (#118-135) uses assembly
- INLINE ASM (#127-130)
Do not use evm assembly.

Additional information: link

MetaNet.includeInReward(address) (#701-712) has costly operations inside a loop:
- _excluded.pop() (#708)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#118-135) is never used and should be removed
Address.functionCall(address,bytes) (#98-100) is never used and should be removed
Address.functionCall(address,bytes,string) (#103-105) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#108-110) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#113-116) is never used and should be removed
Address.isContract(address) (#83-88) is never used and should be removed
Address.sendValue(address,uint256) (#91-95) is never used and should be removed
Context._msgData() (#74-77) is never used and should be removed
MetaNet._beforeTokenTransfer(address,address,uint256) (#997-998) is never used and should be removed
SafeMath.mod(uint256,uint256) (#59-61) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#63-66) is never used and should be removed
Remove unused functions.

Additional information: link

MetaNet._rTotal (#457) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
MetaNet._previousTaxFee (#465) is set pre-construction with a non-constant function or state variable:
- _taxFee
MetaNet._previousLiquidityFee (#468) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
MetaNet._previousMarketingFee (#471) is set pre-construction with a non-constant function or state variable:
- _marketingFee
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

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#162-165)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#168-172)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#174-176)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#179-184)
unlock() should be declared external:
- Ownable.unlock() (#187-192)
rewardedUpdate(address,bool) should be declared external:
- MetaNet.rewardedUpdate(address,bool) (#447-450)
setAllBuyFees(uint256,uint256,uint256) should be declared external:
- MetaNet.setAllBuyFees(uint256,uint256,uint256) (#549-557)
setAllSaleFees(uint256,uint256,uint256) should be declared external:
- MetaNet.setAllSaleFees(uint256,uint256,uint256) (#559-564)
name() should be declared external:
- MetaNet.name() (#602-604)
symbol() should be declared external:
- MetaNet.symbol() (#606-608)
decimals() should be declared external:
- MetaNet.decimals() (#610-612)
totalSupply() should be declared external:
- MetaNet.totalSupply() (#614-616)
transfer(address,uint256) should be declared external:
- MetaNet.transfer(address,uint256) (#623-626)
allowance(address,address) should be declared external:
- MetaNet.allowance(address,address) (#628-630)
approve(address,uint256) should be declared external:
- MetaNet.approve(address,uint256) (#634-637)
transferFrom(address,address,uint256) should be declared external:
- MetaNet.transferFrom(address,address,uint256) (#639-643)
increaseAllowance(address,uint256) should be declared external:
- MetaNet.increaseAllowance(address,uint256) (#645-648)
decreaseAllowance(address,uint256) should be declared external:
- MetaNet.decreaseAllowance(address,uint256) (#650-653)
isExcludedFromReward(address) should be declared external:
- MetaNet.isExcludedFromReward(address) (#655-657)
totalFees() should be declared external:
- MetaNet.totalFees() (#659-661)
deliver(uint256) should be declared external:
- MetaNet.deliver(uint256) (#663-670)
reflectionFromToken(uint256,bool) should be declared external:
- MetaNet.reflectionFromToken(uint256,bool) (#672-681)
excludeFromReward(address) should be declared external:
- MetaNet.excludeFromReward(address) (#690-698)
isExcludedFromFee(address) should be declared external:
- MetaNet.isExcludedFromFee(address) (#791-793)
manualBurn(uint256) should be declared external:
- MetaNet.manualBurn(uint256) (#909-914)
excludeFromFee(address) should be declared external:
- MetaNet.excludeFromFee(address) (#947-950)
includeInFee(address) should be declared external:
- MetaNet.includeInFee(address) (#953-956)
setExcludedFromWhale(address,bool) should be declared external:
- MetaNet.setExcludedFromWhale(address,bool) (#959-962)
setNumTokensSellToAddToLiquidity(uint256) should be declared external:
- MetaNet.setNumTokensSellToAddToLiquidity(uint256) (#986-990)
setMaxWalletLimit(uint256) should be declared external:
- MetaNet.setMaxWalletLimit(uint256) (#992-995)
buyBackUpperLimitAmount() should be declared external:
- MetaNet.buyBackUpperLimitAmount() (#1005-1007)
setBuyBackEnabled(bool) should be declared external:
- MetaNet.setBuyBackEnabled(bool) (#1046-1049)
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.


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Token was delisted from CoinGecko

Additional information: link


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 Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death

Price for MNet

News for MNet