Shiba Elon Token Logo

ESHIB [Shiba Elon] Token

About ESHIB

Listings

Token 2 years

Shiba Elon is a community driven project, fairly launched, with 0% team tokens.
The project was inspired by two concepts:
1. Metaverse inhabited by the cutest creatures
2. Elon Impulse for making 3D NFTs accessible to Elon fans

ESHIB is the native token of Shiba Elon. The project was launched November 12, 2021 with a fixed supply of 1 trillion ESHIB tokens. 99% of the token supply went to liquidity.

Metaverse - Home for the cutest
10,000 unique 3D animals being prepared for the future game

Elon Impulse Explained
1. Elon Musk posts a tweet
* The 3D cards NFT that are to be distributed within the Elon Impulse campaign include the screenshots of Elon Musk’s official account latest tweets

2. $ESHIB holders complete tasks
* As long as you hold $ESHIB and complete our tasks, you’re qualified for receiving the airdrops.

1. We airdrop exclusive Elon NFT
* We airdrop exclusive 3D NFT cards for Shiba Elon’s true fans. This is how we form the Elon army.

Social

Laser Scorebeta Last Audit: 22 December 2021

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

Reentrancy in ShibaElon._transfer(address,address,uint256) (#620-670):
External calls:
- collectFees() (#650)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#705)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#716-722)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- collectFees() (#650)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
State variables written after the call(s):
- transferToken(from,address(this),feesToContract) (#664)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#761)
- _balances[recipient] = _balances[recipient].add(amount) (#762)
- transferToken(from,deadAddress,toBurnAmount) (#665)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#761)
- _balances[recipient] = _balances[recipient].add(amount) (#762)
Reentrancy in ShibaElon._transfer(address,address,uint256) (#620-670):
External calls:
- collectFees() (#650)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#705)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#716-722)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- collectFees() (#650)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
State variables written after the call(s):
- transferToken(from,to,amount) (#669)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#761)
- _balances[recipient] = _balances[recipient].add(amount) (#762)
Apply the check-effects-interactions pattern.

Additional information: link

ShibaElon.swapAndSendToFee(uint256) (#700-706) ignores return value by IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#705)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) is never used and should be removed
Address.functionCall(address,bytes) (#107-109) is never used and should be removed
Address.functionCall(address,bytes,string) (#111-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#119-122) is never used and should be removed
Address.isContract(address) (#87-96) is never used and should be removed
Address.sendValue(address,uint256) (#98-104) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#75-77) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#79-82) is never used and should be removed
Remove unused functions.

Additional information: link

ShibaElon.addLiquidity(uint256,uint256) (#743-755) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
Ensure that all the return values of the function calls are used.

Additional information: link

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

Additional information: link

ShibaElon.setLiquifyThreshhold(uint256) (#553-555) should emit an event for:
- _liquifyThreshhold = newLiquifyThreshhold (#554)
ShibaElon.setMaxBalance(uint256) (#561-565) should emit an event for:
- _maxBalance = newMaxBalance (#564)
Emit an event for critical parameter changes.

Additional information: link

ShibaElon.setMarketingAddress(address).newMarketingAddress (#524) lacks a zero-check on :
- marketingAddress = newMarketingAddress (#525)
ShibaElon.setMarketingWalletToken(address)._marketingWalletToken (#557) lacks a zero-check on :
- marketingWalletToken = _marketingWalletToken (#558)
Check that the address is not zero.

Additional information: link

Reentrancy in ShibaElon.collectFees() (#672-682):
External calls:
- swapAndLiquify(liquidityTokensToSell) (#678)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#716-722)
- swapAndSendToFee(marketingTokensToSell) (#681)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#705)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- swapAndLiquify(liquidityTokensToSell) (#678)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
State variables written after the call(s):
- swapAndSendToFee(marketingTokensToSell) (#681)
- _allowances[owner][spender] = amount (#520)
Reentrancy in ShibaElon.constructor() (#437-462):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#439-440)
State variables written after the call(s):
- _balances[_msgSender()] = _totalSupply (#460)
- _burnFee = 0 (#453)
- _isExcludedFromFees[owner()] = true (#444)
- _isExcludedFromFees[address(this)] = true (#445)
- _isExcludedFromMaxBalance[owner()] = true (#447)
- _isExcludedFromMaxBalance[address(this)] = true (#448)
- _isExcludedFromMaxBalance[uniswapV2Pair] = true (#449)
- _liquidityFee = 4 (#451)
- _liquifyThreshhold = 20 * 10 ** 9 * 10 ** _decimals (#457)
- _marketingFee = 6 (#452)
- _maxBalance = 500 * 10 ** 9 * 10 ** _decimals (#458)
- _totalFees = _liquidityFee.add(_marketingFee).add(_burnFee) (#454)
- _totalFeesToContract = _liquidityFee.add(_marketingFee) (#455)
- uniswapV2Router = _uniswapV2Router (#442)
Reentrancy in ShibaElon.swapAndLiquify(uint256) (#684-698):
External calls:
- swapTokensForEth(half) (#692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#716-722)
- addLiquidity(otherHalf,newBalance) (#697)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#697)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#697)
- _allowances[owner][spender] = amount (#520)
Reentrancy in ShibaElon.transferFrom(address,address,uint256) (#500-504):
External calls:
- _transfer(sender,recipient,amount) (#501)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#705)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#716-722)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- _transfer(sender,recipient,amount) (#501)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#502)
- _allowances[owner][spender] = amount (#520)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ShibaElon._transfer(address,address,uint256) (#620-670):
External calls:
- collectFees() (#650)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#705)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#716-722)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- collectFees() (#650)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
Event emitted after the call(s):
- TokenBurn(from,toBurnAmount) (#666)
- Transfer(sender,recipient,amount) (#763)
- transferToken(from,deadAddress,toBurnAmount) (#665)
- Transfer(sender,recipient,amount) (#763)
- transferToken(from,address(this),feesToContract) (#664)
Reentrancy in ShibaElon._transfer(address,address,uint256) (#620-670):
External calls:
- collectFees() (#650)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#705)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#716-722)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- collectFees() (#650)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#763)
- transferToken(from,to,amount) (#669)
Reentrancy in ShibaElon.collectFees() (#672-682):
External calls:
- swapAndLiquify(liquidityTokensToSell) (#678)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#716-722)
- swapAndSendToFee(marketingTokensToSell) (#681)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#705)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- swapAndLiquify(liquidityTokensToSell) (#678)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#521)
- swapAndSendToFee(marketingTokensToSell) (#681)
Reentrancy in ShibaElon.constructor() (#437-462):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#439-440)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#461)
Reentrancy in ShibaElon.swapAndLiquify(uint256) (#684-698):
External calls:
- swapTokensForEth(half) (#692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#716-722)
- addLiquidity(otherHalf,newBalance) (#697)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#697)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#521)
- addLiquidity(otherHalf,newBalance) (#697)
Reentrancy in ShibaElon.transferFrom(address,address,uint256) (#500-504):
External calls:
- _transfer(sender,recipient,amount) (#501)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#705)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#716-722)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- _transfer(sender,recipient,amount) (#501)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#521)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#502)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

ShibaElon._totalSupply (#405) is set pre-construction with a non-constant function or state variable:
- 100000 * 10 ** 9 * 10 ** _decimals
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) (#98-104):
- (success) = recipient.call{value: amount}() (#102)
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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#214) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#215) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#231) is not in mixedCase
Function IUniswapV2Router01.WETH() (#252) is not in mixedCase
Parameter ShibaElon.setMarketingWalletToken(address)._marketingWalletToken (#557) is not in mixedCase
Constant ShibaElon.deadAddress (#409) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ShibaElon._maxFees (#416) is not in UPPER_CASE_WITH_UNDERSCORES
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

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

Additional information: link

ShibaElon.slitherConstructorVariables() (#393-766) uses literals with too many digits:
- _totalSupply = 100000 * 10 ** 9 * 10 ** _decimals (#405)
ShibaElon.slitherConstructorConstantVariables() (#393-766) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#409)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#146) is never used in ShibaElon (#393-766)
Ownable._lockTime (#147) is never used in ShibaElon (#393-766)
Remove unused state variables.

Additional information: link

Ownable._lockTime (#147) should be constant
Ownable._previousOwner (#146) should be constant
ShibaElon._decimals (#404) should be constant
ShibaElon._name (#402) should be constant
ShibaElon._symbol (#403) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#166-169)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#171-175)
name() should be declared external:
- ShibaElon.name() (#466-468)
symbol() should be declared external:
- ShibaElon.symbol() (#470-472)
decimals() should be declared external:
- ShibaElon.decimals() (#474-476)
totalSupply() should be declared external:
- ShibaElon.totalSupply() (#478-480)
transfer(address,uint256) should be declared external:
- ShibaElon.transfer(address,uint256) (#486-489)
allowance(address,address) should be declared external:
- ShibaElon.allowance(address,address) (#491-493)
approve(address,uint256) should be declared external:
- ShibaElon.approve(address,uint256) (#495-498)
transferFrom(address,address,uint256) should be declared external:
- ShibaElon.transferFrom(address,address,uint256) (#500-504)
increaseAllowance(address,uint256) should be declared external:
- ShibaElon.increaseAllowance(address,uint256) (#506-509)
decreaseAllowance(address,uint256) should be declared external:
- ShibaElon.decreaseAllowance(address,uint256) (#511-514)
isExcludedFromFees(address) should be declared external:
- ShibaElon.isExcludedFromFees(address) (#567-569)
excludeFromFees(address) should be declared external:
- ShibaElon.excludeFromFees(address) (#571-573)
includeInFees(address) should be declared external:
- ShibaElon.includeInFees(address) (#575-577)
isExcludedFromMaxBalance(address) should be declared external:
- ShibaElon.isExcludedFromMaxBalance(address) (#579-581)
excludeFromMaxBalance(address) should be declared external:
- ShibaElon.excludeFromMaxBalance(address) (#583-585)
includeInMaxBalance(address) should be declared external:
- ShibaElon.includeInMaxBalance(address) (#587-589)
totalFees() should be declared external:
- ShibaElon.totalFees() (#591-593)
liquidityFee() should be declared external:
- ShibaElon.liquidityFee() (#595-597)
marketingFee() should be declared external:
- ShibaElon.marketingFee() (#599-601)
burnFee() should be declared external:
- ShibaElon.burnFee() (#603-605)
maxFees() should be declared external:
- ShibaElon.maxFees() (#607-609)
liquifyThreshhold() should be declared external:
- ShibaElon.liquifyThreshhold() (#611-613)
maxBalance() should be declared external:
- ShibaElon.maxBalance() (#615-617)
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.


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 number of swaps.


Telegram account has relatively few subscribers


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


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find whitepaper link on the website


Unable to find code repository for the project


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for ESHIB

News for ESHIB