Brother of Doge Token Logo

BOD [Brother of Doge] Token

About BOD

Listings

Not Found
Token 2 years

Brother of Doge is a decentralized meme token on Binance Smart Chain. It combines two amazing features Auto rewards and buybacks with small tax.

Social

Laser Scorebeta Last Audit: 22 December 2021

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

Anti-Scam

Links


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

BrotherOfDoge.swapBack() (#667-709) sends eth to arbitrary user
Dangerous calls:
- (success) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BrotherOfDoge._transferFrom(address,address,uint256) (#602-628):
External calls:
- swapBack() (#611)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
External calls sending eth:
- swapBack() (#611)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#616)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#619)
- amountReceived = takeFee(sender,recipient,amount) (#618)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#654)
- triggerAutoBuyback() (#612)
- inSwap = true (#547)
- inSwap = false (#547)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#441-452) ignores return value by DOGE.transfer(shareholder,amount) (#447)
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.

Pragma version^0.7.4 (#22) 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

DividendDistributor.distributeDividend(address) (#441-452) has external calls inside a loop: DOGE.transfer(shareholder,amount) (#447)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#441-452):
External calls:
- DOGE.transfer(shareholder,amount) (#447)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#449)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#450)
Reentrancy in DividendDistributor.process(uint256) (#410-434):
External calls:
- distributeDividend(shareholders[currentIndex]) (#426)
- DOGE.transfer(shareholder,amount) (#447)
State variables written after the call(s):
- currentIndex ++ (#431)
Reentrancy in DividendDistributor.setShare(address,uint256) (#373-387):
External calls:
- distributeDividend(shareholder) (#375)
- DOGE.transfer(shareholder,amount) (#447)
State variables written after the call(s):
- shares[shareholder].amount = amount (#385)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#386)
Apply the check-effects-interactions pattern.

Additional information: link

BrotherOfDoge.swapBack() (#667-709) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#368-371) should emit an event for:
- minPeriod = _minPeriod (#369)
- minDistribution = _minDistribution (#370)
BrotherOfDoge.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#751-758) should emit an event for:
- autoBuybackCap = _cap (#753)
- autoBuybackAmount = _amount.div(100) (#755)
BrotherOfDoge.setTxLimit(uint256) (#775-778) should emit an event for:
- _maxTxAmount = amount.div(100) (#777)
BrotherOfDoge.setSellMultiplier(uint256) (#785-788) should emit an event for:
- _sellMultiplier = multiplier (#787)
BrotherOfDoge.setFees(uint256,uint256,uint256,uint256,uint256) (#808-816) should emit an event for:
- liquidityFee = _liquidityFee (#809)
- reflectionFee = _reflectionFee (#811)
- devFee = _devFee (#812)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_devFee) (#813)
- feeDenominator = _feeDenominator (#814)
BrotherOfDoge.setSwapBackSettings(bool,uint256) (#823-826) should emit an event for:
- swapThreshold = _amount.div(100) (#825)
BrotherOfDoge.setTargetLiquidity(uint256,uint256) (#828-831) should emit an event for:
- targetLiquidity = _target (#829)
- targetLiquidityDenominator = _denominator (#830)
Emit an event for critical parameter changes.

Additional information: link

BrotherOfDoge.setFeeReceivers(address,address)._autoLiquidityReceiver (#818) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#819)
BrotherOfDoge.setFeeReceivers(address,address)._devFeeReceiver (#818) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#820)
Check that the address is not zero.

Additional information: link

Reentrancy in BrotherOfDoge._transferFrom(address,address,uint256) (#602-628):
External calls:
- swapBack() (#611)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
External calls sending eth:
- swapBack() (#611)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
State variables written after the call(s):
- launch() (#614)
- launchedAt = block.number (#772)
Reentrancy in BrotherOfDoge.constructor() (#549-568):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#551)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#552)
- _balances[msg.sender] = _totalSupply (#566)
- autoLiquidityReceiver = owner() (#563)
- devFeeReceiver = address(0xbcA0FfCCb5AF8927a1bb9f2Dcc35678bE97ae410) (#564)
- distributor = new DividendDistributor(address(router)) (#554)
- isDividendExempt[pair] = true (#559)
- isDividendExempt[address(this)] = true (#560)
- isDividendExempt[DEAD] = true (#561)
- isDividendExempt[ZERO] = true (#562)
- isFeeExempt[msg.sender] = true (#556)
- isTxLimitExempt[msg.sender] = true (#557)
- isTxLimitExempt[address(router)] = true (#558)
Reentrancy in DividendDistributor.deposit() (#390-408):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#397-402)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#407)
- totalDividends = totalDividends.add(amount) (#406)
Reentrancy in DividendDistributor.distributeDividend(address) (#441-452):
External calls:
- DOGE.transfer(shareholder,amount) (#447)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#448)
Reentrancy in DividendDistributor.setShare(address,uint256) (#373-387):
External calls:
- distributeDividend(shareholder) (#375)
- DOGE.transfer(shareholder,amount) (#447)
State variables written after the call(s):
- addShareholder(shareholder) (#379)
- shareholderIndexes[shareholder] = shareholders.length (#474)
- removeShareholder(shareholder) (#381)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#480)
- addShareholder(shareholder) (#379)
- shareholders.push(shareholder) (#475)
- removeShareholder(shareholder) (#381)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#479)
- shareholders.pop() (#481)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#384)
Reentrancy in BrotherOfDoge.triggerAutoBuyback() (#731-736):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#732)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#734)
- autoBuybackBlockLast = block.number (#733)
- autoBuybackEnabled = false (#735)
Reentrancy in BrotherOfDoge.triggerManualBuyback(uint256,bool) (#719-725):
External calls:
- buyTokens(amount,DEAD) (#720)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#722)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BrotherOfDoge._transferFrom(address,address,uint256) (#602-628):
External calls:
- swapBack() (#611)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
- distributor.setShare(sender,_balances[sender]) (#621)
- distributor.setShare(recipient,_balances[recipient]) (#622)
- distributor.process(distributorGas) (#624)
External calls sending eth:
- swapBack() (#611)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#626)
Reentrancy in BrotherOfDoge._transferFrom(address,address,uint256) (#602-628):
External calls:
- swapBack() (#611)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
External calls sending eth:
- swapBack() (#611)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#655)
- amountReceived = takeFee(sender,recipient,amount) (#618)
Reentrancy in BrotherOfDoge.constructor() (#549-568):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#551)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#567)
Reentrancy in BrotherOfDoge.swapBack() (#667-709):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#707)
Reentrancy in BrotherOfDoge.triggerManualBuyback(uint256,bool) (#719-725):
External calls:
- buyTokens(amount,DEAD) (#720)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#723)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#436-439) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#437-438)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#26-35) uses assembly
- INLINE ASM (#33)
Address._functionCallWithValue(address,bytes,uint256,string) (#62-83) uses assembly
- INLINE ASM (#75-78)
Do not use evm assembly.

Additional information: link

DividendDistributor.process(uint256) (#410-434) has costly operations inside a loop:
- currentIndex = 0 (#422)
DividendDistributor.distributeDividend(address) (#441-452) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#446)
DividendDistributor.process(uint256) (#410-434) has costly operations inside a loop:
- currentIndex ++ (#431)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#62-83) is never used and should be removed
Address.functionCall(address,bytes) (#45-47) is never used and should be removed
Address.functionCall(address,bytes,string) (#49-51) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#53-55) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#57-60) is never used and should be removed
Address.isContract(address) (#26-35) is never used and should be removed
Address.sendValue(address,uint256) (#37-43) is never used and should be removed
Context._msgData() (#91-94) is never used and should be removed
Remove unused functions.

Additional information: link

BrotherOfDoge._maxTxAmount (#500) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 100) / 100
BrotherOfDoge._maxWalletSize (#501) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 2) / 100
BrotherOfDoge.swapThreshold (#545) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 4000
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 Address.sendValue(address,uint256) (#37-43):
- (success) = recipient.call{value: amount}() (#41)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#62-83):
- (success,returndata) = target.call{value: weiValue}(data) (#66)
Low level call in BrotherOfDoge.swapBack() (#667-709):
- (success) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
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() (#264) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#368) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#368) is not in mixedCase
Variable DividendDistributor._token (#320) is not in mixedCase
Variable DividendDistributor.DOGE (#329) is not in mixedCase
Variable DividendDistributor.WBNB (#330) is not in mixedCase
Parameter BrotherOfDoge.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#751) is not in mixedCase
Parameter BrotherOfDoge.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#751) is not in mixedCase
Parameter BrotherOfDoge.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#751) is not in mixedCase
Parameter BrotherOfDoge.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#751) is not in mixedCase
Parameter BrotherOfDoge.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#808) is not in mixedCase
Parameter BrotherOfDoge.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#808) is not in mixedCase
Parameter BrotherOfDoge.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#808) is not in mixedCase
Parameter BrotherOfDoge.setFees(uint256,uint256,uint256,uint256,uint256)._devFee (#808) is not in mixedCase
Parameter BrotherOfDoge.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#808) is not in mixedCase
Parameter BrotherOfDoge.setFeeReceivers(address,address)._autoLiquidityReceiver (#818) is not in mixedCase
Parameter BrotherOfDoge.setFeeReceivers(address,address)._devFeeReceiver (#818) is not in mixedCase
Parameter BrotherOfDoge.setSwapBackSettings(bool,uint256)._enabled (#823) is not in mixedCase
Parameter BrotherOfDoge.setSwapBackSettings(bool,uint256)._amount (#823) is not in mixedCase
Parameter BrotherOfDoge.setTargetLiquidity(uint256,uint256)._target (#828) is not in mixedCase
Parameter BrotherOfDoge.setTargetLiquidity(uint256,uint256)._denominator (#828) is not in mixedCase
Parameter BrotherOfDoge.setDistributionCriteria(uint256,uint256)._minPeriod (#833) is not in mixedCase
Parameter BrotherOfDoge.setDistributionCriteria(uint256,uint256)._minDistribution (#833) is not in mixedCase
Variable BrotherOfDoge.DOGE (#490) is not in mixedCase
Variable BrotherOfDoge.WBNB (#491) is not in mixedCase
Variable BrotherOfDoge.DEAD (#492) is not in mixedCase
Variable BrotherOfDoge.ZERO (#493) is not in mixedCase
Constant BrotherOfDoge._name (#495) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BrotherOfDoge._symbol (#496) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BrotherOfDoge._decimals (#497) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BrotherOfDoge._totalSupply (#499) is not in mixedCase
Variable BrotherOfDoge._maxTxAmount (#500) is not in mixedCase
Variable BrotherOfDoge._maxWalletSize (#501) is not in mixedCase
Variable BrotherOfDoge._balances (#503) is not in mixedCase
Variable BrotherOfDoge._allowances (#504) is not in mixedCase
Variable BrotherOfDoge._sellMultiplier (#516) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#92)" inContext (#86-95)
Remove redundant statements if they congest code but offer no value.

Additional information: link

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

Additional information: link

BrotherOfDoge.slitherConstructorVariables() (#486-857) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#492)
BrotherOfDoge.slitherConstructorVariables() (#486-857) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#493)
BrotherOfDoge.slitherConstructorVariables() (#486-857) uses literals with too many digits:
- _totalSupply = 1000000000000000 * (10 ** _decimals) (#499)
BrotherOfDoge.slitherConstructorVariables() (#486-857) uses literals with too many digits:
- distributorGas = 500000 (#542)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BrotherOfDoge.DOGE (#490) is never used in BrotherOfDoge (#486-857)
Remove unused state variables.

Additional information: link

BrotherOfDoge.DEAD (#492) should be constant
BrotherOfDoge.DOGE (#490) should be constant
BrotherOfDoge.WBNB (#491) should be constant
BrotherOfDoge.ZERO (#493) should be constant
BrotherOfDoge._totalSupply (#499) should be constant
DividendDistributor.WBNB (#330) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#343) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#242-245)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#251-255)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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


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 volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account has less than 100 followers


Telegram account has relatively few subscribers


Last post in Twitter was more than 30 days ago


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 on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


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 Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for BOD

News for BOD