ELONBALLS Token Logo

ELONBALLS Token

About ELONBALLS

Listings

Token 2 years

Elonballs is a token that acts as the core utility engine for the Pokelon Ecosystem, and brings a wide variety of new features for holders.

Elonballs parodies wildly popular trends in DeFi and Gaming culture, bringing them to life as an interactive, NFT Collectible Card Game.

Holders have access to the Elondex, a comprehensive library of all currently known NFTs, and are eligible to win giveaways for these NFTs or trade them in the community.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

ELONBALLS.addLiquidity(uint256,uint256) (#864-877) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#869-876)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

ELONBALLS._transfer(address,address,uint256) (#690-807) uses a weak PRNG: "_bBSLimit = _bBSLimitMin + uint256(keccak256(bytes)(abi.encodePacked(block.timestamp,block.difficulty))) % (_bBSLimitMax - _bBSLimitMin + 1) (#751)"
Do not use block.timestamp, now or blockhash as a source of randomness

Additional information: link

Reentrancy in ELONBALLS._transfer(address,address,uint256) (#690-807):
External calls:
- swapTokens(contractTokenBalance) (#719)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#836-842)
- buyBackTokens(_bBSLimit) (#754)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#854-859)
External calls sending eth:
- swapTokens(contractTokenBalance) (#719)
- recipient.transfer(amount) (#1160)
- buyBackTokens(_bBSLimit) (#754)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#854-859)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#806)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#983)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#908)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#899)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#919)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#929)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#900)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#920)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#910)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#931)
- _tokenTransfer(from,to,amount,takeFee) (#806)
- _rTotal = _rTotal.sub(rFee) (#938)
- _tokenTransfer(from,to,amount,takeFee) (#806)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#985)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#918)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#928)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#909)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#930)
- buyBackTokens(_bBSLimit) (#754)
- inSwapAndLiquify = true (#536)
- inSwapAndLiquify = false (#538)
Apply the check-effects-interactions pattern.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

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

ELONBALLS._transfer(address,address,uint256).sellHistory (#706) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

ELONBALLS.addLiquidity(uint256,uint256) (#864-877) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#869-876)
Ensure that all the return values of the function calls are used.

Additional information: link

ELONBALLS._approve(address,address,uint256).owner (#682) shadows:
- Ownable.owner() (#181-183) (function)
Rename the local variables that shadow another component.

Additional information: link

ELONBALLS.setNumTokensSellToAddToBuyBack(uint256) (#1122-1124) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#1123)
Emit an event for critical parameter changes.

Additional information: link

ELONBALLS.setMarketingAddress(address)._marketingAddress (#1126) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#1127)
Check that the address is not zero.

Additional information: link

Reentrancy in ELONBALLS.transferFrom(address,address,uint256) (#600-604):
External calls:
- _transfer(sender,recipient,amount) (#601)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#854-859)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#836-842)
External calls sending eth:
- _transfer(sender,recipient,amount) (#601)
- recipient.transfer(amount) (#1160)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#854-859)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#602)
- _allowances[owner][spender] = amount (#686)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ELONBALLS.transferFrom(address,address,uint256) (#600-604):
External calls:
- _transfer(sender,recipient,amount) (#601)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#854-859)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#836-842)
External calls sending eth:
- _transfer(sender,recipient,amount) (#601)
- recipient.transfer(amount) (#1160)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#854-859)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#687)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#602)
Apply the check-effects-interactions pattern.

Additional information: link

ELONBALLS._removeOldSellHistories() (#1039-1061) uses timestamp for comparisons
Dangerous comparisons:
- _sellHistories[j].time >= maxStartTimeForHistories (#1045)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#148-165) uses assembly
- INLINE ASM (#157-160)
Do not use evm assembly.

Additional information: link

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

Additional information: link

ELONBALLS._previousLiquidityFee (#477) 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._functionCallWithValue(address,bytes,uint256,string) (#148-165):
- (success,returndata) = target.call{value: weiValue}(data) (#151)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable ELONBALLS._isEnabledBuyBackAndBurn (#513) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#35)" inContext (#29-38)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in ELONBALLS.transferFrom(address,address,uint256) (#600-604):
External calls:
- _transfer(sender,recipient,amount) (#601)
- recipient.transfer(amount) (#1160)
External calls sending eth:
- _transfer(sender,recipient,amount) (#601)
- recipient.transfer(amount) (#1160)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#854-859)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#602)
- _allowances[owner][spender] = amount (#686)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#687)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#602)
Apply the check-effects-interactions pattern.

Additional information: link

Variable ELONBALLS._transferToExcluded(address,address,uint256).rTransferAmount (#907) is too similar to ELONBALLS._getValues(uint256).tTransferAmount (#943)
Prevent variables from having similar names.

Additional information: link

ELONBALLS.slitherConstructorVariables() (#434-1212) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 9 * 10 ** 9 (#450)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

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

Additional information: link

transferForeignToken(address,address) should be declared external:
- ELONBALLS.transferForeignToken(address,address) (#1182-1186)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


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


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 token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find code repository for the project


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


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


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 ELONBALLS