binance8 Token Logo

B8 [binance8] Token

About B8

Listings

Token 2 years
white paper

B8 is a token based on the BSC public chain. The project is mainly used for casino games. B8 plays the role of a bargaining chip in the game. It is circulated and sold in the game. Holding B8 can enjoy a 6% dividend, which is written into the contract. Ownership has been given up. The B8 team hopes to combine tokens and games to realize real value and give digital currency a place in playing and earning games.

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

Binance8.addLiquidity(uint256,uint256) (binance8.sol#435-450) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (binance8.sol#441-448)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Binance8._transfer(address,address,uint256) (binance8.sol#289-360):
External calls:
- swapAndSendToFee(marketingTokens) (binance8.sol#316)
- IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (binance8.sol#368)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (binance8.sol#426-432)
- swapAndLiquify(swapTokens) (binance8.sol#319)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (binance8.sol#441-448)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (binance8.sol#406-412)
- swapAndSendDividends(sellTokens) (binance8.sol#322)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (binance8.sol#455)
- dividendTracker.distributeCAKEDividends(dividends) (binance8.sol#458)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (binance8.sol#426-432)
External calls sending eth:
- swapAndLiquify(swapTokens) (binance8.sol#319)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (binance8.sol#441-448)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (binance8.sol#342)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (binance8.sol#345)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (binance8.sol#324)
Apply the check-effects-interactions pattern.

Additional information: link

Binance8.swapAndSendToFee(uint256) (binance8.sol#362-369) ignores return value by IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (binance8.sol#368)
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.

Reentrancy in Binance8.updateDividendTracker(address) (binance8.sol#121-136):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (binance8.sol#128)
- newDividendTracker.excludeFromDividends(address(this)) (binance8.sol#129)
- newDividendTracker.excludeFromDividends(owner()) (binance8.sol#130)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (binance8.sol#131)
State variables written after the call(s):
- dividendTracker = newDividendTracker (binance8.sol#135)
Apply the check-effects-interactions pattern.

Additional information: link

Binance8._transfer(address,address,uint256).iterations (binance8.sol#353) 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

Binance8.addLiquidity(uint256,uint256) (binance8.sol#435-450) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (binance8.sol#441-448)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Binance8.setMarketingFee(uint256) (binance8.sol#180-184) should emit an event for:
- marketingFee = value (binance8.sol#181)
- totalFees = BUSDRewardsFee.add(liquidityFee).add(marketingFee) (binance8.sol#182)
Emit an event for critical parameter changes.

Additional information: link

Binance8.setMarketingWallet(address).wallet (binance8.sol#162) lacks a zero-check on :
- _marketingWalletAddress = wallet (binance8.sol#163)
Check that the address is not zero.

Additional information: link

Variable 'Binance8._transfer(address,address,uint256).iterations (binance8.sol#353)' in Binance8._transfer(address,address,uint256) (binance8.sol#289-360) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (binance8.sol#354)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in Binance8.updateUniswapV2Router(address) (binance8.sol#138-145):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (binance8.sol#142-143)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (binance8.sol#144)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Binance8.updateDividendTracker(address) (binance8.sol#121-136):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (binance8.sol#128)
- newDividendTracker.excludeFromDividends(address(this)) (binance8.sol#129)
- newDividendTracker.excludeFromDividends(owner()) (binance8.sol#130)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (binance8.sol#131)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (binance8.sol#133)
Apply the check-effects-interactions pattern.

Additional information: link

BUSDDividendTracker.canAutoClaim(uint256) (binance8.sol#588-594) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (binance8.sol#589)
- block.timestamp.sub(lastClaimTime) >= claimWait (binance8.sol#593)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

Binance8.totalFees (binance8.sol#34) is set pre-construction with a non-constant function or state variable:
- BUSDRewardsFee.add(liquidityFee).add(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.6.2 (binance8.sol#2) 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

Parameter BUSDDividendTracker.getAccount(address)._account (binance8.sol#524) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#77) is too similar to BUSDDividendTracker.getAccount(address).withdrawableDividends (binance8.sol#529)
Prevent variables from having similar names.

Additional information: link

BUSDDividendTracker.getAccountAtIndex(uint256) (binance8.sol#569-586) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (binance8.sol#580)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-92)
Remove unused state variables.

Additional information: link

DividendPayingToken.BUSD (DividendPayingToken.sol#24) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

process(uint256) should be declared external:
- BUSDDividendTracker.process(uint256) (binance8.sol#613-658)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is low.


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


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 number of swaps.


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link 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


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for B8