Bit Token Token Logo

BT [Bit] Token

About BT

Listings

Not Found
Token 2 years

To make crypto discoverable and efficient globally by empowering retail users with unbiased, high quality, accurate information, and a place for users to lounge

Social

Laser Scorebeta Last Audit: 22 December 2021

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

Placeholder.swapBack() (#493-535) sends eth to arbitrary user
Dangerous calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#520)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Placeholder._transferFrom(address,address,uint256) (#441-461):
External calls:
- swapBack() (#446)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#503-509)
- distributor.deposit{value: amountBNBReflection}() (#519)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#525-532)
External calls sending eth:
- swapBack() (#446)
- distributor.deposit{value: amountBNBReflection}() (#519)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#520)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#525-532)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#448)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#452)
- amountReceived = takeFee(sender,amount) (#450)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#480)
Apply the check-effects-interactions pattern.

Additional information: link

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

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.

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

Additional information: link

Reentrancy in Placeholder.constructor() (#386-407):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#388)
State variables written after the call(s):
- WBNB = router.WETH() (#390)
Reentrancy in DividendDistributor.distributeDividend(address) (#293-304):
External calls:
- BUSD.transfer(shareholder,amount) (#299)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#301)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#302)
Reentrancy in DividendDistributor.process(uint256) (#262-286):
External calls:
- distributeDividend(shareholders[currentIndex]) (#278)
- BUSD.transfer(shareholder,amount) (#299)
State variables written after the call(s):
- currentIndex ++ (#283)
Reentrancy in DividendDistributor.setShare(address,uint256) (#226-240):
External calls:
- distributeDividend(shareholder) (#228)
- BUSD.transfer(shareholder,amount) (#299)
State variables written after the call(s):
- shares[shareholder].amount = amount (#238)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#239)
Apply the check-effects-interactions pattern.

Additional information: link

Placeholder.swapBack() (#493-535) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#525-532)
Ensure that all the return values of the function calls are used.

Additional information: link

Auth.transferOwnership(address).adr (#100) lacks a zero-check on :
- owner = adr (#101)
Placeholder.setFeeReceivers(address,address)._autoLiquidityReceiver (#584) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#585)
Placeholder.setFeeReceivers(address,address)._marketingFeeReceiver (#584) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#586)
Check that the address is not zero.

Additional information: link

Reentrancy in Placeholder.constructor() (#386-407):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#388)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = _totalSupply (#389)
- approve(0x10ED43C718714eb63d5aA57B78B54704E256024E,_totalSupply) (#403)
- _allowances[msg.sender][spender] = amount (#420)
- approve(address(pair),_totalSupply) (#404)
- _allowances[msg.sender][spender] = amount (#420)
- _balances[msg.sender] = _totalSupply (#405)
- autoLiquidityReceiver = msg.sender (#400)
- distributor = new DividendDistributor(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#391)
- distributorAddress = address(distributor) (#392)
- isDividendExempt[pair] = true (#396)
- isDividendExempt[address(this)] = true (#397)
- isDividendExempt[DEAD] = true (#398)
- isFeeExempt[msg.sender] = true (#394)
- isTxLimitExempt[msg.sender] = true (#395)
- marketingFeeReceiver = 0x936b1bFE9aFa926649489BA77b916aDc7111b594 (#401)
Reentrancy in DividendDistributor.deposit() (#242-260):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#249-254)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#259)
- totalDividends = totalDividends.add(amount) (#258)
Reentrancy in DividendDistributor.distributeDividend(address) (#293-304):
External calls:
- BUSD.transfer(shareholder,amount) (#299)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#300)
Reentrancy in DividendDistributor.setShare(address,uint256) (#226-240):
External calls:
- distributeDividend(shareholder) (#228)
- BUSD.transfer(shareholder,amount) (#299)
State variables written after the call(s):
- addShareholder(shareholder) (#232)
- shareholderIndexes[shareholder] = shareholders.length (#326)
- removeShareholder(shareholder) (#234)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#332)
- addShareholder(shareholder) (#232)
- shareholders.push(shareholder) (#327)
- removeShareholder(shareholder) (#234)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#331)
- shareholders.pop() (#333)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#237)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Placeholder._transferFrom(address,address,uint256) (#441-461):
External calls:
- swapBack() (#446)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#503-509)
- distributor.deposit{value: amountBNBReflection}() (#519)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#525-532)
- distributor.setShare(sender,_balances[sender]) (#454)
- distributor.setShare(recipient,_balances[recipient]) (#455)
- distributor.process(distributorGas) (#457)
External calls sending eth:
- swapBack() (#446)
- distributor.deposit{value: amountBNBReflection}() (#519)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#520)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#525-532)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#459)
Reentrancy in Placeholder._transferFrom(address,address,uint256) (#441-461):
External calls:
- swapBack() (#446)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#503-509)
- distributor.deposit{value: amountBNBReflection}() (#519)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#525-532)
External calls sending eth:
- swapBack() (#446)
- distributor.deposit{value: amountBNBReflection}() (#519)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#520)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#525-532)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#481)
- amountReceived = takeFee(sender,amount) (#450)
Reentrancy in Placeholder.constructor() (#386-407):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#388)
Event emitted after the call(s):
- Approval(msg.sender,spender,amount) (#421)
- approve(address(pair),_totalSupply) (#404)
- Approval(msg.sender,spender,amount) (#421)
- approve(0x10ED43C718714eb63d5aA57B78B54704E256024E,_totalSupply) (#403)
- Transfer(address(0),msg.sender,_totalSupply) (#406)
Reentrancy in Placeholder.swapBack() (#493-535):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#503-509)
- distributor.deposit{value: amountBNBReflection}() (#519)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#525-532)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#519)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#520)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#525-532)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#533)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#288-291) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#289-290)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#262-286) has costly operations inside a loop:
- currentIndex = 0 (#274)
DividendDistributor.distributeDividend(address) (#293-304) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#298)
DividendDistributor.process(uint256) (#262-286) has costly operations inside a loop:
- currentIndex ++ (#283)
Use a local variable to hold the loop computation result.

Additional information: link

Placeholder.buyTokens(uint256,address) (#537-548) is never used and should be removed
Remove unused functions.

Additional information: link

Placeholder.totalFee (#364) is set pre-construction with a non-constant function or state variable:
- liquidityFee + reflectionFee + marketingFee
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 (#2) 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

Function IDEXRouter.WETH() (#115) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#220) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#220) is not in mixedCase
Variable DividendDistributor._token (#173) is not in mixedCase
Variable DividendDistributor.BUSD (#181) is not in mixedCase
Constant DividendDistributor.dividendsPerShareAccuracyFactor (#195) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter Placeholder.setFees(uint256,uint256,uint256,uint256)._liquidityFee (#574) is not in mixedCase
Parameter Placeholder.setFees(uint256,uint256,uint256,uint256)._reflectionFee (#574) is not in mixedCase
Parameter Placeholder.setFees(uint256,uint256,uint256,uint256)._marketingFee (#574) is not in mixedCase
Parameter Placeholder.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#574) is not in mixedCase
Parameter Placeholder.setFeeReceivers(address,address)._autoLiquidityReceiver (#584) is not in mixedCase
Parameter Placeholder.setFeeReceivers(address,address)._marketingFeeReceiver (#584) is not in mixedCase
Parameter Placeholder.setSwapBackSettings(bool,uint256)._enabled (#589) is not in mixedCase
Parameter Placeholder.setSwapBackSettings(bool,uint256)._amount (#589) is not in mixedCase
Parameter Placeholder.setTargetLiquidity(uint256,uint256)._target (#595) is not in mixedCase
Parameter Placeholder.setTargetLiquidity(uint256,uint256)._denominator (#595) is not in mixedCase
Parameter Placeholder.setDistributionCriteria(uint256,uint256)._minPeriod (#601) is not in mixedCase
Parameter Placeholder.setDistributionCriteria(uint256,uint256)._minDistribution (#601) is not in mixedCase
Variable Placeholder.WBNB (#342) is not in mixedCase
Constant Placeholder._name (#347) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Placeholder._symbol (#348) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Placeholder._decimals (#349) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Placeholder._totalSupply (#351) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Placeholder._maxTxAmount (#352) is not in mixedCase
Variable Placeholder._balances (#354) is not in mixedCase
Variable Placeholder._allowances (#355) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in Placeholder._transferFrom(address,address,uint256) (#441-461):
External calls:
- swapBack() (#446)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#520)
External calls sending eth:
- swapBack() (#446)
- distributor.deposit{value: amountBNBReflection}() (#519)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#520)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#525-532)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#448)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#452)
- amountReceived = takeFee(sender,amount) (#450)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#480)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#481)
- amountReceived = takeFee(sender,amount) (#450)
- Transfer(sender,recipient,amountReceived) (#459)
Reentrancy in Placeholder.swapBack() (#493-535):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#520)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#519)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#520)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#525-532)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#533)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Placeholder.slitherConstructorVariables() (#337-628) uses literals with too many digits:
- distributorGas = 500000 (#379)
Placeholder.slitherConstructorConstantVariables() (#337-628) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#343)
Placeholder.slitherConstructorConstantVariables() (#337-628) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#344)
Placeholder.slitherConstructorConstantVariables() (#337-628) uses literals with too many digits:
- DEAD_NON_CHECKSUM = 0x000000000000000000000000000000000000dEaD (#345)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Placeholder.BUSD (#341) is never used in Placeholder (#337-628)
Placeholder.DEAD_NON_CHECKSUM (#345) is never used in Placeholder (#337-628)
Remove unused state variables.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#72-74)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#79-81)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#100-104)
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.


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 whitepaper 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 BT

News for BT