Museo Token Logo

MSE [Museo] Token

About MSE

Listings

Token 2 years
white paper

Museo is a network of user-owned and customized virtual reality Museo Spaces. Museo Spaces are a venue for users to display their NFTs and share them with others.

​Museo Spaces can be utilized as a private virtual reality hang out between friends or NFT owners can host public events. NFT owners can monetize their NFTs through charging an admission fee to their Museo Space.

Social

Laser Scorebeta Last Audit: 9 December 2021

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

Museo._takeFees(uint256,address) (#1117-1175) sends eth to arbitrary user
Dangerous calls:
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Museo._transfer(address,address,uint256) (#1077-1115):
External calls:
- _takeFees(oldAmount,from) (#1110)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#982-988)
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
External calls sending eth:
- _takeFees(oldAmount,from) (#1110)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1114)
- _developerFee = _previousDeveloperFee (#1248)
- _developerFee = 0 (#1242)
- _tokenTransfer(from,to,amount,takeFee) (#1114)
- _liqFee = _previousLiqFee (#1250)
- _liqFee = 0 (#1241)
- _tokenTransfer(from,to,amount,takeFee) (#1114)
- _marketingFee = _previousMarketingFee (#1249)
- _marketingFee = 0 (#1243)
- _tokenTransfer(from,to,amount,takeFee) (#1114)
- _previousDeveloperFee = _developerFee (#1236)
- _tokenTransfer(from,to,amount,takeFee) (#1114)
- _previousLiqFee = _liqFee (#1238)
- _tokenTransfer(from,to,amount,takeFee) (#1114)
- _previousMarketingFee = _marketingFee (#1237)
- _tokenTransfer(from,to,amount,takeFee) (#1114)
- _previousTaxFee = _taxFee (#1235)
- _tokenTransfer(from,to,amount,takeFee) (#1114)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1191)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1192)
- _tokenTransfer(from,to,amount,takeFee) (#1114)
- _rTotal = _rTotal.sub(rFee) (#1058)
- _tokenTransfer(from,to,amount,takeFee) (#1114)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1059)
- _tokenTransfer(from,to,amount,takeFee) (#1114)
- _taxFee = _previousTaxFee (#1247)
- _taxFee = 0 (#1240)
Apply the check-effects-interactions pattern.

Additional information: link

Museo._takeFees(uint256,address).data (#1166) is written in both
(sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
(sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
Fix or remove the writes.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Museo._takeFees(uint256,address) (#1117-1175) performs a multiplication on the result of a division:
-developerETHPortion = swappedETH.div(totalFeeToBeSwappedForETHMul10).mul(_developerFee.mul(10)) (#1156)
Museo._takeFees(uint256,address) (#1117-1175) performs a multiplication on the result of a division:
-marketingETHPortion = swappedETH.div(totalFeeToBeSwappedForETHMul10).mul(_marketingFee.mul(10)) (#1157)
Consider ordering multiplication before division.

Additional information: link

Museo.addLiquidity(uint256,uint256,address) (#991-1004) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
Ensure that all the return values of the function calls are used.

Additional information: link

Museo.allowance(address,address).owner (#1039) shadows:
- Ownable.owner() (#369-371) (function)
Museo._approve(address,address,uint256).owner (#1069) shadows:
- Ownable.owner() (#369-371) (function)
Rename the local variables that shadow another component.

Additional information: link

Museo.setMaxTxPercent(uint256) (#1256-1260) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1257-1259)
Museo.setTaxFeePercent(uint256) (#1262-1265) should emit an event for:
- _taxFee = taxFee (#1264)
Museo.setLiqFeePercent(uint256) (#1267-1270) should emit an event for:
- _liqFee = liqFee (#1269)
Museo.setDeveloperFeePercent(uint256) (#1272-1275) should emit an event for:
- _developerFee = developerFee (#1274)
Museo.setMarketingFeePercent(uint256) (#1277-1280) should emit an event for:
- _marketingFee = marketingFee (#1279)
Emit an event for critical parameter changes.

Additional information: link

Museo.setDeveloperAddress(address).developer (#1282) lacks a zero-check on :
- _developerAddress = developer (#1283)
Museo.setMarketingAddress(address).marketing (#1286) lacks a zero-check on :
- _marketingAddress = marketing (#1287)
Check that the address is not zero.

Additional information: link

Reentrancy in Museo._takeFees(uint256,address) (#1117-1175):
External calls:
- swapTokensForEth(totalFeeAmountToBeSwappedForETH) (#1148)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#982-988)
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
- addLiquidity(liqFeeAmount,liquidityPoolETHPortion,owner()) (#1174)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
External calls sending eth:
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
- addLiquidity(liqFeeAmount,liquidityPoolETHPortion,owner()) (#1174)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
State variables written after the call(s):
- addLiquidity(liqFeeAmount,liquidityPoolETHPortion,owner()) (#1174)
- _allowances[owner][spender] = amount (#1073)
Reentrancy in Museo.constructor() (#946-955):
External calls:
- createPancakeSwapPair() (#949)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#966-967)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#951)
- _isExcludedFromFee[address(this)] = true (#952)
Reentrancy in Museo.createPancakeSwapPair() (#960-971):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#966-967)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#970)
Reentrancy in Museo.transferFrom(address,address,uint256) (#1033-1037):
External calls:
- _transfer(sender,recipient,amount) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#982-988)
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1035)
- _allowances[owner][spender] = amount (#1073)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Museo._takeFees(uint256,address) (#1117-1175):
External calls:
- swapTokensForEth(totalFeeAmountToBeSwappedForETH) (#1148)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#982-988)
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
- addLiquidity(liqFeeAmount,liquidityPoolETHPortion,owner()) (#1174)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
External calls sending eth:
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
- addLiquidity(liqFeeAmount,liquidityPoolETHPortion,owner()) (#1174)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1074)
- addLiquidity(liqFeeAmount,liquidityPoolETHPortion,owner()) (#1174)
Reentrancy in Museo._transfer(address,address,uint256) (#1077-1115):
External calls:
- _takeFees(oldAmount,from) (#1110)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#982-988)
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
External calls sending eth:
- _takeFees(oldAmount,from) (#1110)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1194)
- _tokenTransfer(from,to,amount,takeFee) (#1114)
Reentrancy in Museo.constructor() (#946-955):
External calls:
- createPancakeSwapPair() (#949)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#966-967)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#954)
Reentrancy in Museo.transferFrom(address,address,uint256) (#1033-1037):
External calls:
- _transfer(sender,recipient,amount) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#982-988)
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,partner,block.timestamp) (#996-1003)
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1074)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1035)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#440-450) uses assembly
- INLINE ASM (#446-448)
Address.verifyCallResult(bool,bytes,string) (#609-629) uses assembly
- INLINE ASM (#621-624)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.8.0']
- >=0.6.2 (#5)
- >=0.6.2 (#103)
- >=0.5.0 (#149)
- >=0.5.0 (#204)
- ^0.8.0 (#227)
- ^0.8.0 (#312)
- ^0.8.0 (#339)
- ^0.8.0 (#417)
- ^0.8.0 (#637)
- ^0.8.0 (#866)
Use one Solidity version.

Additional information: link

Address.functionCall(address,bytes) (#493-495) is never used and should be removed
Address.functionCall(address,bytes,string) (#503-509) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#522-528) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#536-547) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#582-584) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#592-601) is never used and should be removed
Address.functionStaticCall(address,bytes) (#555-557) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#565-574) is never used and should be removed
Address.isContract(address) (#440-450) is never used and should be removed
Address.sendValue(address,uint256) (#468-473) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#609-629) is never used and should be removed
Context._msgData() (#329-331) is never used and should be removed
Museo.calculateDeveloperFee(uint256) (#1228-1230) is never used and should be removed
Museo.calculateLiquidityFee(uint256) (#1220-1222) is never used and should be removed
Museo.calculateMarketingFee(uint256) (#1224-1226) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#824-833) is never used and should be removed
SafeMath.mod(uint256,uint256) (#784-786) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#850-859) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#655-661) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#697-702) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#709-714) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#680-690) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#668-673) is never used and should be removed
Remove unused functions.

Additional information: link

Museo._decimalFactor (#904) is set pre-construction with a non-constant function or state variable:
- 10 ** _decimals
Museo._tTotal (#908) is set pre-construction with a non-constant function or state variable:
- 10 ** 9 * _decimalFactor
Museo._rTotal (#909) is set pre-construction with a non-constant function or state variable:
- MAX - (MAX % _tTotal)
Museo._maxTxAmount (#913) is set pre-construction with a non-constant function or state variable:
- 2 * 10 ** 7 * _decimalFactor
Museo._minTxAmount (#914) is set pre-construction with a non-constant function or state variable:
- 10 ** 0 * _decimalFactor
Museo._previousTaxFee (#918) is set pre-construction with a non-constant function or state variable:
- _taxFee
Museo._previousLiqFee (#921) is set pre-construction with a non-constant function or state variable:
- _liqFee
Museo._previousMarketingFee (#924) is set pre-construction with a non-constant function or state variable:
- _marketingFee
Museo._previousDeveloperFee (#927) is set pre-construction with a non-constant function or state variable:
- _developerFee
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

Pragma version>=0.6.2 (#5) allows old versions
Pragma version>=0.6.2 (#103) allows old versions
Pragma version>=0.5.0 (#149) allows old versions
Pragma version>=0.5.0 (#204) allows old versions
Pragma version^0.8.0 (#227) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version^0.8.0 (#312) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version^0.8.0 (#339) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version^0.8.0 (#417) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version^0.8.0 (#637) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
Pragma version^0.8.0 (#866) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
solc-0.8.0 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

Low level call in Address.sendValue(address,uint256) (#468-473):
- (success) = recipient.call{value: amount}() (#471)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#536-547):
- (success,returndata) = target.call{value: value}(data) (#545)
Low level call in Address.functionStaticCall(address,bytes,string) (#565-574):
- (success,returndata) = target.staticcall(data) (#572)
Low level call in Address.functionDelegateCall(address,bytes,string) (#592-601):
- (success,returndata) = target.delegatecall(data) (#599)
Low level call in Museo._takeFees(uint256,address) (#1117-1175):
- (sent,data) = _developerAddress.call{value: developerETHPortion}() (#1166)
- (sent,data) = _marketingAddress.call{value: marketingETHPortion}() (#1168)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router01.WETH() (#9) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#166) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#167) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#184) is not in mixedCase
Parameter Museo.calculateTaxFee(uint256)._amount (#1216) is not in mixedCase
Parameter Museo.calculateLiquidityFee(uint256)._amount (#1220) is not in mixedCase
Parameter Museo.calculateMarketingFee(uint256)._amount (#1224) is not in mixedCase
Parameter Museo.calculateDeveloperFee(uint256)._amount (#1228) is not in mixedCase
Variable Museo._maxTxAmount (#913) is not in mixedCase
Variable Museo._minTxAmount (#914) is not in mixedCase
Variable Museo._taxFee (#917) is not in mixedCase
Variable Museo._previousTaxFee (#918) is not in mixedCase
Variable Museo._liqFee (#920) is not in mixedCase
Variable Museo._previousLiqFee (#921) is not in mixedCase
Variable Museo._marketingFee (#923) is not in mixedCase
Variable Museo._previousMarketingFee (#924) is not in mixedCase
Variable Museo._developerFee (#926) is not in mixedCase
Variable Museo._previousDeveloperFee (#927) is not in mixedCase
Variable Museo._developerAddress (#930) is not in mixedCase
Variable Museo._marketingAddress (#931) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#14) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#15)
Variable Museo._getValues(uint256).rTransferAmount (#1199) is too similar to Museo._getTValues(uint256).tTransferAmount (#1205)
Variable Museo._getRValues(uint256,uint256,uint256).rTransferAmount (#1212) is too similar to Museo._getTValues(uint256).tTransferAmount (#1205)
Variable Museo._getRValues(uint256,uint256,uint256).rTransferAmount (#1212) is too similar to Museo._getValues(uint256).tTransferAmount (#1198)
Variable Museo._transferStandard(address,address,uint256).rTransferAmount (#1190) is too similar to Museo._transferStandard(address,address,uint256).tTransferAmount (#1190)
Variable Museo._getValues(uint256).rTransferAmount (#1199) is too similar to Museo._transferStandard(address,address,uint256).tTransferAmount (#1190)
Variable Museo._getRValues(uint256,uint256,uint256).rTransferAmount (#1212) is too similar to Museo._transferStandard(address,address,uint256).tTransferAmount (#1190)
Variable Museo._transferStandard(address,address,uint256).rTransferAmount (#1190) is too similar to Museo._getValues(uint256).tTransferAmount (#1198)
Variable Museo._getValues(uint256).rTransferAmount (#1199) is too similar to Museo._getValues(uint256).tTransferAmount (#1198)
Variable Museo._transferStandard(address,address,uint256).rTransferAmount (#1190) is too similar to Museo._getTValues(uint256).tTransferAmount (#1205)
Prevent variables from having similar names.

Additional information: link

Museo._decimals (#903) should be constant
Museo._name (#899) should be constant
Museo._symbol (#900) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#388-390)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#396-399)
name() should be declared external:
- Museo.name() (#1008-1010)
symbol() should be declared external:
- Museo.symbol() (#1012-1014)
decimals() should be declared external:
- Museo.decimals() (#1016-1018)
totalSupply() should be declared external:
- Museo.totalSupply() (#1020-1022)
transfer(address,uint256) should be declared external:
- Museo.transfer(address,uint256) (#1028-1031)
transferFrom(address,address,uint256) should be declared external:
- Museo.transferFrom(address,address,uint256) (#1033-1037)
allowance(address,address) should be declared external:
- Museo.allowance(address,address) (#1039-1041)
approve(address,uint256) should be declared external:
- Museo.approve(address,uint256) (#1043-1046)
setDeveloperAddress(address) should be declared external:
- Museo.setDeveloperAddress(address) (#1282-1284)
setMarketingAddress(address) should be declared external:
- Museo.setMarketingAddress(address) (#1286-1288)
excludeFromFee(address) should be declared external:
- Museo.excludeFromFee(address) (#1290-1292)
includeInFee(address) should be declared external:
- Museo.includeInFee(address) (#1294-1296)
isExcludedFromFee(address) should be declared external:
- Museo.isExcludedFromFee(address) (#1301-1303)
showDeveloperAddress() should be declared external:
- Museo.showDeveloperAddress() (#1305-1307)
showMarketingAddress() should be declared external:
- Museo.showMarketingAddress() (#1309-1311)
getPairAddress() should be declared external:
- Museo.getPairAddress() (#1313-1315)
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.


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.


Twitter account link seems to be invalid


Telegram account has less than 100 subscribers


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 find token contract audit


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


Young tokens have high risks of 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


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for MSE