Moon Defender Token Logo

MDR [Moon Defender] Token

About MDR

Listings

Not Found
Token 2 years
white paper

Moon Defender is a Free-to-Play and Play-to-Earn Open world Multiplayer Survival game with in-game rewards and a minimalistic low-poly & cartoonish design video game

Social

Laser Scorebeta Last Audit: 13 February 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in MDR._transfer(address,address,uint256) (#646-676):
External calls:
- swapAndLiquify(contractTokenBalance) (#669)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#691-697)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#669)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#597)
- _rOwned[_developmentWalletAddress] = _rOwned[_developmentWalletAddress].add(rDevelopment) (#604)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#738)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#729)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#749)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#730)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#522)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#750)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#740)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#524)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _rTotal = _rTotal.sub(rFee) (#556)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#599)
- _tOwned[_developmentWalletAddress] = _tOwned[_developmentWalletAddress].add(tDevelopment) (#606)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#748)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#521)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#739)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#523)
Apply the check-effects-interactions pattern.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#114-118):
- (success) = recipient.call{value: amount}() (#116)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#128-133):
- (success,returndata) = target.call{value: value}(data) (#131)
Low level call in Address.functionStaticCall(address,bytes,string) (#137-141):
- (success,returndata) = target.staticcall(data) (#139)
Low level call in Address.functionDelegateCall(address,bytes,string) (#145-149):
- (success,returndata) = target.delegatecall(data) (#147)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

MDR.addLiquidity(uint256,uint256) (#699-709) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
Ensure that all the return values of the function calls are used.

Additional information: link

MDR.allowance(address,address).owner (#450) shadows:
- Ownable.owner() (#173-175) (function)
MDR._approve(address,address,uint256).owner (#640) shadows:
- Ownable.owner() (#173-175) (function)
Rename the local variables that shadow another component.

Additional information: link

MDR.setTaxFeePercent(uint256) (#536-538) should emit an event for:
- _taxFee = taxFee (#537)
MDR.setDevelopmentFeePercent(uint256) (#539-541) should emit an event for:
- _developmentFee = developmentFee (#540)
MDR.setLiquidityFeePercent(uint256) (#542-544) should emit an event for:
- _liquidityFee = liquidityFee (#543)
MDR.setMaxTxPercent(uint256) (#545-549) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 3) (#546-548)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in MDR._transfer(address,address,uint256) (#646-676):
External calls:
- swapAndLiquify(contractTokenBalance) (#669)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#691-697)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#669)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _developmentFee = _previousDevelopmentFee (#634)
- _developmentFee = 0 (#629)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _liquidityFee = _previousLiquidityFee (#635)
- _liquidityFee = 0 (#630)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _previousDevelopmentFee = _developmentFee (#626)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _previousLiquidityFee = _liquidityFee (#627)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _previousTaxFee = _taxFee (#625)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _tFeeTotal = _tFeeTotal.add(tFee) (#557)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- _taxFee = _previousTaxFee (#633)
- _taxFee = 0 (#628)
Reentrancy in MDR.constructor() (#420-429):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#423-424)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#426)
- _isExcludedFromFee[address(this)] = true (#427)
- uniswapV2Router = _uniswapV2Router (#425)
Reentrancy in MDR.swapAndLiquify(uint256) (#677-685):
External calls:
- swapTokensForEth(half) (#681)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#691-697)
- addLiquidity(otherHalf,newBalance) (#683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#683)
- _allowances[owner][spender] = amount (#643)
Reentrancy in MDR.transferFrom(address,address,uint256) (#457-461):
External calls:
- _transfer(sender,recipient,amount) (#458)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#691-697)
External calls sending eth:
- _transfer(sender,recipient,amount) (#458)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#459)
- _allowances[owner][spender] = amount (#643)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MDR._transfer(address,address,uint256) (#646-676):
External calls:
- swapAndLiquify(contractTokenBalance) (#669)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#691-697)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#669)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#734)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- Transfer(sender,recipient,tTransferAmount) (#754)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- Transfer(sender,recipient,tTransferAmount) (#744)
- _tokenTransfer(from,to,amount,takeFee) (#675)
- Transfer(sender,recipient,tTransferAmount) (#528)
- _tokenTransfer(from,to,amount,takeFee) (#675)
Reentrancy in MDR.constructor() (#420-429):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#423-424)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#428)
Reentrancy in MDR.swapAndLiquify(uint256) (#677-685):
External calls:
- swapTokensForEth(half) (#681)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#691-697)
- addLiquidity(otherHalf,newBalance) (#683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#644)
- addLiquidity(otherHalf,newBalance) (#683)
- SwapAndLiquify(half,newBalance,otherHalf) (#684)
Reentrancy in MDR.transferFrom(address,address,uint256) (#457-461):
External calls:
- _transfer(sender,recipient,amount) (#458)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#691-697)
External calls sending eth:
- _transfer(sender,recipient,amount) (#458)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#644)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#459)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#109-113) uses assembly
- INLINE ASM (#111)
Address._verifyCallResult(bool,bytes,string) (#150-163) uses assembly
- INLINE ASM (#155-158)
Do not use evm assembly.

Additional information: link

MDR.includeInReward(address) (#507-518) has costly operations inside a loop:
- _excluded.pop() (#514)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#150-163) is never used and should be removed
Address.functionCall(address,bytes) (#119-121) is never used and should be removed
Address.functionCall(address,bytes,string) (#122-124) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#125-127) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#128-133) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#142-144) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#145-149) is never used and should be removed
Address.functionStaticCall(address,bytes) (#134-136) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#137-141) is never used and should be removed
Address.isContract(address) (#109-113) is never used and should be removed
Address.sendValue(address,uint256) (#114-118) is never used and should be removed
Context._msgData() (#102-105) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#84-89) is never used and should be removed
SafeMath.mod(uint256,uint256) (#75-77) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#90-95) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#30-36) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#51-56) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#57-62) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#43-50) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#37-42) is never used and should be removed
Remove unused functions.

Additional information: link

MDR._rTotal (#390) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
MDR._previousTaxFee (#396) is set pre-construction with a non-constant function or state variable:
- _taxFee
MDR._previousDevelopmentFee (#398) is set pre-construction with a non-constant function or state variable:
- _developmentFee
MDR._previousLiquidityFee (#400) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#215) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#216) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#230) is not in mixedCase
Function IUniswapV2Router01.WETH() (#248) is not in mixedCase
Parameter MDR.setSwapAndLiquifyEnabled(bool)._enabled (#550) is not in mixedCase
Parameter MDR.calculateTaxFee(uint256)._amount (#608) is not in mixedCase
Parameter MDR.calculateDevelopmentFee(uint256)._amount (#613) is not in mixedCase
Parameter MDR.calculateLiquidityFee(uint256)._amount (#618) is not in mixedCase
Variable MDR._taxFee (#395) is not in mixedCase
Variable MDR._developmentFee (#397) is not in mixedCase
Variable MDR._liquidityFee (#399) is not in mixedCase
Variable MDR._maxTxAmount (#406) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#103)" inContext (#98-106)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#252) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#253)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#575) is too similar to MDR._takeDevelopment(uint256).tDevelopment (#601)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#575) is too similar to MDR._transferToExcluded(address,address,uint256).tDevelopment (#737)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#575) is too similar to MDR._transferFromExcluded(address,address,uint256).tDevelopment (#747)
Variable MDR._takeDevelopment(uint256).rDevelopment (#603) is too similar to MDR._takeDevelopment(uint256).tDevelopment (#601)
Variable MDR._takeDevelopment(uint256).rDevelopment (#603) is too similar to MDR._transferToExcluded(address,address,uint256).tDevelopment (#737)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#575) is too similar to MDR._getRValues(uint256,uint256,uint256,uint256,uint256).tDevelopment (#571)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#575) is too similar to MDR._getValues(uint256).tDevelopment (#560)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#575) is too similar to MDR._transferStandard(address,address,uint256).tDevelopment (#728)
Variable MDR._takeDevelopment(uint256).rDevelopment (#603) is too similar to MDR._getValues(uint256).tDevelopment (#560)
Variable MDR._takeDevelopment(uint256).rDevelopment (#603) is too similar to MDR._transferStandard(address,address,uint256).tDevelopment (#728)
Variable MDR._transferToExcluded(address,address,uint256).rTransferAmount (#737) is too similar to MDR._transferStandard(address,address,uint256).tTransferAmount (#728)
Variable MDR._transferFromExcluded(address,address,uint256).rTransferAmount (#747) is too similar to MDR._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable MDR._transferFromExcluded(address,address,uint256).rTransferAmount (#747) is too similar to MDR._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable MDR._transferBothExcluded(address,address,uint256).rTransferAmount (#520) is too similar to MDR._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable MDR._transferFromExcluded(address,address,uint256).rTransferAmount (#747) is too similar to MDR._getTValues(uint256).tTransferAmount (#568)
Variable MDR._transferStandard(address,address,uint256).rTransferAmount (#728) is too similar to MDR._transferStandard(address,address,uint256).tTransferAmount (#728)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#576) is too similar to MDR._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable MDR._getValues(uint256).rTransferAmount (#561) is too similar to MDR._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable MDR._transferFromExcluded(address,address,uint256).rTransferAmount (#747) is too similar to MDR._getValues(uint256).tTransferAmount (#560)
Variable MDR._transferFromExcluded(address,address,uint256).rTransferAmount (#747) is too similar to MDR._transferStandard(address,address,uint256).tTransferAmount (#728)
Variable MDR._getValues(uint256).rTransferAmount (#561) is too similar to MDR._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable MDR._transferBothExcluded(address,address,uint256).rTransferAmount (#520) is too similar to MDR._transferStandard(address,address,uint256).tTransferAmount (#728)
Variable MDR._getValues(uint256).rTransferAmount (#561) is too similar to MDR._getTValues(uint256).tTransferAmount (#568)
Variable MDR._transferToExcluded(address,address,uint256).rTransferAmount (#737) is too similar to MDR._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#576) is too similar to MDR._getValues(uint256).tTransferAmount (#560)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#576) is too similar to MDR._transferStandard(address,address,uint256).tTransferAmount (#728)
Variable MDR._getValues(uint256).rTransferAmount (#561) is too similar to MDR._getValues(uint256).tTransferAmount (#560)
Variable MDR._getValues(uint256).rTransferAmount (#561) is too similar to MDR._transferStandard(address,address,uint256).tTransferAmount (#728)
Variable MDR._takeDevelopment(uint256).rDevelopment (#603) is too similar to MDR._getRValues(uint256,uint256,uint256,uint256,uint256).tDevelopment (#571)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#575) is too similar to MDR._getTValues(uint256).tDevelopment (#567)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#575) is too similar to MDR._transferBothExcluded(address,address,uint256).tDevelopment (#520)
Variable MDR._takeDevelopment(uint256).rDevelopment (#603) is too similar to MDR._transferBothExcluded(address,address,uint256).tDevelopment (#520)
Variable MDR._takeDevelopment(uint256).rDevelopment (#603) is too similar to MDR._getTValues(uint256).tDevelopment (#567)
Variable MDR._takeDevelopment(uint256).rDevelopment (#603) is too similar to MDR._transferFromExcluded(address,address,uint256).tDevelopment (#747)
Variable MDR._transferBothExcluded(address,address,uint256).rTransferAmount (#520) is too similar to MDR._getTValues(uint256).tTransferAmount (#568)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#576) is too similar to MDR._getTValues(uint256).tTransferAmount (#568)
Variable MDR._transferBothExcluded(address,address,uint256).rTransferAmount (#520) is too similar to MDR._transferBothExcluded(address,address,uint256).tTransferAmount (#520)
Variable MDR._transferBothExcluded(address,address,uint256).rTransferAmount (#520) is too similar to MDR._getValues(uint256).tTransferAmount (#560)
Variable MDR._transferBothExcluded(address,address,uint256).rTransferAmount (#520) is too similar to MDR._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#576) is too similar to MDR._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable MDR._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#576) is too similar to MDR._transferBothExcluded(address,address,uint256).tTransferAmount (#520)
Variable MDR._transferToExcluded(address,address,uint256).rTransferAmount (#737) is too similar to MDR._getTValues(uint256).tTransferAmount (#568)
Variable MDR._transferToExcluded(address,address,uint256).rTransferAmount (#737) is too similar to MDR._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable MDR._transferStandard(address,address,uint256).rTransferAmount (#728) is too similar to MDR._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable MDR._transferToExcluded(address,address,uint256).rTransferAmount (#737) is too similar to MDR._transferBothExcluded(address,address,uint256).tTransferAmount (#520)
Variable MDR._transferToExcluded(address,address,uint256).rTransferAmount (#737) is too similar to MDR._getValues(uint256).tTransferAmount (#560)
Variable MDR._transferFromExcluded(address,address,uint256).rTransferAmount (#747) is too similar to MDR._transferBothExcluded(address,address,uint256).tTransferAmount (#520)
Variable MDR.reflectionFromToken(uint256,bool).rTransferAmount (#490) is too similar to MDR._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable MDR.reflectionFromToken(uint256,bool).rTransferAmount (#490) is too similar to MDR._transferStandard(address,address,uint256).tTransferAmount (#728)
Variable MDR._transferStandard(address,address,uint256).rTransferAmount (#728) is too similar to MDR._getTValues(uint256).tTransferAmount (#568)
Variable MDR._getValues(uint256).rTransferAmount (#561) is too similar to MDR._transferBothExcluded(address,address,uint256).tTransferAmount (#520)
Variable MDR._transferStandard(address,address,uint256).rTransferAmount (#728) is too similar to MDR._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable MDR.reflectionFromToken(uint256,bool).rTransferAmount (#490) is too similar to MDR._getTValues(uint256).tTransferAmount (#568)
Variable MDR._transferStandard(address,address,uint256).rTransferAmount (#728) is too similar to MDR._transferBothExcluded(address,address,uint256).tTransferAmount (#520)
Variable MDR._transferStandard(address,address,uint256).rTransferAmount (#728) is too similar to MDR._getValues(uint256).tTransferAmount (#560)
Variable MDR.reflectionFromToken(uint256,bool).rTransferAmount (#490) is too similar to MDR._transferBothExcluded(address,address,uint256).tTransferAmount (#520)
Variable MDR.reflectionFromToken(uint256,bool).rTransferAmount (#490) is too similar to MDR._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable MDR.reflectionFromToken(uint256,bool).rTransferAmount (#490) is too similar to MDR._getValues(uint256).tTransferAmount (#560)
Prevent variables from having similar names.

Additional information: link

MDR.slitherConstructorVariables() (#378-757) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 18 (#389)
MDR.slitherConstructorVariables() (#378-757) uses literals with too many digits:
- _maxTxAmount = 30000000000 * 10 ** 18 (#406)
MDR.slitherConstructorVariables() (#378-757) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 30000000000 * 10 ** 18 (#407)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

MDR._decimals (#394) should be constant
MDR._developmentWalletAddress (#387) should be constant
MDR._name (#392) should be constant
MDR._symbol (#393) should be constant
MDR._tTotal (#389) should be constant
MDR.numTokensSellToAddToLiquidity (#407) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#180-183)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#184-188)
name() should be declared external:
- MDR.name() (#430-432)
symbol() should be declared external:
- MDR.symbol() (#433-435)
decimals() should be declared external:
- MDR.decimals() (#436-438)
totalSupply() should be declared external:
- MDR.totalSupply() (#439-441)
transfer(address,uint256) should be declared external:
- MDR.transfer(address,uint256) (#446-449)
allowance(address,address) should be declared external:
- MDR.allowance(address,address) (#450-452)
approve(address,uint256) should be declared external:
- MDR.approve(address,uint256) (#453-456)
transferFrom(address,address,uint256) should be declared external:
- MDR.transferFrom(address,address,uint256) (#457-461)
increaseAllowance(address,uint256) should be declared external:
- MDR.increaseAllowance(address,uint256) (#462-465)
decreaseAllowance(address,uint256) should be declared external:
- MDR.decreaseAllowance(address,uint256) (#466-469)
isExcludedFromReward(address) should be declared external:
- MDR.isExcludedFromReward(address) (#470-472)
totalFees() should be declared external:
- MDR.totalFees() (#473-475)
deliver(uint256) should be declared external:
- MDR.deliver(uint256) (#476-483)
reflectionFromToken(uint256,bool) should be declared external:
- MDR.reflectionFromToken(uint256,bool) (#484-493)
excludeFromReward(address) should be declared external:
- MDR.excludeFromReward(address) (#499-506)
excludeFromFee(address) should be declared external:
- MDR.excludeFromFee(address) (#530-532)
includeInFee(address) should be declared external:
- MDR.includeInFee(address) (#533-535)
setSwapAndLiquifyEnabled(bool) should be declared external:
- MDR.setSwapAndLiquifyEnabled(bool) (#550-553)
isExcludedFromFee(address) should be declared external:
- MDR.isExcludedFromFee(address) (#637-639)
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.

Contract has 13% buy tax and 12% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account link seems to be invalid


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


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 on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper 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 scam / price dump / death


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for MDR