DiveWallet is a cross-chain mobile wallet that is committed to keeping user's assets safe and secure while making their crypto experience easier though features like the ability to choose own price source, dusting attack alerts, automatic web3 disconnect, and much more.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in DiveWallet._transferFrom(address,address,uint256) (#521-544):
External calls:
- swapBack() (#526)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#606-612)
- distributor.deposit{value: amountBNBReflection}() (#622)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
External calls sending eth:
- swapBack() (#526)
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#531)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#535)
- amountReceived = takeFee(sender,recipient,amount) (#533)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#583)
- triggerAutoBuyback() (#527)
- inSwap = true (#461)
- inSwap = false (#461)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#353-364) ignores return value by BUSD.transfer(shareholder,amount) (#359)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
DiveWallet.swapBack() (#596-638) sends eth to arbitrary user
Dangerous calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Reentrancy in DiveWallet.constructor() (#463-486):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#467)
State variables written after the call(s):
- WBNB = router.WETH() (#469)
Reentrancy in DividendDistributor.distributeDividend(address) (#353-364):
External calls:
- BUSD.transfer(shareholder,amount) (#359)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#361)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#362)
Reentrancy in DividendDistributor.process(uint256) (#322-346):
External calls:
- distributeDividend(shareholders[currentIndex]) (#338)
- BUSD.transfer(shareholder,amount) (#359)
State variables written after the call(s):
- currentIndex ++ (#343)
Reentrancy in DividendDistributor.setShare(address,uint256) (#286-300):
External calls:
- distributeDividend(shareholder) (#288)
- BUSD.transfer(shareholder,amount) (#359)
State variables written after the call(s):
- shares[shareholder].amount = amount (#298)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#299)
Apply the check-effects-interactions pattern.
Additional information: link
DiveWallet.swapBack() (#596-638) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#281-284) should emit an event for:
- minPeriod = _minPeriod (#282)
- minDistribution = _minDistribution (#283)
DiveWallet.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#680-687) should emit an event for:
- autoBuybackCap = _cap (#682)
- autoBuybackAmount = _amount (#684)
DiveWallet.setBuybackMultiplierSettings(uint256,uint256,uint256) (#689-694) should emit an event for:
- buybackMultiplierNumerator = numerator (#691)
- buybackMultiplierDenominator = denominator (#692)
- buybackMultiplierLength = length (#693)
DiveWallet.setTxLimit(uint256) (#706-709) should emit an event for:
- _maxTxAmount = amount (#708)
DiveWallet.setFees(uint256,uint256,uint256,uint256,uint256) (#729-737) should emit an event for:
- liquidityFee = _liquidityFee (#730)
- reflectionFee = _reflectionFee (#732)
- marketingFee = _marketingFee (#733)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#734)
- feeDenominator = _feeDenominator (#735)
DiveWallet.setSwapBackSettings(bool,uint256) (#744-747) should emit an event for:
- swapThreshold = _amount (#746)
DiveWallet.setTargetLiquidity(uint256,uint256) (#749-752) should emit an event for:
- targetLiquidity = _target (#750)
- targetLiquidityDenominator = _denominator (#751)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (#163) lacks a zero-check on :
- owner = adr (#164)
DiveWallet.setFeeReceivers(address,address)._autoLiquidityReceiver (#739) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#740)
DiveWallet.setFeeReceivers(address,address)._marketingFeeReceiver (#739) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#741)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#353-364) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#359)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in DiveWallet.constructor() (#463-486):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#467)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = _totalSupply (#468)
- approve(_routerAddress,_totalSupply) (#482)
- _allowances[msg.sender][spender] = amount (#500)
- approve(address(pair),_totalSupply) (#483)
- _allowances[msg.sender][spender] = amount (#500)
- _balances[msg.sender] = _totalSupply (#484)
- autoLiquidityReceiver = msg.sender (#480)
- buyBacker[msg.sender] = true (#478)
- distributor = new DividendDistributor(_routerAddress) (#470)
- distributorAddress = address(distributor) (#471)
- isDividendExempt[pair] = true (#475)
- isDividendExempt[address(this)] = true (#476)
- isDividendExempt[DEAD] = true (#477)
- isFeeExempt[msg.sender] = true (#473)
- isTxLimitExempt[msg.sender] = true (#474)
- marketingFeeReceiver = msg.sender (#481)
Reentrancy in DividendDistributor.deposit() (#302-320):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#309-314)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#319)
- totalDividends = totalDividends.add(amount) (#318)
Reentrancy in DividendDistributor.distributeDividend(address) (#353-364):
External calls:
- BUSD.transfer(shareholder,amount) (#359)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#360)
Reentrancy in DividendDistributor.setShare(address,uint256) (#286-300):
External calls:
- distributeDividend(shareholder) (#288)
- BUSD.transfer(shareholder,amount) (#359)
State variables written after the call(s):
- addShareholder(shareholder) (#292)
- shareholderIndexes[shareholder] = shareholders.length (#386)
- removeShareholder(shareholder) (#294)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#392)
- addShareholder(shareholder) (#292)
- shareholders.push(shareholder) (#387)
- removeShareholder(shareholder) (#294)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#391)
- shareholders.pop() (#393)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#297)
Reentrancy in DiveWallet.triggerAutoBuyback() (#660-665):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#661)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#663)
- autoBuybackBlockLast = block.number (#662)
- autoBuybackEnabled = false (#664)
Reentrancy in DiveWallet.triggerZeusBuyback(uint256,bool) (#648-654):
External calls:
- buyTokens(amount,DEAD) (#649)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#651)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DiveWallet._transferFrom(address,address,uint256) (#521-544):
External calls:
- swapBack() (#526)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#606-612)
- distributor.deposit{value: amountBNBReflection}() (#622)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
- distributor.setShare(sender,_balances[sender]) (#537)
- distributor.setShare(recipient,_balances[recipient]) (#538)
- distributor.process(distributorGas) (#540)
External calls sending eth:
- swapBack() (#526)
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#542)
Reentrancy in DiveWallet._transferFrom(address,address,uint256) (#521-544):
External calls:
- swapBack() (#526)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#606-612)
- distributor.deposit{value: amountBNBReflection}() (#622)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
External calls sending eth:
- swapBack() (#526)
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#584)
- amountReceived = takeFee(sender,recipient,amount) (#533)
Reentrancy in DiveWallet.constructor() (#463-486):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#467)
Event emitted after the call(s):
- Approval(msg.sender,spender,amount) (#501)
- approve(address(pair),_totalSupply) (#483)
- Approval(msg.sender,spender,amount) (#501)
- approve(_routerAddress,_totalSupply) (#482)
- Transfer(address(0),msg.sender,_totalSupply) (#485)
Reentrancy in DiveWallet.swapBack() (#596-638):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#606-612)
- distributor.deposit{value: amountBNBReflection}() (#622)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#636)
Reentrancy in DiveWallet.triggerZeusBuyback(uint256,bool) (#648-654):
External calls:
- buyTokens(amount,DEAD) (#649)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#652)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#348-351) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#349-350)
DiveWallet.getMultipliedFee() (#569-578) uses timestamp for comparisons
Dangerous comparisons:
- launchedAtTimestamp + 86400 > block.timestamp (#570)
- buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#572)
DiveWallet.shouldSwapBack() (#589-594) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#590-593)
DiveWallet.isOverLiquified(uint256,uint256) (#771-773) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#772)
Avoid relying on block.timestamp.
Additional information: link
DiveWallet.onlyBuybacker() (#495) compares to a boolean constant:
-require(bool,string)(buyBacker[msg.sender] == true,) (#495)
Remove the equality to the boolean constant.
Additional information: link
DividendDistributor.process(uint256) (#322-346) has costly operations inside a loop:
- currentIndex = 0 (#334)
DividendDistributor.distributeDividend(address) (#353-364) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#358)
DividendDistributor.process(uint256) (#322-346) has costly operations inside a loop:
- currentIndex ++ (#343)
Use a local variable to hold the loop computation result.
Additional information: link
DiveWallet._maxTxAmount (#412) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(400)
DiveWallet.swapThreshold (#459) 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 (#2) allows old versions
solc-0.8.0 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() (#178) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#281) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#281) is not in mixedCase
Variable DividendDistributor._token (#234) is not in mixedCase
Variable DividendDistributor.BUSD (#242) is not in mixedCase
Variable DividendDistributor.WBNB (#243) is not in mixedCase
Parameter DiveWallet.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#680) is not in mixedCase
Parameter DiveWallet.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#680) is not in mixedCase
Parameter DiveWallet.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#680) is not in mixedCase
Parameter DiveWallet.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#680) is not in mixedCase
Parameter DiveWallet.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#729) is not in mixedCase
Parameter DiveWallet.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#729) is not in mixedCase
Parameter DiveWallet.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#729) is not in mixedCase
Parameter DiveWallet.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#729) is not in mixedCase
Parameter DiveWallet.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#729) is not in mixedCase
Parameter DiveWallet.setFeeReceivers(address,address)._autoLiquidityReceiver (#739) is not in mixedCase
Parameter DiveWallet.setFeeReceivers(address,address)._marketingFeeReceiver (#739) is not in mixedCase
Parameter DiveWallet.setSwapBackSettings(bool,uint256)._enabled (#744) is not in mixedCase
Parameter DiveWallet.setSwapBackSettings(bool,uint256)._amount (#744) is not in mixedCase
Parameter DiveWallet.setTargetLiquidity(uint256,uint256)._target (#749) is not in mixedCase
Parameter DiveWallet.setTargetLiquidity(uint256,uint256)._denominator (#749) is not in mixedCase
Parameter DiveWallet.setDistributionCriteria(uint256,uint256)._minPeriod (#754) is not in mixedCase
Parameter DiveWallet.setDistributionCriteria(uint256,uint256)._minDistribution (#754) is not in mixedCase
Variable DiveWallet.BUSD (#401) is not in mixedCase
Variable DiveWallet.WBNB (#402) is not in mixedCase
Variable DiveWallet.DEAD (#403) is not in mixedCase
Variable DiveWallet.ZERO (#404) is not in mixedCase
Variable DiveWallet.DEAD_NON_CHECKSUM (#405) is not in mixedCase
Constant DiveWallet._name (#407) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DiveWallet._symbol (#408) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DiveWallet._decimals (#409) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DiveWallet._totalSupply (#411) is not in mixedCase
Variable DiveWallet._maxTxAmount (#412) is not in mixedCase
Variable DiveWallet._balances (#414) is not in mixedCase
Variable DiveWallet._allowances (#415) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in DiveWallet._transferFrom(address,address,uint256) (#521-544):
External calls:
- swapBack() (#526)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
External calls sending eth:
- swapBack() (#526)
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#531)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#535)
- amountReceived = takeFee(sender,recipient,amount) (#533)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#583)
- triggerAutoBuyback() (#527)
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#663)
- triggerAutoBuyback() (#527)
- autoBuybackBlockLast = block.number (#662)
- triggerAutoBuyback() (#527)
- autoBuybackEnabled = false (#664)
- triggerAutoBuyback() (#527)
- inSwap = true (#461)
- inSwap = false (#461)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#584)
- amountReceived = takeFee(sender,recipient,amount) (#533)
- Transfer(sender,recipient,amountReceived) (#542)
Reentrancy in DiveWallet.swapBack() (#596-638):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#636)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#183) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#184)
Prevent variables from having similar names.
Additional information: link
DiveWallet.slitherConstructorVariables() (#397-778) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#403)
DiveWallet.slitherConstructorVariables() (#397-778) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#404)
DiveWallet.slitherConstructorVariables() (#397-778) uses literals with too many digits:
- DEAD_NON_CHECKSUM = 0x000000000000000000000000000000000000dEaD (#405)
DiveWallet.slitherConstructorVariables() (#397-778) uses literals with too many digits:
- distributorGas = 500000 (#456)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DiveWallet.BUSD (#401) is never used in DiveWallet (#397-778)
DiveWallet.DEAD_NON_CHECKSUM (#405) is never used in DiveWallet (#397-778)
Remove unused state variables.
Additional information: link
DiveWallet.BUSD (#401) should be constant
DiveWallet.DEAD (#403) should be constant
DiveWallet.DEAD_NON_CHECKSUM (#405) should be constant
DiveWallet.ZERO (#404) should be constant
DiveWallet._totalSupply (#411) should be constant
DividendDistributor.WBNB (#243) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#256) 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) (#135-137)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#142-144)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#163-167)
launch() should be declared external:
- DiveWallet.launch() (#700-704)
Use the external attribute for functions never called from the contract.
Additional information: link
DiveWallet.launched() (#696-698) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#79-84) is never used and should be removed
SafeMath.mod(uint256,uint256) (#68-70) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#86-91) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#11-17) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#38-43) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#45-50) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#26-36) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#19-24) is never used and should be removed
Remove unused functions.
Additional information: link
Contract has 15% buy tax and 15% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to find token on CoinGecko
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
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
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
Alexa traffic rank is relatively low
Additional information: link
Token has relatively low CoinMarketCap rank
Unable to find Youtube account