Elitheum is a self sustaining growth token which generates revenue from its ever expanding ecosystem, to be used to buy and burn it's tokens.
The aim is for Elitheum to become completely self sufficient so that no matter if there are new investors or not, Elitheum will always continue to grow steadily.
Reentrancy in Elitheum._transfer(address,address,uint256) (#646-684):
External calls:
- swapTokens(contractTokenBalance) (#664)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- buyBackTokens(balance.div(100)) (#672)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
External calls sending eth:
- swapTokens(contractTokenBalance) (#664)
- recipient.transfer(amount) (#957)
- buyBackTokens(balance.div(100)) (#672)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _liquidityFee = _previousLiquidityFee (#889)
- _liquidityFee = 0 (#884)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#860)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#776)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#785)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#796)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#806)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#777)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#787)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#797)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#808)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _rTotal = _rTotal.sub(rFee) (#815)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#862)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#795)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#805)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#786)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#807)
- buyBackTokens(balance.div(100)) (#672)
- inSwapAndLiquify = true (#500)
- inSwapAndLiquify = false (#502)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
Ownable.unlock() (#216-221) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#218)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#111-120) uses assembly
- INLINE ASM (#118)
Address._functionCallWithValue(address,bytes,uint256,string) (#148-165) uses assembly
- INLINE ASM (#157-160)
Do not use evm assembly.
Additional information: link
Redundant expression "this (#35)" inContext (#29-38)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Elitheum.includeInReward(address) (#625-636) has costly operations inside a loop:
- _excluded.pop() (#632)
Use a local variable to hold the loop computation result.
Additional information: link
Elitheum.addLiquidity(uint256,uint256) (#741-754) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
Ensure that all the return values of the function calls are used.
Additional information: link
Elitheum.setMarketingAddress(address)._marketingAddress (#928) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#929)
Check that the address is not zero.
Additional information: link
Elitheum._rTotal (#452) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Elitheum._previousTaxFee (#461) is set pre-construction with a non-constant function or state variable:
- _taxFee
Elitheum._previousLiquidityFee (#464) 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
Elitheum._decimals (#457) should be constant
Elitheum._name (#455) should be constant
Elitheum._symbol (#456) should be constant
Elitheum._tTotal (#451) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Elitheum.swapTokens(uint256) (#686-695) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#693)
Consider ordering multiplication before division.
Additional information: link
Elitheum.allowance(address,address).owner (#547) shadows:
- Ownable.owner() (#181-183) (function)
Elitheum._approve(address,address,uint256).owner (#638) shadows:
- Ownable.owner() (#181-183) (function)
Rename the local variables that shadow another component.
Additional information: link
Elitheum.setTaxFeePercent(uint256) (#904-906) should emit an event for:
- _taxFee = taxFee (#905)
Elitheum.setLiquidityFeePercent(uint256) (#908-910) should emit an event for:
- _liquidityFee = liquidityFee (#909)
Elitheum.setMaxTxAmount(uint256) (#912-914) should emit an event for:
- _maxTxAmount = maxTxAmount (#913)
Elitheum.setMarketingDivisor(uint256) (#916-918) should emit an event for:
- marketingDivisor = divisor (#917)
Elitheum.setNumTokensSellToAddToLiquidity(uint256) (#920-922) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#921)
Elitheum.setBuybackUpperLimit(uint256) (#924-926) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#925)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in Elitheum._transfer(address,address,uint256) (#646-684):
External calls:
- swapTokens(contractTokenBalance) (#664)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- buyBackTokens(balance.div(100)) (#672)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
External calls sending eth:
- swapTokens(contractTokenBalance) (#664)
- recipient.transfer(amount) (#957)
- buyBackTokens(balance.div(100)) (#672)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _previousLiquidityFee = _liquidityFee (#881)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _previousTaxFee = _taxFee (#880)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _tFeeTotal = _tFeeTotal.add(tFee) (#816)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _taxFee = _previousTaxFee (#888)
- _taxFee = 0 (#883)
Reentrancy in Elitheum.constructor() (#505-519):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#509-510)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#515)
- _isExcludedFromFee[address(this)] = true (#516)
- uniswapV2Router = _uniswapV2Router (#512)
Reentrancy in Elitheum.transferFrom(address,address,uint256) (#556-560):
External calls:
- _transfer(sender,recipient,amount) (#557)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
External calls sending eth:
- _transfer(sender,recipient,amount) (#557)
- recipient.transfer(amount) (#957)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#558)
- _allowances[owner][spender] = amount (#642)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Elitheum._transfer(address,address,uint256) (#646-684):
External calls:
- swapTokens(contractTokenBalance) (#664)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- buyBackTokens(balance.div(100)) (#672)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
External calls sending eth:
- swapTokens(contractTokenBalance) (#664)
- recipient.transfer(amount) (#957)
- buyBackTokens(balance.div(100)) (#672)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#738)
- buyBackTokens(balance.div(100)) (#672)
- Transfer(sender,recipient,tTransferAmount) (#780)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- Transfer(sender,recipient,tTransferAmount) (#790)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- Transfer(sender,recipient,tTransferAmount) (#800)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- Transfer(sender,recipient,tTransferAmount) (#811)
- _tokenTransfer(from,to,amount,takeFee) (#683)
Reentrancy in Elitheum.constructor() (#505-519):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#509-510)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#518)
Reentrancy in Elitheum.swapETHForTokens(uint256) (#724-739):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#738)
Reentrancy in Elitheum.swapTokensForEth(uint256) (#704-722):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#721)
Reentrancy in Elitheum.transferFrom(address,address,uint256) (#556-560):
External calls:
- _transfer(sender,recipient,amount) (#557)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
External calls sending eth:
- _transfer(sender,recipient,amount) (#557)
- recipient.transfer(amount) (#957)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#643)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#558)
Apply the check-effects-interactions pattern.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#148-165) is never used and should be removed
Address.functionCall(address,bytes) (#131-133) is never used and should be removed
Address.functionCall(address,bytes,string) (#135-137) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#139-141) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#143-146) is never used and should be removed
Address.isContract(address) (#111-120) is never used and should be removed
Address.sendValue(address,uint256) (#122-128) is never used and should be removed
Context._msgData() (#34-37) is never used and should be removed
Elitheum.addLiquidity(uint256,uint256) (#741-754) is never used and should be removed
SafeMath.mod(uint256,uint256) (#99-101) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#103-106) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#122-128):
- (success) = recipient.call{value: amount}() (#126)
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
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#260) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#261) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#277) is not in mixedCase
Function IUniswapV2Router01.WETH() (#298) is not in mixedCase
Parameter Elitheum.calculateTaxFee(uint256)._amount (#865) is not in mixedCase
Parameter Elitheum.calculateLiquidityFee(uint256)._amount (#871) is not in mixedCase
Parameter Elitheum.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#920) is not in mixedCase
Parameter Elitheum.setMarketingAddress(address)._marketingAddress (#928) is not in mixedCase
Parameter Elitheum.setSwapAndLiquifyEnabled(bool)._enabled (#932) is not in mixedCase
Parameter Elitheum.setBuyBackEnabled(bool)._enabled (#937) is not in mixedCase
Variable Elitheum._taxFee (#460) is not in mixedCase
Variable Elitheum._liquidityFee (#463) is not in mixedCase
Variable Elitheum._maxTxAmount (#468) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in Elitheum._transfer(address,address,uint256) (#646-684):
External calls:
- swapTokens(contractTokenBalance) (#664)
- recipient.transfer(amount) (#957)
External calls sending eth:
- swapTokens(contractTokenBalance) (#664)
- recipient.transfer(amount) (#957)
- buyBackTokens(balance.div(100)) (#672)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _liquidityFee = _previousLiquidityFee (#889)
- _liquidityFee = 0 (#884)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _previousLiquidityFee = _liquidityFee (#881)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _previousTaxFee = _taxFee (#880)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#860)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#776)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#785)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#796)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#806)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#777)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#787)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#797)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#808)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _rTotal = _rTotal.sub(rFee) (#815)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _tFeeTotal = _tFeeTotal.add(tFee) (#816)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#862)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#795)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#805)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#786)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#807)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- _taxFee = _previousTaxFee (#888)
- _taxFee = 0 (#883)
- buyBackTokens(balance.div(100)) (#672)
- inSwapAndLiquify = true (#500)
- inSwapAndLiquify = false (#502)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#738)
- buyBackTokens(balance.div(100)) (#672)
- Transfer(sender,recipient,tTransferAmount) (#780)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- Transfer(sender,recipient,tTransferAmount) (#790)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- Transfer(sender,recipient,tTransferAmount) (#800)
- _tokenTransfer(from,to,amount,takeFee) (#683)
- Transfer(sender,recipient,tTransferAmount) (#811)
- _tokenTransfer(from,to,amount,takeFee) (#683)
Reentrancy in Elitheum.transferFrom(address,address,uint256) (#556-560):
External calls:
- _transfer(sender,recipient,amount) (#557)
- recipient.transfer(amount) (#957)
External calls sending eth:
- _transfer(sender,recipient,amount) (#557)
- recipient.transfer(amount) (#957)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#731-736)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#558)
- _allowances[owner][spender] = amount (#642)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#643)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#558)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#303) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#304)
Variable Elitheum._transferBothExcluded(address,address,uint256).rTransferAmount (#804) is too similar to Elitheum._getTValues(uint256).tTransferAmount (#828)
Variable Elitheum._transferBothExcluded(address,address,uint256).rTransferAmount (#804) is too similar to Elitheum._transferFromExcluded(address,address,uint256).tTransferAmount (#794)
Variable Elitheum._transferToExcluded(address,address,uint256).rTransferAmount (#784) is too similar to Elitheum._transferToExcluded(address,address,uint256).tTransferAmount (#784)
Variable Elitheum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#836) is too similar to Elitheum._getTValues(uint256).tTransferAmount (#828)
Variable Elitheum._transferBothExcluded(address,address,uint256).rTransferAmount (#804) is too similar to Elitheum._transferStandard(address,address,uint256).tTransferAmount (#775)
Variable Elitheum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#836) is too similar to Elitheum._transferFromExcluded(address,address,uint256).tTransferAmount (#794)
Variable Elitheum._transferBothExcluded(address,address,uint256).rTransferAmount (#804) is too similar to Elitheum._transferBothExcluded(address,address,uint256).tTransferAmount (#804)
Variable Elitheum._transferToExcluded(address,address,uint256).rTransferAmount (#784) is too similar to Elitheum._getValues(uint256).tTransferAmount (#820)
Variable Elitheum._getValues(uint256).rTransferAmount (#821) is too similar to Elitheum._getTValues(uint256).tTransferAmount (#828)
Variable Elitheum._transferStandard(address,address,uint256).rTransferAmount (#775) is too similar to Elitheum._getTValues(uint256).tTransferAmount (#828)
Variable Elitheum._transferBothExcluded(address,address,uint256).rTransferAmount (#804) is too similar to Elitheum._transferToExcluded(address,address,uint256).tTransferAmount (#784)
Variable Elitheum._transferStandard(address,address,uint256).rTransferAmount (#775) is too similar to Elitheum._transferFromExcluded(address,address,uint256).tTransferAmount (#794)
Variable Elitheum.reflectionFromToken(uint256,bool).rTransferAmount (#604) is too similar to Elitheum._transferFromExcluded(address,address,uint256).tTransferAmount (#794)
Variable Elitheum._getValues(uint256).rTransferAmount (#821) is too similar to Elitheum._transferFromExcluded(address,address,uint256).tTransferAmount (#794)
Variable Elitheum._transferToExcluded(address,address,uint256).rTransferAmount (#784) is too similar to Elitheum._getTValues(uint256).tTransferAmount (#828)
Variable Elitheum._transferStandard(address,address,uint256).rTransferAmount (#775) is too similar to Elitheum._transferStandard(address,address,uint256).tTransferAmount (#775)
Variable Elitheum._transferBothExcluded(address,address,uint256).rTransferAmount (#804) is too similar to Elitheum._getValues(uint256).tTransferAmount (#820)
Variable Elitheum._transferToExcluded(address,address,uint256).rTransferAmount (#784) is too similar to Elitheum._transferFromExcluded(address,address,uint256).tTransferAmount (#794)
Variable Elitheum._transferFromExcluded(address,address,uint256).rTransferAmount (#794) is too similar to Elitheum._transferFromExcluded(address,address,uint256).tTransferAmount (#794)
Variable Elitheum._transferToExcluded(address,address,uint256).rTransferAmount (#784) is too similar to Elitheum._transferStandard(address,address,uint256).tTransferAmount (#775)
Variable Elitheum.reflectionFromToken(uint256,bool).rTransferAmount (#604) is too similar to Elitheum._transferStandard(address,address,uint256).tTransferAmount (#775)
Variable Elitheum.reflectionFromToken(uint256,bool).rTransferAmount (#604) is too similar to Elitheum._getTValues(uint256).tTransferAmount (#828)
Variable Elitheum._transferStandard(address,address,uint256).rTransferAmount (#775) is too similar to Elitheum._getValues(uint256).tTransferAmount (#820)
Variable Elitheum._getValues(uint256).rTransferAmount (#821) is too similar to Elitheum._getValues(uint256).tTransferAmount (#820)
Variable Elitheum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#836) is too similar to Elitheum._transferToExcluded(address,address,uint256).tTransferAmount (#784)
Variable Elitheum.reflectionFromToken(uint256,bool).rTransferAmount (#604) is too similar to Elitheum._transferToExcluded(address,address,uint256).tTransferAmount (#784)
Variable Elitheum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#836) is too similar to Elitheum._getValues(uint256).tTransferAmount (#820)
Variable Elitheum.reflectionFromToken(uint256,bool).rTransferAmount (#604) is too similar to Elitheum._getValues(uint256).tTransferAmount (#820)
Variable Elitheum._transferFromExcluded(address,address,uint256).rTransferAmount (#794) is too similar to Elitheum._transferBothExcluded(address,address,uint256).tTransferAmount (#804)
Variable Elitheum._transferStandard(address,address,uint256).rTransferAmount (#775) is too similar to Elitheum._transferBothExcluded(address,address,uint256).tTransferAmount (#804)
Variable Elitheum._getValues(uint256).rTransferAmount (#821) is too similar to Elitheum._transferBothExcluded(address,address,uint256).tTransferAmount (#804)
Variable Elitheum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#836) is too similar to Elitheum._transferBothExcluded(address,address,uint256).tTransferAmount (#804)
Variable Elitheum.reflectionFromToken(uint256,bool).rTransferAmount (#604) is too similar to Elitheum._transferBothExcluded(address,address,uint256).tTransferAmount (#804)
Variable Elitheum._transferFromExcluded(address,address,uint256).rTransferAmount (#794) is too similar to Elitheum._transferStandard(address,address,uint256).tTransferAmount (#775)
Variable Elitheum._transferToExcluded(address,address,uint256).rTransferAmount (#784) is too similar to Elitheum._transferBothExcluded(address,address,uint256).tTransferAmount (#804)
Variable Elitheum._getValues(uint256).rTransferAmount (#821) is too similar to Elitheum._transferStandard(address,address,uint256).tTransferAmount (#775)
Variable Elitheum._transferFromExcluded(address,address,uint256).rTransferAmount (#794) is too similar to Elitheum._getTValues(uint256).tTransferAmount (#828)
Variable Elitheum._transferFromExcluded(address,address,uint256).rTransferAmount (#794) is too similar to Elitheum._transferToExcluded(address,address,uint256).tTransferAmount (#784)
Variable Elitheum._transferStandard(address,address,uint256).rTransferAmount (#775) is too similar to Elitheum._transferToExcluded(address,address,uint256).tTransferAmount (#784)
Variable Elitheum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#836) is too similar to Elitheum._transferStandard(address,address,uint256).tTransferAmount (#775)
Variable Elitheum._getValues(uint256).rTransferAmount (#821) is too similar to Elitheum._transferToExcluded(address,address,uint256).tTransferAmount (#784)
Variable Elitheum._transferFromExcluded(address,address,uint256).rTransferAmount (#794) is too similar to Elitheum._getValues(uint256).tTransferAmount (#820)
Prevent variables from having similar names.
Additional information: link
Elitheum.prepareForPreSale() (#942-947) uses literals with too many digits:
- _maxTxAmount = 2000000 * 10 ** 6 * 10 ** 9 (#946)
Elitheum.afterPreSale() (#949-954) uses literals with too many digits:
- _maxTxAmount = 100000 * 10 ** 6 * 10 ** 9 (#953)
Elitheum.slitherConstructorVariables() (#435-963) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#440)
Elitheum.slitherConstructorVariables() (#435-963) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#451)
Elitheum.slitherConstructorVariables() (#435-963) uses literals with too many digits:
- _maxTxAmount = 100000 * 10 ** 6 * 10 ** 9 (#468)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#190-193)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#195-199)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#201-203)
getTime() should be declared external:
- Ownable.getTime() (#205-207)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#209-214)
unlock() should be declared external:
- Ownable.unlock() (#216-221)
name() should be declared external:
- Elitheum.name() (#521-523)
symbol() should be declared external:
- Elitheum.symbol() (#525-527)
decimals() should be declared external:
- Elitheum.decimals() (#529-531)
totalSupply() should be declared external:
- Elitheum.totalSupply() (#533-535)
transfer(address,uint256) should be declared external:
- Elitheum.transfer(address,uint256) (#542-545)
allowance(address,address) should be declared external:
- Elitheum.allowance(address,address) (#547-549)
approve(address,uint256) should be declared external:
- Elitheum.approve(address,uint256) (#551-554)
transferFrom(address,address,uint256) should be declared external:
- Elitheum.transferFrom(address,address,uint256) (#556-560)
increaseAllowance(address,uint256) should be declared external:
- Elitheum.increaseAllowance(address,uint256) (#562-565)
decreaseAllowance(address,uint256) should be declared external:
- Elitheum.decreaseAllowance(address,uint256) (#567-570)
isExcludedFromReward(address) should be declared external:
- Elitheum.isExcludedFromReward(address) (#572-574)
totalFees() should be declared external:
- Elitheum.totalFees() (#576-578)
minimumTokensBeforeSwapAmount() should be declared external:
- Elitheum.minimumTokensBeforeSwapAmount() (#580-582)
buyBackUpperLimitAmount() should be declared external:
- Elitheum.buyBackUpperLimitAmount() (#584-586)
deliver(uint256) should be declared external:
- Elitheum.deliver(uint256) (#588-595)
reflectionFromToken(uint256,bool) should be declared external:
- Elitheum.reflectionFromToken(uint256,bool) (#598-607)
excludeFromReward(address) should be declared external:
- Elitheum.excludeFromReward(address) (#615-623)
isExcludedFromFee(address) should be declared external:
- Elitheum.isExcludedFromFee(address) (#892-894)
excludeFromFee(address) should be declared external:
- Elitheum.excludeFromFee(address) (#896-898)
includeInFee(address) should be declared external:
- Elitheum.includeInFee(address) (#900-902)
setBuyBackEnabled(bool) should be declared external:
- Elitheum.setBuyBackEnabled(bool) (#937-940)
Use the external attribute for functions never called from the contract.
Additional information: link
Token has no active CoinGecko listing / rank
Token has relatively low CoinMarketCap rank
Unable to find Youtube account