BAKEUP Token Logo

$BAKEUP [BAKEUP] Token

About $BAKEUP

Listings

Token 2 years
CoinMarketCap 2 years

Description

Social

Laser Scorebeta Last Audit: 7 November 2022

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

Anti-Scam

Links


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


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

BAKEUP.swapBack() (#738-786) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#770)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BAKEUP._transferFrom(address,address,uint256) (#583-636):
External calls:
- swapBack() (#615)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#751-757)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
External calls sending eth:
- swapBack() (#615)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#618)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#621)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#620)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#670)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#339-350) ignores return value by BAKE.transfer(shareholder,amount) (#345)
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.

BAKEUP.swapBack().tmpSuccess (#769) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#770)
BAKEUP.swapBack().tmpSuccess (#769) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#770)
tmpSuccess = false (#773)
Fix or remove the writes.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

Contract ticker ($BAKEUP) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

BAKEUP.multiTransfer(address,address[],uint256[]) (#923-947) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],balanceOf(addresses[i_scope_0])) (#939)
BAKEUP.multiTransfer_fixed(address,address[],uint256) (#949-968) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#960)
DividendDistributor.distributeDividend(address) (#339-350) has external calls inside a loop: BAKE.transfer(shareholder,amount) (#345)
Favor pull over push strategy for external calls.

Additional information: link

BAKEUP.setMaxWalletPercent_base1000(uint256) (#911-913) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#912)
BAKEUP.slitherConstructorVariables() (#383-972) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(100).mul(3) (#466)
BAKEUP.takeFee(address,uint256,bool) (#657-674) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(feeDenominator * 100).mul(totalFee).mul(multiplier) (#664)
BAKEUP.setMaxTxPercent_base1000(uint256) (#915-917) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#916)
BAKEUP.takeFee(address,uint256,bool) (#657-674) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(100).mul(99) (#667)
BAKEUP.rebase_percentage(uint256,bool) (#468-476) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)).mul(- 1)) (#471)
BAKEUP.rebase_percentage(uint256,bool) (#468-476) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000))) (#473)
BAKEUP.setSwapBackSettings(bool,uint256) (#830-833) performs a multiplication on the result of a division:
-swapThreshold = rSupply.div(1000).mul(_percentage_base1000) (#832)
BAKEUP.swapBack() (#738-786) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFee).mul(dynamicLiquidityFee).div(2) (#742)
BAKEUP.slitherConstructorVariables() (#383-972) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(100).mul(2) (#465)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#272-286):
External calls:
- distributeDividend(shareholder) (#274)
- BAKE.transfer(shareholder,amount) (#345)
State variables written after the call(s):
- shares[shareholder].amount = amount (#284)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#285)
Reentrancy in DividendDistributor.distributeDividend(address) (#339-350):
External calls:
- BAKE.transfer(shareholder,amount) (#345)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#347)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#348)
Reentrancy in DividendDistributor.process(uint256) (#308-332):
External calls:
- distributeDividend(shareholders[currentIndex]) (#324)
- BAKE.transfer(shareholder,amount) (#345)
State variables written after the call(s):
- currentIndex ++ (#329)
Apply the check-effects-interactions pattern.

Additional information: link

BAKEUP.manage_houseguests(address[],bool).i (#727) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

BAKEUP.swapBack() (#738-786) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
Ensure that all the return values of the function calls are used.

Additional information: link

BAKEUP.setMaster(address) (#853-855) should emit an event for:
- master = _master (#854)
Emit an event for critical parameter changes.

Additional information: link

BAKEUP.setSwapBackSettings(bool,uint256) (#830-833) should emit an event for:
- swapThreshold = rSupply.div(1000).mul(_percentage_base1000) (#832)
BAKEUP.set_sell_multiplier(uint256) (#699-701) should emit an event for:
- sellMultiplier = Multiplier (#700)
BAKEUP.tradingStatus(bool,uint256) (#705-711) should emit an event for:
- deadBlocks = _deadBlocks (#709)
BAKEUP.setTargetLiquidity(uint256,uint256) (#836-839) should emit an event for:
- targetLiquidity = _target (#837)
- targetLiquidityDenominator = _denominator (#838)
BAKEUP.setMaxTxPercent_base1000(uint256) (#915-917) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#916)
BAKEUP.setMaxWalletPercent_base1000(uint256) (#911-913) should emit an event for:
- _maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#912)
DividendDistributor.setDistributionCriteria(uint256,uint256) (#267-270) should emit an event for:
- minPeriod = _minPeriod (#268)
- minDistribution = _minDistribution (#269)
BAKEUP.setFees(uint256,uint256,uint256,uint256,uint256) (#812-820) should emit an event for:
- liquidityFee = _liquidityFee (#813)
- reflectionFee = _reflectionFee (#814)
- marketingFee = _marketingFee (#815)
- devFee = _devFee (#816)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_devFee) (#817)
- feeDenominator = _feeDenominator (#818)
BAKEUP.launchStatus(uint256) (#713-715) should emit an event for:
- launchedAt = _launchblock (#714)
Emit an event for critical parameter changes.

Additional information: link

BAKEUP.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#823) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#824)
BAKEUP.setFeeReceivers(address,address,address)._devFeeReceiver (#823) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#826)
Auth.transferOwnership(address).adr (#145) lacks a zero-check on :
- owner = adr (#146)
BAKEUP.setFeeReceivers(address,address,address)._marketingFeeReceiver (#823) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#825)
BAKEUP.setMaster(address)._master (#853) lacks a zero-check on :
- master = _master (#854)
Check that the address is not zero.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#272-286):
External calls:
- distributeDividend(shareholder) (#274)
- BAKE.transfer(shareholder,amount) (#345)
State variables written after the call(s):
- addShareholder(shareholder) (#278)
- shareholderIndexes[shareholder] = shareholders.length (#372)
- removeShareholder(shareholder) (#280)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#378)
- addShareholder(shareholder) (#278)
- shareholders.push(shareholder) (#373)
- removeShareholder(shareholder) (#280)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#377)
- shareholders.pop() (#379)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#283)
Reentrancy in DividendDistributor.distributeDividend(address) (#339-350):
External calls:
- BAKE.transfer(shareholder,amount) (#345)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#346)
Reentrancy in DividendDistributor.deposit() (#288-306):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#295-300)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#305)
- totalDividends = totalDividends.add(amount) (#304)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BAKEUP.rebase(uint256,int256) (#479-507):
External calls:
- pairContract.sync() (#503)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#505)
Reentrancy in BAKEUP._transferFrom(address,address,uint256) (#583-636):
External calls:
- swapBack() (#615)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#751-757)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
External calls sending eth:
- swapBack() (#615)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(rate)) (#671)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#620)
Reentrancy in BAKEUP._transferFrom(address,address,uint256) (#583-636):
External calls:
- swapBack() (#615)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#751-757)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
- distributor.setShare(sender,balanceOf(sender)) (#625)
- distributor.setShare(recipient,balanceOf(recipient)) (#629)
- distributor.process(distributorGas) (#632)
External calls sending eth:
- swapBack() (#615)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived.div(rate)) (#634)
Reentrancy in BAKEUP.swapBack() (#738-786):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#751-757)
- distributor.deposit{value: amountBNBReflection}() (#768)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#768)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#770)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#776-783)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#784)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#334-337) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#335-336)
BAKEUP._transferFrom(address,address,uint256) (#583-636) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#599)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#308-332) has costly operations inside a loop:
- currentIndex = 0 (#320)
DividendDistributor.process(uint256) (#308-332) has costly operations inside a loop:
- currentIndex ++ (#329)
DividendDistributor.distributeDividend(address) (#339-350) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#344)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMathInt.div(int256,int256) (#70-74) is never used and should be removed
SafeMathInt.abs(int256) (#88-91) is never used and should be removed
SafeMathInt.sub(int256,int256) (#76-80) is never used and should be removed
SafeMathInt.add(int256,int256) (#82-86) is never used and should be removed
Remove unused functions.

Additional information: link

BAKEUP.totalFee (#409) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
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.7.4 (#20) 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

Low level call in BAKEUP.swapBack() (#738-786):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#769)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#770)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function BAKEUP.set_max_roomrent(uint256) (#722-724) is not in mixedCase
Parameter BAKEUP.setFeeReceivers(address,address,address)._marketingFeeReceiver (#823) is not in mixedCase
Function IDEXRouter.WETH() (#164) is not in mixedCase
Parameter BAKEUP.cooldownEnabled(bool,uint8)._status (#732) is not in mixedCase
Variable BAKEUP.WBNB (#387) is not in mixedCase
Function BAKEUP.manage_houseguests(address[],bool) (#726-730) is not in mixedCase
Variable BAKEUP._maxWalletToken (#466) is not in mixedCase
Variable BAKEUP.ZERO (#389) is not in mixedCase
Parameter BAKEUP.setSwapBackSettings(bool,uint256)._enabled (#830) is not in mixedCase
Parameter BAKEUP.set_max_roomrent(uint256)._rent_withoutdecimal (#722) is not in mixedCase
Parameter BAKEUP.tradingStatus(bool,uint256)._status (#705) is not in mixedCase
Function BAKEUP.setMaxWalletPercent_base1000(uint256) (#911-913) is not in mixedCase
Parameter BAKEUP.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#812) is not in mixedCase
Constant BAKEUP._decimals (#393) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter BAKEUP.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#812) is not in mixedCase
Parameter BAKEUP.setDistributionCriteria(uint256,uint256)._minDistribution (#870) is not in mixedCase
Function BAKEUP.multiTransfer_fixed(address,address[],uint256) (#949-968) is not in mixedCase
Function BAKEUP.clearStuckBalance_sender(uint256) (#692-695) is not in mixedCase
Parameter BAKEUP.setDistributionCriteria(uint256,uint256)._minPeriod (#870) is not in mixedCase
Parameter BAKEUP.setTargetLiquidity(uint256,uint256)._denominator (#836) is not in mixedCase
Variable BAKEUP._allowances (#398) is not in mixedCase
Parameter BAKEUP.setFeeReceivers(address,address,address)._devFeeReceiver (#823) is not in mixedCase
Parameter BAKEUP.setMaster(address)._master (#853) is not in mixedCase
Function BAKEUP.rebase_percentage(uint256,bool) (#468-476) is not in mixedCase
Parameter BAKEUP.rebase_percentage(uint256,bool)._percentage_base1000 (#468) is not in mixedCase
Parameter BAKEUP.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#915) is not in mixedCase
Variable BAKEUP._totalSupply (#459) is not in mixedCase
Function BAKEUP.enable_hotel_CaliforniaMode(bool) (#718-720) is not in mixedCase
Variable BAKEUP._maxTxAmount (#465) is not in mixedCase
Constant BAKEUP._name (#391) is not in UPPER_CASE_WITH_UNDERSCORES
Function BAKEUP.set_sell_multiplier(uint256) (#699-701) is not in mixedCase
Variable DividendDistributor.BAKE (#228) is not in mixedCase
Variable BAKEUP.DEAD (#388) is not in mixedCase
Variable BAKEUP._rBalance (#397) is not in mixedCase
Parameter BAKEUP.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#911) is not in mixedCase
Parameter BAKEUP.set_sell_multiplier(uint256).Multiplier (#699) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#267) is not in mixedCase
Variable BAKEUP.rebase_count (#457) is not in mixedCase
Parameter BAKEUP.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#812) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#267) is not in mixedCase
Parameter BAKEUP.launchStatus(uint256)._launchblock (#713) is not in mixedCase
Variable DividendDistributor._token (#220) is not in mixedCase
Parameter BAKEUP.setFees(uint256,uint256,uint256,uint256,uint256)._devFee (#812) is not in mixedCase
Variable DividendDistributor.WBNB (#229) is not in mixedCase
Parameter BAKEUP.enable_hotel_CaliforniaMode(bool)._status (#718) is not in mixedCase
Parameter BAKEUP.tradingStatus(bool,uint256)._deadBlocks (#705) is not in mixedCase
Parameter BAKEUP.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#812) is not in mixedCase
Parameter BAKEUP.setTargetLiquidity(uint256,uint256)._target (#836) is not in mixedCase
Function BAKEUP.setMaxTxPercent_base1000(uint256) (#915-917) is not in mixedCase
Parameter BAKEUP.setSwapBackSettings(bool,uint256)._percentage_base1000 (#830) is not in mixedCase
Parameter BAKEUP.cooldownEnabled(bool,uint8)._interval (#732) is not in mixedCase
Constant BAKEUP.rSupply (#462) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter BAKEUP.setLP(address)._address (#846) is not in mixedCase
Parameter BAKEUP.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#823) is not in mixedCase
Constant BAKEUP._symbol (#392) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

BAKEUP.slitherConstructorVariables() (#383-972) uses literals with too many digits:
- distributorGas = 300000 (#436)
BAKEUP.slitherConstructorVariables() (#383-972) uses literals with too many digits:
- maxRoomRent = 80000000000 (#413)
BAKEUP.slitherConstructorVariables() (#383-972) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#388)
BAKEUP.slitherConstructorVariables() (#383-972) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#389)
BAKEUP.setDistributorSettings(uint256) (#876-879) uses literals with too many digits:
- require(bool)(gas < 500000) (#877)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#60) is never used in SafeMathInt (#58-92)
Remove unused state variables.

Additional information: link

BAKEUP.ZERO (#389) should be constant
BAKEUP.WBNB (#387) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#242) should be constant
BAKEUP.DEAD (#388) should be constant
DividendDistributor.WBNB (#229) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#133-135)
cooldownEnabled(bool,uint8) should be declared external:
- BAKEUP.cooldownEnabled(bool,uint8) (#732-735)
rescueToken(address,uint256) should be declared external:
- BAKEUP.rescueToken(address,uint256) (#883-885)
launchStatus(uint256) should be declared external:
- BAKEUP.launchStatus(uint256) (#713-715)
enable_hotel_CaliforniaMode(bool) should be declared external:
- BAKEUP.enable_hotel_CaliforniaMode(bool) (#718-720)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#145-149)
manage_houseguests(address[],bool) should be declared external:
- BAKEUP.manage_houseguests(address[],bool) (#726-730)
authorize(address) should be declared external:
- Auth.authorize(address) (#129-131)
rebase_percentage(uint256,bool) should be declared external:
- BAKEUP.rebase_percentage(uint256,bool) (#468-476)
set_max_roomrent(uint256) should be declared external:
- BAKEUP.set_max_roomrent(uint256) (#722-724)
tradingStatus(bool,uint256) should be declared external:
- BAKEUP.tradingStatus(bool,uint256) (#705-711)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 seems to be suspended

Additional information: link


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Token has a considerable age, but we're still unable to find its website


Token has no active CoinGecko 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


Token has no active CoinMarketCap listing / rank

Price for $BAKEUP