ElonGate Token Logo

ElonGate Token

About ElonGate

Listings

Token 3 years
CoinGecko 2 years
CoinMarketCap 3 years
white paper

ELONGATE is a cryptocurrency token built on the Binance Smart Chain. Born out of a tweet by Elon Musk, ELONGATE employs unique tokenomics with full integration of charity. As a real world use case, all transactions within the ecosystem are taxed wherein a set portion is donated to charities every week. The ELONGATE ecosystem is constantly expanding and will further support digital and real world use cases, starting with charitable donations at present and will further spread to NFTs.

Laser Scorebeta Last Audit: 3 March 2023

report
Token is either risky or in presale. For presale 30+ is a fine score.

Reentrancy in ElonGate._transfer(address,address,uint256) (#996-1040):
External calls:
- swapAndLiquify(contractTokenBalance) (#1027)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1027)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#952)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1121)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1130)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1141)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#868)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1122)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1132)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1142)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#870)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _rTotal = _rTotal.sub(rFee) (#907)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#954)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1140)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#867)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1131)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#869)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

Low level call in Address.sendValue(address,uint256) (#299-305):
- (success) = recipient.call{value: amount}() (#303)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#365-386):
- (success,returndata) = target.call{value: weiValue}(data) (#369)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Redundant expression "this (#245)" inContext (#239-248)
Remove redundant statements if they congest code but offer no value.

Additional information: link

ElonGate._approve(address,address,uint256).owner (#988) shadows:
- Ownable.owner() (#420-422) (function)
ElonGate.allowance(address,address).owner (#784) shadows:
- Ownable.owner() (#420-422) (function)
Rename the local variables that shadow another component.

Additional information: link

ElonGate.numTokensSellToAddToLiquidity (#724) should be constant
ElonGate._tTotal (#703) should be constant
ElonGate._symbol (#708) should be constant
ElonGate._decimals (#709) should be constant
ElonGate._name (#707) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

increaseAllowance(address,uint256) should be declared external:
- ElonGate.increaseAllowance(address,uint256) (#799-802)
name() should be declared external:
- ElonGate.name() (#758-760)
isExcludedFromFee(address) should be declared external:
- ElonGate.isExcludedFromFee(address) (#984-986)
symbol() should be declared external:
- ElonGate.symbol() (#762-764)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#439-442)
transferFrom(address,address,uint256) should be declared external:
- ElonGate.transferFrom(address,address,uint256) (#793-797)
decimals() should be declared external:
- ElonGate.decimals() (#766-768)
reflectionFromToken(uint256,bool) should be declared external:
- ElonGate.reflectionFromToken(uint256,bool) (#826-835)
approve(address,uint256) should be declared external:
- ElonGate.approve(address,uint256) (#788-791)
totalFees() should be declared external:
- ElonGate.totalFees() (#813-815)
allowance(address,address) should be declared external:
- ElonGate.allowance(address,address) (#784-786)
transfer(address,uint256) should be declared external:
- ElonGate.transfer(address,uint256) (#779-782)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#448-452)
decreaseAllowance(address,uint256) should be declared external:
- ElonGate.decreaseAllowance(address,uint256) (#804-807)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#454-456)
isExcludedFromReward(address) should be declared external:
- ElonGate.isExcludedFromReward(address) (#809-811)
deliver(uint256) should be declared external:
- ElonGate.deliver(uint256) (#817-824)
totalSupply() should be declared external:
- ElonGate.totalSupply() (#770-772)
excludeFromReward(address) should be declared external:
- ElonGate.excludeFromReward(address) (#843-851)
excludeFromFee(address) should be declared external:
- ElonGate.excludeFromFee(address) (#876-878)
unlock() should be declared external:
- Ownable.unlock() (#467-472)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ElonGate.setSwapAndLiquifyEnabled(bool) (#898-901)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#459-464)
includeInFee(address) should be declared external:
- ElonGate.includeInFee(address) (#880-882)
Use the external attribute for functions never called from the contract.

Additional information: link

ElonGate.includeInReward(address) (#853-864) has costly operations inside a loop:
- _excluded.pop() (#860)
Use a local variable to hold the loop computation result.

Additional information: link

ElonGate.addLiquidity(uint256,uint256) (#1083-1096) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
Ensure that all the return values of the function calls are used.

Additional information: link

ElonGate.setLiquidityFeePercent(uint256) (#888-890) should emit an event for:
- _liquidityFee = liquidityFee (#889)
ElonGate.setMaxTxPercent(uint256) (#892-896) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#893-895)
ElonGate.setTaxFeePercent(uint256) (#884-886) should emit an event for:
- _taxFee = taxFee (#885)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in ElonGate.transferFrom(address,address,uint256) (#793-797):
External calls:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
External calls sending eth:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#795)
- _allowances[owner][spender] = amount (#992)
Reentrancy in ElonGate.swapAndLiquify(uint256) (#1042-1063):
External calls:
- swapTokensForEth(half) (#1054)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
- addLiquidity(otherHalf,newBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1060)
- _allowances[owner][spender] = amount (#992)
Reentrancy in ElonGate._transfer(address,address,uint256) (#996-1040):
External calls:
- swapAndLiquify(contractTokenBalance) (#1027)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1027)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _liquidityFee = _previousLiquidityFee (#981)
- _liquidityFee = 0 (#976)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _previousLiquidityFee = _liquidityFee (#973)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _previousTaxFee = _taxFee (#972)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _tFeeTotal = _tFeeTotal.add(tFee) (#908)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _taxFee = _previousTaxFee (#980)
- _taxFee = 0 (#975)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ElonGate.transferFrom(address,address,uint256) (#793-797):
External calls:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
External calls sending eth:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#993)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#795)
Reentrancy in ElonGate._transfer(address,address,uint256) (#996-1040):
External calls:
- swapAndLiquify(contractTokenBalance) (#1027)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1027)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1125)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- Transfer(sender,recipient,tTransferAmount) (#1145)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- Transfer(sender,recipient,tTransferAmount) (#1135)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- Transfer(sender,recipient,tTransferAmount) (#873)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
Reentrancy in ElonGate.swapAndLiquify(uint256) (#1042-1063):
External calls:
- swapTokensForEth(half) (#1054)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
- addLiquidity(otherHalf,newBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#993)
- addLiquidity(otherHalf,newBalance) (#1060)
- SwapAndLiquify(half,newBalance,otherHalf) (#1062)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#365-386) uses assembly
- INLINE ASM (#378-381)
Address.isContract(address) (#272-281) uses assembly
- INLINE ASM (#279)
Do not use evm assembly.

Additional information: link

Address.sendValue(address,uint256) (#299-305) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#350-352) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#233-236) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#360-363) is never used and should be removed
Context._msgData() (#244-247) is never used and should be removed
SafeMath.mod(uint256,uint256) (#217-219) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#365-386) is never used and should be removed
Address.isContract(address) (#272-281) is never used and should be removed
Address.functionCall(address,bytes,string) (#335-337) is never used and should be removed
Address.functionCall(address,bytes) (#325-327) is never used and should be removed
Remove unused functions.

Additional information: link

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

Parameter ElonGate.calculateTaxFee(uint256)._amount (#957) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#512) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#529) is not in mixedCase
Parameter ElonGate.setSwapAndLiquifyEnabled(bool)._enabled (#898) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#511) is not in mixedCase
Variable ElonGate._taxFee (#711) is not in mixedCase
Parameter ElonGate.calculateLiquidityFee(uint256)._amount (#963) is not in mixedCase
Variable ElonGate._maxTxAmount (#723) is not in mixedCase
Function IUniswapV2Router01.WETH() (#551) is not in mixedCase
Variable ElonGate._liquidityFee (#714) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable ElonGate.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to ElonGate._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable ElonGate.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to ElonGate._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable ElonGate._transferStandard(address,address,uint256).rTransferAmount (#1120) is too similar to ElonGate._getValues(uint256).tTransferAmount (#912)
Variable ElonGate._getValues(uint256).rTransferAmount (#913) is too similar to ElonGate._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable ElonGate._transferStandard(address,address,uint256).rTransferAmount (#1120) is too similar to ElonGate._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable ElonGate._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#928) is too similar to ElonGate._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable ElonGate._transferFromExcluded(address,address,uint256).rTransferAmount (#1139) is too similar to ElonGate._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable ElonGate._transferStandard(address,address,uint256).rTransferAmount (#1120) is too similar to ElonGate._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable ElonGate.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to ElonGate._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable ElonGate.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to ElonGate._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable ElonGate._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#928) is too similar to ElonGate._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable ElonGate._transferFromExcluded(address,address,uint256).rTransferAmount (#1139) is too similar to ElonGate._getValues(uint256).tTransferAmount (#912)
Variable ElonGate._transferToExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to ElonGate._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable ElonGate._transferBothExcluded(address,address,uint256).rTransferAmount (#866) is too similar to ElonGate._getTValues(uint256).tTransferAmount (#920)
Variable ElonGate._transferBothExcluded(address,address,uint256).rTransferAmount (#866) is too similar to ElonGate._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable ElonGate._getValues(uint256).rTransferAmount (#913) is too similar to ElonGate._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable ElonGate._transferFromExcluded(address,address,uint256).rTransferAmount (#1139) is too similar to ElonGate._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable ElonGate._transferFromExcluded(address,address,uint256).rTransferAmount (#1139) is too similar to ElonGate._getTValues(uint256).tTransferAmount (#920)
Variable ElonGate._transferBothExcluded(address,address,uint256).rTransferAmount (#866) is too similar to ElonGate._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable ElonGate._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#928) is too similar to ElonGate._getTValues(uint256).tTransferAmount (#920)
Variable ElonGate._transferStandard(address,address,uint256).rTransferAmount (#1120) is too similar to ElonGate._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable ElonGate._transferStandard(address,address,uint256).rTransferAmount (#1120) is too similar to ElonGate._getTValues(uint256).tTransferAmount (#920)
Variable ElonGate._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#928) is too similar to ElonGate._getValues(uint256).tTransferAmount (#912)
Variable ElonGate._getValues(uint256).rTransferAmount (#913) is too similar to ElonGate._getValues(uint256).tTransferAmount (#912)
Variable ElonGate._transferToExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to ElonGate._getValues(uint256).tTransferAmount (#912)
Variable ElonGate._getValues(uint256).rTransferAmount (#913) is too similar to ElonGate._getTValues(uint256).tTransferAmount (#920)
Variable ElonGate._transferToExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to ElonGate._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable ElonGate._getValues(uint256).rTransferAmount (#913) is too similar to ElonGate._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#556) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#557)
Variable ElonGate._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#928) is too similar to ElonGate._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable ElonGate._transferFromExcluded(address,address,uint256).rTransferAmount (#1139) is too similar to ElonGate._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable ElonGate._transferFromExcluded(address,address,uint256).rTransferAmount (#1139) is too similar to ElonGate._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable ElonGate._getValues(uint256).rTransferAmount (#913) is too similar to ElonGate._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable ElonGate._transferToExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to ElonGate._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable ElonGate._transferToExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to ElonGate._getTValues(uint256).tTransferAmount (#920)
Variable ElonGate._transferBothExcluded(address,address,uint256).rTransferAmount (#866) is too similar to ElonGate._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable ElonGate._transferStandard(address,address,uint256).rTransferAmount (#1120) is too similar to ElonGate._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable ElonGate._transferBothExcluded(address,address,uint256).rTransferAmount (#866) is too similar to ElonGate._getValues(uint256).tTransferAmount (#912)
Variable ElonGate.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to ElonGate._getValues(uint256).tTransferAmount (#912)
Variable ElonGate._transferBothExcluded(address,address,uint256).rTransferAmount (#866) is too similar to ElonGate._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable ElonGate.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to ElonGate._getTValues(uint256).tTransferAmount (#920)
Variable ElonGate._transferToExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to ElonGate._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable ElonGate._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#928) is too similar to ElonGate._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Prevent variables from having similar names.

Additional information: link

ElonGate.slitherConstructorVariables() (#689-1152) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#723)
ElonGate.slitherConstructorVariables() (#689-1152) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#724)
ElonGate.slitherConstructorVariables() (#689-1152) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#703)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Holders:


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


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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


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

No disclosed threats


Unable to find audit link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


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


Token has relatively low CoinGecko rank

Price for ElonGate

News for ElonGate