EverReward Token Logo

EVER [EverReward] Token

ALERT: rug pull scam

About EVER

Listings

Not Found
Token 2 years
white paper

EverReward – Integrating Blockchain Security and Payment solutions to Defi

Social

Laser Scorebeta Last Audit: 20 February 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links


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

EverReward.swapBack() (#626-668) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#652)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#653)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#658-665)
EverReward.buyTokens(uint256,address) (#695-706) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#700-705)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in EverReward._transferFrom(address,address,uint256) (#545-574):
External calls:
- swapBack() (#556)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#636-642)
- distributor.deposit{value: amountBNBReflection}() (#652)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#658-665)
- triggerAutoBuyback() (#557)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#700-705)
External calls sending eth:
- swapBack() (#556)
- distributor.deposit{value: amountBNBReflection}() (#652)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#653)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#658-665)
- triggerAutoBuyback() (#557)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#700-705)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#561)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#565)
- amountReceived = takeFee(sender,recipient,amount) (#563)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#613)
- triggerAutoBuyback() (#557)
- inSwap = true (#484)
- inSwap = false (#484)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#374-385) ignores return value by BUSD.transfer(shareholder,amount) (#380)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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.


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.

DividendDistributor.setDistributionCriteria(uint256,uint256) (#302-305) should emit an event for:
- minPeriod = _minPeriod (#303)
- minDistribution = _minDistribution (#304)
EverReward.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#708-715) should emit an event for:
- autoBuybackCap = _cap (#710)
- autoBuybackAmount = _amount (#712)
EverReward.setTxLimit(uint256) (#729-732) should emit an event for:
- _maxTxAmount = amount (#731)
EverReward.setFees(uint256,uint256,uint256,uint256,uint256) (#777-785) should emit an event for:
- liquidityFee = _liquidityFee (#778)
- reflectionFee = _reflectionFee (#780)
- marketingFee = _marketingFee (#781)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#782)
- feeDenominator = _feeDenominator (#783)
EverReward.setSwapBackSettings(bool,uint256) (#792-795) should emit an event for:
- swapThreshold = _amount (#794)
EverReward.setTargetLiquidity(uint256,uint256) (#797-800) should emit an event for:
- targetLiquidity = _target (#798)
- targetLiquidityDenominator = _denominator (#799)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#184) lacks a zero-check on :
- owner = adr (#185)
EverReward.TransferBNBsOutfromContract(uint256,address).receiver (#760) lacks a zero-check on :
- receiver.transfer(amount) (#763)
EverReward.setFeeReceivers(address,address)._autoLiquidityReceiver (#787) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#788)
EverReward.setFeeReceivers(address,address)._marketingFeeReceiver (#787) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#789)
Check that the address is not zero.

Additional information: link

Reentrancy in EverReward.constructor(address) (#486-510):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#490)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = _totalSupply (#491)
- approve(_dexRouter,_totalSupply) (#506)
- _allowances[msg.sender][spender] = amount (#524)
- approve(address(pair),_totalSupply) (#507)
- _allowances[msg.sender][spender] = amount (#524)
- _balances[msg.sender] = _totalSupply (#508)
- autoLiquidityReceiver = msg.sender (#503)
- buyBacker[msg.sender] = true (#501)
- distributor = new DividendDistributor(_dexRouter) (#493)
- distributorAddress = address(distributor) (#494)
- isDividendExempt[pair] = true (#498)
- isDividendExempt[address(this)] = true (#499)
- isDividendExempt[DEAD] = true (#500)
- isFeeExempt[msg.sender] = true (#496)
- isTxLimitExempt[msg.sender] = true (#497)
- marketingFeeReceiver = 0x0A2F5104048570E857b631102701508bBA497Ec2 (#504)
Reentrancy in DividendDistributor.deposit() (#323-341):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#330-335)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#340)
- totalDividends = totalDividends.add(amount) (#339)
Reentrancy in DividendDistributor.distributeDividend(address) (#374-385):
External calls:
- BUSD.transfer(shareholder,amount) (#380)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#381)
Reentrancy in DividendDistributor.setShare(address,uint256) (#307-321):
External calls:
- distributeDividend(shareholder) (#309)
- BUSD.transfer(shareholder,amount) (#380)
State variables written after the call(s):
- addShareholder(shareholder) (#313)
- shareholderIndexes[shareholder] = shareholders.length (#407)
- removeShareholder(shareholder) (#315)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#413)
- addShareholder(shareholder) (#313)
- shareholders.push(shareholder) (#408)
- removeShareholder(shareholder) (#315)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#412)
- shareholders.pop() (#414)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#318)
Reentrancy in EverReward.triggerAutoBuyback() (#688-693):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#689)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#700-705)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#691)
- autoBuybackBlockLast = block.number (#690)
- autoBuybackEnabled = false (#692)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EverReward._transferFrom(address,address,uint256) (#545-574):
External calls:
- swapBack() (#556)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#636-642)
- distributor.deposit{value: amountBNBReflection}() (#652)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#658-665)
- triggerAutoBuyback() (#557)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#700-705)
- distributor.setShare(sender,_balances[sender]) (#567)
- distributor.setShare(recipient,_balances[recipient]) (#568)
- distributor.process(distributorGas) (#570)
External calls sending eth:
- swapBack() (#556)
- distributor.deposit{value: amountBNBReflection}() (#652)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#653)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#658-665)
- triggerAutoBuyback() (#557)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#700-705)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#572)
Reentrancy in EverReward._transferFrom(address,address,uint256) (#545-574):
External calls:
- swapBack() (#556)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#636-642)
- distributor.deposit{value: amountBNBReflection}() (#652)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#658-665)
- triggerAutoBuyback() (#557)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#700-705)
External calls sending eth:
- swapBack() (#556)
- distributor.deposit{value: amountBNBReflection}() (#652)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#653)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#658-665)
- triggerAutoBuyback() (#557)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#700-705)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#614)
- amountReceived = takeFee(sender,recipient,amount) (#563)
Reentrancy in EverReward.constructor(address) (#486-510):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#490)
Event emitted after the call(s):
- Approval(msg.sender,spender,amount) (#525)
- approve(_dexRouter,_totalSupply) (#506)
- Approval(msg.sender,spender,amount) (#525)
- approve(address(pair),_totalSupply) (#507)
- Transfer(address(0),msg.sender,_totalSupply) (#509)
Reentrancy in EverReward.swapBack() (#626-668):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#636-642)
- distributor.deposit{value: amountBNBReflection}() (#652)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#658-665)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#652)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#653)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#658-665)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#666)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#369-372) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEverRewardings(shareholder) > minDistribution (#370-371)
Avoid relying on block.timestamp.

Additional information: link

EverReward._transferFrom(address,address,uint256) (#545-574) compares to a boolean constant:
-require(bool,string)(blackListed[sender] == false && blackListed[recipient] == false,account) (#548)
EverReward._transferFrom(address,address,uint256) (#545-574) compares to a boolean constant:
-require(bool,string)(start == true,Trading not started yet) (#551)
EverReward.onlyBuybacker() (#519) compares to a boolean constant:
-require(bool,string)(buyBacker[msg.sender] == true,) (#519)
Remove the equality to the boolean constant.

Additional information: link

DividendDistributor.process(uint256) (#343-367) has costly operations inside a loop:
- currentIndex = 0 (#355)
DividendDistributor.distributeDividend(address) (#374-385) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#379)
DividendDistributor.process(uint256) (#343-367) has costly operations inside a loop:
- currentIndex ++ (#364)
Use a local variable to hold the loop computation result.

Additional information: link

EverReward.launched() (#719-721) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#100-105) is never used and should be removed
SafeMath.mod(uint256,uint256) (#89-91) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#107-112) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#32-38) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#59-64) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#66-71) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#47-57) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#40-45) is never used and should be removed
Remove unused functions.

Additional information: link

EverReward._maxTxAmount (#433) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(400)
EverReward.swapThreshold (#482) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 2000
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.0 (#28) 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

Function IDEXRouter.WETH() (#199) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#302) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#302) is not in mixedCase
Variable DividendDistributor._token (#255) is not in mixedCase
Variable DividendDistributor.BUSD (#263) is not in mixedCase
Variable DividendDistributor.WBNB (#264) is not in mixedCase
Function EverReward.SolarFlare(uint256) (#681-684) is not in mixedCase
Parameter EverReward.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#708) is not in mixedCase
Parameter EverReward.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#708) is not in mixedCase
Parameter EverReward.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#708) is not in mixedCase
Parameter EverReward.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#708) is not in mixedCase
Function EverReward.TransferBNBsOutfromContract(uint256,address) (#760-766) is not in mixedCase
Parameter EverReward.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#777) is not in mixedCase
Parameter EverReward.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#777) is not in mixedCase
Parameter EverReward.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#777) is not in mixedCase
Parameter EverReward.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#777) is not in mixedCase
Parameter EverReward.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#777) is not in mixedCase
Parameter EverReward.setFeeReceivers(address,address)._autoLiquidityReceiver (#787) is not in mixedCase
Parameter EverReward.setFeeReceivers(address,address)._marketingFeeReceiver (#787) is not in mixedCase
Parameter EverReward.setSwapBackSettings(bool,uint256)._enabled (#792) is not in mixedCase
Parameter EverReward.setSwapBackSettings(bool,uint256)._amount (#792) is not in mixedCase
Parameter EverReward.setTargetLiquidity(uint256,uint256)._target (#797) is not in mixedCase
Parameter EverReward.setTargetLiquidity(uint256,uint256)._denominator (#797) is not in mixedCase
Parameter EverReward.setDistributionCriteria(uint256,uint256)._minPeriod (#802) is not in mixedCase
Parameter EverReward.setDistributionCriteria(uint256,uint256)._minDistribution (#802) is not in mixedCase
Variable EverReward.BUSD (#422) is not in mixedCase
Variable EverReward.WBNB (#423) is not in mixedCase
Variable EverReward.DEAD (#424) is not in mixedCase
Variable EverReward.ZERO (#425) is not in mixedCase
Variable EverReward.DEAD_NON_CHECKSUM (#426) is not in mixedCase
Constant EverReward._name (#428) is not in UPPER_CASE_WITH_UNDERSCORES
Constant EverReward._symbol (#429) is not in UPPER_CASE_WITH_UNDERSCORES
Constant EverReward._decimals (#430) is not in UPPER_CASE_WITH_UNDERSCORES
Variable EverReward._totalSupply (#432) is not in mixedCase
Variable EverReward._maxTxAmount (#433) is not in mixedCase
Variable EverReward._balances (#435) is not in mixedCase
Variable EverReward._allowances (#436) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in EverReward._transferFrom(address,address,uint256) (#545-574):
External calls:
- swapBack() (#556)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#653)
External calls sending eth:
- swapBack() (#556)
- distributor.deposit{value: amountBNBReflection}() (#652)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#653)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#658-665)
- triggerAutoBuyback() (#557)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#700-705)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#561)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#565)
- amountReceived = takeFee(sender,recipient,amount) (#563)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#613)
- triggerAutoBuyback() (#557)
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#691)
- triggerAutoBuyback() (#557)
- autoBuybackBlockLast = block.number (#690)
- triggerAutoBuyback() (#557)
- autoBuybackEnabled = false (#692)
- triggerAutoBuyback() (#557)
- inSwap = true (#484)
- inSwap = false (#484)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#614)
- amountReceived = takeFee(sender,recipient,amount) (#563)
- Transfer(sender,recipient,amountReceived) (#572)
Reentrancy in EverReward.swapBack() (#626-668):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#653)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#652)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#653)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#658-665)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#666)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#204) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#205)
Prevent variables from having similar names.

Additional information: link

EverReward.slitherConstructorVariables() (#418-826) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#424)
EverReward.slitherConstructorVariables() (#418-826) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#425)
EverReward.slitherConstructorVariables() (#418-826) uses literals with too many digits:
- DEAD_NON_CHECKSUM = 0x000000000000000000000000000000000000dEaD (#426)
EverReward.slitherConstructorVariables() (#418-826) uses literals with too many digits:
- distributorGas = 500000 (#479)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

EverReward.BUSD (#422) is never used in EverReward (#418-826)
EverReward.DEAD_NON_CHECKSUM (#426) is never used in EverReward (#418-826)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#264) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#277) should be constant
EverReward.BUSD (#422) should be constant
EverReward.DEAD (#424) should be constant
EverReward.DEAD_NON_CHECKSUM (#426) should be constant
EverReward.ZERO (#425) should be constant
EverReward._totalSupply (#432) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#156-158)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#163-165)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#184-188)
launch() should be declared external:
- EverReward.launch() (#723-727)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in EverReward.constructor(address) (#486-510):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#490)
State variables written after the call(s):
- WBNB = router.WETH() (#492)
Reentrancy in DividendDistributor.distributeDividend(address) (#374-385):
External calls:
- BUSD.transfer(shareholder,amount) (#380)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#382)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#383)
Reentrancy in DividendDistributor.process(uint256) (#343-367):
External calls:
- distributeDividend(shareholders[currentIndex]) (#359)
- BUSD.transfer(shareholder,amount) (#380)
State variables written after the call(s):
- currentIndex ++ (#364)
Reentrancy in DividendDistributor.setShare(address,uint256) (#307-321):
External calls:
- distributeDividend(shareholder) (#309)
- BUSD.transfer(shareholder,amount) (#380)
State variables written after the call(s):
- shares[shareholder].amount = amount (#319)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#320)
Apply the check-effects-interactions pattern.

Additional information: link

EverReward.swapBack() (#626-668) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#658-665)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.distributeDividend(address) (#374-385) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#380)
Favor pull over push strategy for external calls.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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

Contract has 15% buy tax and 15% 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


Telegram account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for EVER

News for EVER