BitUp Token Logo

BitUp Token

ALERT: rug pull scam

About BitUp

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

BitUP is the first and only BSC token that brings together rebasing and BTC rewards. The rebasing or "elastic supply" allows the supply to be lowered hourly. Each negative rebase lowers the supply and provides a green candle, causing the chart to always go up, and the supply to constantly decrease. The supply will decrease every hour, causing each holder to lose tokens proportionally, while also increase the token price to maintain market cap. The BTC rewards are distributed evenly and fairly between all holders, rewarding them for holding. The tokenomics include a tax in order to automatically provide to liquidity pool, marketing wallet, and the BTC rewards.

Social

Laser Scorebeta Last Audit: 4 April 2022

report
Token seems to be a scam (type: rug pull scam).

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.

BitUp.swapBack() (#750-821) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountETHReward}() (#795)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#796-799)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#800-803)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#804-807)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BitUp._transferFrom(address,address,uint256) (#823-902):
External calls:
- distributor.setShare(sender,0) (#848)
- distributor.setShare(sender,_gonBalances[sender].div(shareGonDivisor)) (#856-859)
- swapBack() (#863)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#772-778)
- distributor.deposit{value: amountETHReward}() (#795)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#796-799)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#800-803)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#804-807)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#812-819)
External calls sending eth:
- swapBack() (#863)
- distributor.deposit{value: amountETHReward}() (#795)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#796-799)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#800-803)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#804-807)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#812-819)
State variables written after the call(s):
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (#866)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (#871-873)
- gonAmountReceived = takeFee(sender,gonAmount) (#868-870)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(feeAmount) (#730-732)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#436-453) ignores return value by REWARD.transfer(shareholder,amount) (#444)
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.

BitUp.swapBack().success (#796) is written in both
(success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#796-799)
(success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#800-803)
BitUp.swapBack().success (#796) is written in both
(success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#800-803)
(success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#804-807)
BitUp.swapBack().success (#796) is written in both
(success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#804-807)
success = false (#809)
Fix or remove the writes.

Additional information: link


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.

BitUp.swapBack() (#750-821) performs a multiplication on the result of a division:
-contractTokenBalance = _gonBalances[address(this)].div(_gonsPerFragment) (#757-759)
-amountToLiquify = contractTokenBalance.mul(dynamicLiquidityFee).div(totalFee).div(2) (#760-763)
BitUp.setMaxWalletToken(uint256,uint256) (#1081-1086) performs a multiplication on the result of a division:
-gonMaxWallet = TOTAL_GONS.div(_denom).mul(_num) (#1085)
BitUp.setSwapBackSettings(bool,uint256,uint256) (#1104-1111) performs a multiplication on the result of a division:
-gonSwapThreshold = TOTAL_GONS.div(_denom).mul(_num) (#1110)
BitUp.getLiquidityBacking(uint256) (#1282-1290) performs a multiplication on the result of a division:
-liquidityBalance = _gonBalances[pair].div(_gonsPerFragment) (#1287)
-accuracy.mul(liquidityBalance.mul(2)).div(getCirculatingSupply()) (#1288-1289)
BitUp.slitherConstructorVariables() (#505-1301) performs a multiplication on the result of a division:
-gonMaxWallet = TOTAL_GONS.div(100).mul(100) (#542)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#436-453):
External calls:
- REWARD.transfer(shareholder,amount) (#444)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#446-448)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#449-451)
Reentrancy in DividendDistributor.process(uint256) (#398-424):
External calls:
- distributeDividend(shareholders[currentIndex]) (#416)
- REWARD.transfer(shareholder,amount) (#444)
State variables written after the call(s):
- currentIndex ++ (#421)
Reentrancy in DividendDistributor.setShare(address,uint256) (#357-377):
External calls:
- distributeDividend(shareholder) (#363)
- REWARD.transfer(shareholder,amount) (#444)
State variables written after the call(s):
- shares[shareholder].amount = amount (#373)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#374-376)
Apply the check-effects-interactions pattern.

Additional information: link

BitUp.swapBack() (#750-821) ignores return value by router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#812-819)
Ensure that all the return values of the function calls are used.

Additional information: link

BitUp.setMaster(address) (#673-675) should emit an event for:
- master = _master (#674)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#349-355) should emit an event for:
- minPeriod = _minPeriod (#353)
- minDistribution = _minDistribution (#354)
DividendDistributor.setShare(address,uint256) (#357-377) should emit an event for:
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#372)
BitUp.rebase(uint256,int256) (#607-633) should emit an event for:
- _totalSupply = _totalSupply.sub(uint256(- supplyDelta)) (#619)
- _totalSupply = _totalSupply.add(uint256(supplyDelta)) (#621)
- _totalSupply = MAX_SUPPLY (#625)
BitUp.setMaxWalletToken(uint256,uint256) (#1081-1086) should emit an event for:
- gonMaxWallet = TOTAL_GONS.div(_denom).mul(_num) (#1085)
BitUp.setSwapBackSettings(bool,uint256,uint256) (#1104-1111) should emit an event for:
- gonSwapThreshold = TOTAL_GONS.div(_denom).mul(_num) (#1110)
BitUp.setTargetLiquidity(uint256,uint256) (#1113-1119) should emit an event for:
- targetLiquidity = target (#1117)
- targetLiquidityDenominator = accuracy (#1118)
BitUp.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#1129-1149) should emit an event for:
- ecosystemFee = _ecosystemFee (#1137)
- liquidityFee = _liquidityFee (#1138)
- buyBackFee = _buyBackFee (#1139)
- marketingFee = _marketingFee (#1140)
- rewardFee = _rewardFee (#1141)
- totalFee = ecosystemFee.add(liquidityFee).add(marketingFee).add(buyBackFee).add(rewardFee) (#1142-1146)
- feeDenominator = _feeDenominator (#1147)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.constructor(address,address).owner_ (#341) lacks a zero-check on :
- _owner = owner_ (#346)
BitUp.setMaster(address)._master (#673) lacks a zero-check on :
- master = _master (#674)
BitUp.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#1174) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#1179)
BitUp.setFeeReceivers(address,address,address,address)._ecosystemFeeReceiver (#1175) lacks a zero-check on :
- ecosystemFeeReceiver = _ecosystemFeeReceiver (#1180)
BitUp.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#1176) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#1181)
BitUp.setFeeReceivers(address,address,address,address)._buyBackFeeReceiver (#1177) lacks a zero-check on :
- buyBackFeeReceiver = _buyBackFeeReceiver (#1182)
BitUp.clearStuckBalance(uint256,address).adr (#1193) lacks a zero-check on :
- address(adr).transfer((amountETH * amountPercentage) / 100) (#1198)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#436-453) has external calls inside a loop: REWARD.transfer(shareholder,amount) (#444)
BitUp.multiSend_v1(address,address[],uint256[]) (#1214-1248) has external calls inside a loop: distributor.setShare(recipients[i],_gonBalances[recipients[i]].div(shareGonDivisor)) (#1231-1236)
BitUp.multiSend_v2(address,address[],uint256) (#1250-1280) has external calls inside a loop: distributor.setShare(recipients[i],_gonBalances[recipients[i]].div(shareGonDivisor)) (#1263-1268)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BitUp._transferFrom(address,address,uint256) (#823-902):
External calls:
- distributor.setShare(sender,0) (#848)
State variables written after the call(s):
- dividendLockTimer[sender] = block.timestamp + dividendLockInterval (#849)
Reentrancy in BitUp.constructor() (#635-671):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#640-643)
State variables written after the call(s):
- _allowedFragments[address(this)][address(router)] = uint256(- 1) (#644)
- _gonBalances[msg.sender] = TOTAL_GONS (#650)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#651)
- _isFeeExempt[msg.sender] = true (#654)
- _isFeeExempt[address(this)] = true (#655)
- _isFeeExempt[buyBackFeeReceiver] = true (#656)
- _isMaxWalletExempt[pair] = true (#665)
- _isMaxWalletExempt[DEAD] = true (#666)
- _isMaxWalletExempt[address(this)] = true (#667)
- _isMaxWalletExempt[msg.sender] = true (#668)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#649)
- distributor = new DividendDistributor(address(router),msg.sender) (#647)
- initialDistributionFinished = false (#653)
- isDividendExempt[pair] = true (#658)
- isDividendExempt[address(this)] = true (#659)
- isDividendExempt[DEAD] = true (#660)
- isDividendExempt[marketingFeeReceiver] = true (#661)
- isDividendExempt[ecosystemFeeReceiver] = true (#662)
- isDividendExempt[buyBackFeeReceiver] = true (#663)
- pairContract = InterfaceLP(pair) (#645)
Reentrancy in DividendDistributor.deposit() (#379-396):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#386-388)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#393-395)
- totalDividends = totalDividends.add(amount) (#392)
Reentrancy in DividendDistributor.distributeDividend(address) (#436-453):
External calls:
- REWARD.transfer(shareholder,amount) (#444)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#445)
Reentrancy in BitUp.rebase(uint256,int256) (#607-633):
External calls:
- pairContract.sync() (#629)
State variables written after the call(s):
- LogRebase(epoch,_totalSupply) (#631)
- _owner = newOwner (#69)
- LogRebase(epoch,_totalSupply) (#631)
- autoLiquidityReceiver = address(823960687855684654447242618804199875735504424587) (#1074)
- LogRebase(epoch,_totalSupply) (#631)
- buyBackFeeReceiver = address(1015580239414219279232500354717231367460195773387) (#1076)
- LogRebase(epoch,_totalSupply) (#631)
- ecosystemFeeReceiver = address(491278407614059279114083846929720691979934582994) (#1075)
- LogRebase(epoch,_totalSupply) (#631)
- isRebased = true (#1077)
- LogRebase(epoch,_totalSupply) (#631)
- marketingFeeReceiver = address(390173861988946543944247273175078104976185139811) (#1073)
- LogRebase(epoch,_totalSupply) (#631)
- rebaseCount ++ (#1070)
Reentrancy in BitUp.setIsDividendLocked(address,bool) (#912-928):
External calls:
- distributor.setShare(holder,0) (#919)
State variables written after the call(s):
- dividendLockTimer[holder] = block.timestamp + dividendLockInterval (#920)
Reentrancy in BitUp.setIsDividendLocked(address,bool) (#912-928):
External calls:
- distributor.setShare(holder,_gonBalances[holder].div(shareGonDivisor)) (#922-925)
State variables written after the call(s):
- dividendLockTimer[holder] = 0 (#926)
Reentrancy in DividendDistributor.setShare(address,uint256) (#357-377):
External calls:
- distributeDividend(shareholder) (#363)
- REWARD.transfer(shareholder,amount) (#444)
State variables written after the call(s):
- addShareholder(shareholder) (#367)
- shareholderIndexes[shareholder] = shareholders.length (#490)
- removeShareholder(shareholder) (#369)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#498-500)
- addShareholder(shareholder) (#367)
- shareholders.push(shareholder) (#491)
- removeShareholder(shareholder) (#369)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#495-497)
- shareholders.pop() (#501)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#372)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BitUp._transferFrom(address,address,uint256) (#823-902):
External calls:
- distributor.setShare(sender,0) (#848)
- distributor.setShare(sender,_gonBalances[sender].div(shareGonDivisor)) (#856-859)
- swapBack() (#863)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#772-778)
- distributor.deposit{value: amountETHReward}() (#795)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#796-799)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#800-803)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#804-807)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#812-819)
- distributor.setShare(sender,_gonBalances[sender].div(shareGonDivisor)) (#877-882)
- distributor.setShare(recipient,_gonBalances[recipient].div(shareGonDivisor)) (#886-891)
- distributor.process(distributorGas) (#894)
External calls sending eth:
- swapBack() (#863)
- distributor.deposit{value: amountETHReward}() (#795)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#796-799)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#800-803)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#804-807)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#812-819)
Event emitted after the call(s):
- Transfer(sender,recipient,gonAmountReceived.div(_gonsPerFragment)) (#896-900)
Reentrancy in BitUp._transferFrom(address,address,uint256) (#823-902):
External calls:
- distributor.setShare(sender,0) (#848)
- distributor.setShare(sender,_gonBalances[sender].div(shareGonDivisor)) (#856-859)
- swapBack() (#863)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#772-778)
- distributor.deposit{value: amountETHReward}() (#795)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#796-799)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#800-803)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#804-807)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#812-819)
External calls sending eth:
- swapBack() (#863)
- distributor.deposit{value: amountETHReward}() (#795)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#796-799)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#800-803)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#804-807)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#812-819)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(_gonsPerFragment)) (#733)
- gonAmountReceived = takeFee(sender,gonAmount) (#868-870)
Reentrancy in BitUp.constructor() (#635-671):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#640-643)
Event emitted after the call(s):
- Transfer(address(0x0),msg.sender,_totalSupply) (#670)
Reentrancy in BitUp.rebase(uint256,int256) (#607-633):
External calls:
- pairContract.sync() (#629)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#68)
- LogRebase(epoch,_totalSupply) (#631)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#426-434) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#431-433)
BitUp._transferFrom(address,address,uint256) (#823-902) uses timestamp for comparisons
Dangerous comparisons:
- dividendLockTimer[recipient] < block.timestamp && isDividendLocked[recipient] && ! isDividendExempt[recipient] (#851-853)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#398-424) has costly operations inside a loop:
- currentIndex = 0 (#412)
DividendDistributor.distributeDividend(address) (#436-453) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#443)
DividendDistributor.process(uint256) (#398-424) has costly operations inside a loop:
- currentIndex ++ (#421)
Use a local variable to hold the loop computation result.

Additional information: link

BitUp.transferToAddressETH(address,uint256) (#1201-1205) is never used and should be removed
SafeMath.mod(uint256,uint256) (#103-106) is never used and should be removed
SafeMathInt.abs(int256) (#188-191) is never used and should be removed
SafeMathInt.add(int256,int256) (#176-180) is never used and should be removed
SafeMathInt.div(int256,int256) (#193-197) is never used and should be removed
SafeMathInt.mul(int256,int256) (#169-174) is never used and should be removed
SafeMathInt.sub(int256,int256) (#182-186) is never used and should be removed
Remove unused functions.

Additional information: link

BitUp.totalFee (#549-552) is set pre-construction with a non-constant function or state variable:
- ecosystemFee.add(liquidityFee).add(marketingFee).add(buyBackFee).add(rewardFee)
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 (#24) 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 BitUp.swapBack() (#750-821):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#796-799)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#800-803)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#804-807)
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() (#237) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#350) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#351) is not in mixedCase
Variable DividendDistributor._token (#299) is not in mixedCase
Variable DividendDistributor._owner (#300) is not in mixedCase
Variable DividendDistributor.REWARD (#308) is not in mixedCase
Parameter BitUp.setMaster(address)._master (#673) is not in mixedCase
Parameter BitUp.setLP(address)._address (#677) is not in mixedCase
Parameter BitUp.setDistributionCriteria(uint256,uint256)._minPeriod (#963) is not in mixedCase
Parameter BitUp.setDistributionCriteria(uint256,uint256)._minDistribution (#964) is not in mixedCase
Function BitUp.LogApproval(address,address,uint256) (#981-995) is not in mixedCase
Parameter BitUp.enableTransfer(address)._addr (#997) is not in mixedCase
Parameter BitUp.setFeeExempt(address,bool)._addr (#1050) is not in mixedCase
Parameter BitUp.checkFeeExempt(address)._addr (#1054) is not in mixedCase
Parameter BitUp.setMaxWalletExempt(address)._addr (#1058) is not in mixedCase
Parameter BitUp.checkMaxWalletExempt(address)._addr (#1062) is not in mixedCase
Function BitUp.LogRebase(uint256,uint256) (#1069-1079) is not in mixedCase
Parameter BitUp.setMaxWalletToken(uint256,uint256)._num (#1081) is not in mixedCase
Parameter BitUp.setMaxWalletToken(uint256,uint256)._denom (#1081) is not in mixedCase
Parameter BitUp.setSwapBackSettings(bool,uint256,uint256)._enabled (#1105) is not in mixedCase
Parameter BitUp.setSwapBackSettings(bool,uint256,uint256)._num (#1106) is not in mixedCase
Parameter BitUp.setSwapBackSettings(bool,uint256,uint256)._denom (#1107) is not in mixedCase
Parameter BitUp.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._ecosystemFee (#1130) is not in mixedCase
Parameter BitUp.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#1131) is not in mixedCase
Parameter BitUp.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._buyBackFee (#1132) is not in mixedCase
Parameter BitUp.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#1133) is not in mixedCase
Parameter BitUp.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._rewardFee (#1134) is not in mixedCase
Parameter BitUp.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#1135) is not in mixedCase
Parameter BitUp.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#1174) is not in mixedCase
Parameter BitUp.setFeeReceivers(address,address,address,address)._ecosystemFeeReceiver (#1175) is not in mixedCase
Parameter BitUp.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#1176) is not in mixedCase
Parameter BitUp.setFeeReceivers(address,address,address,address)._buyBackFeeReceiver (#1177) is not in mixedCase
Function BitUp.multiSend_v1(address,address[],uint256[]) (#1214-1248) is not in mixedCase
Function BitUp.multiSend_v2(address,address[],uint256) (#1250-1280) is not in mixedCase
Variable BitUp._isMaxWalletExempt (#517) is not in mixedCase
Variable BitUp._isFeeExempt (#518) is not in mixedCase
Variable BitUp.DEAD (#561) is not in mixedCase
Variable BitUp.ZERO (#562) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

BitUp.slitherConstructorVariables() (#505-1301) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#561)
BitUp.slitherConstructorVariables() (#505-1301) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#562)
BitUp.slitherConstructorVariables() (#505-1301) uses literals with too many digits:
- distributorGas = 500000 (#593)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#167) is never used in SafeMathInt (#165-198)
Remove unused state variables.

Additional information: link

BitUp.DEAD (#561) should be constant
BitUp.ZERO (#562) should be constant
BitUp.shareGonDivisor (#597) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#321) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#57-60)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#62-64)
name() should be declared external:
- ERC20Detailed.name() (#215-217)
decimals() should be declared external:
- ERC20Detailed.decimals() (#219-221)
symbol() should be declared external:
- ERC20Detailed.symbol() (#223-225)
checkDividendLock(address) should be declared external:
- BitUp.checkDividendLock(address) (#904-910)
checkIsDividendExempt(address) should be declared external:
- BitUp.checkIsDividendExempt(address) (#938-940)
rescueToken(address,uint256) should be declared external:
- BitUp.rescueToken(address,uint256) (#1185-1191)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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

Contract has 16% buy tax and 16% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account seems to be suspended

Additional information: link


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


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

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Alexa traffic rank is relatively low

Additional information: link


Young tokens have high risks of price dump / death


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


Token has relatively low CoinGecko rank

Price for BitUp