BEE Capital Token Logo

BEE [BEE Capital] Token

About BEE

Listings

Token 24 months
CoinGecko 23 months
CoinMarketCap 23 months
white paper

BEE Capital is a Decentralized Autonomous Organization (DAO) driven venture capital fund focused on early-stage blockchain projects, we empower promising projects achieving their fullest potential by leveraging the unprecedented investment power and buzz making potential of our community.

Social

Laser Scorebeta Last Audit: 19 May 2022

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

Contract locking ether found:
Contract Bee (#359-548) has payable functions:
- Bee.receive() (#541)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

Bee._transfer(address,address,uint256) (#467-488) performs a multiplication on the result of a division:
-_balances[marketAddress] = _balances[marketAddress].add(amount.div(1000).mul(10)) (#480)
Bee._transfer(address,address,uint256) (#467-488) performs a multiplication on the result of a division:
-Transfer(sender,marketAddress,amount.div(1000).mul(10)) (#481)
Bee._transfer(address,address,uint256) (#467-488) performs a multiplication on the result of a division:
-_amount = amount.div(1000).mul(990) (#482)
Consider ordering multiplication before division.

Additional information: link

Bee.allowance(address,address).owner (#420) shadows:
- Ownable.owner() (#91-93) (function)
Bee._approve(address,address,uint256).owner (#512) shadows:
- Ownable.owner() (#91-93) (function)
Rename the local variables that shadow another component.

Additional information: link

Bee.setMarketAddress(address).addr (#537) lacks a zero-check on :
- marketAddress = addr (#538)
Check that the address is not zero.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#158-172) is never used and should be removed
Address.functionCall(address,bytes) (#145-147) is never used and should be removed
Address.functionCall(address,bytes,string) (#148-150) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#151-153) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#154-157) is never used and should be removed
Address.isContract(address) (#135-140) is never used and should be removed
Address.sendValue(address,uint256) (#141-144) is never used and should be removed
Context._msgData() (#70-73) is never used and should be removed
SafeMath.mod(uint256,uint256) (#57-59) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#60-63) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#6) allows old versions
solc-0.8.13 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

Redundant expression "this (#71)" inContext (#66-74)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Bee._name (#366) should be constant
Bee._symbol (#367) should be constant
Bee.usdtMintAddress (#374) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#141-144):
- (success) = to.call{value: amount}() (#142)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#158-172):
- (success,returndata) = target.call{value: weiValue}(data) (#159)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeSwapV2Pair.DOMAIN_SEPARATOR() (#198) is not in mixedCase
Function IPancakeSwapV2Pair.PERMIT_TYPEHASH() (#199) is not in mixedCase
Function IPancakeSwapV2Pair.MINIMUM_LIQUIDITY() (#213) is not in mixedCase
Function IPancakeSwapV2Router01.WETH() (#230) is not in mixedCase
Parameter Bee.addDex(address)._pair (#458) is not in mixedCase
Parameter Bee.deliver(address)._lp (#520) is not in mixedCase
Variable Bee.DEXs (#372) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeSwapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#234) is too similar to IPancakeSwapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#235)
Prevent variables from having similar names.

Additional information: link

Bee._name (#366) is never used in Bee (#359-548)
Bee._symbol (#367) is never used in Bee (#359-548)
Remove unused state variables.

Additional information: link

Reentrancy in Bee.constructor() (#376-393):
External calls:
- uniswapV2Pair = IPancakeSwapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#384-385)
- uniswapUsdtV2Pair = IPancakeSwapV2Factory(_uniswapV2Router.factory()).createPair(address(this),usdtMintAddress) (#387-388)
State variables written after the call(s):
- DEXs[address(uniswapV2Pair)] = true (#391)
- DEXs[address(uniswapUsdtV2Pair)] = true (#392)
- uniswapUsdtV2Pair = IPancakeSwapV2Factory(_uniswapV2Router.factory()).createPair(address(this),usdtMintAddress) (#387-388)
- uniswapV2Router = _uniswapV2Router (#390)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#135-140) uses assembly
- INLINE ASM (#138)
Address._functionCallWithValue(address,bytes,uint256,string) (#158-172) uses assembly
- INLINE ASM (#164-167)
Do not use evm assembly.

Additional information: link

Bee.deliver(address) (#520-527) compares to a boolean constant:
-_isExcludeds[lp] == true (#522)
Bee.setExcludeds(address) (#529-535) compares to a boolean constant:
-_isExcludeds[addr] == true (#530)
Remove the equality to the boolean constant.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#110-112)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#118-121)
name() should be declared external:
- Bee.name() (#395-397)
symbol() should be declared external:
- Bee.symbol() (#399-401)
decimals() should be declared external:
- Bee.decimals() (#403-405)
totalSupply() should be declared external:
- Bee.totalSupply() (#407-409)
balanceOf(address) should be declared external:
- Bee.balanceOf(address) (#411-413)
transfer(address,uint256) should be declared external:
- Bee.transfer(address,uint256) (#415-418)
allowance(address,address) should be declared external:
- Bee.allowance(address,address) (#420-422)
approve(address,uint256) should be declared external:
- Bee.approve(address,uint256) (#424-427)
transferFrom(address,address,uint256) should be declared external:
- Bee.transferFrom(address,address,uint256) (#429-442)
increaseAllowance(address,uint256) should be declared external:
- Bee.increaseAllowance(address,uint256) (#444-447)
decreaseAllowance(address,uint256) should be declared external:
- Bee.decreaseAllowance(address,uint256) (#449-456)
deliver(address) should be declared external:
- Bee.deliver(address) (#520-527)
setExcludeds(address) should be declared external:
- Bee.setExcludeds(address) (#529-535)
setMarketAddress(address) should be declared external:
- Bee.setMarketAddress(address) (#537-539)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain

Contract has 1% buy tax and 1% sell tax.
Taxes are low and contract ownership is renounced.


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 verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find code repository for the project


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 scam / price dump / death


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


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


Token has relatively low CoinGecko rank

Price for BEE

News for BEE