Binance Verse Token Logo

BNBVerse [Binance Verse] Token

About BNBVerse

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 31 December 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

BinanceVerse._writeCheckpoint(address,uint32,uint256,uint256) (BinanceVerse.sol#269-287) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (BinanceVerse.sol#279)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

BEP20Extended._transfer(address,address,uint256) (BEP20Extended.sol#300-323) contains a tautology or contradiction:
- _balances[sender].sub(amount).sub(receiedAmount) < 0 (BEP20Extended.sol#315)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link

BEP20Extended.constructor(string,string).name (BEP20Extended.sol#67) shadows:
- BEP20Extended.name() (BEP20Extended.sol#92-94) (function)
- IBEP20.name() (IBEP20.sol#24) (function)
BEP20Extended.constructor(string,string).symbol (BEP20Extended.sol#67) shadows:
- BEP20Extended.symbol() (BEP20Extended.sol#106-108) (function)
- IBEP20.symbol() (IBEP20.sol#19) (function)
BEP20Extended.allowance(address,address).owner (BEP20Extended.sol#161) shadows:
- Ownable.owner() (Ownable.sol#36-38) (function)
BEP20Extended._approve(address,address,uint256).owner (BEP20Extended.sol#375) shadows:
- Ownable.owner() (Ownable.sol#36-38) (function)
BinanceVerse.permit(address,address,uint256,uint256,uint8,bytes32,bytes32).owner (BinanceVerse.sol#81) shadows:
- Ownable.owner() (Ownable.sol#36-38) (function)
Rename the local variables that shadow another component.

Additional information: link

BEP20Extended.dev(address)._devaddr (BEP20Extended.sol#77) lacks a zero-check on :
- devaddr = _devaddr (BEP20Extended.sol#79)
BEP20Extended.setSellContract(address).sellContract (BEP20Extended.sol#256) lacks a zero-check on :
- SELL_CONTRACT = sellContract (BEP20Extended.sol#257)
Check that the address is not zero.

Additional information: link

BinanceVerse.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (BinanceVerse.sol#80-104) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= deadline,INVALID_EXPIRATION) (BinanceVerse.sol#91)
BinanceVerse.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (BinanceVerse.sol#135-176) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,BNBVerse::delegateBySig: signature expired) (BinanceVerse.sol#174)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (Address.sol#26-35) uses assembly
- INLINE ASM (Address.sol#33)
Address._verifyCallResult(bool,bytes,string) (Address.sol#171-188) uses assembly
- INLINE ASM (Address.sol#180-183)
BinanceVerse.getChainId() (BinanceVerse.sol#294-298) uses assembly
- INLINE ASM (BinanceVerse.sol#296)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.6.12', '>=0.4.0', '>=0.6.2<0.8.0']
- >=0.6.2<0.8.0 (Address.sol#3)
- >=0.4.0 (BEP20Extended.sol#3)
- 0.6.12 (BinanceVerse.sol#2)
- >=0.4.0 (Context.sol#3)
- >=0.4.0 (IBEP20.sol#3)
- 0.6.12 (ISellToken.sol#2)
- >=0.4.0 (Ownable.sol#3)
- >=0.4.0 (SafeMath.sol#3)
Use one Solidity version.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (Address.sol#171-188) is never used and should be removed
Address.functionCall(address,bytes) (Address.sol#79-81) is never used and should be removed
Address.functionCall(address,bytes,string) (Address.sol#89-91) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (Address.sol#104-106) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (Address.sol#114-121) is never used and should be removed
Address.functionDelegateCall(address,bytes) (Address.sol#153-155) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (Address.sol#163-169) is never used and should be removed
Address.functionStaticCall(address,bytes) (Address.sol#129-131) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (Address.sol#139-145) is never used and should be removed
Address.isContract(address) (Address.sol#26-35) is never used and should be removed
Address.sendValue(address,uint256) (Address.sol#53-59) is never used and should be removed
BEP20Extended._burnFrom(address,uint256) (BEP20Extended.sol#392-399) is never used and should be removed
Context._msgData() (Context.sol#24-27) is never used and should be removed
SafeMath.min(uint256,uint256) (SafeMath.sol#172-174) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#147-149) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#163-170) is never used and should be removed
SafeMath.sqrt(uint256) (SafeMath.sol#177-188) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.6.2<0.8.0 (Address.sol#3) is too complex
Pragma version>=0.4.0 (BEP20Extended.sol#3) allows old versions
Pragma version>=0.4.0 (Context.sol#3) allows old versions
Pragma version>=0.4.0 (IBEP20.sol#3) allows old versions
Pragma version>=0.4.0 (Ownable.sol#3) allows old versions
Pragma version>=0.4.0 (SafeMath.sol#3) 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 Address.sendValue(address,uint256) (Address.sol#53-59):
- (success) = recipient.call{value: amount}() (Address.sol#57)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (Address.sol#114-121):
- (success,returndata) = target.call{value: value}(data) (Address.sol#119)
Low level call in Address.functionStaticCall(address,bytes,string) (Address.sol#139-145):
- (success,returndata) = target.staticcall(data) (Address.sol#143)
Low level call in Address.functionDelegateCall(address,bytes,string) (Address.sol#163-169):
- (success,returndata) = target.delegatecall(data) (Address.sol#167)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter BEP20Extended.dev(address)._devaddr (BEP20Extended.sol#77) is not in mixedCase
Parameter BEP20Extended.setFee(uint256)._enable (BEP20Extended.sol#266) is not in mixedCase
Parameter BEP20Extended.setTransferBurnRate(uint256)._rate (BEP20Extended.sol#271) is not in mixedCase
Parameter BEP20Extended.addTransferBurnAddress(address)._transferBurnAddress (BEP20Extended.sol#276) is not in mixedCase
Parameter BEP20Extended.removeTransferBurnAddress(address)._transferBurnAddress (BEP20Extended.sol#281) is not in mixedCase
Variable BEP20Extended.SELL_CONTRACT (BEP20Extended.sol#57) is not in mixedCase
Parameter BinanceVerse.mintTo(address,uint256)._to (BinanceVerse.sol#29) is not in mixedCase
Parameter BinanceVerse.mintTo(address,uint256)._amount (BinanceVerse.sol#29) is not in mixedCase
Variable BinanceVerse._nonces (BinanceVerse.sol#10) is not in mixedCase
Variable BinanceVerse.DOMAIN_SEPARATOR (BinanceVerse.sol#14) is not in mixedCase
Variable BinanceVerse._delegates (BinanceVerse.sol#41) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

dev(address) should be declared external:
- BEP20Extended.dev(address) (BEP20Extended.sol#77-80)
decimals() should be declared external:
- BEP20Extended.decimals() (BEP20Extended.sol#99-101)
symbol() should be declared external:
- BEP20Extended.symbol() (BEP20Extended.sol#106-108)
transferBurnRate() should be declared external:
- BEP20Extended.transferBurnRate() (BEP20Extended.sol#127-129)
enableFee() should be declared external:
- BEP20Extended.enableFee() (BEP20Extended.sol#134-136)
cap() should be declared external:
- BEP20Extended.cap() (BEP20Extended.sol#141-143)
transfer(address,uint256) should be declared external:
- BEP20Extended.transfer(address,uint256) (BEP20Extended.sol#153-156)
allowance(address,address) should be declared external:
- BEP20Extended.allowance(address,address) (BEP20Extended.sol#161-163)
approve(address,uint256) should be declared external:
- BEP20Extended.approve(address,uint256) (BEP20Extended.sol#172-175)
transferFrom(address,address,uint256) should be declared external:
- BEP20Extended.transferFrom(address,address,uint256) (BEP20Extended.sol#189-201)
increaseAllowance(address,uint256) should be declared external:
- BEP20Extended.increaseAllowance(address,uint256) (BEP20Extended.sol#215-218)
decreaseAllowance(address,uint256) should be declared external:
- BEP20Extended.decreaseAllowance(address,uint256) (BEP20Extended.sol#234-241)
mint(uint256) should be declared external:
- BEP20Extended.mint(uint256) (BEP20Extended.sol#251-254)
setSellContract(address) should be declared external:
- BEP20Extended.setSellContract(address) (BEP20Extended.sol#256-259)
burn(uint256) should be declared external:
- BEP20Extended.burn(uint256) (BEP20Extended.sol#261-264)
setFee(uint256) should be declared external:
- BEP20Extended.setFee(uint256) (BEP20Extended.sol#266-269)
setTransferBurnRate(uint256) should be declared external:
- BEP20Extended.setTransferBurnRate(uint256) (BEP20Extended.sol#271-274)
addTransferBurnAddress(address) should be declared external:
- BEP20Extended.addTransferBurnAddress(address) (BEP20Extended.sol#276-279)
removeTransferBurnAddress(address) should be declared external:
- BEP20Extended.removeTransferBurnAddress(address) (BEP20Extended.sol#281-284)
mintTo(address,uint256) should be declared external:
- BinanceVerse.mintTo(address,uint256) (BinanceVerse.sol#29-32)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#55-58)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#64-66)
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.


Number of Binance Smart Chain (BSC) token holders is low.


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.


Unable to find Telegram and Twitter accounts


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for BNBVerse