The BelecX Protocol is an upgraded innovative platform of all previously DeFi-projects, improving their standard ways of operations, into becoming the pivot of web 3.0 financial applications built on the Binance SmartChain ecosystem.
The BelecX protocol will build and combine a Metaverse of the encryption industry + NFT + GameFi + Defi + blind box multi-looped encryption world based on previous standards.
Belecx Insights And Overview :
1. BelecX platform released two tokens {BEX and BEC}
2. BEC can be staked with a single token to obtain BEX, and BEC will be destroyed
3. Daily check-in of BEC source users. https://belecx.com/#/Earn/index
4. Farm mining: BEX, BEX-BNB, BEX-YFO, BEX-BEC. Four initial mining pools Farm mining can be injected into the mining pool in multiple phases for mining, And More pools will be opened with partners in the future. https://belecx.com/#/farm/index
5. NFT: There are five types of NFTs S, A, B, C, and D that can be minted through the BEC and BEX destruction modes.
6. NFT farms: 5 NFTs farms can be mined to obtain BEX. https://belecx.com/#/NFT/casting
7. Mystery Box (Blind Box): Blind box can be purchased through BNB to get S, A, B, C, D five kinds of NFTs. https://belecx.com/#/mystery/index
Tokenomics Details Of BEX
When BEX sells, swap on pancake, the relevant handling fee will be deducted: 5% of the contract to add liquidity, 2% to be destroyed, and 3% to be repurchased. The transfer of tokens between two addresses will not deduct the relevant handling fees.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
EnumerableSet.values(EnumerableSet.AddressSet) (#780-789) uses assembly
- INLINE ASM (#784-786)
EnumerableSet.values(EnumerableSet.UintSet) (#853-862) uses assembly
- INLINE ASM (#857-859)
Do not use evm assembly.
Additional information: link
Context._msgData() (#126-128) is never used and should be removed
EnumerableSet._values(EnumerableSet.Set) (#648-650) is never used and should be removed
EnumerableSet.add(EnumerableSet.Bytes32Set,bytes32) (#664-666) is never used and should be removed
EnumerableSet.add(EnumerableSet.UintSet,uint256) (#803-805) is never used and should be removed
EnumerableSet.at(EnumerableSet.Bytes32Set,uint256) (#702-704) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (#841-843) is never used and should be removed
EnumerableSet.contains(EnumerableSet.Bytes32Set,bytes32) (#681-683) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (#820-822) is never used and should be removed
EnumerableSet.length(EnumerableSet.Bytes32Set) (#688-690) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (#827-829) is never used and should be removed
EnumerableSet.remove(EnumerableSet.Bytes32Set,bytes32) (#674-676) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (#813-815) is never used and should be removed
EnumerableSet.values(EnumerableSet.AddressSet) (#780-789) is never used and should be removed
EnumerableSet.values(EnumerableSet.Bytes32Set) (#714-716) is never used and should be removed
EnumerableSet.values(EnumerableSet.UintSet) (#853-862) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (#4) allows old versions
Pragma version^0.8.0 (#84) allows old versions
Pragma version^0.8.0 (#109) allows old versions
Pragma version^0.8.0 (#510) allows old versions
Pragma version^0.8.0 (#865) allows old versions
solc-0.8.10 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
BexToken.constructor() (#944-947) uses literals with too many digits:
- _mint(msg.sender,100000000 * 10 ** 18) (#945)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
name() should be declared external:
- ERC20.name() (#184-186)
symbol() should be declared external:
- ERC20.symbol() (#192-194)
decimals() should be declared external:
- ERC20.decimals() (#209-211)
totalSupply() should be declared external:
- ERC20.totalSupply() (#216-218)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#223-225)
transfer(address,uint256) should be declared external:
- BexToken.transfer(address,uint256) (#980-989)
- ERC20.transfer(address,uint256) (#235-239)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#258-262)
transferFrom(address,address,uint256) should be declared external:
- BexToken.transferFrom(address,address,uint256) (#991-1005)
- ERC20.transferFrom(address,address,uint256) (#280-289)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#303-307)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#323-332)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#914-916)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#922-925)
setBexUtils(address) should be declared external:
- BexToken.setBexUtils(address) (#949-952)
getLpListLength() should be declared external:
- BexToken.getLpListLength() (#954-956)
getLp(uint256) should be declared external:
- BexToken.getLp(uint256) (#958-960)
isLp(address) should be declared external:
- BexToken.isLp(address) (#962-964)
addLp(address[]) should be declared external:
- BexToken.addLp(address[]) (#966-972)
removeLp(address[]) should be declared external:
- BexToken.removeLp(address[]) (#974-978)
Use the external attribute for functions never called from the contract.
Additional information: link
BexToken.addLp(address[]) (#966-972) ignores return value by lpList.add(address_[i]) (#969)
BexToken.removeLp(address[]) (#974-978) ignores return value by lpList.remove(address_[i]) (#976)
Ensure that all the return values of the function calls are used.
Additional information: link
BexToken.transfer(address,uint256).owner (#981) shadows:
- Ownable.owner() (#895-897) (function)
Rename the local variables that shadow another component.
Additional information: link
Unable to find KYC or doxxing proof
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Token is not listed at Mobula.Finance
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
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Unable to find Youtube account
Unable to find Discord account