MetaversePay Token Logo

MVP [MetaversePay] Token

About MVP

Listings

Token 3 years
CoinGecko 3 years
CoinMarketCap 3 years
[CoinMarketCap] alert: Smart contract of the following asset can be modified by the contract creator (for example: disable selling, change fees, mint new tokens, or transfer tokens). Please exercise caution before taking any action and DYOR
white paper

MetaversePay is a token that you can shop in the Metaland universe we created. With MetaversePay, you will be able to sell the parcels and avatars you will buy in this metaverse universe later if you wish, and you will be able to convert them into MetaversePay tokens. The Metaland demo has been released on the website. The full version will be available very soon. The parcels on the real map will be valued and will offer a good investment opportunity. You will be able to build a structure on the parcels you have purchased. You will be able to view these structures in AR in the MetaversePay application to be published. In addition, 1% from the sale of MetaversePay tokens and 1% from the purchase of MetaversePay tokens are distributed to investors according to the transaction volume. The total supply is 1 trillion, while 200 billion tokens have been burned. The 50 billion tokens allocated for the team are locked in DXSale along with liquidity.

Social

Laser Scorebeta Last Audit: 24 August 2022

report
Token seems to be a scam (type: honeypot scam).


Contract creator or owner is blacklisted for past scams

Contract locking ether found:
Contract MetaversePay (#662-1175) has payable functions:
- MetaversePay.receive() (#873)
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


Contract ownership is not renounced (belongs to a wallet)

MetaversePay.setMaxWalletTokend(uint256) (#1121-1123) should emit an event for:
- maxWalletToken = _maxToken * (10 ** 9) (#1122)
MetaversePay.setMinimumTokensBeforeSwap(uint256) (#1125-1127) should emit an event for:
- minimumTokensBeforeSwap = newAmt * (10 ** 9) (#1126)
MetaversePay.setMaxBuyTxAmount(uint256) (#1129-1132) should emit an event for:
- _maxBuyTxAmount = maxBuyTxAmount * (10 ** 9) (#1131)
MetaversePay.setMaxSellTxAmount(uint256) (#1134-1137) should emit an event for:
- _maxSellTxAmount = maxSellTxAmount * (10 ** 9) (#1136)
MetaversePay.setSellCooldownperiod(uint256) (#1170-1173) should emit an event for:
- sellCooldownperiod = _seconds (#1172)
Emit an event for critical parameter changes.

Additional information: link

MetaversePay.setMarketingWallet(address).newWallet (#1112) lacks a zero-check on :
- marketingWallet = newWallet (#1113)
Check that the address is not zero.

Additional information: link

Reentrancy in MetaversePay._transfer(address,address,uint256) (#953-988):
External calls:
- swapTokensForBUSD(contractTokenBalance) (#981)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1000-1006)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#986)
- _marketingFee = _previousMarketingFee (#930)
- _marketingFee = 0 (#925)
- _marketingFee = marketingFee (#1118)
- _tokenTransfer(from,to,amount) (#986)
- _tFeeTotal = _tFeeTotal.add(tFee) (#877)
- _tokenTransfer(from,to,amount) (#986)
- _taxFee = _previousTaxFee (#929)
- _taxFee = taxFee (#1117)
- _taxFee = 0 (#924)
Reentrancy in MetaversePay.constructor() (#732-746):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#737-738)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#742)
- _isExcludedFromFee[marketingWallet] = true (#743)
- _isExcludedFromFee[address(this)] = true (#744)
- uniswapV2Router = _uniswapV2Router (#740)
Reentrancy in MetaversePay.transferFrom(address,address,uint256) (#794-798):
External calls:
- _transfer(sender,recipient,amount) (#795)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1000-1006)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#796)
- _allowances[owner][spender] = amount (#949)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MetaversePay._transfer(address,address,uint256) (#953-988):
External calls:
- swapTokensForBUSD(contractTokenBalance) (#981)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1000-1006)
Event emitted after the call(s):
- Transfer(sender,address(this),tMarketing) (#1078)
- _tokenTransfer(from,to,amount) (#986)
- Transfer(sender,recipient,tTransferAmount) (#1088)
- _tokenTransfer(from,to,amount) (#986)
- Transfer(sender,recipient,tTransferAmount) (#1066)
- _tokenTransfer(from,to,amount) (#986)
- Transfer(sender,recipient,tTransferAmount) (#1097)
- _tokenTransfer(from,to,amount) (#986)
- Transfer(sender,recipient,tTransferAmount) (#869)
- _tokenTransfer(from,to,amount) (#986)
Reentrancy in MetaversePay.constructor() (#732-746):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#737-738)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#745)
Reentrancy in MetaversePay.transferFrom(address,address,uint256) (#794-798):
External calls:
- _transfer(sender,recipient,amount) (#795)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1000-1006)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#950)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#796)
Apply the check-effects-interactions pattern.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#488) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#489) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#505) is not in mixedCase
Function IUniswapV2Router01.WETH() (#526) is not in mixedCase
Parameter MetaversePay.calculateTaxFee(uint256)._amount (#916) is not in mixedCase
Parameter MetaversePay.swapTokensForEth(uint256,address)._to (#1009) is not in mixedCase
Parameter MetaversePay.setMaxWalletTokend(uint256)._maxToken (#1121) is not in mixedCase
Parameter MetaversePay.setSwapAndLiquifyEnabled(bool)._enabled (#1139) is not in mixedCase
Parameter MetaversePay.setSellCooldownperiod(uint256)._seconds (#1170) is not in mixedCase
Variable MetaversePay._taxFee (#689) is not in mixedCase
Variable MetaversePay._marketingFee (#692) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

MetaversePay.slitherConstructorVariables() (#662-1175) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 9 (#678)
MetaversePay.slitherConstructorVariables() (#662-1175) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#686)
MetaversePay.slitherConstructorVariables() (#662-1175) uses literals with too many digits:
- minimumTokensBeforeSwap = 2000000000 * 10 ** 9 (#702)
MetaversePay.slitherConstructorVariables() (#662-1175) uses literals with too many digits:
- _maxBuyTxAmount = 1000000000000 * 10 ** 9 (#703)
MetaversePay.slitherConstructorVariables() (#662-1175) uses literals with too many digits:
- _maxSellTxAmount = 1000000000000 * 10 ** 9 (#704)
MetaversePay.slitherConstructorVariables() (#662-1175) uses literals with too many digits:
- maxWalletToken = 1000000000000 * (10 ** 9) (#705)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

MetaversePay.takeMarketing(address,uint256,uint256,uint256) (#1069-1080) performs a multiplication on the result of a division:
-tMarketing = tAmount.div(100).mul(_marketingFee) (#1073)
Consider ordering multiplication before division.

Additional information: link

MetaversePay.allowance(address,address).owner (#785) shadows:
- Ownable.owner() (#416-418) (function)
MetaversePay._approve(address,address,uint256).owner (#945) shadows:
- Ownable.owner() (#416-418) (function)
Rename the local variables that shadow another component.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#295-301):
- (success) = recipient.call{value: amount}() (#299)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#361-382):
- (success,returndata) = target.call{value: weiValue}(data) (#365)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

MetaversePay._decimals (#684) should be constant
MetaversePay._name (#682) should be constant
MetaversePay._symbol (#683) should be constant
MetaversePay._tTotal (#678) should be constant
MetaversePay.deadAddress (#686) should be constant
Ownable._lockTime (#400) should be constant
Ownable._previousOwner (#399) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in MetaversePay._transfer(address,address,uint256) (#953-988):
External calls:
- swapTokensForBUSD(contractTokenBalance) (#981)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1000-1006)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#986)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1084)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1063)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#865)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1077)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1094)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1095)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1086)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1064)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#867)
- _tokenTransfer(from,to,amount) (#986)
- _rTotal = _rTotal.sub(rFee) (#876)
- _tokenTransfer(from,to,amount) (#986)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#864)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1093)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1085)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#866)
Apply the check-effects-interactions pattern.

Additional information: link

MetaversePay.checkForCoolDown(address,address) (#1158-1168) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(coolDownTimestamp < block.timestamp,Wait till one hour Cool Down Pd) (#1164)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#268-277) uses assembly
- INLINE ASM (#275)
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) uses assembly
- INLINE ASM (#374-377)
Do not use evm assembly.

Additional information: link

MetaversePay.includeInReward(address) (#849-860) has costly operations inside a loop:
- _excluded.pop() (#856)
Use a local variable to hold the loop computation result.

Additional information: link

MetaversePay._rTotal (#679) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
MetaversePay._previousTaxFee (#690) is set pre-construction with a non-constant function or state variable:
- _taxFee
MetaversePay._previousMarketingFee (#693) is set pre-construction with a non-constant function or state variable:
- _marketingFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Ownable._previousOwner (#399) is never used in MetaversePay (#662-1175)
Ownable._lockTime (#400) is never used in MetaversePay (#662-1175)
Remove unused state variables.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#531) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#532)
Variable MetaversePay._transferFromExcluded(address,address,uint256).rTransferAmount (#1092) is too similar to MetaversePay.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1069)
Variable MetaversePay._transferFromExcluded(address,address,uint256).rTransferAmount (#1092) is too similar to MetaversePay._transferStandard(address,address,uint256).tTransferAmount (#1061)
Variable MetaversePay.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to MetaversePay._transferStandard(address,address,uint256).tTransferAmount (#1061)
Variable MetaversePay._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to MetaversePay._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable MetaversePay._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to MetaversePay._getValues(uint256).tTransferAmount (#881)
Variable MetaversePay.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1069) is too similar to MetaversePay._transferStandard(address,address,uint256).tTransferAmount (#1061)
Variable MetaversePay._getRValues(uint256,uint256,uint256).rTransferAmount (#895) is too similar to MetaversePay._getTValues(uint256).tTransferAmount (#888)
Variable MetaversePay._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to MetaversePay._getTValues(uint256).tTransferAmount (#888)
Variable MetaversePay._getRValues(uint256,uint256,uint256).rTransferAmount (#895) is too similar to MetaversePay._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable MetaversePay._getRValues(uint256,uint256,uint256).rTransferAmount (#895) is too similar to MetaversePay._getValues(uint256).tTransferAmount (#881)
Variable MetaversePay._transferToExcluded(address,address,uint256).rTransferAmount (#1083) is too similar to MetaversePay._transferToExcluded(address,address,uint256).tTransferAmount (#1083)
Variable MetaversePay._transferFromExcluded(address,address,uint256).rTransferAmount (#1092) is too similar to MetaversePay._transferFromExcluded(address,address,uint256).tTransferAmount (#1092)
Variable MetaversePay._transferToExcluded(address,address,uint256).rTransferAmount (#1083) is too similar to MetaversePay._transferStandard(address,address,uint256).tTransferAmount (#1061)
Variable MetaversePay._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to MetaversePay._transferToExcluded(address,address,uint256).tTransferAmount (#1083)
Variable MetaversePay._getRValues(uint256,uint256,uint256).rTransferAmount (#895) is too similar to MetaversePay._transferToExcluded(address,address,uint256).tTransferAmount (#1083)
Variable MetaversePay.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to MetaversePay._getTValues(uint256).tTransferAmount (#888)
Variable MetaversePay._transferFromExcluded(address,address,uint256).rTransferAmount (#1092) is too similar to MetaversePay._getValues(uint256).tTransferAmount (#881)
Variable MetaversePay._transferFromExcluded(address,address,uint256).rTransferAmount (#1092) is too similar to MetaversePay._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable MetaversePay.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to MetaversePay._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable MetaversePay.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to MetaversePay._getValues(uint256).tTransferAmount (#881)
Variable MetaversePay._transferFromExcluded(address,address,uint256).rTransferAmount (#1092) is too similar to MetaversePay._getTValues(uint256).tTransferAmount (#888)
Variable MetaversePay.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1069) is too similar to MetaversePay._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable MetaversePay.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1069) is too similar to MetaversePay._getValues(uint256).tTransferAmount (#881)
Variable MetaversePay.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1069) is too similar to MetaversePay._getTValues(uint256).tTransferAmount (#888)
Variable MetaversePay._getRValues(uint256,uint256,uint256).rTransferAmount (#895) is too similar to MetaversePay._transferStandard(address,address,uint256).tTransferAmount (#1061)
Variable MetaversePay._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to MetaversePay._transferStandard(address,address,uint256).tTransferAmount (#1061)
Variable MetaversePay._transferStandard(address,address,uint256).rTransferAmount (#1061) is too similar to MetaversePay._transferStandard(address,address,uint256).tTransferAmount (#1061)
Variable MetaversePay._transferFromExcluded(address,address,uint256).rTransferAmount (#1092) is too similar to MetaversePay._transferToExcluded(address,address,uint256).tTransferAmount (#1083)
Variable MetaversePay.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to MetaversePay._transferToExcluded(address,address,uint256).tTransferAmount (#1083)
Variable MetaversePay._transferToExcluded(address,address,uint256).rTransferAmount (#1083) is too similar to MetaversePay._getValues(uint256).tTransferAmount (#881)
Variable MetaversePay.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1069) is too similar to MetaversePay._transferToExcluded(address,address,uint256).tTransferAmount (#1083)
Variable MetaversePay._transferToExcluded(address,address,uint256).rTransferAmount (#1083) is too similar to MetaversePay._getTValues(uint256).tTransferAmount (#888)
Variable MetaversePay._getValues(uint256).rTransferAmount (#882) is too similar to MetaversePay._transferStandard(address,address,uint256).tTransferAmount (#1061)
Variable MetaversePay._transferToExcluded(address,address,uint256).rTransferAmount (#1083) is too similar to MetaversePay._transferFromExcluded(address,address,uint256).tTransferAmount (#1092)
Variable MetaversePay._transferToExcluded(address,address,uint256).rTransferAmount (#1083) is too similar to MetaversePay.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1069)
Variable MetaversePay._getValues(uint256).rTransferAmount (#882) is too similar to MetaversePay._getValues(uint256).tTransferAmount (#881)
Variable MetaversePay._getValues(uint256).rTransferAmount (#882) is too similar to MetaversePay._transferFromExcluded(address,address,uint256).tTransferAmount (#1092)
Variable MetaversePay._transferStandard(address,address,uint256).rTransferAmount (#1061) is too similar to MetaversePay._getValues(uint256).tTransferAmount (#881)
Variable MetaversePay._transferStandard(address,address,uint256).rTransferAmount (#1061) is too similar to MetaversePay._transferFromExcluded(address,address,uint256).tTransferAmount (#1092)
Variable MetaversePay._getValues(uint256).rTransferAmount (#882) is too similar to MetaversePay.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1069)
Variable MetaversePay._getValues(uint256).rTransferAmount (#882) is too similar to MetaversePay._transferToExcluded(address,address,uint256).tTransferAmount (#1083)
Variable MetaversePay._transferStandard(address,address,uint256).rTransferAmount (#1061) is too similar to MetaversePay.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1069)
Variable MetaversePay._transferStandard(address,address,uint256).rTransferAmount (#1061) is too similar to MetaversePay._transferToExcluded(address,address,uint256).tTransferAmount (#1083)
Variable MetaversePay._getValues(uint256).rTransferAmount (#882) is too similar to MetaversePay._getTValues(uint256).tTransferAmount (#888)
Variable MetaversePay.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1069) is too similar to MetaversePay._transferFromExcluded(address,address,uint256).tTransferAmount (#1092)
Variable MetaversePay.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to MetaversePay._transferFromExcluded(address,address,uint256).tTransferAmount (#1092)
Variable MetaversePay._transferStandard(address,address,uint256).rTransferAmount (#1061) is too similar to MetaversePay._getTValues(uint256).tTransferAmount (#888)
Variable MetaversePay.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1069) is too similar to MetaversePay.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1069)
Variable MetaversePay.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to MetaversePay.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1069)
Variable MetaversePay._transferToExcluded(address,address,uint256).rTransferAmount (#1083) is too similar to MetaversePay._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable MetaversePay._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to MetaversePay._transferFromExcluded(address,address,uint256).tTransferAmount (#1092)
Variable MetaversePay._getRValues(uint256,uint256,uint256).rTransferAmount (#895) is too similar to MetaversePay._transferFromExcluded(address,address,uint256).tTransferAmount (#1092)
Variable MetaversePay._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to MetaversePay.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1069)
Variable MetaversePay._getValues(uint256).rTransferAmount (#882) is too similar to MetaversePay._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable MetaversePay._getRValues(uint256,uint256,uint256).rTransferAmount (#895) is too similar to MetaversePay.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1069)
Variable MetaversePay._transferStandard(address,address,uint256).rTransferAmount (#1061) is too similar to MetaversePay._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Prevent variables from having similar names.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#435-438)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#444-448)
name() should be declared external:
- MetaversePay.name() (#748-750)
symbol() should be declared external:
- MetaversePay.symbol() (#752-754)
decimals() should be declared external:
- MetaversePay.decimals() (#756-758)
totalSupply() should be declared external:
- MetaversePay.totalSupply() (#760-762)
balanceOfBuy(address) should be declared external:
- MetaversePay.balanceOfBuy(address) (#769-772)
balanceOfSell(address) should be declared external:
- MetaversePay.balanceOfSell(address) (#774-777)
transfer(address,uint256) should be declared external:
- MetaversePay.transfer(address,uint256) (#780-783)
approve(address,uint256) should be declared external:
- MetaversePay.approve(address,uint256) (#789-792)
transferFrom(address,address,uint256) should be declared external:
- MetaversePay.transferFrom(address,address,uint256) (#794-798)
increaseAllowance(address,uint256) should be declared external:
- MetaversePay.increaseAllowance(address,uint256) (#800-803)
decreaseAllowance(address,uint256) should be declared external:
- MetaversePay.decreaseAllowance(address,uint256) (#805-808)
isExcludedFromReward(address) should be declared external:
- MetaversePay.isExcludedFromReward(address) (#810-812)
deliver(uint256) should be declared external:
- MetaversePay.deliver(uint256) (#814-821)
reflectionFromToken(uint256,bool) should be declared external:
- MetaversePay.reflectionFromToken(uint256,bool) (#823-832)
excludeFromReward(address) should be declared external:
- MetaversePay.excludeFromReward(address) (#840-847)
isExcludedFromFee(address) should be declared external:
- MetaversePay.isExcludedFromFee(address) (#933-935)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- MetaversePay.excludeMultipleAccountsFromFees(address[],bool) (#937-943)
excludeFromFee(address) should be declared external:
- MetaversePay.excludeFromFee(address) (#1100-1102)
includeInFee(address) should be declared external:
- MetaversePay.includeInFee(address) (#1104-1106)
setSwapAndLiquifyEnabled(bool) should be declared external:
- MetaversePay.setSwapAndLiquifyEnabled(bool) (#1139-1142)
Use the external attribute for functions never called from the contract.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) is never used and should be removed
Address.functionCall(address,bytes) (#321-323) is never used and should be removed
Address.functionCall(address,bytes,string) (#331-333) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#346-348) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#356-359) is never used and should be removed
Address.isContract(address) (#268-277) is never used and should be removed
Address.sendValue(address,uint256) (#295-301) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
MetaversePay.swapTokensForEth(uint256,address) (#1009-1029) is never used and should be removed
SafeMath.mod(uint256,uint256) (#224-226) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#240-243) is never used and should be removed
Remove unused functions.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d PancakeSwap volume is low.


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


Token is deployed only at one blockchain


Unable to find Discord account


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

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Token is marked as scam (rug pull, honeypot, phishing, etc.)

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 scam / 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 CoinMarketCap rank


Token has relatively low CoinGecko rank

Price for MVP

News for MVP