ENTERMETAWORLD Token Logo

ENTERMETA [ENTERMETAWORLD] Token

ALERT: honeypot scam

About ENTERMETA

Listings

Token 22 months

Description

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links

Reentrancy in ENTERMETAWORLD._transfer(address,address,uint256) (#622-660):
External calls:
- swapTokens(contractTokenBalance) (#640)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
- buyBackTokens(balance.div(100)) (#648)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#707-712)
External calls sending eth:
- swapTokens(contractTokenBalance) (#640)
- recipient.transfer(amount) (#933)
- buyBackTokens(balance.div(100)) (#648)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#707-712)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#659)
- _liquidityFee = _previousLiquidityFee (#865)
- _liquidityFee = 0 (#860)
- _tokenTransfer(from,to,amount,takeFee) (#659)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#836)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#752)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#761)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#772)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#782)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#753)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#763)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#773)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#784)
- _tokenTransfer(from,to,amount,takeFee) (#659)
- _rTotal = _rTotal.sub(rFee) (#791)
- _tokenTransfer(from,to,amount,takeFee) (#659)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#838)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#771)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#781)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#762)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#783)
- buyBackTokens(balance.div(100)) (#648)
- inSwapAndLiquify = true (#476)
- inSwapAndLiquify = false (#478)
Apply the check-effects-interactions pattern.

Additional information: link


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

ENTERMETAWORLD.swapTokens(uint256) (#662-671) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#669)
Consider ordering multiplication before division.

Additional information: link

ENTERMETAWORLD.addLiquidity(uint256,uint256) (#717-730) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#722-729)
Ensure that all the return values of the function calls are used.

Additional information: link

ENTERMETAWORLD._approve(address,address,uint256).owner (#614) shadows:
- Ownable.owner() (#157-159) (function)
Rename the local variables that shadow another component.

Additional information: link

ENTERMETAWORLD.setBuybackUpperLimit(uint256) (#900-902) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#901)
Emit an event for critical parameter changes.

Additional information: link

ENTERMETAWORLD.setMarketingAddress(address)._marketingAddress (#904) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#905)
Check that the address is not zero.

Additional information: link

Reentrancy in ENTERMETAWORLD.transferFrom(address,address,uint256) (#532-536):
External calls:
- _transfer(sender,recipient,amount) (#533)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#707-712)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- _transfer(sender,recipient,amount) (#533)
- recipient.transfer(amount) (#933)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#707-712)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#534)
- _allowances[owner][spender] = amount (#618)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ENTERMETAWORLD.transferFrom(address,address,uint256) (#532-536):
External calls:
- _transfer(sender,recipient,amount) (#533)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#707-712)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- _transfer(sender,recipient,amount) (#533)
- recipient.transfer(amount) (#933)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#707-712)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#619)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#534)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) uses assembly
- INLINE ASM (#133-136)
Do not use evm assembly.

Additional information: link

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

Additional information: link

ENTERMETAWORLD._previousLiquidityFee (#440) 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) (#124-141):
- (success,returndata) = target.call{value: weiValue}(data) (#127)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable ENTERMETAWORLD._maxTxAmount (#444) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in ENTERMETAWORLD.transferFrom(address,address,uint256) (#532-536):
External calls:
- _transfer(sender,recipient,amount) (#533)
- recipient.transfer(amount) (#933)
External calls sending eth:
- _transfer(sender,recipient,amount) (#533)
- recipient.transfer(amount) (#933)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#707-712)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#534)
- _allowances[owner][spender] = amount (#618)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#619)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#534)
Apply the check-effects-interactions pattern.

Additional information: link

Variable ENTERMETAWORLD._transferToExcluded(address,address,uint256).rTransferAmount (#760) is too similar to ENTERMETAWORLD._transferStandard(address,address,uint256).tTransferAmount (#751)
Prevent variables from having similar names.

Additional information: link

ENTERMETAWORLD.slitherConstructorVariables() (#411-939) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 6 * 10 ** 9 (#445)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ENTERMETAWORLD.deadAddress (#416) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setBuyBackEnabled(bool) should be declared external:
- ENTERMETAWORLD.setBuyBackEnabled(bool) (#913-916)
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.


Telegram account link seems to be invalid


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


Unable to find website, listings and other project-related information


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

Additional information: link


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for ENTERMETA