100 M Elon Token Logo

100MElon [100 M Elon] Token

ALERT: honeypot scam

About 100MElon

Listings

Not Found
Token 22 months

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 22 June 2022

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

Reentrancy in elon100m._transfer(address,address,uint256) (#1021-1072):
External calls:
- swapAndLiquify(numTokensSellToAddToLiquidity) (#1068)
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
- (success) = recipient.call{value: amount}() (#439)
- UniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1144-1150)
- devAddress.sendValue(devFee) (#1129)
- treasuryAddress.sendValue(treasuryFee) (#1130)
External calls sending eth:
- swapAndLiquify(numTokensSellToAddToLiquidity) (#1068)
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
- (success) = recipient.call{value: amount}() (#439)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- _rOwned[address(this)] += rToSwap (#928)
- _rOwned[sender] -= s.rAmount (#1090)
- _rOwned[recipient] += s.rTransferAmount (#1091)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- _rTotal -= rRfi (#923)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- _tOwned[sender] -= tAmount (#1084)
- _tOwned[address(this)] += tToSwap (#929)
- _tOwned[recipient] += s.tTransferAmount (#1087)
Reentrancy in elon100m.transferFrom(address,address,uint256) (#789-806):
External calls:
- _transfer(sender,recipient,amount) (#794)
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
- (success) = recipient.call{value: amount}() (#439)
- UniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1144-1150)
- devAddress.sendValue(devFee) (#1129)
- treasuryAddress.sendValue(treasuryFee) (#1130)
External calls sending eth:
- _transfer(sender,recipient,amount) (#794)
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
- (success) = recipient.call{value: amount}() (#439)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#802)
- _allowances[owner][spender] = amount (#1017)
Apply the check-effects-interactions pattern.

Additional information: link

elon100m.rescueAnyBEP20Tokens(address,address,uint256) (#1252-1254) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#1253)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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


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.


Contract ownership is not renounced (belongs to a wallet)

elon100m.addLiquidity(uint256,uint256) (#1153-1164) ignores return value by UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
Ensure that all the return values of the function calls are used.

Additional information: link

elon100m.allowance(address,address).owner (#771) shadows:
- Ownable.owner() (#94-96) (function)
elon100m._approve(address,address,uint256).owner (#1011) shadows:
- Ownable.owner() (#94-96) (function)
Rename the local variables that shadow another component.

Additional information: link

elon100m.setMaxTransactionAmount(uint256,uint256) (#1208-1214) should emit an event for:
- maxTxAmountBuy = _tTotal / _maxTxAmountBuyPct (#1212)
- maxTxAmountSell = _tTotal / _maxTxAmountSellPct (#1213)
elon100m.setNumTokensSellToAddToLiq(uint256) (#1216-1221) should emit an event for:
- numTokensSellToAddToLiquidity = amountTokens * 10 ** _decimals (#1220)
Emit an event for critical parameter changes.

Additional information: link

elon100m.setTreasuryAddress(address)._treasuryAddress (#1223) lacks a zero-check on :
- treasuryAddress = _treasuryAddress (#1227)
elon100m.setDevAddress(address)._devAddress (#1230) lacks a zero-check on :
- devAddress = _devAddress (#1231)
elon100m.manualSwapPercentage(uint256,address).toAddress (#1239) lacks a zero-check on :
- wAddress = address(toAddress) (#1242)
Check that the address is not zero.

Additional information: link

Reentrancy in elon100m._transfer(address,address,uint256) (#1021-1072):
External calls:
- swapAndLiquify(numTokensSellToAddToLiquidity) (#1068)
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
- (success) = recipient.call{value: amount}() (#439)
- UniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1144-1150)
- devAddress.sendValue(devFee) (#1129)
- treasuryAddress.sendValue(treasuryFee) (#1130)
External calls sending eth:
- swapAndLiquify(numTokensSellToAddToLiquidity) (#1068)
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
- (success) = recipient.call{value: amount}() (#439)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- totFeesPaid.rfi += tRfi (#924)
- totFeesPaid.toSwap += tToSwap (#930)
Reentrancy in elon100m.constructor() (#712-737):
External calls:
- uniswapPair = IUniswapV2Factory(_UniswapV2Router.factory()).createPair(address(this),_UniswapV2Router.WETH()) (#716)
State variables written after the call(s):
- UniswapV2Router = _UniswapV2Router (#719)
- _isExcludedFromFee[owner()] = true (#724)
- _isExcludedFromFee[treasuryAddress] = true (#725)
- _isExcludedFromFee[devAddress] = true (#726)
- _isExcludedFromFee[address(this)] = true (#727)
- _isExcludedFromMaxWallet[owner()] = true (#729)
- _isExcludedFromMaxWallet[treasuryAddress] = true (#730)
- _isExcludedFromMaxWallet[devAddress] = true (#731)
- _isExcludedFromMaxWallet[address(this)] = true (#732)
- _isExcludedFromMaxWallet[uniswapPair] = true (#734)
- _rOwned[owner()] = _rTotal (#720)
- devAddress = address(msg.sender) (#722)
- isAutomatedMarketMakerPair[uniswapPair] = true (#717)
- treasuryAddress = address(msg.sender) (#721)
- wAddress = address(msg.sender) (#723)
Reentrancy in elon100m.manualSwapPercentage(uint256,address) (#1239-1245):
External calls:
- swapTokensForETH(tokenstosell) (#1241)
- UniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1144-1150)
State variables written after the call(s):
- ttk = address(this).balance (#1243)
- wAddress = address(toAddress) (#1242)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in elon100m._transfer(address,address,uint256) (#1021-1072):
External calls:
- swapAndLiquify(numTokensSellToAddToLiquidity) (#1068)
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
- (success) = recipient.call{value: amount}() (#439)
- UniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1144-1150)
- devAddress.sendValue(devFee) (#1129)
- treasuryAddress.sendValue(treasuryFee) (#1130)
External calls sending eth:
- swapAndLiquify(numTokensSellToAddToLiquidity) (#1068)
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
- (success) = recipient.call{value: amount}() (#439)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tToSwap) (#1095)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
- Transfer(sender,recipient,s.tTransferAmount) (#1102)
- _tokenTransfer(from,to,amount,takeFee) (#1071)
Reentrancy in elon100m.addLiquidity(uint256,uint256) (#1153-1164):
External calls:
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
Event emitted after the call(s):
- LiquidityAdded(tokenAmount,ETHAmount) (#1163)
Reentrancy in elon100m.constructor() (#712-737):
External calls:
- uniswapPair = IUniswapV2Factory(_UniswapV2Router.factory()).createPair(address(this),_UniswapV2Router.WETH()) (#716)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(uniswapPair,true) (#718)
- Transfer(address(0),owner(),_tTotal) (#736)
Reentrancy in elon100m.swapAndLiquify(uint256) (#1105-1131):
External calls:
- swapTokensForETH(toSwap) (#1114)
- UniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1144-1150)
- addLiquidity(tokensToAddLiquidityWith,ETHToAddLiquidityWith) (#1121)
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,ETHToAddLiquidityWith) (#1121)
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
Event emitted after the call(s):
- LiquidityAdded(tokenAmount,ETHAmount) (#1163)
- addLiquidity(tokensToAddLiquidityWith,ETHToAddLiquidityWith) (#1121)
Reentrancy in elon100m.transferFrom(address,address,uint256) (#789-806):
External calls:
- _transfer(sender,recipient,amount) (#794)
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
- (success) = recipient.call{value: amount}() (#439)
- UniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1144-1150)
- devAddress.sendValue(devFee) (#1129)
- treasuryAddress.sendValue(treasuryFee) (#1130)
External calls sending eth:
- _transfer(sender,recipient,amount) (#794)
- UniswapV2Router.addLiquidityETH{value: ETHAmount}(address(this),tokenAmount,0,0,devAddress,block.timestamp) (#1155-1162)
- (success) = recipient.call{value: amount}() (#439)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1018)
- _approve(sender,_msgSender(),currentAllowance - amount) (#802)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#408-418) uses assembly
- INLINE ASM (#414-416)
Address.verifyCallResult(bool,bytes,string) (#577-597) uses assembly
- INLINE ASM (#589-592)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.8.0']
- ^0.8.0 (#40)
- ^0.8.0 (#65)
- ^0.8.0 (#136)
- >=0.6.2 (#219)
- >=0.6.2 (#318)
- >=0.5.0 (#364)
- ^0.8.0 (#385)
- ^0.8.0 (#602)
Use one Solidity version.

Additional information: link

elon100m.includeInReward(address) (#880-891) has costly operations inside a loop:
- _excluded.pop() (#887)
Use a local variable to hold the loop computation result.

Additional information: link

Address.functionCall(address,bytes) (#461-463) is never used and should be removed
Address.functionCall(address,bytes,string) (#471-477) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#490-496) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#504-515) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#550-552) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#560-569) is never used and should be removed
Address.functionStaticCall(address,bytes) (#523-525) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#533-542) is never used and should be removed
Address.isContract(address) (#408-418) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#577-597) is never used and should be removed
Context._msgData() (#57-59) is never used and should be removed
Remove unused functions.

Additional information: link

elon100m._rTotal (#623) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
elon100m.maxTxAmountBuy (#625) is set pre-construction with a non-constant function or state variable:
- _tTotal / 66
elon100m.maxTxAmountSell (#626) is set pre-construction with a non-constant function or state variable:
- _tTotal / 66
elon100m.maxWalletAmount (#627) is set pre-construction with a non-constant function or state variable:
- _tTotal / 66
elon100m.numTokensSellToAddToLiquidity (#647) is set pre-construction with a non-constant function or state variable:
- _tTotal / 400
elon100m.appliedRates (#675) is set pre-construction with a non-constant function or state variable:
- buyRates
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

Pragma version^0.8.0 (#40) allows old versions
Pragma version^0.8.0 (#65) allows old versions
Pragma version^0.8.0 (#136) allows old versions
Pragma version>=0.6.2 (#219) allows old versions
Pragma version>=0.6.2 (#318) allows old versions
Pragma version>=0.5.0 (#364) allows old versions
Pragma version^0.8.0 (#385) allows old versions
Pragma version^0.8.0 (#602) allows old versions
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.sendValue(address,uint256) (#436-441):
- (success) = recipient.call{value: amount}() (#439)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#504-515):
- (success,returndata) = target.call{value: value}(data) (#513)
Low level call in Address.functionStaticCall(address,bytes,string) (#533-542):
- (success,returndata) = target.staticcall(data) (#540)
Low level call in Address.functionDelegateCall(address,bytes,string) (#560-569):
- (success,returndata) = target.delegatecall(data) (#567)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router01.WETH() (#223) is not in mixedCase
Contract elon100m (#604-1279) is not in CapWords
Struct elon100m.feeRatesStruct (#649-655) is not in CapWords
Struct elon100m.valuesFromGetValues (#683-691) is not in CapWords
Parameter elon100m.setSwapAndLiquifyEnabled(bool)._enabled (#914) is not in mixedCase
Parameter elon100m.addLiquidity(uint256,uint256).ETHAmount (#1153) is not in mixedCase
Parameter elon100m.setAutomatedMarketMakerPair(address,bool)._pair (#1166) is not in mixedCase
Parameter elon100m.setBuyFees(uint8,uint8,uint8,uint8)._rfi (#1183) is not in mixedCase
Parameter elon100m.setBuyFees(uint8,uint8,uint8,uint8)._treasury (#1184) is not in mixedCase
Parameter elon100m.setBuyFees(uint8,uint8,uint8,uint8)._dev (#1185) is not in mixedCase
Parameter elon100m.setBuyFees(uint8,uint8,uint8,uint8)._lp (#1186) is not in mixedCase
Parameter elon100m.setSellFees(uint8,uint8,uint8,uint8)._rfi (#1196) is not in mixedCase
Parameter elon100m.setSellFees(uint8,uint8,uint8,uint8)._treasury (#1197) is not in mixedCase
Parameter elon100m.setSellFees(uint8,uint8,uint8,uint8)._dev (#1198) is not in mixedCase
Parameter elon100m.setSellFees(uint8,uint8,uint8,uint8)._lp (#1199) is not in mixedCase
Parameter elon100m.setMaxTransactionAmount(uint256,uint256)._maxTxAmountBuyPct (#1209) is not in mixedCase
Parameter elon100m.setMaxTransactionAmount(uint256,uint256)._maxTxAmountSellPct (#1210) is not in mixedCase
Parameter elon100m.setTreasuryAddress(address)._treasuryAddress (#1223) is not in mixedCase
Parameter elon100m.setDevAddress(address)._devAddress (#1230) is not in mixedCase
Parameter elon100m.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#1252) is not in mixedCase
Parameter elon100m.rescueAnyBEP20Tokens(address,address,uint256)._to (#1252) is not in mixedCase
Parameter elon100m.rescueAnyBEP20Tokens(address,address,uint256)._amount (#1252) is not in mixedCase
Parameter elon100m.setMaxWalletAmount(uint256)._maxWalletAmountPct (#1261) is not in mixedCase
Constant elon100m._decimals (#619) is not in UPPER_CASE_WITH_UNDERSCORES
Constant elon100m._name (#640) is not in UPPER_CASE_WITH_UNDERSCORES
Constant elon100m._symbol (#641) is not in UPPER_CASE_WITH_UNDERSCORES
Variable elon100m.UniswapV2Router (#644) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#228) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#229)
Prevent variables from having similar names.

Additional information: link

elon100m._tTotal (#622) should be constant
elon100m.blocksToWait (#633) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#113-115)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#121-124)
name() should be declared external:
- elon100m.name() (#740-742)
symbol() should be declared external:
- elon100m.symbol() (#744-746)
decimals() should be declared external:
- elon100m.decimals() (#748-750)
totalSupply() should be declared external:
- elon100m.totalSupply() (#753-755)
transfer(address,uint256) should be declared external:
- elon100m.transfer(address,uint256) (#762-769)
approve(address,uint256) should be declared external:
- elon100m.approve(address,uint256) (#780-787)
transferFrom(address,address,uint256) should be declared external:
- elon100m.transferFrom(address,address,uint256) (#789-806)
increaseAllowance(address,uint256) should be declared external:
- elon100m.increaseAllowance(address,uint256) (#808-819)
decreaseAllowance(address,uint256) should be declared external:
- elon100m.decreaseAllowance(address,uint256) (#821-836)
isExcludedFromReward(address) should be declared external:
- elon100m.isExcludedFromReward(address) (#838-840)
reflectionFromToken(uint256,bool) should be declared external:
- elon100m.reflectionFromToken(uint256,bool) (#842-855)
isExcludedFromFee(address) should be declared external:
- elon100m.isExcludedFromFee(address) (#902-904)
isExcludedFromMaxWallet(address) should be declared external:
- elon100m.isExcludedFromMaxWallet(address) (#906-912)
setSwapAndLiquifyEnabled(bool) should be declared external:
- elon100m.setSwapAndLiquifyEnabled(bool) (#914-917)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- elon100m.rescueAnyBEP20Tokens(address,address,uint256) (#1252-1254)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Telegram and Twitter accounts


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for 100MElon