EverCash Token Logo

ECash [EverCash] Token

About ECash

Listings

Not Found
Token 2 years
white paper

EverCash is a hyper-deflationary token built on the Binance Smart Chain network. ✅ EverCash has a 20% transaction tax 🟢 10% of all transactions is rewarded to all holders in $BUSD (Binance-pegged BUSD). ♻️ 8% goes to our Buy Back and Burn wallet. 💰 1% will go to the Liquidity Pool and ⚙️ 1% will go to our Marketing and Development Wallet. A Peer-to-Peer Marketplace 💳 - allowing transfers to anyone, anywhere. Non-custodial ECash Wallet 🧰, and more to come that are not officially stated on Pitch Deck.

Social

Laser Scorebeta Last Audit: 20 February 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

EverCash.swapBack() (#640-682) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#666)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#667)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
EverCash.buyTokens(uint256,address) (#711-722) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#716-721)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in EverCash._transferFrom(address,address,uint256) (#560-586):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#562)
- swapBack() (#568)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#650-656)
- distributor.deposit{value: amountBNBReflection}() (#666)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
- triggerAutoBuyback() (#569)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#716-721)
External calls sending eth:
- swapBack() (#568)
- distributor.deposit{value: amountBNBReflection}() (#666)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#667)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
- triggerAutoBuyback() (#569)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#716-721)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#573)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#577)
- amountReceived = takeFee(sender,recipient,amount) (#575)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#627)
- triggerAutoBuyback() (#569)
- inSwap = true (#494)
- inSwap = false (#494)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

EverCash.launched() (#740-742) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#98-103) is never used and should be removed
SafeMath.mod(uint256,uint256) (#87-89) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#105-110) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#30-36) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#57-62) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#64-69) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#45-55) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#38-43) is never used and should be removed
Remove unused functions.

Additional information: link

EverCash._maxTxAmount (#441) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(400)
EverCash.swapThreshold (#488) 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 (#6) allows old versions
solc-0.8.3 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

Function IDEXRouter.WETH() (#197) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#310) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#310) is not in mixedCase
Variable DividendDistributor._token (#263) is not in mixedCase
Variable DividendDistributor.BUSD (#271) is not in mixedCase
Variable DividendDistributor.WBNB (#272) is not in mixedCase
Parameter EverCash.setEnableAntiBot(bool)._enable (#595) is not in mixedCase
Parameter EverCash.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#724) is not in mixedCase
Parameter EverCash.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#724) is not in mixedCase
Parameter EverCash.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#724) is not in mixedCase
Parameter EverCash.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#724) is not in mixedCase
Parameter EverCash.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#773) is not in mixedCase
Parameter EverCash.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#773) is not in mixedCase
Parameter EverCash.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#773) is not in mixedCase
Parameter EverCash.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#773) is not in mixedCase
Parameter EverCash.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#773) is not in mixedCase
Parameter EverCash.setFeeReceivers(address,address)._autoLiquidityReceiver (#783) is not in mixedCase
Parameter EverCash.setFeeReceivers(address,address)._marketingFeeReceiver (#783) is not in mixedCase
Parameter EverCash.setSwapBackSettings(bool,uint256)._enabled (#788) is not in mixedCase
Parameter EverCash.setSwapBackSettings(bool,uint256)._amount (#788) is not in mixedCase
Parameter EverCash.setTargetLiquidity(uint256,uint256)._target (#793) is not in mixedCase
Parameter EverCash.setTargetLiquidity(uint256,uint256)._denominator (#793) is not in mixedCase
Parameter EverCash.setDistributionCriteria(uint256,uint256)._minPeriod (#798) is not in mixedCase
Parameter EverCash.setDistributionCriteria(uint256,uint256)._minDistribution (#798) is not in mixedCase
Variable EverCash.BUSD (#430) is not in mixedCase
Variable EverCash.WBNB (#431) is not in mixedCase
Variable EverCash.DEAD (#432) is not in mixedCase
Variable EverCash.ZERO (#433) is not in mixedCase
Variable EverCash.DEAD_NON_CHECKSUM (#434) is not in mixedCase
Constant EverCash._name (#436) is not in UPPER_CASE_WITH_UNDERSCORES
Constant EverCash._symbol (#437) is not in UPPER_CASE_WITH_UNDERSCORES
Constant EverCash._decimals (#438) is not in UPPER_CASE_WITH_UNDERSCORES
Variable EverCash._totalSupply (#440) is not in mixedCase
Variable EverCash._maxTxAmount (#441) is not in mixedCase
Variable EverCash._balances (#443) is not in mixedCase
Variable EverCash._allowances (#444) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in EverCash.constructor(address,address) (#496-525):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#501)
State variables written after the call(s):
- WBNB = router.WETH() (#503)
Reentrancy in DividendDistributor.distributeDividend(address) (#382-393):
External calls:
- BUSD.transfer(shareholder,amount) (#388)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#390)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#391)
Reentrancy in DividendDistributor.process(uint256) (#351-375):
External calls:
- distributeDividend(shareholders[currentIndex]) (#367)
- BUSD.transfer(shareholder,amount) (#388)
State variables written after the call(s):
- currentIndex ++ (#372)
Reentrancy in DividendDistributor.setShare(address,uint256) (#315-329):
External calls:
- distributeDividend(shareholder) (#317)
- BUSD.transfer(shareholder,amount) (#388)
State variables written after the call(s):
- shares[shareholder].amount = amount (#327)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#328)
Apply the check-effects-interactions pattern.

Additional information: link

EverCash.swapBack() (#640-682) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#310-313) should emit an event for:
- minPeriod = _minPeriod (#311)
- minDistribution = _minDistribution (#312)
EverCash.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#724-731) should emit an event for:
- autoBuybackCap = _cap (#726)
- autoBuybackAmount = _amount (#728)
EverCash.setBuybackMultiplierSettings(uint256,uint256,uint256) (#733-738) should emit an event for:
- buybackMultiplierNumerator = numerator (#735)
- buybackMultiplierDenominator = denominator (#736)
- buybackMultiplierLength = length (#737)
EverCash.setTxLimit(uint256) (#750-753) should emit an event for:
- _maxTxAmount = amount (#752)
EverCash.setFees(uint256,uint256,uint256,uint256,uint256) (#773-781) should emit an event for:
- liquidityFee = _liquidityFee (#774)
- reflectionFee = _reflectionFee (#776)
- marketingFee = _marketingFee (#777)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#778)
- feeDenominator = _feeDenominator (#779)
EverCash.setSwapBackSettings(bool,uint256) (#788-791) should emit an event for:
- swapThreshold = _amount (#790)
EverCash.setTargetLiquidity(uint256,uint256) (#793-796) should emit an event for:
- targetLiquidity = _target (#794)
- targetLiquidityDenominator = _denominator (#795)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#182) lacks a zero-check on :
- owner = adr (#183)
EverCash.setFeeReceivers(address,address)._autoLiquidityReceiver (#783) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#784)
EverCash.setFeeReceivers(address,address)._marketingFeeReceiver (#783) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#785)
Check that the address is not zero.

Additional information: link

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

Additional information: link

Reentrancy in EverCash._transferFrom(address,address,uint256) (#560-586):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#562)
State variables written after the call(s):
- _basicTransfer(sender,recipient,amount) (#564)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#589)
- _balances[recipient] = _balances[recipient].add(amount) (#590)
Reentrancy in EverCash.constructor(address,address) (#496-525):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#501)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = _totalSupply (#502)
- approve(_dexRouter,_totalSupply) (#517)
- _allowances[msg.sender][spender] = amount (#539)
- approve(address(pair),_totalSupply) (#518)
- _allowances[msg.sender][spender] = amount (#539)
- _balances[msg.sender] = _totalSupply (#519)
- antiBotEnabled = true (#521)
- autoLiquidityReceiver = msg.sender (#514)
- buyBacker[msg.sender] = true (#512)
- distributor = new DividendDistributor(_dexRouter) (#504)
- distributorAddress = address(distributor) (#505)
- isDividendExempt[pair] = true (#509)
- isDividendExempt[address(this)] = true (#510)
- isDividendExempt[DEAD] = true (#511)
- isFeeExempt[msg.sender] = true (#507)
- isTxLimitExempt[msg.sender] = true (#508)
- marketingFeeReceiver = msg.sender (#515)
- pinkAntiBot = IPinkAntiBot(pinkAntiBot_) (#522)
Reentrancy in DividendDistributor.deposit() (#331-349):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#338-343)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#348)
- totalDividends = totalDividends.add(amount) (#347)
Reentrancy in DividendDistributor.distributeDividend(address) (#382-393):
External calls:
- BUSD.transfer(shareholder,amount) (#388)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#389)
Reentrancy in DividendDistributor.setShare(address,uint256) (#315-329):
External calls:
- distributeDividend(shareholder) (#317)
- BUSD.transfer(shareholder,amount) (#388)
State variables written after the call(s):
- addShareholder(shareholder) (#321)
- shareholderIndexes[shareholder] = shareholders.length (#415)
- removeShareholder(shareholder) (#323)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#421)
- addShareholder(shareholder) (#321)
- shareholders.push(shareholder) (#416)
- removeShareholder(shareholder) (#323)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#420)
- shareholders.pop() (#422)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#326)
Reentrancy in EverCash.triggerAutoBuyback() (#704-709):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#705)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#716-721)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#707)
- autoBuybackBlockLast = block.number (#706)
- autoBuybackEnabled = false (#708)
Reentrancy in EverCash.triggerZeusBuyback(uint256,bool) (#692-698):
External calls:
- buyTokens(amount,DEAD) (#693)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#716-721)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#695)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EverCash._transferFrom(address,address,uint256) (#560-586):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#562)
- swapBack() (#568)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#650-656)
- distributor.deposit{value: amountBNBReflection}() (#666)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
External calls sending eth:
- swapBack() (#568)
- distributor.deposit{value: amountBNBReflection}() (#666)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#667)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#680)
- swapBack() (#568)
Reentrancy in EverCash._transferFrom(address,address,uint256) (#560-586):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#562)
- swapBack() (#568)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#650-656)
- distributor.deposit{value: amountBNBReflection}() (#666)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
- triggerAutoBuyback() (#569)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#716-721)
- distributor.setShare(sender,_balances[sender]) (#579)
- distributor.setShare(recipient,_balances[recipient]) (#580)
- distributor.process(distributorGas) (#582)
External calls sending eth:
- swapBack() (#568)
- distributor.deposit{value: amountBNBReflection}() (#666)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#667)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
- triggerAutoBuyback() (#569)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#716-721)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#584)
Reentrancy in EverCash._transferFrom(address,address,uint256) (#560-586):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#562)
- swapBack() (#568)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#650-656)
- distributor.deposit{value: amountBNBReflection}() (#666)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
- triggerAutoBuyback() (#569)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#716-721)
External calls sending eth:
- swapBack() (#568)
- distributor.deposit{value: amountBNBReflection}() (#666)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#667)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
- triggerAutoBuyback() (#569)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#716-721)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#628)
- amountReceived = takeFee(sender,recipient,amount) (#575)
Reentrancy in EverCash.constructor(address,address) (#496-525):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#501)
Event emitted after the call(s):
- Approval(msg.sender,spender,amount) (#540)
- approve(_dexRouter,_totalSupply) (#517)
- Approval(msg.sender,spender,amount) (#540)
- approve(address(pair),_totalSupply) (#518)
Reentrancy in EverCash.constructor(address,address) (#496-525):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#501)
- pinkAntiBot.setTokenOwner(msg.sender) (#523)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#524)
Reentrancy in EverCash.swapBack() (#640-682):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#650-656)
- distributor.deposit{value: amountBNBReflection}() (#666)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#666)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#667)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#680)
Reentrancy in EverCash.triggerZeusBuyback(uint256,bool) (#692-698):
External calls:
- buyTokens(amount,DEAD) (#693)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#716-721)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#696)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#377-380) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#378-379)
EverCash.getMultipliedFee() (#613-622) uses timestamp for comparisons
Dangerous comparisons:
- launchedAtTimestamp + 86400 > block.timestamp (#614)
- buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#616)
EverCash.shouldSwapBack() (#633-638) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#634-637)
EverCash.isOverLiquified(uint256,uint256) (#815-817) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#816)
Avoid relying on block.timestamp.

Additional information: link

EverCash.onlyBuybacker() (#534) compares to a boolean constant:
-require(bool,string)(buyBacker[msg.sender] == true,) (#534)
Remove the equality to the boolean constant.

Additional information: link

DividendDistributor.process(uint256) (#351-375) has costly operations inside a loop:
- currentIndex = 0 (#363)
DividendDistributor.distributeDividend(address) (#382-393) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#387)
DividendDistributor.process(uint256) (#351-375) has costly operations inside a loop:
- currentIndex ++ (#372)
Use a local variable to hold the loop computation result.

Additional information: link

Reentrancy in EverCash._transferFrom(address,address,uint256) (#560-586):
External calls:
- swapBack() (#568)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#667)
External calls sending eth:
- swapBack() (#568)
- distributor.deposit{value: amountBNBReflection}() (#666)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#667)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
- triggerAutoBuyback() (#569)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#716-721)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#573)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#577)
- amountReceived = takeFee(sender,recipient,amount) (#575)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#627)
- triggerAutoBuyback() (#569)
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#707)
- triggerAutoBuyback() (#569)
- autoBuybackBlockLast = block.number (#706)
- triggerAutoBuyback() (#569)
- autoBuybackEnabled = false (#708)
- triggerAutoBuyback() (#569)
- inSwap = true (#494)
- inSwap = false (#494)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#628)
- amountReceived = takeFee(sender,recipient,amount) (#575)
- Transfer(sender,recipient,amountReceived) (#584)
Reentrancy in EverCash.swapBack() (#640-682):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#667)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#666)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#667)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#672-679)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#680)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

EverCash.slitherConstructorVariables() (#426-822) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#432)
EverCash.slitherConstructorVariables() (#426-822) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#433)
EverCash.slitherConstructorVariables() (#426-822) uses literals with too many digits:
- DEAD_NON_CHECKSUM = 0x000000000000000000000000000000000000dEaD (#434)
EverCash.slitherConstructorVariables() (#426-822) uses literals with too many digits:
- distributorGas = 500000 (#485)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

EverCash.BUSD (#430) is never used in EverCash (#426-822)
EverCash.DEAD_NON_CHECKSUM (#434) is never used in EverCash (#426-822)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#272) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#285) should be constant
EverCash.BUSD (#430) should be constant
EverCash.DEAD (#432) should be constant
EverCash.DEAD_NON_CHECKSUM (#434) should be constant
EverCash.ZERO (#433) should be constant
EverCash._totalSupply (#440) 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) (#154-156)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#161-163)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#182-186)
launch() should be declared external:
- EverCash.launch() (#744-748)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


Twitter account has relatively few followers


Unable to find Blog account (Reddit or Medium)


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 token contract audit


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


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


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

Price for ECash

News for ECash