EverBNB Token Logo

EVERBNB Token

About EVERBNB

Listings

Token 2 years
white paper

EverBNB is one the BNB reflection token running on Binance Smart Chain. Simply hold tokens and get rewarded in BNB on every transaction. With the auto-claim feature, you will receive BNB automatically in your wallet.

Social

Laser Scorebeta Last Audit: 26 December 2021

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

EverBNB.addLiquidity(uint256,uint256) (#1707-1722) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in EverBNB._transfer(address,address,uint256) (#1528-1620):
External calls:
- swapAndLiquify(swapTokens) (#1573)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
- swapAndSendMarketingBNB(swapMarketingTokens) (#1576)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1696-1702)
- swapAndSendDividends(sellTokens) (#1579)
- (success) = address(dividendTracker).call{value: dividends}() (#1727)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1573)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
- swapAndSendDividends(sellTokens) (#1579)
- (success) = address(dividendTracker).call{value: dividends}() (#1727)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1602)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#958)
- _balances[recipient] = _balances[recipient].add(amount) (#959)
- super._transfer(from,to,amount) (#1605)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#958)
- _balances[recipient] = _balances[recipient].add(amount) (#959)
- swapping = false (#1581)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1124-1140):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1129)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1132)
Apply the check-effects-interactions pattern.

Additional information: link


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


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.

EverBNB._transfer(address,address,uint256) (#1528-1620) performs a multiplication on the result of a division:
-fees = amount.mul(totalFees).div(100) (#1593)
-fees = fees.mul(sellFeeIncreaseFactor).div(100) (#1597)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in EverBNB.updateDividendTracker(address) (#1355-1370):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1362)
- newDividendTracker.excludeFromDividends(address(this)) (#1363)
- newDividendTracker.excludeFromDividends(owner()) (#1364)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1365)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1369)
Apply the check-effects-interactions pattern.

Additional information: link

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

EverBNB.claim() (#1512-1514) ignores return value by dividendTracker.processAccount(msg.sender,false) (#1513)
EverBNB._transfer(address,address,uint256) (#1528-1620) ignores return value by dividendTracker.process(gas) (#1613-1618)
EverBNB.addLiquidity(uint256,uint256) (#1707-1722) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (#1081) shadows:
- ERC20._name (#780) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#1081) shadows:
- ERC20._symbol (#781) (state variable)
Rename the local variables that shadow another component.

Additional information: link

EverBNB.setMaxSellTransaction(uint256) (#1372-1374) should emit an event for:
- maxSellTransactionAmount = _maxTxn * (10 ** 18) (#1373)
EverBNB.setSwapTokensAtAmount(uint256) (#1376-1378) should emit an event for:
- swapTokensAtAmount = _swapAmount * (10 ** 18) (#1377)
EverBNB.updateBNBRewardsFee(uint8) (#1443-1447) should emit an event for:
- totalFees = BNBRewardsFee.add(marketingFee).add(liquidityFee) (#1446)
EverBNB.updateMarketingFee(uint8) (#1449-1453) should emit an event for:
- marketingFee = newFee (#1451)
- totalFees = BNBRewardsFee.add(marketingFee).add(liquidityFee) (#1452)
EverBNB.updateLiquidityFee(uint8) (#1455-1459) should emit an event for:
- liquidityFee = newFee (#1457)
- totalFees = BNBRewardsFee.add(marketingFee).add(liquidityFee) (#1458)
Emit an event for critical parameter changes.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#1124-1140) has external calls inside a loop: (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1129)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'EverBNB._transfer(address,address,uint256).iterations (#1613)' in EverBNB._transfer(address,address,uint256) (#1528-1620) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1614)
Variable 'EverBNB._transfer(address,address,uint256).lastProcessedIndex (#1613)' in EverBNB._transfer(address,address,uint256) (#1528-1620) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1614)
Variable 'EverBNB._transfer(address,address,uint256).claims (#1613)' in EverBNB._transfer(address,address,uint256) (#1528-1620) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1614)
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 EverBNB.SetcanTransferBeforeTradingIsEnabled(address) (#1627-1632):
External calls:
- dividendTracker.excludeFromDividends(_Wallet) (#1629)
State variables written after the call(s):
- excludeFromFees(_Wallet,true) (#1630)
- _isExcludedFromFees[account] = excluded (#1393)
- canTransferBeforeTradingIsEnabled[_Wallet] = true (#1631)
Reentrancy in EverBNB._transfer(address,address,uint256) (#1528-1620):
External calls:
- swapAndLiquify(swapTokens) (#1573)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
- swapAndSendMarketingBNB(swapMarketingTokens) (#1576)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1696-1702)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1573)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
State variables written after the call(s):
- swapAndSendMarketingBNB(swapMarketingTokens) (#1576)
- _allowances[owner][spender] = amount (#1024)
Reentrancy in EverBNB._transfer(address,address,uint256) (#1528-1620):
External calls:
- swapAndLiquify(swapTokens) (#1573)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
- swapAndSendMarketingBNB(swapMarketingTokens) (#1576)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1696-1702)
- swapAndSendDividends(sellTokens) (#1579)
- (success) = address(dividendTracker).call{value: dividends}() (#1727)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1573)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
- swapAndSendDividends(sellTokens) (#1579)
- (success) = address(dividendTracker).call{value: dividends}() (#1727)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1579)
- _allowances[owner][spender] = amount (#1024)
Reentrancy in EverBNB.constructor() (#1303-1349):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1320-1321)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1324)
- uniswapV2Router = _uniswapV2Router (#1323)
Reentrancy in EverBNB.constructor() (#1303-1349):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1320-1321)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1326)
- dividendTracker.excludeFromDividends(pair) (#1418)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1331)
- dividendTracker.excludeFromDividends(address(this)) (#1332)
- dividendTracker.excludeFromDividends(owner()) (#1333)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1334)
State variables written after the call(s):
- _mint(owner(),1000000000 * (10 ** 18)) (#1348)
- _balances[account] = _balances[account].add(amount) (#978)
- excludeFromFees(liquidityWallet,true) (#1338)
- _isExcludedFromFees[account] = excluded (#1393)
- excludeFromFees(address(this),true) (#1339)
- _isExcludedFromFees[account] = excluded (#1393)
- _mint(owner(),1000000000 * (10 ** 18)) (#1348)
- _totalSupply = _totalSupply.add(amount) (#977)
- canTransferBeforeTradingIsEnabled[owner()] = true (#1342)
Reentrancy in EverBNBDividendTracker.processAccount(address,bool) (#1935-1945):
External calls:
- amount = _withdrawDividendOfUser(account) (#1936)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1129)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1939)
Reentrancy in EverBNB.swapAndLiquify(uint256) (#1641-1662):
External calls:
- swapTokensForEth(half) (#1653)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
- addLiquidity(otherHalf,newBalance) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1659)
- _allowances[owner][spender] = amount (#1024)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EverBNB.SetcanTransferBeforeTradingIsEnabled(address) (#1627-1632):
External calls:
- dividendTracker.excludeFromDividends(_Wallet) (#1629)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1395)
- excludeFromFees(_Wallet,true) (#1630)
Reentrancy in EverBNB._setAutomatedMarketMakerPair(address,bool) (#1413-1422):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1418)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1421)
Reentrancy in EverBNB._transfer(address,address,uint256) (#1528-1620):
External calls:
- swapAndLiquify(swapTokens) (#1573)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
- swapAndSendMarketingBNB(swapMarketingTokens) (#1576)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1696-1702)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1573)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1025)
- swapAndSendMarketingBNB(swapMarketingTokens) (#1576)
Reentrancy in EverBNB._transfer(address,address,uint256) (#1528-1620):
External calls:
- swapAndLiquify(swapTokens) (#1573)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
- swapAndSendMarketingBNB(swapMarketingTokens) (#1576)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1696-1702)
- swapAndSendDividends(sellTokens) (#1579)
- (success) = address(dividendTracker).call{value: dividends}() (#1727)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1573)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
- swapAndSendDividends(sellTokens) (#1579)
- (success) = address(dividendTracker).call{value: dividends}() (#1727)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1025)
- swapAndSendDividends(sellTokens) (#1579)
- SendDividends(tokens,dividends) (#1730)
- swapAndSendDividends(sellTokens) (#1579)
- Transfer(sender,recipient,amount) (#960)
- super._transfer(from,address(this),fees) (#1602)
- Transfer(sender,recipient,amount) (#960)
- super._transfer(from,to,amount) (#1605)
Reentrancy in EverBNB._transfer(address,address,uint256) (#1528-1620):
External calls:
- swapAndLiquify(swapTokens) (#1573)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
- swapAndSendMarketingBNB(swapMarketingTokens) (#1576)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1696-1702)
- swapAndSendDividends(sellTokens) (#1579)
- (success) = address(dividendTracker).call{value: dividends}() (#1727)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1607)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1608)
- dividendTracker.process(gas) (#1613-1618)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1573)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
- swapAndSendDividends(sellTokens) (#1579)
- (success) = address(dividendTracker).call{value: dividends}() (#1727)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1614)
Reentrancy in EverBNB.constructor() (#1303-1349):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1320-1321)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1326)
- dividendTracker.excludeFromDividends(pair) (#1418)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1421)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1326)
Reentrancy in EverBNB.constructor() (#1303-1349):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1320-1321)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1326)
- dividendTracker.excludeFromDividends(pair) (#1418)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1331)
- dividendTracker.excludeFromDividends(address(this)) (#1332)
- dividendTracker.excludeFromDividends(owner()) (#1333)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1334)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1395)
- excludeFromFees(address(this),true) (#1339)
- ExcludeFromFees(account,excluded) (#1395)
- excludeFromFees(liquidityWallet,true) (#1338)
- Transfer(address(0),account,amount) (#979)
- _mint(owner(),1000000000 * (10 ** 18)) (#1348)
Reentrancy in EverBNBDividendTracker.processAccount(address,bool) (#1935-1945):
External calls:
- amount = _withdrawDividendOfUser(account) (#1936)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1129)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1940)
Reentrancy in EverBNB.processDividendTracker(uint256) (#1507-1510):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1508)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1509)
Reentrancy in EverBNB.swapAndLiquify(uint256) (#1641-1662):
External calls:
- swapTokensForEth(half) (#1653)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
- addLiquidity(otherHalf,newBalance) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1713-1720)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1025)
- addLiquidity(otherHalf,newBalance) (#1659)
- SwapAndLiquify(half,newBalance,otherHalf) (#1661)
Reentrancy in EverBNB.swapAndSendDividends(uint256) (#1724-1732):
External calls:
- swapTokensForEth(tokens) (#1725)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
- (success) = address(dividendTracker).call{value: dividends}() (#1727)
External calls sending eth:
- (success) = address(dividendTracker).call{value: dividends}() (#1727)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#1730)
Reentrancy in EverBNB.updateDividendTracker(address) (#1355-1370):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1362)
- newDividendTracker.excludeFromDividends(address(this)) (#1363)
- newDividendTracker.excludeFromDividends(owner()) (#1364)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1365)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1367)
Apply the check-effects-interactions pattern.

Additional information: link

EverBNBDividendTracker.getAccount(address) (#1799-1842) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1839-1841)
EverBNBDividendTracker.canAutoClaim(uint256) (#1863-1869) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1864)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1868)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#133-136) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1180-1186) is never used and should be removed
SafeMath.mod(uint256,uint256) (#315-317) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#331-334) is never used and should be removed
SafeMathInt.abs(int256) (#464-467) is never used and should be removed
SafeMathInt.div(int256,int256) (#435-441) is never used and should be removed
SafeMathInt.mul(int256,int256) (#423-430) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.6.2 (#13) 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

Low level call in DividendPayingToken._withdrawDividendOfUser(address) (#1124-1140):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1129)
Low level call in EverBNB.swapAndSendDividends(uint256) (#1724-1732):
- (success) = address(dividendTracker).call{value: dividends}() (#1727)
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() (#555) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#556) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#573) is not in mixedCase
Function IUniswapV2Router01.WETH() (#612) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1146) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1153) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1160) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1170) is not in mixedCase
Constant DividendPayingToken.magnitude (#1061) is not in UPPER_CASE_WITH_UNDERSCORES
Event EverBNBmarketingWalletUpdated(address,address) (#1268) is not in CapWords
Parameter EverBNB.setMaxSellTransaction(uint256)._maxTxn (#1372) is not in mixedCase
Parameter EverBNB.setSwapTokensAtAmount(uint256)._swapAmount (#1376) is not in mixedCase
Function EverBNB.Launch() (#1622-1625) is not in mixedCase
Function EverBNB.SetcanTransferBeforeTradingIsEnabled(address) (#1627-1632) is not in mixedCase
Parameter EverBNB.SetcanTransferBeforeTradingIsEnabled(address)._Wallet (#1627) is not in mixedCase
Variable EverBNB.BNBRewardsFee (#1243) is not in mixedCase
Parameter EverBNBDividendTracker.updateMinimumTokenBalanceForDividends(uint256)._newMinimumBalance (#1768) is not in mixedCase
Parameter EverBNBDividendTracker.getAccount(address)._account (#1799) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#134)" inContext (#128-137)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#617) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#618)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1125) is too similar to EverBNBDividendTracker.getAccount(address).withdrawableDividends (#1804)
Prevent variables from having similar names.

Additional information: link

EverBNB.constructor() (#1303-1349) uses literals with too many digits:
- _mint(owner(),1000000000 * (10 ** 18)) (#1348)
EverBNB.updateGasForProcessing(uint256) (#1432-1437) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,EverBNB: gasForProcessing must be between 200,000 and 500,000) (#1433)
EverBNB.slitherConstructorVariables() (#1223-1733) uses literals with too many digits:
- maxSellTransactionAmount = 1000000 * (10 ** 18) (#1238)
EverBNB.slitherConstructorVariables() (#1223-1733) uses literals with too many digits:
- swapTokensAtAmount = 200000 * (10 ** 18) (#1239)
EverBNB.slitherConstructorVariables() (#1223-1733) uses literals with too many digits:
- gasForProcessing = 300000 (#1252)
EverBNBDividendTracker.getAccountAtIndex(uint256) (#1844-1861) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1855)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#418) is never used in SafeMathInt (#416-474)
Remove unused state variables.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#177-180)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#186-190)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#346-348)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#350-355)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#357-359)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#363-365)
name() should be declared external:
- ERC20.name() (#800-802)
symbol() should be declared external:
- ERC20.symbol() (#808-810)
decimals() should be declared external:
- ERC20.decimals() (#825-827)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#851-854)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#859-861)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#870-873)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#888-896)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#910-913)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#929-932)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1118-1120)
- EverBNBDividendTracker.withdrawDividend() (#1764-1766)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1146-1148)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1160-1162)
updateDividendTracker(address) should be declared external:
- EverBNB.updateDividendTracker(address) (#1355-1370)
updateUniswapV2Router(address) should be declared external:
- EverBNB.updateUniswapV2Router(address) (#1385-1389)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- EverBNB.excludeMultipleAccountsFromFees(address[],bool) (#1398-1404)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- EverBNB.setAutomatedMarketMakerPair(address,bool) (#1407-1411)
updateLiquidityWallet(address) should be declared external:
- EverBNB.updateLiquidityWallet(address) (#1425-1430)
updateGasForProcessing(uint256) should be declared external:
- EverBNB.updateGasForProcessing(uint256) (#1432-1437)
isExcludedFromFees(address) should be declared external:
- EverBNB.isExcludedFromFees(address) (#1469-1471)
withdrawableDividendOf(address) should be declared external:
- EverBNB.withdrawableDividendOf(address) (#1473-1475)
dividendTokenBalanceOf(address) should be declared external:
- EverBNB.dividendTokenBalanceOf(address) (#1477-1479)
getTradingIsEnabled() should be declared external:
- EverBNB.getTradingIsEnabled() (#1524-1526)
updatemarketingWallet(address) should be declared external:
- EverBNB.updatemarketingWallet(address) (#1634-1638)
getAccountAtIndex(uint256) should be declared external:
- EverBNBDividendTracker.getAccountAtIndex(uint256) (#1844-1861)
process(uint256) should be declared external:
- EverBNBDividendTracker.process(uint256) (#1888-1933)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


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


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


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


Token has no active CoinGecko listing / rank


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 EVERBNB

News for EVERBNB