Web3 Bets Coin Token Logo

BXB [Web3 Bets Coin] Token

About BXB

Listings

Token 2 years
white paper

BXB is the native utility token of the Web3 Bets Ecosystem. It is used to pay for vigorish in the ecosystem. BXB holders will earn airdrops from winning games of players in the ecosystem. BXB holders will also participate in some governance votes, such as development of new game products, addition of new game markets in existing products, creation of new roadmaps, and adjustment of vigorish for winning games.

Laser Scorebeta Last Audit: 17 September 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

ERC20Votes._writeCheckpoint(ERC20Votes.Checkpoint[],function(uint256,uint256) returns(uint256),uint256) (#2233-2247) uses a dangerous strict equality:
- pos > 0 && ckpts[pos - 1].fromBlock == block.number (#2242)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

ERC20Permit.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#1959-1978) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= deadline,ERC20Permit: expired deadline) (#1968)
ERC20Votes.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (#2140-2157) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= expiry,ERC20Votes: signature expired) (#2148)
Avoid relying on block.timestamp.

Additional information: link

ECDSA.tryRecover(bytes32,bytes) (#559-588) uses assembly
- INLINE ASM (#569-573)
- INLINE ASM (#580-583)
Do not use evm assembly.

Additional information: link

Web3BetsCoin.constructor() (#2513-2518) uses literals with too many digits:
- _mint(msg.sender,1000000000 * 10 ** decimals()) (#2517)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ERC20Votes._moveVotingPower(address,address,uint256).oldWeight_scope_0 (#2227) is a local variable never initialized
ERC20Votes._moveVotingPower(address,address,uint256).newWeight_scope_1 (#2227) 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

ERC20Permit.constructor(string).name (#1954) shadows:
- ERC20.name() (#1595-1597) (function)
- IERC20Metadata.name() (#1520) (function)
Rename the local variables that shadow another component.

Additional information: link

Variable 'ECDSA.tryRecover(bytes32,bytes).r (#564)' in ECDSA.tryRecover(bytes32,bytes) (#559-588) potentially used before declaration: r = mload(uint256)(signature + 0x20) (#581)
Variable 'ERC20Votes._moveVotingPower(address,address,uint256).newWeight (#2222)' in ERC20Votes._moveVotingPower(address,address,uint256) (#2215-2231) potentially used before declaration: (oldWeight,newWeight) = _writeCheckpoint(_checkpoints[dst],_add,amount) (#2227)
Variable 'ERC20Votes._moveVotingPower(address,address,uint256).oldWeight (#2222)' in ERC20Votes._moveVotingPower(address,address,uint256) (#2215-2231) potentially used before declaration: (oldWeight,newWeight) = _writeCheckpoint(_checkpoints[dst],_add,amount) (#2227)
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

Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.4']
- ^0.8.0 (#7)
- ^0.8.0 (#250)
- ^0.8.0 (#315)
- ^0.8.0 (#378)
- ^0.8.0 (#406)
- ^0.8.0 (#437)
- ^0.8.0 (#507)
- ^0.8.0 (#739)
- ^0.8.0 (#845)
- ^0.8.0 (#936)
- ^0.8.0 (#982)
- ^0.8.0 (#1028)
- ^0.8.0 (#1078)
- ^0.8.0 (#1105)
- ^0.8.0 (#1198)
- ^0.8.0 (#1423)
- ^0.8.0 (#1508)
- ^0.8.0 (#1538)
- ^0.8.0 (#1923)
- ^0.8.0 (#2012)
- ^0.8.0 (#2263)
- ^0.8.0 (#2460)
- ^0.8.4 (#2499)
Use one Solidity version.

Additional information: link

AccessControl._setRoleAdmin(bytes32,bytes32) (#1387-1391) is never used and should be removed
AccessControl._setupRole(bytes32,address) (#1378-1380) is never used and should be removed
Context._msgData() (#1095-1097) is never used and should be removed
Counters.decrement(Counters.Counter) (#964-970) is never used and should be removed
Counters.reset(Counters.Counter) (#972-974) is never used and should be removed
ECDSA.recover(bytes32,bytes) (#604-608) is never used and should be removed
ECDSA.recover(bytes32,bytes32,bytes32) (#632-640) is never used and should be removed
ECDSA.toEthSignedMessageHash(bytes) (#716-718) is never used and should be removed
ECDSA.toEthSignedMessageHash(bytes32) (#702-706) is never used and should be removed
ECDSA.tryRecover(bytes32,bytes) (#559-588) is never used and should be removed
ECDSA.tryRecover(bytes32,bytes32,bytes32) (#617-625) is never used and should be removed
ERC20Votes._add(uint256,uint256) (#2249-2251) is never used and should be removed
ERC20Votes._subtract(uint256,uint256) (#2253-2255) is never used and should be removed
Math.ceilDiv(uint256,uint256) (#1017-1020) is never used and should be removed
Math.max(uint256,uint256) (#991-993) is never used and should be removed
Math.min(uint256,uint256) (#998-1000) is never used and should be removed
SafeCast.toInt128(int256) (#155-158) is never used and should be removed
SafeCast.toInt16(int256) (#209-212) is never used and should be removed
SafeCast.toInt256(uint256) (#239-243) is never used and should be removed
SafeCast.toInt32(int256) (#191-194) is never used and should be removed
SafeCast.toInt64(int256) (#173-176) is never used and should be removed
SafeCast.toInt8(int256) (#227-230) is never used and should be removed
SafeCast.toUint128(uint256) (#50-53) is never used and should be removed
SafeCast.toUint16(uint256) (#110-113) is never used and should be removed
SafeCast.toUint256(int256) (#137-140) is never used and should be removed
SafeCast.toUint64(uint256) (#80-83) is never used and should be removed
SafeCast.toUint8(uint256) (#125-128) is never used and should be removed
SafeCast.toUint96(uint256) (#65-68) is never used and should be removed
Strings.toHexString(uint256) (#473-484) is never used and should be removed
Strings.toString(uint256) (#448-468) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#7) allows old versions
Pragma version^0.8.0 (#250) allows old versions
Pragma version^0.8.0 (#315) allows old versions
Pragma version^0.8.0 (#378) allows old versions
Pragma version^0.8.0 (#406) allows old versions
Pragma version^0.8.0 (#437) allows old versions
Pragma version^0.8.0 (#507) allows old versions
Pragma version^0.8.0 (#739) allows old versions
Pragma version^0.8.0 (#845) allows old versions
Pragma version^0.8.0 (#936) allows old versions
Pragma version^0.8.0 (#982) allows old versions
Pragma version^0.8.0 (#1028) allows old versions
Pragma version^0.8.0 (#1078) allows old versions
Pragma version^0.8.0 (#1105) allows old versions
Pragma version^0.8.0 (#1198) allows old versions
Pragma version^0.8.0 (#1423) allows old versions
Pragma version^0.8.0 (#1508) allows old versions
Pragma version^0.8.0 (#1538) allows old versions
Pragma version^0.8.0 (#1923) allows old versions
Pragma version^0.8.0 (#2012) allows old versions
Pragma version^0.8.0 (#2263) allows old versions
Pragma version^0.8.0 (#2460) allows old versions
solc-0.8.12 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 IERC20Permit.DOMAIN_SEPARATOR() (#370) is not in mixedCase
Variable EIP712._CACHED_DOMAIN_SEPARATOR (#765) is not in mixedCase
Variable EIP712._CACHED_CHAIN_ID (#766) is not in mixedCase
Variable EIP712._CACHED_THIS (#767) is not in mixedCase
Variable EIP712._HASHED_NAME (#769) is not in mixedCase
Variable EIP712._HASHED_VERSION (#770) is not in mixedCase
Variable EIP712._TYPE_HASH (#771) is not in mixedCase
Function ERC20Permit.DOMAIN_SEPARATOR() (#1991-1993) is not in mixedCase
Variable ERC20Permit._PERMIT_TYPEHASH (#1946-1947) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Unable to find Youtube account


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

Additional information: link


Unable to find audit link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


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


Young tokens have high risks of price dump / death

Price for BXB

News for BXB