Bwatch is a community driven crypto presale, research & earn platform. $BWT utility token brings Bwatch users possibility to earn rewards for engaging with the platform and also earn BUSD rewards simply by holding the token.
Dapp is already live and working: app.bwatch.cc
Bwatch.swapBack() (#583-623) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#609)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#610)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#613-620)
Bwatch.buyTokens(uint256,address) (#652-663) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#657-662)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Bwatch._transferFrom(address,address,uint256) (#524-545):
External calls:
- swapBack() (#529)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#593-599)
- distributor.deposit{value: amountBNBReflection}() (#609)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#613-620)
- triggerAutoBuyback() (#530)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#657-662)
External calls sending eth:
- swapBack() (#529)
- distributor.deposit{value: amountBNBReflection}() (#609)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#610)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#613-620)
- triggerAutoBuyback() (#530)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#657-662)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#532)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#536)
- amountReceived = takeFee(sender,amount) (#534)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#570)
- triggerAutoBuyback() (#530)
- inSwap = true (#463)
- inSwap = false (#463)
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
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
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.
Auth.transferOwnership(address).adr (#162) lacks a zero-check on :
- owner = adr (#163)
Bwatch.setFeeReceivers(address,address)._autoLiquidityReceiver (#724) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#725)
Bwatch.setFeeReceivers(address,address)._marketingFeeReceiver (#724) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#726)
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
DividendDistributor.setDistributionCriteria(uint256,uint256) (#281-284) should emit an event for:
- minPeriod = _minPeriod (#282)
- minDistribution = _minDistribution (#283)
Bwatch.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#665-672) should emit an event for:
- autoBuybackCap = _cap (#667)
- autoBuybackAmount = _amount (#669)
Bwatch.setTxLimit(uint256) (#691-694) should emit an event for:
- _maxTxAmount = amount (#693)
Bwatch.setFees(uint256,uint256,uint256,uint256,uint256) (#714-722) should emit an event for:
- liquidityFee = _liquidityFee (#715)
- buybackFee = _buybackFee (#716)
- reflectionFee = _reflectionFee (#717)
- marketingFee = _marketingFee (#718)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#719)
- feeDenominator = _feeDenominator (#720)
Bwatch.setSwapBackSettings(bool,uint256) (#729-732) should emit an event for:
- swapThreshold = _amount (#731)
Bwatch.setTargetLiquidity(uint256,uint256) (#734-737) should emit an event for:
- targetLiquidity = _target (#735)
- targetLiquidityDenominator = _denominator (#736)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in Bwatch.constructor(address) (#465-489):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#469)
State variables written after the call(s):
- WBNB = router.WETH() (#471)
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
Bwatch.swapBack() (#583-623) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#613-620)
Ensure that all the return values of the function calls are used.
Additional information: link
Reentrancy in Bwatch.constructor(address) (#465-489):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#469)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = _totalSupply (#470)
- approve(_dexRouter,_totalSupply) (#485)
- _allowances[msg.sender][spender] = amount (#503)
- approve(address(pair),_totalSupply) (#486)
- _allowances[msg.sender][spender] = amount (#503)
- _balances[msg.sender] = _totalSupply (#487)
- autoLiquidityReceiver = msg.sender (#482)
- buyBacker[msg.sender] = true (#480)
- distributor = new DividendDistributor(_dexRouter) (#472)
- distributorAddress = address(distributor) (#473)
- isDividendExempt[pair] = true (#477)
- isDividendExempt[address(this)] = true (#478)
- isDividendExempt[DEAD] = true (#479)
- isFeeExempt[msg.sender] = true (#475)
- isTxLimitExempt[msg.sender] = true (#476)
- marketingFeeReceiver = msg.sender (#483)
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 Bwatch.triggerAutoBuyback() (#645-650):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#646)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#657-662)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#648)
- autoBuybackBlockLast = block.number (#647)
- autoBuybackEnabled = false (#649)
Reentrancy in Bwatch.triggerBuyback(uint256,bool) (#633-639):
External calls:
- buyTokens(amount,DEAD) (#634)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#657-662)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#636)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Bwatch._transferFrom(address,address,uint256) (#524-545):
External calls:
- swapBack() (#529)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#593-599)
- distributor.deposit{value: amountBNBReflection}() (#609)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#613-620)
- triggerAutoBuyback() (#530)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#657-662)
- distributor.setShare(sender,_balances[sender]) (#538)
- distributor.setShare(recipient,_balances[recipient]) (#539)
- distributor.process(distributorGas) (#541)
External calls sending eth:
- swapBack() (#529)
- distributor.deposit{value: amountBNBReflection}() (#609)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#610)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#613-620)
- triggerAutoBuyback() (#530)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#657-662)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#543)
Reentrancy in Bwatch._transferFrom(address,address,uint256) (#524-545):
External calls:
- swapBack() (#529)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#593-599)
- distributor.deposit{value: amountBNBReflection}() (#609)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#613-620)
- triggerAutoBuyback() (#530)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#657-662)
External calls sending eth:
- swapBack() (#529)
- distributor.deposit{value: amountBNBReflection}() (#609)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#610)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#613-620)
- triggerAutoBuyback() (#530)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#657-662)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#571)
- amountReceived = takeFee(sender,amount) (#534)
Reentrancy in Bwatch.constructor(address) (#465-489):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#469)
Event emitted after the call(s):
- Approval(msg.sender,spender,amount) (#504)
- approve(address(pair),_totalSupply) (#486)
- Approval(msg.sender,spender,amount) (#504)
- approve(_dexRouter,_totalSupply) (#485)
- Transfer(address(0),msg.sender,_totalSupply) (#488)
Reentrancy in Bwatch.swapBack() (#583-623):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#593-599)
- distributor.deposit{value: amountBNBReflection}() (#609)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#613-620)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#609)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#610)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#613-620)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#621)
Reentrancy in Bwatch.triggerBuyback(uint256,bool) (#633-639):
External calls:
- buyTokens(amount,DEAD) (#634)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#657-662)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#637)
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)
Avoid relying on block.timestamp.
Additional information: link
Bwatch.onlyBuybacker() (#498) compares to a boolean constant:
-require(bool,string)(buyBacker[msg.sender] == true,) (#498)
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
Bwatch.launched() (#681-683) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#78-83) is never used and should be removed
SafeMath.mod(uint256,uint256) (#67-69) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#85-90) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#10-16) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#37-42) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#44-49) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#25-35) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#18-23) is never used and should be removed
Remove unused functions.
Additional information: link
Bwatch._maxTxAmount (#414) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(100)
Bwatch.totalFee (#427) is set pre-construction with a non-constant function or state variable:
- liquidityFee + buybackFee + reflectionFee + marketingFee
Bwatch.swapThreshold (#461) 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
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() (#177) 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 (#233) is not in mixedCase
Variable DividendDistributor.BUSD (#241) is not in mixedCase
Variable DividendDistributor.WBNB (#242) is not in mixedCase
Parameter Bwatch.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#665) is not in mixedCase
Parameter Bwatch.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#665) is not in mixedCase
Parameter Bwatch.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#665) is not in mixedCase
Parameter Bwatch.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#665) is not in mixedCase
Parameter Bwatch.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#714) is not in mixedCase
Parameter Bwatch.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#714) is not in mixedCase
Parameter Bwatch.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#714) is not in mixedCase
Parameter Bwatch.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#714) is not in mixedCase
Parameter Bwatch.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#714) is not in mixedCase
Parameter Bwatch.setFeeReceivers(address,address)._autoLiquidityReceiver (#724) is not in mixedCase
Parameter Bwatch.setFeeReceivers(address,address)._marketingFeeReceiver (#724) is not in mixedCase
Parameter Bwatch.setSwapBackSettings(bool,uint256)._enabled (#729) is not in mixedCase
Parameter Bwatch.setSwapBackSettings(bool,uint256)._amount (#729) is not in mixedCase
Parameter Bwatch.setTargetLiquidity(uint256,uint256)._target (#734) is not in mixedCase
Parameter Bwatch.setTargetLiquidity(uint256,uint256)._denominator (#734) is not in mixedCase
Parameter Bwatch.setDistributionCriteria(uint256,uint256)._minPeriod (#739) is not in mixedCase
Parameter Bwatch.setDistributionCriteria(uint256,uint256)._minDistribution (#739) is not in mixedCase
Variable Bwatch.BUSD (#401) is not in mixedCase
Variable Bwatch.WBNB (#402) is not in mixedCase
Variable Bwatch.DEAD (#404) is not in mixedCase
Variable Bwatch.ZERO (#405) is not in mixedCase
Variable Bwatch.DEAD_NON_CHECKSUM (#406) is not in mixedCase
Constant Bwatch._name (#408) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Bwatch._symbol (#409) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Bwatch._decimals (#410) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Bwatch._totalSupply (#412) is not in mixedCase
Variable Bwatch._maxTxAmount (#414) is not in mixedCase
Variable Bwatch._balances (#416) is not in mixedCase
Variable Bwatch._allowances (#417) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in Bwatch._transferFrom(address,address,uint256) (#524-545):
External calls:
- swapBack() (#529)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#610)
External calls sending eth:
- swapBack() (#529)
- distributor.deposit{value: amountBNBReflection}() (#609)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#610)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#613-620)
- triggerAutoBuyback() (#530)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#657-662)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#532)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#536)
- amountReceived = takeFee(sender,amount) (#534)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#570)
- triggerAutoBuyback() (#530)
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#648)
- triggerAutoBuyback() (#530)
- autoBuybackBlockLast = block.number (#647)
- triggerAutoBuyback() (#530)
- autoBuybackEnabled = false (#649)
- triggerAutoBuyback() (#530)
- inSwap = true (#463)
- inSwap = false (#463)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#571)
- amountReceived = takeFee(sender,amount) (#534)
- Transfer(sender,recipient,amountReceived) (#543)
Reentrancy in Bwatch.swapBack() (#583-623):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#610)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#609)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#610)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#613-620)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#621)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#182) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#183)
Prevent variables from having similar names.
Additional information: link
Bwatch.slitherConstructorVariables() (#397-763) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#404)
Bwatch.slitherConstructorVariables() (#397-763) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#405)
Bwatch.slitherConstructorVariables() (#397-763) uses literals with too many digits:
- DEAD_NON_CHECKSUM = 0x000000000000000000000000000000000000dEaD (#406)
Bwatch.slitherConstructorVariables() (#397-763) uses literals with too many digits:
- distributorGas = 500000 (#458)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Bwatch.BUSD (#401) is never used in Bwatch (#397-763)
Bwatch.DEAD_NON_CHECKSUM (#406) is never used in Bwatch (#397-763)
Remove unused state variables.
Additional information: link
Bwatch.BUSD (#401) should be constant
Bwatch.DEAD (#404) should be constant
Bwatch.DEAD_NON_CHECKSUM (#406) should be constant
Bwatch.ZERO (#405) should be constant
Bwatch._totalSupply (#412) should be constant
DividendDistributor.WBNB (#242) 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) (#134-136)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#141-143)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#162-166)
launch() should be declared external:
- Bwatch.launch() (#685-689)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
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
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Alexa traffic rank is very low
Additional information: link
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
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account