Welcome to DOCTOR STRANGE, a community-driven platform that promotes financial well-being by giving reward holders Dogecoin - the world's most famous meme coin, making them rich and self-sufficient financial future.
DOCTORSTRANGE.swapBack() (#539-578) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#564)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in DOCTORSTRANGE._transferFrom(address,address,uint256) (#472-494):
External calls:
- swapBack() (#477)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#550-556)
- distributor.deposit{value: amountBNBReflection}() (#563)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
- triggerAutoBuyback() (#478)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#616-621)
External calls sending eth:
- swapBack() (#477)
- distributor.deposit{value: amountBNBReflection}() (#563)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
- triggerAutoBuyback() (#478)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#616-621)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#482)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#485)
- amountReceived = takeFee(sender,recipient,amount) (#484)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#526)
- triggerAutoBuyback() (#478)
- inSwap = true (#417)
- inSwap = false (#417)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#313-324) ignores return value by DOGE.transfer(shareholder,amount) (#319)
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.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
DOCTORSTRANGE.checkTxLimit(address,uint256) (#503-505) is never used and should be removed
Remove unused functions.
Additional information: link
DividendDistributor.shouldDistribute(address) (#308-311) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#309-310)
DOCTORSTRANGE._transferFrom(address,address,uint256) (#472-494) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_balances[sender] > 0) (#480)
DOCTORSTRANGE.getTotalFee(bool) (#511-515) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#513)
DOCTORSTRANGE.shouldSwapBack() (#532-537) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#533-536)
DOCTORSTRANGE.isOverLiquified(uint256,uint256) (#730-732) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#731)
Avoid relying on block.timestamp.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#313-324):
External calls:
- DOGE.transfer(shareholder,amount) (#319)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#321)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#322)
Reentrancy in DividendDistributor.process(uint256) (#282-306):
External calls:
- distributeDividend(shareholders[currentIndex]) (#298)
- DOGE.transfer(shareholder,amount) (#319)
State variables written after the call(s):
- currentIndex ++ (#303)
Reentrancy in DividendDistributor.setShare(address,uint256) (#246-260):
External calls:
- distributeDividend(shareholder) (#248)
- DOGE.transfer(shareholder,amount) (#319)
State variables written after the call(s):
- shares[shareholder].amount = amount (#258)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#259)
Apply the check-effects-interactions pattern.
Additional information: link
DOCTORSTRANGE.swapBack() (#539-578) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#241-244) should emit an event for:
- minPeriod = _minPeriod (#242)
- minDistribution = _minDistribution (#243)
DOCTORSTRANGE.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#624-632) should emit an event for:
- autoBuybackCap = _cap (#626)
- autoBuybackAmount = _amount (#628)
DOCTORSTRANGE.setDeadBlocks(uint256) (#634-636) should emit an event for:
- deadBlocks = _deadBlocks (#635)
DOCTORSTRANGE.setBuybackMultiplierSettings(uint256,uint256,uint256) (#638-643) should emit an event for:
- buybackMultiplierNumerator = numerator (#640)
- buybackMultiplierDenominator = denominator (#641)
- buybackMultiplierLength = length (#642)
DOCTORSTRANGE.setTxLimit(uint256) (#653-656) should emit an event for:
- _maxTxAmount = amount (#655)
DOCTORSTRANGE.setFees(uint256,uint256,uint256,uint256,uint256) (#676-683) should emit an event for:
- liquidityFee = _liquidityFee (#677)
- reflectionFee = _reflectionFee (#679)
- marketingFee = _marketingFee (#680)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#681)
- feeDenominator = _feeDenominator (#682)
DOCTORSTRANGE.setSwapBackSettings(bool,uint256) (#690-693) should emit an event for:
- swapThreshold = _amount (#692)
DOCTORSTRANGE.setTargetLiquidity(uint256,uint256) (#695-698) should emit an event for:
- targetLiquidity = _target (#696)
- targetLiquidityDenominator = _denominator (#697)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (#123) lacks a zero-check on :
- owner = adr (#124)
DOCTORSTRANGE.setFeeReceivers(address,address)._autoLiquidityReceiver (#685) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#686)
DOCTORSTRANGE.setFeeReceivers(address,address)._marketingFeeReceiver (#685) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#687)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#313-324) has external calls inside a loop: DOGE.transfer(shareholder,amount) (#319)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in DOCTORSTRANGE._transferFrom(address,address,uint256) (#472-494):
External calls:
- swapBack() (#477)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#550-556)
- distributor.deposit{value: amountBNBReflection}() (#563)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
- triggerAutoBuyback() (#478)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#616-621)
External calls sending eth:
- swapBack() (#477)
- distributor.deposit{value: amountBNBReflection}() (#563)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
- triggerAutoBuyback() (#478)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#616-621)
State variables written after the call(s):
- triggerAutoBuyback() (#478)
- buybackMultiplierTriggeredAt = block.timestamp (#603)
- launch() (#480)
- launchedAt = block.number (#650)
Reentrancy in DOCTORSTRANGE.constructor() (#419-438):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#421)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#422)
- _balances[_presaler] = _totalSupply (#436)
- autoLiquidityReceiver = msg.sender (#433)
- distributor = new DividendDistributor(address(router)) (#424)
- isDividendExempt[pair] = true (#429)
- isDividendExempt[address(this)] = true (#430)
- isDividendExempt[DEAD] = true (#431)
- isFeeExempt[_presaler] = true (#427)
- isTxLimitExempt[_presaler] = true (#428)
- marketingFeeReceiver = msg.sender (#434)
Reentrancy in DividendDistributor.deposit() (#262-280):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#269-274)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#279)
- totalDividends = totalDividends.add(amount) (#278)
Reentrancy in DividendDistributor.distributeDividend(address) (#313-324):
External calls:
- DOGE.transfer(shareholder,amount) (#319)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#320)
Reentrancy in DividendDistributor.setShare(address,uint256) (#246-260):
External calls:
- distributeDividend(shareholder) (#248)
- DOGE.transfer(shareholder,amount) (#319)
State variables written after the call(s):
- addShareholder(shareholder) (#252)
- shareholderIndexes[shareholder] = shareholders.length (#346)
- removeShareholder(shareholder) (#254)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#352)
- addShareholder(shareholder) (#252)
- shareholders.push(shareholder) (#347)
- removeShareholder(shareholder) (#254)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#351)
- shareholders.pop() (#353)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#257)
Reentrancy in DOCTORSTRANGE.triggerAutoBuyback() (#600-609):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#601)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#616-621)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#607)
- autoBuybackBlockLast = block.number (#606)
- autoBuybackEnabled = false (#608)
- buybackMultiplierTriggeredAt = block.timestamp (#603)
Reentrancy in DOCTORSTRANGE.triggerManualBuyback(uint256,bool) (#588-594):
External calls:
- buyTokens(amount,DEAD) (#589)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#616-621)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#591)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DOCTORSTRANGE._transferFrom(address,address,uint256) (#472-494):
External calls:
- swapBack() (#477)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#550-556)
- distributor.deposit{value: amountBNBReflection}() (#563)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
- triggerAutoBuyback() (#478)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#616-621)
External calls sending eth:
- swapBack() (#477)
- distributor.deposit{value: amountBNBReflection}() (#563)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
- triggerAutoBuyback() (#478)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#616-621)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#604)
- triggerAutoBuyback() (#478)
- Transfer(sender,address(this),feeAmount) (#527)
- amountReceived = takeFee(sender,recipient,amount) (#484)
Reentrancy in DOCTORSTRANGE._transferFrom(address,address,uint256) (#472-494):
External calls:
- swapBack() (#477)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#550-556)
- distributor.deposit{value: amountBNBReflection}() (#563)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
- triggerAutoBuyback() (#478)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#616-621)
- distributor.setShare(sender,_balances[sender]) (#487)
- distributor.setShare(recipient,_balances[recipient]) (#488)
- distributor.process(distributorGas) (#490)
External calls sending eth:
- swapBack() (#477)
- distributor.deposit{value: amountBNBReflection}() (#563)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
- triggerAutoBuyback() (#478)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#616-621)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#492)
Reentrancy in DOCTORSTRANGE.constructor() (#419-438):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#421)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#437)
Reentrancy in DOCTORSTRANGE.swapBack() (#539-578):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#550-556)
- distributor.deposit{value: amountBNBReflection}() (#563)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#563)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#576)
Reentrancy in DOCTORSTRANGE.triggerAutoBuyback() (#600-609):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#601)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#616-621)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#604)
Reentrancy in DOCTORSTRANGE.triggerManualBuyback(uint256,bool) (#588-594):
External calls:
- buyTokens(amount,DEAD) (#589)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#616-621)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#592)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.process(uint256) (#282-306) has costly operations inside a loop:
- currentIndex = 0 (#294)
DividendDistributor.distributeDividend(address) (#313-324) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#318)
DividendDistributor.process(uint256) (#282-306) has costly operations inside a loop:
- currentIndex ++ (#303)
Use a local variable to hold the loop computation result.
Additional information: link
DOCTORSTRANGE._maxTxAmount (#370) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 200
DOCTORSTRANGE.swapThreshold (#415) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 500
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
Low level call in DOCTORSTRANGE.swapBack() (#539-578):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#564)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IDEXRouter.WETH() (#138) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#241) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#241) is not in mixedCase
Variable DividendDistributor._token (#194) is not in mixedCase
Variable DividendDistributor.DOGE (#202) is not in mixedCase
Variable DividendDistributor.WBNB (#203) is not in mixedCase
Parameter DOCTORSTRANGE.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#624) is not in mixedCase
Parameter DOCTORSTRANGE.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#624) is not in mixedCase
Parameter DOCTORSTRANGE.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#624) is not in mixedCase
Parameter DOCTORSTRANGE.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#624) is not in mixedCase
Parameter DOCTORSTRANGE.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#624) is not in mixedCase
Parameter DOCTORSTRANGE.setDeadBlocks(uint256)._deadBlocks (#634) is not in mixedCase
Parameter DOCTORSTRANGE.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#676) is not in mixedCase
Parameter DOCTORSTRANGE.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#676) is not in mixedCase
Parameter DOCTORSTRANGE.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#676) is not in mixedCase
Parameter DOCTORSTRANGE.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#676) is not in mixedCase
Parameter DOCTORSTRANGE.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#676) is not in mixedCase
Parameter DOCTORSTRANGE.setFeeReceivers(address,address)._autoLiquidityReceiver (#685) is not in mixedCase
Parameter DOCTORSTRANGE.setFeeReceivers(address,address)._marketingFeeReceiver (#685) is not in mixedCase
Parameter DOCTORSTRANGE.setSwapBackSettings(bool,uint256)._enabled (#690) is not in mixedCase
Parameter DOCTORSTRANGE.setSwapBackSettings(bool,uint256)._amount (#690) is not in mixedCase
Parameter DOCTORSTRANGE.setTargetLiquidity(uint256,uint256)._target (#695) is not in mixedCase
Parameter DOCTORSTRANGE.setTargetLiquidity(uint256,uint256)._denominator (#695) is not in mixedCase
Parameter DOCTORSTRANGE.setDistributionCriteria(uint256,uint256)._minPeriod (#705) is not in mixedCase
Parameter DOCTORSTRANGE.setDistributionCriteria(uint256,uint256)._minDistribution (#705) is not in mixedCase
Variable DOCTORSTRANGE.DOGE (#360) is not in mixedCase
Variable DOCTORSTRANGE.WBNB (#361) is not in mixedCase
Variable DOCTORSTRANGE.DEAD (#362) is not in mixedCase
Variable DOCTORSTRANGE.ZERO (#363) is not in mixedCase
Constant DOCTORSTRANGE._name (#365) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DOCTORSTRANGE._symbol (#366) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DOCTORSTRANGE._decimals (#367) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DOCTORSTRANGE._totalSupply (#369) is not in mixedCase
Variable DOCTORSTRANGE._maxTxAmount (#370) is not in mixedCase
Variable DOCTORSTRANGE._balances (#373) is not in mixedCase
Variable DOCTORSTRANGE._allowances (#374) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#143) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#144)
Prevent variables from having similar names.
Additional information: link
DOCTORSTRANGE.slitherConstructorVariables() (#357-737) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#362)
DOCTORSTRANGE.slitherConstructorVariables() (#357-737) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#363)
DOCTORSTRANGE.slitherConstructorVariables() (#357-737) uses literals with too many digits:
- _totalSupply = 1000000000 * (10 ** _decimals) (#369)
DOCTORSTRANGE.slitherConstructorVariables() (#357-737) uses literals with too many digits:
- distributorGas = 500000 (#412)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DOCTORSTRANGE.DOGE (#360) is never used in DOCTORSTRANGE (#357-737)
Remove unused state variables.
Additional information: link
DOCTORSTRANGE.DEAD (#362) should be constant
DOCTORSTRANGE.DOGE (#360) should be constant
DOCTORSTRANGE.WBNB (#361) should be constant
DOCTORSTRANGE.ZERO (#363) should be constant
DOCTORSTRANGE._totalSupply (#369) should be constant
DividendDistributor.WBNB (#203) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#216) 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) (#95-97)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#102-104)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#123-127)
triggerManualBuyback(uint256,bool) should be declared external:
- DOCTORSTRANGE.triggerManualBuyback(uint256,bool) (#588-594)
getUnpaidEarnings(address) should be declared external:
- DOCTORSTRANGE.getUnpaidEarnings(address) (#713-715)
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 find token/project description on the website or on BscScan, CoinMarketCap
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
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
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