Blue Gold Token Logo

BLG [Blue Gold] Token

About BLG

Listings

Token 2 years
CoinMarketCap 2 years
white paper

$BLG is a meme coin introduced November 2021 and differs substantially from other meme coins because you get rewards in BUSD as long as you are holding it. The holder rewards are paid in BUSD, not in Bluegold Coins. The longer you hold, the more BUSD you earn. Sale amount to a maximum of 0.2% of the circulating supply. Holders of Bluegoldcoin get rewarded in Binance PeggedBUSD. Bluegold Coin main utility is its upcoming Play-to-earn Combat Game – BlueGold intends to develop a Combat Game that offers several opportunities to earn. Combat games are love by many simply because they present “easy to think of and easy to understand challenges”. Through blockchain, BlueGold non-fungible tokens allow players to participate in play to earn gaming ecosystem where winners, skills are rewarded with real value rewards. Players can also trade, own and sell weapons, skins(core game assets).

Social

Laser Scorebeta Last Audit: 11 July 2023

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

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

Additional information: link

BLUEGOLD.swapBack() (#611-653) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#637)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#638)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#643-650)
BLUEGOLD.buyTokens(uint256,address) (#682-693) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#687-692)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BLUEGOLD._transferFrom(address,address,uint256) (#536-559):
External calls:
- swapBack() (#541)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#621-627)
- distributor.deposit{value: amountBNBReflection}() (#637)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#643-650)
- triggerAutoBuyback() (#542)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#687-692)
External calls sending eth:
- swapBack() (#541)
- distributor.deposit{value: amountBNBReflection}() (#637)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#638)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#643-650)
- triggerAutoBuyback() (#542)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#687-692)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#546)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#550)
- amountReceived = takeFee(sender,recipient,amount) (#548)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#598)
- triggerAutoBuyback() (#542)
- inSwap = true (#473)
- inSwap = false (#473)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.


Contract ownership is not renounced (belongs to a wallet)

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

Additional information: link

unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#152-154)
launch() should be declared external:
- BLUEGOLD.launch() (#715-719)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#173-177)
authorize(address) should be declared external:
- Auth.authorize(address) (#145-147)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#363-374):
External calls:
- BUSD.transfer(shareholder,amount) (#369)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#371)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#372)
Reentrancy in DividendDistributor.process(uint256) (#332-356):
External calls:
- distributeDividend(shareholders[currentIndex]) (#348)
- BUSD.transfer(shareholder,amount) (#369)
State variables written after the call(s):
- currentIndex ++ (#353)
Reentrancy in DividendDistributor.setShare(address,uint256) (#296-310):
External calls:
- distributeDividend(shareholder) (#298)
- BUSD.transfer(shareholder,amount) (#369)
State variables written after the call(s):
- shares[shareholder].amount = amount (#308)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#309)
Apply the check-effects-interactions pattern.

Additional information: link

BLUEGOLD.swapBack() (#611-653) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#643-650)
Ensure that all the return values of the function calls are used.

Additional information: link

BLUEGOLD.setBuybackMultiplierSettings(uint256,uint256,uint256) (#704-709) should emit an event for:
- buybackMultiplierNumerator = numerator (#706)
- buybackMultiplierDenominator = denominator (#707)
- buybackMultiplierLength = length (#708)
BLUEGOLD.setSwapBackSettings(bool,uint256) (#759-762) should emit an event for:
- swapThreshold = _amount (#761)
DividendDistributor.setDistributionCriteria(uint256,uint256) (#291-294) should emit an event for:
- minPeriod = _minPeriod (#292)
- minDistribution = _minDistribution (#293)
BLUEGOLD.setTargetLiquidity(uint256,uint256) (#764-767) should emit an event for:
- targetLiquidity = _target (#765)
- targetLiquidityDenominator = _denominator (#766)
BLUEGOLD.setTxLimit(uint256) (#721-724) should emit an event for:
- _maxTxAmount = amount (#723)
BLUEGOLD.setFees(uint256,uint256,uint256,uint256,uint256) (#744-752) should emit an event for:
- liquidityFee = _liquidityFee (#745)
- reflectionFee = _reflectionFee (#747)
- marketingFee = _marketingFee (#748)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#749)
- feeDenominator = _feeDenominator (#750)
BLUEGOLD.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#695-702) should emit an event for:
- autoBuybackCap = _cap (#697)
- autoBuybackAmount = _amount (#699)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#173) lacks a zero-check on :
- owner = adr (#174)
BLUEGOLD.constructor(address,address,address)._marketingAddress (#476) lacks a zero-check on :
- marketingFeeReceiver = _marketingAddress (#494)
BLUEGOLD.constructor(address,address,address)._wbnb (#476) lacks a zero-check on :
- WBNB = _wbnb (#479)
- pair = IDEXFactory(router.factory()).createPair(_wbnb,address(this)) (#480)
BLUEGOLD.setFeeReceivers(address,address)._marketingFeeReceiver (#754) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#756)
BLUEGOLD.setFeeReceivers(address,address)._autoLiquidityReceiver (#754) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#755)
Check that the address is not zero.

Additional information: link

Reentrancy in DividendDistributor.deposit() (#312-330):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#319-324)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#329)
- totalDividends = totalDividends.add(amount) (#328)
Reentrancy in BLUEGOLD.triggerZeusBuyback(uint256,bool) (#663-669):
External calls:
- buyTokens(amount,DEAD) (#664)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#687-692)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#666)
Reentrancy in BLUEGOLD.triggerAutoBuyback() (#675-680):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#676)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#687-692)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#678)
- autoBuybackBlockLast = block.number (#677)
- autoBuybackEnabled = false (#679)
Reentrancy in DividendDistributor.distributeDividend(address) (#363-374):
External calls:
- BUSD.transfer(shareholder,amount) (#369)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#370)
Reentrancy in DividendDistributor.setShare(address,uint256) (#296-310):
External calls:
- distributeDividend(shareholder) (#298)
- BUSD.transfer(shareholder,amount) (#369)
State variables written after the call(s):
- addShareholder(shareholder) (#302)
- shareholderIndexes[shareholder] = shareholders.length (#398)
- removeShareholder(shareholder) (#304)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#404)
- addShareholder(shareholder) (#302)
- shareholders.push(shareholder) (#399)
- removeShareholder(shareholder) (#304)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#403)
- shareholders.pop() (#405)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#307)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BLUEGOLD.swapBack() (#611-653):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#621-627)
- distributor.deposit{value: amountBNBReflection}() (#637)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#643-650)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#637)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#638)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#643-650)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#651)
Reentrancy in BLUEGOLD._transferFrom(address,address,uint256) (#536-559):
External calls:
- swapBack() (#541)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#621-627)
- distributor.deposit{value: amountBNBReflection}() (#637)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#643-650)
- triggerAutoBuyback() (#542)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#687-692)
- distributor.setShare(sender,_balances[sender]) (#552)
- distributor.setShare(recipient,_balances[recipient]) (#553)
- distributor.process(distributorGas) (#555)
External calls sending eth:
- swapBack() (#541)
- distributor.deposit{value: amountBNBReflection}() (#637)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#638)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#643-650)
- triggerAutoBuyback() (#542)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#687-692)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#557)
Reentrancy in BLUEGOLD._transferFrom(address,address,uint256) (#536-559):
External calls:
- swapBack() (#541)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#621-627)
- distributor.deposit{value: amountBNBReflection}() (#637)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#643-650)
- triggerAutoBuyback() (#542)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#687-692)
External calls sending eth:
- swapBack() (#541)
- distributor.deposit{value: amountBNBReflection}() (#637)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#638)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#643-650)
- triggerAutoBuyback() (#542)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#687-692)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#599)
- amountReceived = takeFee(sender,recipient,amount) (#548)
Reentrancy in BLUEGOLD.triggerZeusBuyback(uint256,bool) (#663-669):
External calls:
- buyTokens(amount,DEAD) (#664)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#687-692)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#667)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#358-361) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#359-360)
BLUEGOLD.shouldSwapBack() (#604-609) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#605-608)
BLUEGOLD.isOverLiquified(uint256,uint256) (#786-788) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#787)
BLUEGOLD.getMultipliedFee() (#584-593) uses timestamp for comparisons
Dangerous comparisons:
- launchedAtTimestamp + 86400 > block.timestamp (#585)
- buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#587)
Avoid relying on block.timestamp.

Additional information: link

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

Additional information: link

DividendDistributor.distributeDividend(address) (#363-374) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#368)
DividendDistributor.process(uint256) (#332-356) has costly operations inside a loop:
- currentIndex = 0 (#344)
DividendDistributor.process(uint256) (#332-356) has costly operations inside a loop:
- currentIndex ++ (#353)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMath.tryDiv(uint256,uint256) (#48-53) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#55-60) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#21-27) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#96-101) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#89-94) is never used and should be removed
SafeMath.mod(uint256,uint256) (#78-80) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#36-46) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#29-34) is never used and should be removed
BLUEGOLD.launched() (#711-713) is never used and should be removed
Remove unused functions.

Additional information: link

BLUEGOLD.swapThreshold (#471) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 2000
BLUEGOLD._maxTxAmount (#424) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(400)
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 (#12) 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

Parameter BLUEGOLD.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#695) is not in mixedCase
Parameter BLUEGOLD.setDistributionCriteria(uint256,uint256)._minPeriod (#769) is not in mixedCase
Function IDEXRouter.WETH() (#188) is not in mixedCase
Constant BLUEGOLD._decimals (#421) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BLUEGOLD._allowances (#427) is not in mixedCase
Parameter BLUEGOLD.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#744) is not in mixedCase
Variable BLUEGOLD.DEAD_NON_CHECKSUM (#417) is not in mixedCase
Parameter BLUEGOLD.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#744) is not in mixedCase
Parameter BLUEGOLD.setFeeReceivers(address,address)._autoLiquidityReceiver (#754) is not in mixedCase
Parameter BLUEGOLD.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#744) is not in mixedCase
Variable DividendDistributor.BUSD (#252) is not in mixedCase
Variable BLUEGOLD.ZERO (#416) is not in mixedCase
Parameter BLUEGOLD.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#695) is not in mixedCase
Variable BLUEGOLD.WBNB (#414) is not in mixedCase
Variable BLUEGOLD.DEAD (#415) is not in mixedCase
Parameter BLUEGOLD.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#744) is not in mixedCase
Variable BLUEGOLD._balances (#426) is not in mixedCase
Parameter BLUEGOLD.setTargetLiquidity(uint256,uint256)._denominator (#764) is not in mixedCase
Parameter BLUEGOLD.setSwapBackSettings(bool,uint256)._amount (#759) is not in mixedCase
Parameter BLUEGOLD.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#744) is not in mixedCase
Parameter BLUEGOLD.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#695) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#291) is not in mixedCase
Parameter BLUEGOLD.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#695) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#291) is not in mixedCase
Parameter BLUEGOLD.setSwapBackSettings(bool,uint256)._enabled (#759) is not in mixedCase
Parameter BLUEGOLD.setFeeReceivers(address,address)._marketingFeeReceiver (#754) is not in mixedCase
Variable DividendDistributor._token (#244) is not in mixedCase
Variable DividendDistributor.WBNB (#253) is not in mixedCase
Variable BLUEGOLD.BUSD (#413) is not in mixedCase
Variable BLUEGOLD._maxTxAmount (#424) is not in mixedCase
Constant BLUEGOLD._symbol (#420) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BLUEGOLD._totalSupply (#423) is not in mixedCase
Constant BLUEGOLD._name (#419) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter BLUEGOLD.setTargetLiquidity(uint256,uint256)._target (#764) is not in mixedCase
Parameter BLUEGOLD.setDistributionCriteria(uint256,uint256)._minDistribution (#769) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in BLUEGOLD.swapBack() (#611-653):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#638)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#637)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#638)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#643-650)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#651)
Reentrancy in BLUEGOLD._transferFrom(address,address,uint256) (#536-559):
External calls:
- swapBack() (#541)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#638)
External calls sending eth:
- swapBack() (#541)
- distributor.deposit{value: amountBNBReflection}() (#637)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#638)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#643-650)
- triggerAutoBuyback() (#542)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#687-692)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#546)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#550)
- amountReceived = takeFee(sender,recipient,amount) (#548)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#598)
- triggerAutoBuyback() (#542)
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#678)
- triggerAutoBuyback() (#542)
- autoBuybackBlockLast = block.number (#677)
- triggerAutoBuyback() (#542)
- autoBuybackEnabled = false (#679)
- triggerAutoBuyback() (#542)
- inSwap = true (#473)
- inSwap = false (#473)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#599)
- amountReceived = takeFee(sender,recipient,amount) (#548)
- Transfer(sender,recipient,amountReceived) (#557)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

BLUEGOLD.slitherConstructorVariables() (#409-793) uses literals with too many digits:
- DEAD_NON_CHECKSUM = 0x000000000000000000000000000000000000dEaD (#417)
BLUEGOLD.slitherConstructorVariables() (#409-793) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#415)
BLUEGOLD.slitherConstructorVariables() (#409-793) uses literals with too many digits:
- distributorGas = 500000 (#468)
BLUEGOLD.slitherConstructorVariables() (#409-793) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#416)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BLUEGOLD.DEAD_NON_CHECKSUM (#417) is never used in BLUEGOLD (#409-793)
BLUEGOLD.BUSD (#413) is never used in BLUEGOLD (#409-793)
Remove unused state variables.

Additional information: link

BLUEGOLD.DEAD (#415) should be constant
BLUEGOLD.DEAD_NON_CHECKSUM (#417) should be constant
BLUEGOLD.ZERO (#416) should be constant
BLUEGOLD.BUSD (#413) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#266) should be constant
DividendDistributor.WBNB (#253) should be constant
BLUEGOLD._totalSupply (#423) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:


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


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


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


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


Token was delisted from CoinGecko

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to verify token contract address on the website


Unable to find Telegram 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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death

Price for BLG