MuNFTBEP20 Token Logo

MSS [MuNFTBEP20] Token

About MSS

Listings

Token 2 years
CoinMarketCap 22 months
white paper

MusesNFT is building an ecosystem that aims to integrate a broad community represented by artists, gallery owners, investors, and enthusiasts, around the new technological possibilities of art and the new Digital Economy.

Social

Laser Scorebeta Last Audit: 5 August 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Reentrancy in MuNFTBEP20._transfer(address,address,uint256) (#1003-1049):
External calls:
- swapAndLiquify(contractTokenBalance) (#1036)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1088-1094)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1036)
- recipient.transfer(amount) (#1114)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _previousLiquidityFee = _liquidityFee (#975)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _previousMarketingFee = _marketingFee (#976)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#946)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#954)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1140)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1152)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#852)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1141)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1166)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1167)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1154)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#854)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _rTotal = _rTotal.sub(rFee) (#901)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#948)
- _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing) (#956)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1165)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#851)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1153)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#853)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

MuNFTBEP20.includeInReward(address) (#837-848) has costly operations inside a loop:
- _excluded.pop() (#844)
Use a local variable to hold the loop computation result.

Additional information: link

MuNFTBEP20.addLiquidity(uint256,uint256) (#1097-1110) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
Ensure that all the return values of the function calls are used.

Additional information: link

MuNFTBEP20.allowance(address,address).owner (#768) shadows:
- Ownable.owner() (#399-401) (function)
MuNFTBEP20._approve(address,address,uint256).owner (#995) shadows:
- Ownable.owner() (#399-401) (function)
Rename the local variables that shadow another component.

Additional information: link

MuNFTBEP20.setFeePercent(uint256,uint256,uint256) (#871-875) should emit an event for:
- _taxFee = taxFee (#872)
- _liquidityFee = liquidityFee (#873)
- _marketingFee = marketingFee (#874)
MuNFTBEP20.setMaxTxPercent(uint256) (#881-885) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 3) (#882-884)
Emit an event for critical parameter changes.

Additional information: link

MuNFTBEP20.setmarketingAddress(address).marketingAddress (#877) lacks a zero-check on :
- _marketingAddress = marketingAddress (#878)
Check that the address is not zero.

Additional information: link

Reentrancy in MuNFTBEP20._transfer(address,address,uint256) (#1003-1049):
External calls:
- swapAndLiquify(contractTokenBalance) (#1036)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1088-1094)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1036)
- recipient.transfer(amount) (#1114)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _liquidityFee = _previousLiquidityFee (#986)
- _liquidityFee = 0 (#979)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _marketingFee = _previousMarketingFee (#987)
- _marketingFee = 0 (#980)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _previousTaxFee = _taxFee (#974)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _tFeeTotal = _tFeeTotal.add(tFee) (#902)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _taxFee = _previousTaxFee (#985)
- _taxFee = 0 (#978)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _totalFee = _liquidityFee.add(_marketingFee) (#988)
- _totalFee = 0 (#981)
Reentrancy in MuNFTBEP20.constructor() (#719-740):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#724-725)
State variables written after the call(s):
- _excluded.push(_deadAdderess) (#737)
- _isExcluded[_deadAdderess] = true (#736)
- _isExcludedFromFee[owner()] = true (#731)
- _isExcludedFromFee[address(this)] = true (#732)
- _isExcludedFromFee[ownerAddress] = true (#733)
- _isExcludedFromFee[_deadAdderess] = true (#734)
- uniswapV2Router = _uniswapV2Router (#728)
Reentrancy in MuNFTBEP20.swapAndLiquify(uint256) (#1051-1077):
External calls:
- swapTokensForEth(half.add(amountMarketing)) (#1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1088-1094)
- addLiquidity(otherHalf,newBalance) (#1074)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
External calls sending eth:
- transferToAddressBNB(address(_marketingAddress),marketingBalance.mul(90).div(100)) (#1071)
- recipient.transfer(amount) (#1114)
- addLiquidity(otherHalf,newBalance) (#1074)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1074)
- _allowances[owner][spender] = amount (#999)
Reentrancy in MuNFTBEP20.transferFrom(address,address,uint256) (#777-781):
External calls:
- _transfer(sender,recipient,amount) (#778)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1088-1094)
External calls sending eth:
- _transfer(sender,recipient,amount) (#778)
- recipient.transfer(amount) (#1114)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#779)
- _allowances[owner][spender] = amount (#999)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MuNFTBEP20._transfer(address,address,uint256) (#1003-1049):
External calls:
- swapAndLiquify(contractTokenBalance) (#1036)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1088-1094)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1036)
- recipient.transfer(amount) (#1114)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1147)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- Transfer(sender,recipient,tTransferAmount) (#1160)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- Transfer(sender,recipient,tTransferAmount) (#1173)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- Transfer(sender,recipient,tTransferAmount) (#860)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
Reentrancy in MuNFTBEP20.constructor() (#719-740):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#724-725)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#739)
Reentrancy in MuNFTBEP20.swapAndLiquify(uint256) (#1051-1077):
External calls:
- swapTokensForEth(half.add(amountMarketing)) (#1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1088-1094)
- addLiquidity(otherHalf,newBalance) (#1074)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
External calls sending eth:
- transferToAddressBNB(address(_marketingAddress),marketingBalance.mul(90).div(100)) (#1071)
- recipient.transfer(amount) (#1114)
- addLiquidity(otherHalf,newBalance) (#1074)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1000)
- addLiquidity(otherHalf,newBalance) (#1074)
- SwapAndLiquify(half,newBalance,otherHalf) (#1076)
Reentrancy in MuNFTBEP20.transferFrom(address,address,uint256) (#777-781):
External calls:
- _transfer(sender,recipient,amount) (#778)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1088-1094)
External calls sending eth:
- _transfer(sender,recipient,amount) (#778)
- recipient.transfer(amount) (#1114)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1000)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#779)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#434-439) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#436)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#257-266) uses assembly
- INLINE ASM (#264)
Address._functionCallWithValue(address,bytes,uint256,string) (#350-371) uses assembly
- INLINE ASM (#363-366)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#350-371) is never used and should be removed
Address.functionCall(address,bytes) (#310-312) is never used and should be removed
Address.functionCall(address,bytes,string) (#320-322) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#335-337) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#345-348) is never used and should be removed
Address.isContract(address) (#257-266) is never used and should be removed
Address.sendValue(address,uint256) (#284-290) is never used and should be removed
Context._msgData() (#234) is never used and should be removed
SafeMath.mod(uint256,uint256) (#210-212) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#226-229) is never used and should be removed
Remove unused functions.

Additional information: link

MuNFTBEP20._rTotal (#671) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
MuNFTBEP20._previousTaxFee (#679) is set pre-construction with a non-constant function or state variable:
- _taxFee
MuNFTBEP20._previousLiquidityFee (#682) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
MuNFTBEP20._previousMarketingFee (#685) is set pre-construction with a non-constant function or state variable:
- _marketingFee
MuNFTBEP20._maxTxAmount (#700) is set pre-construction with a non-constant function or state variable:
- _tTotal * 5 / 1000
MuNFTBEP20.numTokensSellToAddToLiquidity (#701) is set pre-construction with a non-constant function or state variable:
- _tTotal * 5 / 1000
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 version0.8.12 (#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.12 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) (#284-290):
- (success) = recipient.call{value: amount}() (#288)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#350-371):
- (success,returndata) = target.call{value: weiValue}(data) (#354)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#478) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#479) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#496) is not in mixedCase
Function IUniswapV2Router01.WETH() (#518) is not in mixedCase
Parameter MuNFTBEP20.setSwapAndLiquifyEnabled(bool)._enabled (#887) is not in mixedCase
Parameter MuNFTBEP20.setSwapActivity(bool)._enabled (#892) is not in mixedCase
Parameter MuNFTBEP20.calculateTaxFee(uint256)._amount (#959) is not in mixedCase
Parameter MuNFTBEP20.calculateTotalFee(uint256)._amount (#965) is not in mixedCase
Variable MuNFTBEP20._taxFee (#678) is not in mixedCase
Variable MuNFTBEP20._liquidityFee (#681) is not in mixedCase
Variable MuNFTBEP20._marketingFee (#684) is not in mixedCase
Variable MuNFTBEP20._totalFee (#687) is not in mixedCase
Variable MuNFTBEP20._marketingAddress (#689) is not in mixedCase
Constant MuNFTBEP20._deadAdderess (#691) is not in UPPER_CASE_WITH_UNDERSCORES
Variable MuNFTBEP20._maxTxAmount (#700) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#234)" inContext (#232-235)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in MuNFTBEP20._transfer(address,address,uint256) (#1003-1049):
External calls:
- swapAndLiquify(contractTokenBalance) (#1036)
- recipient.transfer(amount) (#1114)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1036)
- recipient.transfer(amount) (#1114)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _liquidityFee = _previousLiquidityFee (#986)
- _liquidityFee = 0 (#979)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _marketingFee = _previousMarketingFee (#987)
- _marketingFee = 0 (#980)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _previousLiquidityFee = _liquidityFee (#975)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _previousMarketingFee = _marketingFee (#976)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _previousTaxFee = _taxFee (#974)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#946)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#954)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1140)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1152)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#852)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1141)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1166)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1167)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1154)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#854)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _rTotal = _rTotal.sub(rFee) (#901)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _tFeeTotal = _tFeeTotal.add(tFee) (#902)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#948)
- _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing) (#956)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1165)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#851)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1153)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#853)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _taxFee = _previousTaxFee (#985)
- _taxFee = 0 (#978)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- _totalFee = _liquidityFee.add(_marketingFee) (#988)
- _totalFee = 0 (#981)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1147)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- Transfer(sender,recipient,tTransferAmount) (#1160)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- Transfer(sender,recipient,tTransferAmount) (#1173)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
- Transfer(sender,recipient,tTransferAmount) (#860)
- _tokenTransfer(from,to,amount,takeFee) (#1048)
Reentrancy in MuNFTBEP20.swapAndLiquify(uint256) (#1051-1077):
External calls:
- transferToAddressBNB(address(_marketingAddress),marketingBalance.mul(90).div(100)) (#1071)
- recipient.transfer(amount) (#1114)
External calls sending eth:
- transferToAddressBNB(address(_marketingAddress),marketingBalance.mul(90).div(100)) (#1071)
- recipient.transfer(amount) (#1114)
- addLiquidity(otherHalf,newBalance) (#1074)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1074)
- _allowances[owner][spender] = amount (#999)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1000)
- addLiquidity(otherHalf,newBalance) (#1074)
- SwapAndLiquify(half,newBalance,otherHalf) (#1076)
Reentrancy in MuNFTBEP20.transferFrom(address,address,uint256) (#777-781):
External calls:
- _transfer(sender,recipient,amount) (#778)
- recipient.transfer(amount) (#1114)
External calls sending eth:
- _transfer(sender,recipient,amount) (#778)
- recipient.transfer(amount) (#1114)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1102-1109)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#779)
- _allowances[owner][spender] = amount (#999)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1000)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#779)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#523) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#524)
Variable MuNFTBEP20.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to MuNFTBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (#1164)
Variable MuNFTBEP20._transferFromExcluded(address,address,uint256).rTransferAmount (#1164) is too similar to MuNFTBEP20._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MuNFTBEP20._transferStandard(address,address,uint256).rTransferAmount (#1139) is too similar to MuNFTBEP20._transferStandard(address,address,uint256).tTransferAmount (#1139)
Variable MuNFTBEP20.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to MuNFTBEP20._getValues(uint256).tTransferAmount (#906)
Variable MuNFTBEP20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to MuNFTBEP20._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MuNFTBEP20._transferStandard(address,address,uint256).rTransferAmount (#1139) is too similar to MuNFTBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (#1164)
Variable MuNFTBEP20.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to MuNFTBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (#850)
Variable MuNFTBEP20.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to MuNFTBEP20._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MuNFTBEP20._transferBothExcluded(address,address,uint256).rTransferAmount (#850) is too similar to MuNFTBEP20._getValues(uint256).tTransferAmount (#906)
Variable MuNFTBEP20._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to MuNFTBEP20._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MuNFTBEP20._transferFromExcluded(address,address,uint256).rTransferAmount (#1164) is too similar to MuNFTBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (#1164)
Variable MuNFTBEP20._transferStandard(address,address,uint256).rTransferAmount (#1139) is too similar to MuNFTBEP20._getValues(uint256).tTransferAmount (#906)
Variable MuNFTBEP20._transferFromExcluded(address,address,uint256).rTransferAmount (#1164) is too similar to MuNFTBEP20._getValues(uint256).tTransferAmount (#906)
Variable MuNFTBEP20._transferBothExcluded(address,address,uint256).rTransferAmount (#850) is too similar to MuNFTBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (#850)
Variable MuNFTBEP20._transferBothExcluded(address,address,uint256).rTransferAmount (#850) is too similar to MuNFTBEP20._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MuNFTBEP20._transferStandard(address,address,uint256).rTransferAmount (#1139) is too similar to MuNFTBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (#850)
Variable MuNFTBEP20._transferStandard(address,address,uint256).rTransferAmount (#1139) is too similar to MuNFTBEP20._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MuNFTBEP20._transferStandard(address,address,uint256).rTransferAmount (#1139) is too similar to MuNFTBEP20._getTValues(uint256).tTransferAmount (#914)
Variable MuNFTBEP20._transferFromExcluded(address,address,uint256).rTransferAmount (#1164) is too similar to MuNFTBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (#850)
Variable MuNFTBEP20._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to MuNFTBEP20._transferStandard(address,address,uint256).tTransferAmount (#1139)
Variable MuNFTBEP20._getValues(uint256).rTransferAmount (#907) is too similar to MuNFTBEP20._getValues(uint256).tTransferAmount (#906)
Variable MuNFTBEP20._getValues(uint256).rTransferAmount (#907) is too similar to MuNFTBEP20._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MuNFTBEP20._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to MuNFTBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (#850)
Variable MuNFTBEP20._transferBothExcluded(address,address,uint256).rTransferAmount (#850) is too similar to MuNFTBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (#1164)
Variable MuNFTBEP20._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to MuNFTBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (#1164)
Variable MuNFTBEP20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to MuNFTBEP20._getValues(uint256).tTransferAmount (#906)
Variable MuNFTBEP20._getValues(uint256).rTransferAmount (#907) is too similar to MuNFTBEP20._getTValues(uint256).tTransferAmount (#914)
Variable MuNFTBEP20._getValues(uint256).rTransferAmount (#907) is too similar to MuNFTBEP20._transferStandard(address,address,uint256).tTransferAmount (#1139)
Variable MuNFTBEP20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to MuNFTBEP20._getTValues(uint256).tTransferAmount (#914)
Variable MuNFTBEP20._getValues(uint256).rTransferAmount (#907) is too similar to MuNFTBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (#850)
Variable MuNFTBEP20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to MuNFTBEP20._transferStandard(address,address,uint256).tTransferAmount (#1139)
Variable MuNFTBEP20._getValues(uint256).rTransferAmount (#907) is too similar to MuNFTBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (#1164)
Variable MuNFTBEP20._transferFromExcluded(address,address,uint256).rTransferAmount (#1164) is too similar to MuNFTBEP20._getTValues(uint256).tTransferAmount (#914)
Variable MuNFTBEP20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to MuNFTBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (#850)
Variable MuNFTBEP20._transferFromExcluded(address,address,uint256).rTransferAmount (#1164) is too similar to MuNFTBEP20._transferStandard(address,address,uint256).tTransferAmount (#1139)
Variable MuNFTBEP20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to MuNFTBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (#1164)
Variable MuNFTBEP20._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to MuNFTBEP20._getValues(uint256).tTransferAmount (#906)
Variable MuNFTBEP20.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to MuNFTBEP20._getTValues(uint256).tTransferAmount (#914)
Variable MuNFTBEP20._transferBothExcluded(address,address,uint256).rTransferAmount (#850) is too similar to MuNFTBEP20._getTValues(uint256).tTransferAmount (#914)
Variable MuNFTBEP20._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to MuNFTBEP20._getTValues(uint256).tTransferAmount (#914)
Variable MuNFTBEP20.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to MuNFTBEP20._transferStandard(address,address,uint256).tTransferAmount (#1139)
Variable MuNFTBEP20._transferBothExcluded(address,address,uint256).rTransferAmount (#850) is too similar to MuNFTBEP20._transferStandard(address,address,uint256).tTransferAmount (#1139)
Prevent variables from having similar names.

Additional information: link

MuNFTBEP20.slitherConstructorVariables() (#656-1176) uses literals with too many digits:
- _tTotal = 2500000 * 10 ** 18 (#670)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

MuNFTBEP20._decimals (#676) should be constant
MuNFTBEP20._name (#674) should be constant
MuNFTBEP20._symbol (#675) should be constant
MuNFTBEP20._tTotal (#670) should be constant
MuNFTBEP20.ownerAddress (#690) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#408-411)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#413-417)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#419-421)
getTime() should be declared external:
- Ownable.getTime() (#423-425)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#427-432)
unlock() should be declared external:
- Ownable.unlock() (#434-439)
name() should be declared external:
- MuNFTBEP20.name() (#742-744)
symbol() should be declared external:
- MuNFTBEP20.symbol() (#746-748)
decimals() should be declared external:
- MuNFTBEP20.decimals() (#750-752)
totalSupply() should be declared external:
- MuNFTBEP20.totalSupply() (#754-756)
transfer(address,uint256) should be declared external:
- MuNFTBEP20.transfer(address,uint256) (#763-766)
allowance(address,address) should be declared external:
- MuNFTBEP20.allowance(address,address) (#768-770)
approve(address,uint256) should be declared external:
- MuNFTBEP20.approve(address,uint256) (#772-775)
transferFrom(address,address,uint256) should be declared external:
- MuNFTBEP20.transferFrom(address,address,uint256) (#777-781)
increaseAllowance(address,uint256) should be declared external:
- MuNFTBEP20.increaseAllowance(address,uint256) (#783-786)
decreaseAllowance(address,uint256) should be declared external:
- MuNFTBEP20.decreaseAllowance(address,uint256) (#788-791)
isExcludedFromReward(address) should be declared external:
- MuNFTBEP20.isExcludedFromReward(address) (#793-795)
totalFees() should be declared external:
- MuNFTBEP20.totalFees() (#797-799)
deliver(uint256) should be declared external:
- MuNFTBEP20.deliver(uint256) (#801-808)
reflectionFromToken(uint256,bool) should be declared external:
- MuNFTBEP20.reflectionFromToken(uint256,bool) (#810-819)
excludeFromReward(address) should be declared external:
- MuNFTBEP20.excludeFromReward(address) (#827-835)
excludeFromFee(address) should be declared external:
- MuNFTBEP20.excludeFromFee(address) (#863-865)
includeInFee(address) should be declared external:
- MuNFTBEP20.includeInFee(address) (#867-869)
setSwapAndLiquifyEnabled(bool) should be declared external:
- MuNFTBEP20.setSwapAndLiquifyEnabled(bool) (#887-890)
setSwapActivity(bool) should be declared external:
- MuNFTBEP20.setSwapActivity(bool) (#892-895)
isExcludedFromFee(address) should be declared external:
- MuNFTBEP20.isExcludedFromFee(address) (#991-993)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.

Contract has 9% buy tax and 8% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.


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


Token is deployed only at one blockchain


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find token on CoinGecko

Additional information: link


Unable to find KYC or doxxing proof


Unable to find token on CoinHunt

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Young tokens have high risks of price dump / death


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


Token has no active CoinGecko listing / rank


Token has relatively low CoinMarketCap rank

Price for MSS

News for MSS