METAVERSE LAB Token Logo

MVP [METAVERSE LAB] Token

About MVP

Listings

Token 2 years
CoinMarketCap 2 years
[CoinGecko] alert: The following token has a variable tax function on the smart contract - which allows contract owners to change tax rates post deployment.
Do your own research and be careful if you are trading this token.
white paper

Metaverse Lab is World's first Deflationary, Reflective, Multi-chain & Multi-asset Launchpad for the most professional Metaverse based projects.

✅ Metaverse Projects ~ Metaverse Lab will launch only the best projects from various categories like NFTs, Gaming, Real Estate, Advertisement Space, Digital Art, etc.

✅ Multi-chain Launchpad ~ Metaverse Lab will integrate with all major networks like Ethereum, Binance, Avalanche, Polygon, Solana, Kucoin, etc.

✅ Multi-asset Launchpad ~ Apart from offering some great Meta- projects to the community, there'll also be some amazing NFTs and exciting games for our users to Play&Earn💰

✅ User Benefits ~ There'll be lots of benefits for our Community & MVP holders. From getting rewarded for holding to the guaranteed allocations in the IDOs

✅ NFTs Marketplace ~ There'll be our personalised NFT marketplace and exclusive set of 20 limited edition NFTs for our community.

✅ P2E Games ~ Metaverse Lab will release some amazing & exciting Video Games for our Community where MVP holders can even Play2Earn some great rewards

✅ 3% Sell Fee ~ The MVP token will have 3% fee on every sell transaction which will distribute as -> 1% going back to the holders, 1% for development & 1% will directly burn

Social

Laser Scorebeta Last Audit: 19 February 2023

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...)


Contract ownership is not renounced (belongs to a wallet)

Owned.changeOwnership(address) (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#15-17) should emit an event for:
- owner = _newOwner (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#16)
Emit an event for critical parameter changes.

Additional information: link

BEP20.changeFeeAddress(address,address,address)._developmentPerAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#226) lacks a zero-check on :
- developmentPerAddress = _developmentPerAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#228)
BEP20.changeFeeAddress(address,address,address)._holderPerAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#226) lacks a zero-check on :
- holderPerAddress = _holderPerAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#229)
BEP20.changeWhiteListSetting(address,bool)._whitelistAddr (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#238) lacks a zero-check on :
- whiteListAddr = _whitelistAddr (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#239)
Owned.changeOwnership(address)._newOwner (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#15) lacks a zero-check on :
- owner = _newOwner (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#16)
BEP20.changeFeeAddress(address,address,address)._burnPerAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#226) lacks a zero-check on :
- burnPerAddress = _burnPerAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#227)
BEP20.setFeeStatusAndAddress(bool,address)._feeApplyAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#211) lacks a zero-check on :
- feeApplyAddress = _feeApplyAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#215)
Check that the address is not zero.

Additional information: link

BEP20._mint(address,uint256) (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#176-184) is never used and should be removed
Remove unused functions.

Additional information: link

BEP20.transfer(address,uint256) (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#53-92) compares to a boolean constant:
-(whiteListAddrStatus == false || (whiteListAddrStatus == true && whiteListAddr != msg.sender)) && applyFeeStatus == true && _to == feeApplyAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#60)
BEP20.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#102-146) compares to a boolean constant:
-(whiteListAddrStatus == false || (whiteListAddrStatus == true && whiteListAddr != _from)) && transferLimitStatus == true && _to == feeApplyAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#108)
BEP20.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#102-146) compares to a boolean constant:
-(whiteListAddrStatus == false || (whiteListAddrStatus == true && whiteListAddr != _from)) && applyFeeStatus == true && _to == feeApplyAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#112)
BEP20.transfer(address,uint256) (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#53-92) compares to a boolean constant:
-(whiteListAddrStatus == false || (whiteListAddrStatus == true && whiteListAddr != msg.sender)) && transferLimitStatus == true && _to == feeApplyAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#57)
Remove the equality to the boolean constant.

Additional information: link

Parameter BEP20.changeFeePercent(uint256,uint256,uint256)._developmentPercent (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#219) is not in mixedCase
Parameter BEP20.changeFeeAddress(address,address,address)._developmentPerAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#226) is not in mixedCase
Parameter BEP20.changeWhiteListSetting(address,bool)._whiteListAddrStatus (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#238) is not in mixedCase
Parameter BEP20.transfer(address,uint256)._to (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#53) is not in mixedCase
Parameter BEP20.allowance(address,address)._spender (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#163) is not in mixedCase
Parameter BEP20.setFeeStatusAndAddress(bool,address)._feeApplyAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#211) is not in mixedCase
Parameter BEP20.approve(address,uint256)._amount (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#153) is not in mixedCase
Parameter BEP20.changeFeePercent(uint256,uint256,uint256)._burnPercent (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#219) is not in mixedCase
Parameter BEP20.changeFeeAddress(address,address,address)._burnPerAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#226) is not in mixedCase
Parameter BEP20.transfer(address,uint256)._amount (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#53) is not in mixedCase
Contract METAVERSE_LAB (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#247-281) is not in CapWords
Parameter BEP20.transferFrom(address,address,uint256)._to (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#102) is not in mixedCase
Parameter BEP20.balanceOf(address)._owner (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#45) is not in mixedCase
Parameter BEP20.changeFeePercent(uint256,uint256,uint256)._holderPercent (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#219) is not in mixedCase
Parameter BEP20.transferFrom(address,address,uint256)._from (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#102) is not in mixedCase
Parameter BEP20.transferFrom(address,address,uint256)._amount (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#102) is not in mixedCase
Parameter BEP20.changeWhiteListSetting(address,bool)._whitelistAddr (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#238) is not in mixedCase
Parameter BEP20.approve(address,uint256)._spender (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#153) is not in mixedCase
Parameter Owned.changeOwnership(address)._newOwner (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#15) is not in mixedCase
Parameter BEP20.changeFeeAddress(address,address,address)._holderPerAddress (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#226) is not in mixedCase
Parameter BEP20.allowance(address,address)._owner (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#163) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

METAVERSE_LAB.constructor() (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#255-266) uses literals with too many digits:
- totalSupply = 200000000 * 10 ** 18 (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#259)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#153-158)
balanceOf(address) should be declared external:
- BEP20.balanceOf(address) (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#45)
changeOwnership(address) should be declared external:
- Owned.changeOwnership(address) (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#15-17)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (crytic-export/etherscan-contracts/0x57e2a2ff2622cacec775cf8d4c2848aa9b31528c.bscscan.com-METAVERSE_LAB.sol#163-165)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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


Token is deployed only at one blockchain


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Token was delisted from CoinGecko

Additional information: link


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 Telegram link on the website


Unable to find Twitter link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has no active CoinGecko listing / rank


Token has relatively low CoinMarketCap rank

Price for MVP

News for MVP