Everglide is a reflectionary token with an auto-liquidity provision built on the BNB Chain Network. To better serve the community, Everglide's hybrid roadmap will feature the capability to provide a number of web 3.0 Dapps and services.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
EVRG.removeStuckToken(address) (#1803-1808) ignores return value by IERC20(_address).transfer(owner(),IERC20(_address).balanceOf(address(this))) (#1807)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
EVRG.addLiquidity(uint256,uint256) (#1763-1778) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1607)
- swapTokensForEth(walletTokens) (#1642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndSendDividends(sellTokens) (#1654)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (#1783)
- dividendTracker.distributeBUSDDividends(dividends) (#1786)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1754-1760)
External calls sending eth:
- address(_marketingWalletAddress).transfer(marketingShare) (#1645)
- address(_stakingWalletAddress).transfer(stakingShare) (#1647)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1678)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#485)
- _balances[recipient] = _balances[recipient].add(amount) (#486)
- super._transfer(from,to,amount) (#1681)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#485)
- _balances[recipient] = _balances[recipient].add(amount) (#486)
- swapping = false (#1656)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
EVRG.setBuyFees(uint256,uint256,uint256,uint256,uint256) (#1469-1478) contains a tautology or contradiction:
- require(bool,string)(_BuyTotalFees >= 0 && _BuyTotalFees <= 25,Fees are exceeding the limits) (#1477)
EVRG.setSellFees(uint256,uint256,uint256,uint256,uint256) (#1480-1489) contains a tautology or contradiction:
- require(bool,string)(_SellTotalFees >= 0 && _SellTotalFees <= 25,Fees are exceeding the limits) (#1488)
Fix the incorrect comparison by changing the value type or the comparison.
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.
EVRGDividendTracker.getAccount(address) (#1876-1919) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1916-1918)
EVRGDividendTracker.canAutoClaim(uint256) (#1940-1946) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1941)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1945)
Avoid relying on block.timestamp.
Additional information: link
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#823-839):
External calls:
- success = IERC20(BUSD).transfer(user,_withdrawableDividend) (#828)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#831)
Reentrancy in EVRG.updateDividendTracker(address) (#1399-1418):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1406)
- newDividendTracker.excludeFromDividends(address(this)) (#1407)
- newDividendTracker.excludeFromDividends(owner()) (#1408)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1409)
- dividendTracker.excludeFromDividends(_marketingWalletAddress) (#1410)
- dividendTracker.excludeFromDividends(_stakingWalletAddress) (#1411)
- dividendTracker.excludeFromDividends(deadWallet) (#1412)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1417)
Apply the check-effects-interactions pattern.
Additional information: link
EVRG._transfer(address,address,uint256).claims (#1689) is a local variable never initialized
EVRG._transfer(address,address,uint256).lastProcessedIndex (#1689) is a local variable never initialized
EVRG._transfer(address,address,uint256).iterations (#1689) 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
EVRG.claim() (#1572-1574) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#1573)
EVRG._transfer(address,address,uint256) (#1595-1696) ignores return value by dividendTracker.process(gas) (#1689-1694)
EVRG.addLiquidity(uint256,uint256) (#1763-1778) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(string,string)._name (#797) shadows:
- ERC20._name (#307) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#797) shadows:
- ERC20._symbol (#308) (state variable)
DividendPayingToken.dividendOf(address)._owner (#845) shadows:
- Ownable._owner (#706) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#852) shadows:
- Ownable._owner (#706) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#859) shadows:
- Ownable._owner (#706) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#869) shadows:
- Ownable._owner (#706) (state variable)
Rename the local variables that shadow another component.
Additional information: link
EVRG.changeBuybackThreshold(uint256) (#1393-1396) should emit an event for:
- buybackThreshold = _buybackThreshold (#1395)
EVRG.setMaxtx(uint256) (#1453-1457) should emit an event for:
- maxTransactionAmount = _maxTxAmount (#1456)
EVRG.setBuyFees(uint256,uint256,uint256,uint256,uint256) (#1469-1478) should emit an event for:
- _BuyBUSDRewardsFee = buyBUSDRewardFee (#1471)
- _BuyLiquidityFee = buyLiquidityFee (#1472)
- _BuyMarketingFee = buyMarketingFee (#1473)
- _BuyBuybackFee = buyBuybackFee (#1474)
- _BuyStakingFee = buyStakingFee (#1475)
- _BuyTotalFees = _BuyBUSDRewardsFee.add(_BuyLiquidityFee).add(_BuyMarketingFee).add(_BuyBuybackFee).add(_BuyStakingFee.div(10)) (#1476)
EVRG.setSellFees(uint256,uint256,uint256,uint256,uint256) (#1480-1489) should emit an event for:
- _SellBUSDRewardsFee = sellBUSDRewardFee (#1482)
- _SellLiquidityFee = sellLiquidityFee (#1483)
- _SellMarketingFee = sellMarketingFee (#1484)
- _SellBuybackFee = sellBuybackFee (#1485)
- _SellStakingFee = sellStakingFee (#1486)
- _SellTotalFees = _SellBUSDRewardsFee.add(_SellLiquidityFee).add(_SellMarketingFee).add(_SellBuybackFee).add(_SellStakingFee) (#1487)
EVRG.changeSwapTokensAtAmount(uint256) (#1584-1587) should emit an event for:
- swapTokensAtAmount = swapAmount (#1586)
Emit an event for critical parameter changes.
Additional information: link
EVRG.updateUniswapV2Router(address)._uniswapV2Pair (#1424-1425) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1426)
Check that the address is not zero.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (#823-839) has external calls inside a loop: success = IERC20(BUSD).transfer(user,_withdrawableDividend) (#828)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'EVRG._transfer(address,address,uint256).claims (#1689)' in EVRG._transfer(address,address,uint256) (#1595-1696) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1690)
Variable 'EVRG._transfer(address,address,uint256).iterations (#1689)' in EVRG._transfer(address,address,uint256) (#1595-1696) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1690)
Variable 'EVRG._transfer(address,address,uint256).lastProcessedIndex (#1689)' in EVRG._transfer(address,address,uint256) (#1595-1696) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1690)
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 EVRG.Whitelist(address,bool) (#1374-1380):
External calls:
- dividendTracker.excludeFromDividends(_add) (#1377)
State variables written after the call(s):
- excludeOrIncludeFromFees(_add,true) (#1378)
- _isExcludedFromFees[account] = excluded (#1432)
- excludeOrIncludeFromMaxTx(_add,true) (#1379)
- _isExcludedFromMaxTx[account] = excluded (#1448)
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1607)
State variables written after the call(s):
- _burn(address(this),buybackTokens) (#1621)
- _balances[account] = _balances[account].sub(amount,ERC20: burn amount exceeds balance) (#525)
- _burn(address(this),buybackTokens) (#1621)
- _totalSupply = _totalSupply.sub(amount) (#526)
- swapping = true (#1638)
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1607)
- swapTokensForEth(walletTokens) (#1642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
State variables written after the call(s):
- swapTokensForEth(walletTokens) (#1642)
- _allowances[owner][spender] = amount (#551)
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1607)
- swapTokensForEth(walletTokens) (#1642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
External calls sending eth:
- address(_marketingWalletAddress).transfer(marketingShare) (#1645)
- address(_stakingWalletAddress).transfer(stakingShare) (#1647)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (#1651)
- _allowances[owner][spender] = amount (#551)
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1607)
- swapTokensForEth(walletTokens) (#1642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndSendDividends(sellTokens) (#1654)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (#1783)
- dividendTracker.distributeBUSDDividends(dividends) (#1786)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1754-1760)
External calls sending eth:
- address(_marketingWalletAddress).transfer(marketingShare) (#1645)
- address(_stakingWalletAddress).transfer(stakingShare) (#1647)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1654)
- _allowances[owner][spender] = amount (#551)
Reentrancy in EVRG.constructor() (#1295-1348):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1302-1303)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1306)
- uniswapV2Router = _uniswapV2Router (#1305)
Reentrancy in EVRG.constructor() (#1295-1348):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1302-1303)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1307)
- dividendTracker.excludeFromDividends(pair) (#1495)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1311)
- dividendTracker.excludeFromDividends(address(this)) (#1312)
- dividendTracker.excludeFromDividends(owner()) (#1313)
- dividendTracker.excludeFromDividends(deadWallet) (#1314)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1315)
- dividendTracker.excludeFromDividends(_marketingWalletAddress) (#1316)
- dividendTracker.excludeFromDividends(_stakingWalletAddress) (#1317)
State variables written after the call(s):
- excludeOrIncludeFromFees(owner(),true) (#1320)
- _isExcludedFromFees[account] = excluded (#1432)
- excludeOrIncludeFromFees(_marketingWalletAddress,true) (#1321)
- _isExcludedFromFees[account] = excluded (#1432)
- excludeOrIncludeFromFees(_stakingWalletAddress,true) (#1322)
- _isExcludedFromFees[account] = excluded (#1432)
- excludeOrIncludeFromFees(address(this),true) (#1323)
- _isExcludedFromFees[account] = excluded (#1432)
- excludeOrIncludeFromMaxTx(owner(),true) (#1326)
- _isExcludedFromMaxTx[account] = excluded (#1448)
- excludeOrIncludeFromMaxTx(_marketingWalletAddress,true) (#1327)
- _isExcludedFromMaxTx[account] = excluded (#1448)
- excludeOrIncludeFromMaxTx(_stakingWalletAddress,true) (#1328)
- _isExcludedFromMaxTx[account] = excluded (#1448)
- excludeOrIncludeFromMaxTx(address(this),true) (#1329)
- _isExcludedFromMaxTx[account] = excluded (#1448)
- _whitelisted[owner()] = true (#1331)
- pinkAntiBot = IPinkAntiBot(address(0x8EFDb3b642eb2a20607ffe0A56CFefF6a95Df002)) (#1335)
Reentrancy in EVRG.constructor() (#1295-1348):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1302-1303)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1307)
- dividendTracker.excludeFromDividends(pair) (#1495)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1311)
- dividendTracker.excludeFromDividends(address(this)) (#1312)
- dividendTracker.excludeFromDividends(owner()) (#1313)
- dividendTracker.excludeFromDividends(deadWallet) (#1314)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1315)
- dividendTracker.excludeFromDividends(_marketingWalletAddress) (#1316)
- dividendTracker.excludeFromDividends(_stakingWalletAddress) (#1317)
- pinkAntiBot.setTokenOwner(owner()) (#1339)
State variables written after the call(s):
- _mint(owner(),150000000 * (10 ** 18)) (#1347)
- _balances[account] = _balances[account].add(amount) (#505)
- _mint(owner(),150000000 * (10 ** 18)) (#1347)
- _totalSupply = _totalSupply.add(amount) (#504)
- antiBotEnabled = true (#1341)
Reentrancy in EVRGDividendTracker.processAccount(address,bool) (#2012-2022):
External calls:
- amount = _withdrawDividendOfUser(account) (#2013)
- success = IERC20(BUSD).transfer(user,_withdrawableDividend) (#828)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#2016)
Reentrancy in EVRG.swapAndLiquify(uint256) (#1699-1720):
External calls:
- swapTokensForEth(half) (#1711)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- addLiquidity(otherHalf,newBalance) (#1717)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1717)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1717)
- _allowances[owner][spender] = amount (#551)
Reentrancy in EVRG.updateUniswapV2Router(address) (#1420-1428):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1424-1425)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1426)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in EVRG.Whitelist(address,bool) (#1374-1380):
External calls:
- dividendTracker.excludeFromDividends(_add) (#1377)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1434)
- excludeOrIncludeFromFees(_add,true) (#1378)
- ExcludeFromMaxTx(account,excluded) (#1450)
- excludeOrIncludeFromMaxTx(_add,true) (#1379)
Reentrancy in EVRG._setAutomatedMarketMakerPair(address,bool) (#1490-1499):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1495)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1498)
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1607)
Event emitted after the call(s):
- Transfer(account,address(0),amount) (#527)
- _burn(address(this),buybackTokens) (#1621)
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1607)
- swapTokensForEth(walletTokens) (#1642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#552)
- swapTokensForEth(walletTokens) (#1642)
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1607)
- swapTokensForEth(walletTokens) (#1642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
External calls sending eth:
- address(_marketingWalletAddress).transfer(marketingShare) (#1645)
- address(_stakingWalletAddress).transfer(stakingShare) (#1647)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#552)
- swapAndLiquify(swapTokens) (#1651)
- SwapAndLiquify(half,newBalance,otherHalf) (#1719)
- swapAndLiquify(swapTokens) (#1651)
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1607)
- swapTokensForEth(walletTokens) (#1642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndSendDividends(sellTokens) (#1654)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (#1783)
- dividendTracker.distributeBUSDDividends(dividends) (#1786)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1754-1760)
External calls sending eth:
- address(_marketingWalletAddress).transfer(marketingShare) (#1645)
- address(_stakingWalletAddress).transfer(stakingShare) (#1647)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#552)
- swapAndSendDividends(sellTokens) (#1654)
- SendDividends(tokens,dividends) (#1787)
- swapAndSendDividends(sellTokens) (#1654)
- Transfer(sender,recipient,amount) (#487)
- super._transfer(from,to,amount) (#1681)
- Transfer(sender,recipient,amount) (#487)
- super._transfer(from,address(this),fees) (#1678)
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1607)
- swapTokensForEth(walletTokens) (#1642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndSendDividends(sellTokens) (#1654)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (#1783)
- dividendTracker.distributeBUSDDividends(dividends) (#1786)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1754-1760)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1683)
External calls sending eth:
- address(_marketingWalletAddress).transfer(marketingShare) (#1645)
- address(_stakingWalletAddress).transfer(stakingShare) (#1647)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
Event emitted after the call(s):
- log(failed) (#1683)
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1607)
- swapTokensForEth(walletTokens) (#1642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndSendDividends(sellTokens) (#1654)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (#1783)
- dividendTracker.distributeBUSDDividends(dividends) (#1786)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1754-1760)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1683)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1684)
External calls sending eth:
- address(_marketingWalletAddress).transfer(marketingShare) (#1645)
- address(_stakingWalletAddress).transfer(stakingShare) (#1647)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
Event emitted after the call(s):
- log(failed) (#1684)
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1607)
- swapTokensForEth(walletTokens) (#1642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- swapAndSendDividends(sellTokens) (#1654)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (#1783)
- dividendTracker.distributeBUSDDividends(dividends) (#1786)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1754-1760)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1683)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1684)
- dividendTracker.process(gas) (#1689-1694)
External calls sending eth:
- address(_marketingWalletAddress).transfer(marketingShare) (#1645)
- address(_stakingWalletAddress).transfer(stakingShare) (#1647)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1690)
- log(failed) (#1693)
Reentrancy in EVRG.constructor() (#1295-1348):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1302-1303)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1307)
- dividendTracker.excludeFromDividends(pair) (#1495)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1498)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1307)
Reentrancy in EVRG.constructor() (#1295-1348):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1302-1303)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1307)
- dividendTracker.excludeFromDividends(pair) (#1495)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1311)
- dividendTracker.excludeFromDividends(address(this)) (#1312)
- dividendTracker.excludeFromDividends(owner()) (#1313)
- dividendTracker.excludeFromDividends(deadWallet) (#1314)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1315)
- dividendTracker.excludeFromDividends(_marketingWalletAddress) (#1316)
- dividendTracker.excludeFromDividends(_stakingWalletAddress) (#1317)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1434)
- excludeOrIncludeFromFees(address(this),true) (#1323)
- ExcludeFromFees(account,excluded) (#1434)
- excludeOrIncludeFromFees(_stakingWalletAddress,true) (#1322)
- ExcludeFromFees(account,excluded) (#1434)
- excludeOrIncludeFromFees(_marketingWalletAddress,true) (#1321)
- ExcludeFromFees(account,excluded) (#1434)
- excludeOrIncludeFromFees(owner(),true) (#1320)
- ExcludeFromMaxTx(account,excluded) (#1450)
- excludeOrIncludeFromMaxTx(_stakingWalletAddress,true) (#1328)
- ExcludeFromMaxTx(account,excluded) (#1450)
- excludeOrIncludeFromMaxTx(_marketingWalletAddress,true) (#1327)
- ExcludeFromMaxTx(account,excluded) (#1450)
- excludeOrIncludeFromMaxTx(owner(),true) (#1326)
- ExcludeFromMaxTx(account,excluded) (#1450)
- excludeOrIncludeFromMaxTx(address(this),true) (#1329)
Reentrancy in EVRG.constructor() (#1295-1348):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1302-1303)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1307)
- dividendTracker.excludeFromDividends(pair) (#1495)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1311)
- dividendTracker.excludeFromDividends(address(this)) (#1312)
- dividendTracker.excludeFromDividends(owner()) (#1313)
- dividendTracker.excludeFromDividends(deadWallet) (#1314)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1315)
- dividendTracker.excludeFromDividends(_marketingWalletAddress) (#1316)
- dividendTracker.excludeFromDividends(_stakingWalletAddress) (#1317)
- pinkAntiBot.setTokenOwner(owner()) (#1339)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#506)
- _mint(owner(),150000000 * (10 ** 18)) (#1347)
Reentrancy in EVRGDividendTracker.processAccount(address,bool) (#2012-2022):
External calls:
- amount = _withdrawDividendOfUser(account) (#2013)
- success = IERC20(BUSD).transfer(user,_withdrawableDividend) (#828)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#2017)
Reentrancy in EVRG.processDividendTracker(uint256) (#1567-1570):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1568)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1569)
Reentrancy in EVRG.swapAndLiquify(uint256) (#1699-1720):
External calls:
- swapTokensForEth(half) (#1711)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1734-1740)
- addLiquidity(otherHalf,newBalance) (#1717)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1717)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#552)
- addLiquidity(otherHalf,newBalance) (#1717)
- SwapAndLiquify(half,newBalance,otherHalf) (#1719)
Reentrancy in EVRG.swapAndSendDividends(uint256) (#1780-1789):
External calls:
- swapTokensForBUSD(tokens) (#1781)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1754-1760)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (#1783)
- dividendTracker.distributeBUSDDividends(dividends) (#1786)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#1787)
Reentrancy in EVRG.updateDividendTracker(address) (#1399-1418):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1406)
- newDividendTracker.excludeFromDividends(address(this)) (#1407)
- newDividendTracker.excludeFromDividends(owner()) (#1408)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1409)
- dividendTracker.excludeFromDividends(_marketingWalletAddress) (#1410)
- dividendTracker.excludeFromDividends(_stakingWalletAddress) (#1411)
- dividendTracker.excludeFromDividends(deadWallet) (#1412)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1415)
Apply the check-effects-interactions pattern.
Additional information: link
Context._msgData() (#124-127) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#879-885) is never used and should be removed
SafeMath.mod(uint256,uint256) (#251-253) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#267-270) is never used and should be removed
SafeMathInt.abs(int256) (#640-643) is never used and should be removed
SafeMathInt.div(int256,int256) (#611-617) is never used and should be removed
SafeMathInt.mul(int256,int256) (#599-606) is never used and should be removed
Remove unused functions.
Additional information: link
EVRG._BuyTotalFees (#1223) is set pre-construction with a non-constant function or state variable:
- _BuyBUSDRewardsFee.add(_BuyLiquidityFee).add(_BuyMarketingFee).add(_BuyBuybackFee).add(_BuyStakingFee.div(10))
EVRG._SellTotalFees (#1230) is set pre-construction with a non-constant function or state variable:
- _SellBUSDRewardsFee.add(_SellLiquidityFee).add(_SellMarketingFee).add(_SellBuybackFee).add(_BuyStakingFee)
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.8.13 (#7) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.13 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
Parameter DividendPayingToken.dividendOf(address)._owner (#845) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#852) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#859) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#869) is not in mixedCase
Variable DividendPayingToken.BUSD (#770) is not in mixedCase
Constant DividendPayingToken.magnitude (#777) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#1000) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#1001) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#1018) is not in mixedCase
Function IUniswapV2Router01.WETH() (#1054) is not in mixedCase
Event EVRGlog(string) (#1269) is not in CapWords
Parameter EVRG.setEnableAntiBot(bool)._enable (#1361) is not in mixedCase
Function EVRG.BlackList(address,bool) (#1365-1368) is not in mixedCase
Parameter EVRG.BlackList(address,bool)._add (#1365) is not in mixedCase
Parameter EVRG.isBlacklisted(address)._add (#1370) is not in mixedCase
Function EVRG.Whitelist(address,bool) (#1374-1380) is not in mixedCase
Parameter EVRG.Whitelist(address,bool)._add (#1374) is not in mixedCase
Parameter EVRG.changeBuybackThreshold(uint256)._buybackThreshold (#1393) is not in mixedCase
Parameter EVRG.setMaxtx(uint256)._maxTxAmount (#1453) is not in mixedCase
Parameter EVRG.removeStuckToken(address)._address (#1803) is not in mixedCase
Constant EVRG.deadWallet (#1209) is not in UPPER_CASE_WITH_UNDERSCORES
Variable EVRG.BUSD (#1213) is not in mixedCase
Variable EVRG._BuyBUSDRewardsFee (#1218) is not in mixedCase
Variable EVRG._BuyLiquidityFee (#1219) is not in mixedCase
Variable EVRG._BuyMarketingFee (#1220) is not in mixedCase
Variable EVRG._BuyBuybackFee (#1221) is not in mixedCase
Variable EVRG._BuyStakingFee (#1222) is not in mixedCase
Variable EVRG._BuyTotalFees (#1223) is not in mixedCase
Variable EVRG._SellBUSDRewardsFee (#1225) is not in mixedCase
Variable EVRG._SellLiquidityFee (#1226) is not in mixedCase
Variable EVRG._SellMarketingFee (#1227) is not in mixedCase
Variable EVRG._SellBuybackFee (#1228) is not in mixedCase
Variable EVRG._SellStakingFee (#1229) is not in mixedCase
Variable EVRG._SellTotalFees (#1230) is not in mixedCase
Variable EVRG._marketingWalletAddress (#1232) is not in mixedCase
Variable EVRG._stakingWalletAddress (#1233) is not in mixedCase
Parameter EVRGDividendTracker.changeMinimumTokenBalanceForDividends(uint256)._minimumTokenBalanceForDividends (#1865) is not in mixedCase
Parameter EVRGDividendTracker.getAccount(address)._account (#1876) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#125)" inContext (#119-128)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in EVRG._transfer(address,address,uint256) (#1595-1696):
External calls:
- address(_marketingWalletAddress).transfer(marketingShare) (#1645)
- address(_stakingWalletAddress).transfer(stakingShare) (#1647)
External calls sending eth:
- address(_marketingWalletAddress).transfer(marketingShare) (#1645)
- address(_stakingWalletAddress).transfer(stakingShare) (#1647)
- swapAndLiquify(swapTokens) (#1651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1769-1776)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (#1651)
- _allowances[owner][spender] = amount (#551)
- swapAndSendDividends(sellTokens) (#1654)
- _allowances[owner][spender] = amount (#551)
- super._transfer(from,address(this),fees) (#1678)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#485)
- _balances[recipient] = _balances[recipient].add(amount) (#486)
- super._transfer(from,to,amount) (#1681)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#485)
- _balances[recipient] = _balances[recipient].add(amount) (#486)
- swapping = false (#1656)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#552)
- swapAndSendDividends(sellTokens) (#1654)
- Approval(owner,spender,amount) (#552)
- swapAndLiquify(swapTokens) (#1651)
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1690)
- SendDividends(tokens,dividends) (#1787)
- swapAndSendDividends(sellTokens) (#1654)
- SwapAndLiquify(half,newBalance,otherHalf) (#1719)
- swapAndLiquify(swapTokens) (#1651)
- Transfer(sender,recipient,amount) (#487)
- super._transfer(from,to,amount) (#1681)
- Transfer(sender,recipient,amount) (#487)
- super._transfer(from,address(this),fees) (#1678)
- log(failed) (#1683)
- log(failed) (#1684)
- log(failed) (#1693)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#1059) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#1060)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#824) is too similar to EVRGDividendTracker.getAccount(address).withdrawableDividends (#1881)
Prevent variables from having similar names.
Additional information: link
EVRG.constructor() (#1295-1348) uses literals with too many digits:
- _mint(owner(),150000000 * (10 ** 18)) (#1347)
EVRG.updateGasForProcessing(uint256) (#1501-1506) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 800000,EVRG: gasForProcessing must be between 200,000 and 800,000) (#1502)
EVRG.slitherConstructorVariables() (#1199-1809) uses literals with too many digits:
- maxTransactionAmount = 1500000 * (10 ** 18) (#1216)
EVRG.slitherConstructorVariables() (#1199-1809) uses literals with too many digits:
- buybackThreshold = 500000 * (10 ** 18) (#1242)
EVRG.slitherConstructorVariables() (#1199-1809) uses literals with too many digits:
- gasForProcessing = 300000 (#1244)
EVRG.slitherConstructorConstantVariables() (#1199-1809) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#1209)
EVRGDividendTracker.getAccountAtIndex(uint256) (#1921-1938) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1932)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (#594) is never used in SafeMathInt (#592-650)
Remove unused state variables.
Additional information: link
decimals() should be declared external:
- ERC20.decimals() (#352-354)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#378-381)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#386-388)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#397-400)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#415-423)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#437-440)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#456-459)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#741-744)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#750-754)
distributeBUSDDividends(uint256) should be declared external:
- DividendPayingToken.distributeBUSDDividends(uint256) (#802-813)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#817-819)
- EVRGDividendTracker.withdrawDividend() (#1840-1842)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#845-847)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#859-861)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#932-934)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#936-941)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#943-945)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#949-951)
isBlacklisted(address) should be declared external:
- EVRG.isBlacklisted(address) (#1370-1372)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- EVRG.setAutomatedMarketMakerPair(address,bool) (#1387-1391)
updateDividendTracker(address) should be declared external:
- EVRG.updateDividendTracker(address) (#1399-1418)
updateUniswapV2Router(address) should be declared external:
- EVRG.updateUniswapV2Router(address) (#1420-1428)
excludeOrIncludeMultipleAccountsFromFees(address[],bool) should be declared external:
- EVRG.excludeOrIncludeMultipleAccountsFromFees(address[],bool) (#1437-1443)
setMaxtx(uint256) should be declared external:
- EVRG.setMaxtx(uint256) (#1453-1457)
updateGasForProcessing(uint256) should be declared external:
- EVRG.updateGasForProcessing(uint256) (#1501-1506)
isExcludedFromFees(address) should be declared external:
- EVRG.isExcludedFromFees(address) (#1520-1522)
isExcludedFromMaxTx(address) should be declared external:
- EVRG.isExcludedFromMaxTx(address) (#1524-1526)
withdrawableDividendOf(address) should be declared external:
- EVRG.withdrawableDividendOf(address) (#1529-1531)
dividendTokenBalanceOf(address) should be declared external:
- EVRG.dividendTokenBalanceOf(address) (#1533-1535)
getAccountAtIndex(uint256) should be declared external:
- EVRGDividendTracker.getAccountAtIndex(uint256) (#1921-1938)
process(uint256) should be declared external:
- EVRGDividendTracker.process(uint256) (#1965-2010)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Youtube account