EverETH Token Logo

EverETH Token

About EverETH

Listings

Token 2 years
CoinMarketCap 2 years
white paper

What Is EverETH ?
EverETH is a smart contract platform that enables token holders to earn dividends in Ethereum.

EverETH is the native utility token that is used for:

receiving dividends in Ethereum
staking the EverETH ecosystem
getting access to the EverETH.app
How Many EverETH Tokens Are There in Circulation?
With a total supply of 1 Quadrillion tokens and approx 50% burned following launch, the current circulating supply is around 495 trillion tokens.

Where Can I Buy EverETH?
EverETH token is listed and available to buy on PancakeSwap, the most popular trading pair being EverETH/BNB.

Social

Laser Scorebeta Last Audit: 2 March 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

EverETH.addLiquidity(uint256,uint256) (EverETH.sol#428-443) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in EverETH._transfer(address,address,uint256) (EverETH.sol#282-353):
External calls:
- swapAndSendToFee(BuyBackTokens) (EverETH.sol#309)
- IERC20(Ethereum).transfer(_BuyBackWalletAddress,newBalance) (EverETH.sol#361)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#419-425)
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#399-405)
- swapAndSendDividends(sellTokens) (EverETH.sol#315)
- success = IERC20(Ethereum).transfer(address(dividendTracker),dividends) (EverETH.sol#448)
- dividendTracker.distributeEthereumDividends(dividends) (EverETH.sol#451)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#419-425)
External calls sending eth:
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (EverETH.sol#335)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (EverETH.sol#338)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (EverETH.sol#317)
Apply the check-effects-interactions pattern.

Additional information: link

EverETH.swapAndSendToFee(uint256) (EverETH.sol#355-362) ignores return value by IERC20(Ethereum).transfer(_BuyBackWalletAddress,newBalance) (EverETH.sol#361)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


Combination 2: Unchecked transfer + 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.


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.

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#76-92):
External calls:
- success = IERC20(Ethereum).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (DividendPayingToken.sol#84)
Reentrancy in EverETH.updateDividendTracker(address) (EverETH.sol#121-136):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (EverETH.sol#128)
- newDividendTracker.excludeFromDividends(address(this)) (EverETH.sol#129)
- newDividendTracker.excludeFromDividends(owner()) (EverETH.sol#130)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (EverETH.sol#131)
State variables written after the call(s):
- dividendTracker = newDividendTracker (EverETH.sol#135)
Apply the check-effects-interactions pattern.

Additional information: link

EverETH._transfer(address,address,uint256).iterations (EverETH.sol#346) is a local variable never initialized
EverETH._transfer(address,address,uint256).claims (EverETH.sol#346) is a local variable never initialized
EverETH._transfer(address,address,uint256).lastProcessedIndex (EverETH.sol#346) 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

EverETH.claim() (EverETH.sol#269-271) ignores return value by dividendTracker.processAccount(msg.sender,false) (EverETH.sol#270)
EverETH._transfer(address,address,uint256) (EverETH.sol#282-353) ignores return value by dividendTracker.process(gas) (EverETH.sol#346-351)
EverETH.addLiquidity(uint256,uint256) (EverETH.sol#428-443) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (DividendPayingToken.sol#50) shadows:
- ERC20._name (ERC20.sol#43) (state variable)
DividendPayingToken.constructor(string,string)._symbol (DividendPayingToken.sol#50) shadows:
- ERC20._symbol (ERC20.sol#44) (state variable)
DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#98) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#105) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#112) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.

Additional information: link

EverETH.setEthereumRewardsFee(uint256) (EverETH.sol#166-169) should emit an event for:
- EthereumRewardsFee = value (EverETH.sol#167)
- totalFees = EthereumRewardsFee.add(liquidityFee).add(BuyBackFee) (EverETH.sol#168)
EverETH.setLiquiditFee(uint256) (EverETH.sol#171-174) should emit an event for:
- liquidityFee = value (EverETH.sol#172)
- totalFees = EthereumRewardsFee.add(liquidityFee).add(BuyBackFee) (EverETH.sol#173)
EverETH.setBuyBackFee(uint256) (EverETH.sol#176-180) should emit an event for:
- BuyBackFee = value (EverETH.sol#177)
- totalFees = EthereumRewardsFee.add(liquidityFee).add(BuyBackFee) (EverETH.sol#178)
Emit an event for critical parameter changes.

Additional information: link

EverETH.updateUniswapV2Router(address)._uniswapV2Pair (EverETH.sol#142-143) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (EverETH.sol#144)
EverETH.setBuyBackWallet(address).wallet (EverETH.sol#162) lacks a zero-check on :
- _BuyBackWalletAddress = wallet (EverETH.sol#163)
Check that the address is not zero.

Additional information: link

Variable 'EverETH._transfer(address,address,uint256).iterations (EverETH.sol#346)' in EverETH._transfer(address,address,uint256) (EverETH.sol#282-353) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (EverETH.sol#347)
Variable 'EverETH._transfer(address,address,uint256).lastProcessedIndex (EverETH.sol#346)' in EverETH._transfer(address,address,uint256) (EverETH.sol#282-353) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (EverETH.sol#347)
Variable 'EverETH._transfer(address,address,uint256).claims (EverETH.sol#346)' in EverETH._transfer(address,address,uint256) (EverETH.sol#282-353) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (EverETH.sol#347)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in EverETH._transfer(address,address,uint256) (EverETH.sol#282-353):
External calls:
- swapAndSendToFee(BuyBackTokens) (EverETH.sol#309)
- IERC20(Ethereum).transfer(_BuyBackWalletAddress,newBalance) (EverETH.sol#361)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#419-425)
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#399-405)
External calls sending eth:
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in EverETH._transfer(address,address,uint256) (EverETH.sol#282-353):
External calls:
- swapAndSendToFee(BuyBackTokens) (EverETH.sol#309)
- IERC20(Ethereum).transfer(_BuyBackWalletAddress,newBalance) (EverETH.sol#361)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#419-425)
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#399-405)
- swapAndSendDividends(sellTokens) (EverETH.sol#315)
- success = IERC20(Ethereum).transfer(address(dividendTracker),dividends) (EverETH.sol#448)
- dividendTracker.distributeEthereumDividends(dividends) (EverETH.sol#451)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#419-425)
External calls sending eth:
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (EverETH.sol#315)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in EverETH.constructor() (EverETH.sol#83-115):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (EverETH.sol#90-91)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (EverETH.sol#94)
- uniswapV2Router = _uniswapV2Router (EverETH.sol#93)
Reentrancy in EverETH.constructor() (EverETH.sol#83-115):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (EverETH.sol#90-91)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (EverETH.sol#96)
- dividendTracker.excludeFromDividends(pair) (EverETH.sol#196)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (EverETH.sol#99)
- dividendTracker.excludeFromDividends(address(this)) (EverETH.sol#100)
- dividendTracker.excludeFromDividends(owner()) (EverETH.sol#101)
- dividendTracker.excludeFromDividends(deadWallet) (EverETH.sol#102)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (EverETH.sol#103)
State variables written after the call(s):
- _mint(owner(),1000000000000000 * (10 ** 9)) (EverETH.sol#114)
- _balances[account] = _balances[account].add(amount) (ERC20.sol#241)
- excludeFromFees(owner(),true) (EverETH.sol#106)
- _isExcludedFromFees[account] = excluded (EverETH.sol#149)
- excludeFromFees(_BuyBackWalletAddress,true) (EverETH.sol#107)
- _isExcludedFromFees[account] = excluded (EverETH.sol#149)
- excludeFromFees(address(this),true) (EverETH.sol#108)
- _isExcludedFromFees[account] = excluded (EverETH.sol#149)
- _mint(owner(),1000000000000000 * (10 ** 9)) (EverETH.sol#114)
- _totalSupply = _totalSupply.add(amount) (ERC20.sol#240)
Reentrancy in EverETHDividendTracker.processAccount(address,bool) (EverETH.sol#653-663):
External calls:
- amount = _withdrawDividendOfUser(account) (EverETH.sol#654)
- success = IERC20(Ethereum).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (EverETH.sol#657)
Reentrancy in EverETH.swapAndLiquify(uint256) (EverETH.sol#364-385):
External calls:
- swapTokensForEth(half) (EverETH.sol#376)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#399-405)
- addLiquidity(otherHalf,newBalance) (EverETH.sol#382)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (EverETH.sol#382)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (EverETH.sol#382)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in EverETH.updateUniswapV2Router(address) (EverETH.sol#138-145):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (EverETH.sol#142-143)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (EverETH.sol#144)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EverETH._setAutomatedMarketMakerPair(address,bool) (EverETH.sol#191-200):
External calls:
- dividendTracker.excludeFromDividends(pair) (EverETH.sol#196)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (EverETH.sol#199)
Reentrancy in EverETH._transfer(address,address,uint256) (EverETH.sol#282-353):
External calls:
- swapAndSendToFee(BuyBackTokens) (EverETH.sol#309)
- IERC20(Ethereum).transfer(_BuyBackWalletAddress,newBalance) (EverETH.sol#361)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#419-425)
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#399-405)
External calls sending eth:
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- SwapAndLiquify(half,newBalance,otherHalf) (EverETH.sol#384)
- swapAndLiquify(swapTokens) (EverETH.sol#312)
Reentrancy in EverETH._transfer(address,address,uint256) (EverETH.sol#282-353):
External calls:
- swapAndSendToFee(BuyBackTokens) (EverETH.sol#309)
- IERC20(Ethereum).transfer(_BuyBackWalletAddress,newBalance) (EverETH.sol#361)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#419-425)
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#399-405)
- swapAndSendDividends(sellTokens) (EverETH.sol#315)
- success = IERC20(Ethereum).transfer(address(dividendTracker),dividends) (EverETH.sol#448)
- dividendTracker.distributeEthereumDividends(dividends) (EverETH.sol#451)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#419-425)
External calls sending eth:
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndSendDividends(sellTokens) (EverETH.sol#315)
- SendDividends(tokens,dividends) (EverETH.sol#452)
- swapAndSendDividends(sellTokens) (EverETH.sol#315)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,to,amount) (EverETH.sol#338)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,address(this),fees) (EverETH.sol#335)
Reentrancy in EverETH._transfer(address,address,uint256) (EverETH.sol#282-353):
External calls:
- swapAndSendToFee(BuyBackTokens) (EverETH.sol#309)
- IERC20(Ethereum).transfer(_BuyBackWalletAddress,newBalance) (EverETH.sol#361)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#419-425)
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#399-405)
- swapAndSendDividends(sellTokens) (EverETH.sol#315)
- success = IERC20(Ethereum).transfer(address(dividendTracker),dividends) (EverETH.sol#448)
- dividendTracker.distributeEthereumDividends(dividends) (EverETH.sol#451)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#419-425)
- dividendTracker.setBalance(address(from),balanceOf(from)) (EverETH.sol#340)
- dividendTracker.setBalance(address(to),balanceOf(to)) (EverETH.sol#341)
- dividendTracker.process(gas) (EverETH.sol#346-351)
External calls sending eth:
- swapAndLiquify(swapTokens) (EverETH.sol#312)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (EverETH.sol#347)
Reentrancy in EverETH.constructor() (EverETH.sol#83-115):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (EverETH.sol#90-91)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (EverETH.sol#96)
- dividendTracker.excludeFromDividends(pair) (EverETH.sol#196)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (EverETH.sol#199)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (EverETH.sol#96)
Reentrancy in EverETH.constructor() (EverETH.sol#83-115):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (EverETH.sol#90-91)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (EverETH.sol#96)
- dividendTracker.excludeFromDividends(pair) (EverETH.sol#196)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (EverETH.sol#99)
- dividendTracker.excludeFromDividends(address(this)) (EverETH.sol#100)
- dividendTracker.excludeFromDividends(owner()) (EverETH.sol#101)
- dividendTracker.excludeFromDividends(deadWallet) (EverETH.sol#102)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (EverETH.sol#103)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (EverETH.sol#151)
- excludeFromFees(_BuyBackWalletAddress,true) (EverETH.sol#107)
- ExcludeFromFees(account,excluded) (EverETH.sol#151)
- excludeFromFees(owner(),true) (EverETH.sol#106)
- ExcludeFromFees(account,excluded) (EverETH.sol#151)
- excludeFromFees(address(this),true) (EverETH.sol#108)
- Transfer(address(0),account,amount) (ERC20.sol#242)
- _mint(owner(),1000000000000000 * (10 ** 9)) (EverETH.sol#114)
Reentrancy in EverETHDividendTracker.processAccount(address,bool) (EverETH.sol#653-663):
External calls:
- amount = _withdrawDividendOfUser(account) (EverETH.sol#654)
- success = IERC20(Ethereum).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
Event emitted after the call(s):
- Claim(account,amount,automatic) (EverETH.sol#658)
Reentrancy in EverETH.processDividendTracker(uint256) (EverETH.sol#264-267):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (EverETH.sol#265)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (EverETH.sol#266)
Reentrancy in EverETH.swapAndLiquify(uint256) (EverETH.sol#364-385):
External calls:
- swapTokensForEth(half) (EverETH.sol#376)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#399-405)
- addLiquidity(otherHalf,newBalance) (EverETH.sol#382)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (EverETH.sol#382)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (EverETH.sol#434-441)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- addLiquidity(otherHalf,newBalance) (EverETH.sol#382)
- SwapAndLiquify(half,newBalance,otherHalf) (EverETH.sol#384)
Reentrancy in EverETH.swapAndSendDividends(uint256) (EverETH.sol#445-454):
External calls:
- swapTokensForEthereum(tokens) (EverETH.sol#446)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (EverETH.sol#419-425)
- success = IERC20(Ethereum).transfer(address(dividendTracker),dividends) (EverETH.sol#448)
- dividendTracker.distributeEthereumDividends(dividends) (EverETH.sol#451)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (EverETH.sol#452)
Reentrancy in EverETH.updateDividendTracker(address) (EverETH.sol#121-136):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (EverETH.sol#128)
- newDividendTracker.excludeFromDividends(address(this)) (EverETH.sol#129)
- newDividendTracker.excludeFromDividends(owner()) (EverETH.sol#130)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (EverETH.sol#131)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (EverETH.sol#133)
Apply the check-effects-interactions pattern.

Additional information: link

EverETHDividendTracker.getAccount(address) (EverETH.sol#517-560) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (EverETH.sol#557-559)
EverETHDividendTracker.canAutoClaim(uint256) (EverETH.sol#581-587) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (EverETH.sol#582)
- block.timestamp.sub(lastClaimTime) >= claimWait (EverETH.sol#586)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (Context.sol#20-23) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (DividendPayingToken.sol#132-138) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#126-128) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#142-145) is never used and should be removed
SafeMathInt.abs(int256) (SafeMathInt.sol#82-85) is never used and should be removed
SafeMathInt.div(int256,int256) (SafeMathInt.sol#53-59) is never used and should be removed
SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

EverETH.totalFees (EverETH.sol#34) is set pre-construction with a non-constant function or state variable:
- EthereumRewardsFee.add(liquidityFee).add(BuyBackFee)
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

Pragma version^0.6.2 (Context.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingToken.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenInterface.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenOptionalInterface.sol#3) allows old versions
Pragma version^0.6.2 (ERC20.sol#3) allows old versions
Pragma version^0.6.2 (EverETH.sol#3) allows old versions
Pragma version^0.6.2 (IERC20.sol#3) allows old versions
Pragma version^0.6.2 (IERC20Metadata.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Factory.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Pair.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Router.sol#3) allows old versions
Pragma version^0.6.2 (IterableMapping.sol#2) allows old versions
Pragma version^0.6.2 (Ownable.sol#1) allows old versions
Pragma version^0.6.2 (SafeMath.sol#3) allows old versions
Pragma version^0.6.2 (SafeMathInt.sol#28) allows old versions
Pragma version^0.6.2 (SafeMathUint.sol#3) allows old versions
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

Parameter DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#98) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#105) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#112) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) is not in mixedCase
Variable DividendPayingToken.Ethereum (DividendPayingToken.sol#24) is not in mixedCase
Constant DividendPayingToken.magnitude (DividendPayingToken.sol#30) is not in UPPER_CASE_WITH_UNDERSCORES
Variable EverETH.Ethereum (EverETH.sol#26) is not in mixedCase
Variable EverETH.EthereumRewardsFee (EverETH.sol#31) is not in mixedCase
Variable EverETH.BuyBackFee (EverETH.sol#33) is not in mixedCase
Variable EverETH._BuyBackWalletAddress (EverETH.sol#36) is not in mixedCase
Parameter EverETHDividendTracker.getAccount(address)._account (EverETH.sol#517) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (IUniswapV2Pair.sol#20) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (IUniswapV2Pair.sol#21) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (IUniswapV2Pair.sol#38) is not in mixedCase
Function IUniswapV2Router01.WETH() (IUniswapV2Router.sol#7) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#77) is too similar to EverETHDividendTracker.getAccount(address).withdrawableDividends (EverETH.sol#522)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (IUniswapV2Router.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (IUniswapV2Router.sol#13)
Prevent variables from having similar names.

Additional information: link

EverETH.constructor() (EverETH.sol#83-115) uses literals with too many digits:
- _mint(owner(),1000000000000000 * (10 ** 9)) (EverETH.sol#114)
EverETH.updateGasForProcessing(uint256) (EverETH.sol#203-208) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,EverETH: gasForProcessing must be between 200,000 and 500,000) (EverETH.sol#204)
EverETH.slitherConstructorVariables() (EverETH.sol#14-455) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (EverETH.sol#24)
EverETH.slitherConstructorVariables() (EverETH.sol#14-455) uses literals with too many digits:
- swapTokensAtAmount = 50000000 * (10 ** 9) (EverETH.sol#28)
EverETH.slitherConstructorVariables() (EverETH.sol#14-455) uses literals with too many digits:
- gasForProcessing = 300000 (EverETH.sol#40)
EverETHDividendTracker.constructor() (EverETH.sol#477-480) uses literals with too many digits:
- minimumTokenBalanceForDividends = 200000 * (10 ** 9) (EverETH.sol#479)
EverETHDividendTracker.getAccountAtIndex(uint256) (EverETH.sol#562-579) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (EverETH.sol#573)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-92)
Remove unused state variables.

Additional information: link

EverETH.deadWallet (EverETH.sol#24) should be constant
EverETH.swapTokensAtAmount (EverETH.sol#28) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

distributeEthereumDividends(uint256) should be declared external:
- DividendPayingToken.distributeEthereumDividends(uint256) (DividendPayingToken.sol#55-66)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (DividendPayingToken.sol#70-72)
- EverETHDividendTracker.withdrawDividend() (EverETH.sol#486-488)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (DividendPayingToken.sol#98-100)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (DividendPayingToken.sol#112-114)
name() should be declared external:
- ERC20.name() (ERC20.sol#63-65)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#71-73)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#88-90)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#114-117)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#122-124)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#133-136)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#151-159)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#173-176)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#192-195)
updateDividendTracker(address) should be declared external:
- EverETH.updateDividendTracker(address) (EverETH.sol#121-136)
updateUniswapV2Router(address) should be declared external:
- EverETH.updateUniswapV2Router(address) (EverETH.sol#138-145)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- EverETH.excludeMultipleAccountsFromFees(address[],bool) (EverETH.sol#154-160)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- EverETH.setAutomatedMarketMakerPair(address,bool) (EverETH.sol#183-187)
updateGasForProcessing(uint256) should be declared external:
- EverETH.updateGasForProcessing(uint256) (EverETH.sol#203-208)
isExcludedFromFees(address) should be declared external:
- EverETH.isExcludedFromFees(address) (EverETH.sol#222-224)
withdrawableDividendOf(address) should be declared external:
- EverETH.withdrawableDividendOf(address) (EverETH.sol#226-228)
dividendTokenBalanceOf(address) should be declared external:
- EverETH.dividendTokenBalanceOf(address) (EverETH.sol#230-232)
getAccountAtIndex(uint256) should be declared external:
- EverETHDividendTracker.getAccountAtIndex(uint256) (EverETH.sol#562-579)
process(uint256) should be declared external:
- EverETHDividendTracker.process(uint256) (EverETH.sol#606-651)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (IterableMapping.sol#13-15)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (IterableMapping.sol#17-22)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (IterableMapping.sol#24-26)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (IterableMapping.sol#30-32)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#43-46)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
Use the external attribute for functions never called from the contract.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#76-92) has external calls inside a loop: success = IERC20(Ethereum).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
Favor pull over push strategy for external calls.

Additional information: link

Holders:

Contract has 12% buy tax and 13% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Token is deployed only at one blockchain


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account

No disclosed threats


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 CoinMarketCap rank

Price for EverETH

News for EverETH