EjectElon Token Logo

EJECT [EjectElon] Token

ALERT: dead

About EJECT

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

EJECT is a platform where investors meet new alt-coin projects in a Kickstarter type crowdfunding platform. This project is set to disrupt the altcoin and memecoin market as it exists today. EJECT accomplishes this by giving developers advanced tools and by giving investors a marketplace devoid of rug-pools. Read more about our platform on eject.space.

Social

Laser Scorebeta Last Audit: 8 May 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

Anti-Scam

Links


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

Reentrancy in EjectElon._transfer(address,address,uint256) (#712-756):
External calls:
- swapAndLiquify(contractTokenBalance) (#743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#790-796)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#755)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#668)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#837)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#846)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#857)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#584)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#838)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#848)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#858)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#586)
- _tokenTransfer(from,to,amount,takeFee) (#755)
- _rTotal = _rTotal.sub(rFee) (#623)
- _tokenTransfer(from,to,amount,takeFee) (#755)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#670)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#583)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#856)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#847)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#585)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

EjectElon.includeInReward(address) (#569-580) has costly operations inside a loop:
- _excluded.pop() (#576)
Use a local variable to hold the loop computation result.

Additional information: link

EjectElon.addLiquidity(uint256,uint256) (#799-812) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
Ensure that all the return values of the function calls are used.

Additional information: link

EjectElon.allowance(address,address).owner (#500) shadows:
- Ownable.owner() (#153-155) (function)
EjectElon._approve(address,address,uint256).owner (#704) shadows:
- Ownable.owner() (#153-155) (function)
Rename the local variables that shadow another component.

Additional information: link

EjectElon.setTaxFeePercent(uint256) (#600-602) should emit an event for:
- _taxFee = taxFee (#601)
EjectElon.setLiquidityFeePercent(uint256) (#604-606) should emit an event for:
- _liquidityFee = liquidityFee (#605)
EjectElon.setMaxTxPercent(uint256) (#608-612) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#609-611)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in EjectElon._transfer(address,address,uint256) (#712-756):
External calls:
- swapAndLiquify(contractTokenBalance) (#743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#790-796)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#755)
- _liquidityFee = _previousLiquidityFee (#697)
- _liquidityFee = 0 (#692)
- _tokenTransfer(from,to,amount,takeFee) (#755)
- _previousLiquidityFee = _liquidityFee (#689)
- _tokenTransfer(from,to,amount,takeFee) (#755)
- _previousTaxFee = _taxFee (#688)
- _tokenTransfer(from,to,amount,takeFee) (#755)
- _tFeeTotal = _tFeeTotal.add(tFee) (#624)
- _tokenTransfer(from,to,amount,takeFee) (#755)
- _taxFee = _previousTaxFee (#696)
- _taxFee = 0 (#691)
Reentrancy in EjectElon.constructor() (#456-472):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#461-462)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#468)
- _isExcludedFromFee[address(this)] = true (#469)
- uniswapV2Router = _uniswapV2Router (#465)
Reentrancy in EjectElon.swapAndLiquify(uint256) (#758-779):
External calls:
- swapTokensForEth(half) (#770)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#790-796)
- addLiquidity(otherHalf,newBalance) (#776)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#776)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#776)
- _allowances[owner][spender] = amount (#708)
Reentrancy in EjectElon.transferFrom(address,address,uint256) (#509-513):
External calls:
- _transfer(sender,recipient,amount) (#510)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#790-796)
External calls sending eth:
- _transfer(sender,recipient,amount) (#510)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#511)
- _allowances[owner][spender] = amount (#708)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EjectElon._transfer(address,address,uint256) (#712-756):
External calls:
- swapAndLiquify(contractTokenBalance) (#743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#790-796)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#841)
- _tokenTransfer(from,to,amount,takeFee) (#755)
- Transfer(sender,recipient,tTransferAmount) (#861)
- _tokenTransfer(from,to,amount,takeFee) (#755)
- Transfer(sender,recipient,tTransferAmount) (#851)
- _tokenTransfer(from,to,amount,takeFee) (#755)
- Transfer(sender,recipient,tTransferAmount) (#589)
- _tokenTransfer(from,to,amount,takeFee) (#755)
Reentrancy in EjectElon.constructor() (#456-472):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#461-462)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#471)
Reentrancy in EjectElon.swapAndLiquify(uint256) (#758-779):
External calls:
- swapTokensForEth(half) (#770)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#790-796)
- addLiquidity(otherHalf,newBalance) (#776)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#776)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#709)
- addLiquidity(otherHalf,newBalance) (#776)
- SwapAndLiquify(half,newBalance,otherHalf) (#778)
Reentrancy in EjectElon.transferFrom(address,address,uint256) (#509-513):
External calls:
- _transfer(sender,recipient,amount) (#510)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#790-796)
External calls sending eth:
- _transfer(sender,recipient,amount) (#510)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#804-811)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#709)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#511)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#85-94) uses assembly
- INLINE ASM (#92)
Address._functionCallWithValue(address,bytes,uint256,string) (#120-137) uses assembly
- INLINE ASM (#129-132)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#120-137) is never used and should be removed
Address.functionCall(address,bytes) (#103-105) is never used and should be removed
Address.functionCall(address,bytes,string) (#107-109) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#111-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#115-118) is never used and should be removed
Address.isContract(address) (#85-94) is never used and should be removed
Address.sendValue(address,uint256) (#95-101) is never used and should be removed
Context._msgData() (#78-81) is never used and should be removed
SafeMath.mod(uint256,uint256) (#63-65) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#67-70) is never used and should be removed
Remove unused functions.

Additional information: link

EjectElon._rTotal (#420) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
EjectElon._previousTaxFee (#428) is set pre-construction with a non-constant function or state variable:
- _taxFee
EjectElon._previousLiquidityFee (#431) 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

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

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#228) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#229) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#246) is not in mixedCase
Function IUniswapV2Router01.WETH() (#268) is not in mixedCase
Parameter EjectElon.setSwapAndLiquifyEnabled(bool)._enabled (#614) is not in mixedCase
Parameter EjectElon.calculateTaxFee(uint256)._amount (#673) is not in mixedCase
Parameter EjectElon.calculateLiquidityFee(uint256)._amount (#679) is not in mixedCase
Variable EjectElon._taxFee (#427) is not in mixedCase
Variable EjectElon._liquidityFee (#430) is not in mixedCase
Variable EjectElon._maxTxAmount (#439) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#79)" inContext (#73-82)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#273) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#274)
Variable EjectElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#644) is too similar to EjectElon._transferFromExcluded(address,address,uint256).tTransferAmount (#855)
Variable EjectElon._transferBothExcluded(address,address,uint256).rTransferAmount (#582) is too similar to EjectElon._transferStandard(address,address,uint256).tTransferAmount (#836)
Variable EjectElon.reflectionFromToken(uint256,bool).rTransferAmount (#548) is too similar to EjectElon._transferBothExcluded(address,address,uint256).tTransferAmount (#582)
Variable EjectElon._transferStandard(address,address,uint256).rTransferAmount (#836) is too similar to EjectElon._transferFromExcluded(address,address,uint256).tTransferAmount (#855)
Variable EjectElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#644) is too similar to EjectElon._transferStandard(address,address,uint256).tTransferAmount (#836)
Variable EjectElon._transferStandard(address,address,uint256).rTransferAmount (#836) is too similar to EjectElon._transferStandard(address,address,uint256).tTransferAmount (#836)
Variable EjectElon.reflectionFromToken(uint256,bool).rTransferAmount (#548) is too similar to EjectElon._getValues(uint256).tTransferAmount (#628)
Variable EjectElon.reflectionFromToken(uint256,bool).rTransferAmount (#548) is too similar to EjectElon._transferFromExcluded(address,address,uint256).tTransferAmount (#855)
Variable EjectElon.reflectionFromToken(uint256,bool).rTransferAmount (#548) is too similar to EjectElon._transferStandard(address,address,uint256).tTransferAmount (#836)
Variable EjectElon._getValues(uint256).rTransferAmount (#629) is too similar to EjectElon._transferFromExcluded(address,address,uint256).tTransferAmount (#855)
Variable EjectElon._transferFromExcluded(address,address,uint256).rTransferAmount (#855) is too similar to EjectElon._transferFromExcluded(address,address,uint256).tTransferAmount (#855)
Variable EjectElon._transferBothExcluded(address,address,uint256).rTransferAmount (#582) is too similar to EjectElon._transferBothExcluded(address,address,uint256).tTransferAmount (#582)
Variable EjectElon._transferBothExcluded(address,address,uint256).rTransferAmount (#582) is too similar to EjectElon._getValues(uint256).tTransferAmount (#628)
Variable EjectElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#644) is too similar to EjectElon._transferBothExcluded(address,address,uint256).tTransferAmount (#582)
Variable EjectElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#644) is too similar to EjectElon._getValues(uint256).tTransferAmount (#628)
Variable EjectElon._transferToExcluded(address,address,uint256).rTransferAmount (#845) is too similar to EjectElon._transferFromExcluded(address,address,uint256).tTransferAmount (#855)
Variable EjectElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#644) is too similar to EjectElon._getTValues(uint256).tTransferAmount (#636)
Variable EjectElon._transferBothExcluded(address,address,uint256).rTransferAmount (#582) is too similar to EjectElon._transferFromExcluded(address,address,uint256).tTransferAmount (#855)
Variable EjectElon._getValues(uint256).rTransferAmount (#629) is too similar to EjectElon._transferToExcluded(address,address,uint256).tTransferAmount (#845)
Variable EjectElon._getValues(uint256).rTransferAmount (#629) is too similar to EjectElon._getTValues(uint256).tTransferAmount (#636)
Variable EjectElon._transferToExcluded(address,address,uint256).rTransferAmount (#845) is too similar to EjectElon._transferBothExcluded(address,address,uint256).tTransferAmount (#582)
Variable EjectElon._transferStandard(address,address,uint256).rTransferAmount (#836) is too similar to EjectElon._transferBothExcluded(address,address,uint256).tTransferAmount (#582)
Variable EjectElon._transferFromExcluded(address,address,uint256).rTransferAmount (#855) is too similar to EjectElon._transferBothExcluded(address,address,uint256).tTransferAmount (#582)
Variable EjectElon.reflectionFromToken(uint256,bool).rTransferAmount (#548) is too similar to EjectElon._transferToExcluded(address,address,uint256).tTransferAmount (#845)
Variable EjectElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#644) is too similar to EjectElon._transferToExcluded(address,address,uint256).tTransferAmount (#845)
Variable EjectElon._transferToExcluded(address,address,uint256).rTransferAmount (#845) is too similar to EjectElon._transferStandard(address,address,uint256).tTransferAmount (#836)
Variable EjectElon.reflectionFromToken(uint256,bool).rTransferAmount (#548) is too similar to EjectElon._getTValues(uint256).tTransferAmount (#636)
Variable EjectElon._transferFromExcluded(address,address,uint256).rTransferAmount (#855) is too similar to EjectElon._transferStandard(address,address,uint256).tTransferAmount (#836)
Variable EjectElon._getValues(uint256).rTransferAmount (#629) is too similar to EjectElon._transferBothExcluded(address,address,uint256).tTransferAmount (#582)
Variable EjectElon._transferBothExcluded(address,address,uint256).rTransferAmount (#582) is too similar to EjectElon._transferToExcluded(address,address,uint256).tTransferAmount (#845)
Variable EjectElon._transferBothExcluded(address,address,uint256).rTransferAmount (#582) is too similar to EjectElon._getTValues(uint256).tTransferAmount (#636)
Variable EjectElon._transferToExcluded(address,address,uint256).rTransferAmount (#845) is too similar to EjectElon._getValues(uint256).tTransferAmount (#628)
Variable EjectElon._transferFromExcluded(address,address,uint256).rTransferAmount (#855) is too similar to EjectElon._getValues(uint256).tTransferAmount (#628)
Variable EjectElon._getValues(uint256).rTransferAmount (#629) is too similar to EjectElon._transferStandard(address,address,uint256).tTransferAmount (#836)
Variable EjectElon._transferStandard(address,address,uint256).rTransferAmount (#836) is too similar to EjectElon._getValues(uint256).tTransferAmount (#628)
Variable EjectElon._transferToExcluded(address,address,uint256).rTransferAmount (#845) is too similar to EjectElon._transferToExcluded(address,address,uint256).tTransferAmount (#845)
Variable EjectElon._transferToExcluded(address,address,uint256).rTransferAmount (#845) is too similar to EjectElon._getTValues(uint256).tTransferAmount (#636)
Variable EjectElon._transferStandard(address,address,uint256).rTransferAmount (#836) is too similar to EjectElon._transferToExcluded(address,address,uint256).tTransferAmount (#845)
Variable EjectElon._transferFromExcluded(address,address,uint256).rTransferAmount (#855) is too similar to EjectElon._transferToExcluded(address,address,uint256).tTransferAmount (#845)
Variable EjectElon._transferFromExcluded(address,address,uint256).rTransferAmount (#855) is too similar to EjectElon._getTValues(uint256).tTransferAmount (#636)
Variable EjectElon._transferStandard(address,address,uint256).rTransferAmount (#836) is too similar to EjectElon._getTValues(uint256).tTransferAmount (#636)
Variable EjectElon._getValues(uint256).rTransferAmount (#629) is too similar to EjectElon._getValues(uint256).tTransferAmount (#628)
Prevent variables from having similar names.

Additional information: link

EjectElon.slitherConstructorVariables() (#405-864) uses literals with too many digits:
- _tTotal = 100000000000000 * 10 ** 3 * 10 ** 9 (#419)
EjectElon.slitherConstructorVariables() (#405-864) uses literals with too many digits:
- _maxTxAmount = 5000000000 * 10 ** 3 * 10 ** 9 (#439)
EjectElon.slitherConstructorVariables() (#405-864) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 50000000 * 10 ** 3 * 10 ** 9 (#440)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

EjectElon._decimals (#425) should be constant
EjectElon._name (#423) should be constant
EjectElon._symbol (#424) should be constant
EjectElon._tTotal (#419) should be constant
EjectElon.numTokensSellToAddToLiquidity (#440) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#162-165)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#167-171)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#173-175)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#177-182)
unlock() should be declared external:
- Ownable.unlock() (#184-189)
name() should be declared external:
- EjectElon.name() (#474-476)
symbol() should be declared external:
- EjectElon.symbol() (#478-480)
decimals() should be declared external:
- EjectElon.decimals() (#482-484)
totalSupply() should be declared external:
- EjectElon.totalSupply() (#486-488)
transfer(address,uint256) should be declared external:
- EjectElon.transfer(address,uint256) (#495-498)
allowance(address,address) should be declared external:
- EjectElon.allowance(address,address) (#500-502)
approve(address,uint256) should be declared external:
- EjectElon.approve(address,uint256) (#504-507)
transferFrom(address,address,uint256) should be declared external:
- EjectElon.transferFrom(address,address,uint256) (#509-513)
increaseAllowance(address,uint256) should be declared external:
- EjectElon.increaseAllowance(address,uint256) (#515-518)
decreaseAllowance(address,uint256) should be declared external:
- EjectElon.decreaseAllowance(address,uint256) (#520-523)
isExcludedFromReward(address) should be declared external:
- EjectElon.isExcludedFromReward(address) (#525-527)
totalFees() should be declared external:
- EjectElon.totalFees() (#529-531)
deliver(uint256) should be declared external:
- EjectElon.deliver(uint256) (#533-540)
reflectionFromToken(uint256,bool) should be declared external:
- EjectElon.reflectionFromToken(uint256,bool) (#542-551)
excludeFromReward(address) should be declared external:
- EjectElon.excludeFromReward(address) (#559-567)
excludeFromFee(address) should be declared external:
- EjectElon.excludeFromFee(address) (#592-594)
includeInFee(address) should be declared external:
- EjectElon.includeInFee(address) (#596-598)
setSwapAndLiquifyEnabled(bool) should be declared external:
- EjectElon.setSwapAndLiquifyEnabled(bool) (#614-617)
isExcludedFromFee(address) should be declared external:
- EjectElon.isExcludedFromFee(address) (#700-702)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Token is deployed only at one blockchain

Contract has 4% buy tax and 3% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d number of PancakeSwap swaps is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Telegram account link seems to be invalid


Twitter account has relatively few followers


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

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


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for EJECT

News for EJECT