MetaDoctor Token Logo

MEDOC [MetaDoctor] Token

About MEDOC

Listings

Token 2 years
CoinMarketCap 2 years
white paper

Web: https://www.metadoctorcoin.com
Twitter: https://twitter.com/metadoctorcoin
📝CA: 0x25815d4b4e40b30039f10a4ced43a98ab8176e63

Social

Laser Scorebeta Last Audit: 10 February 2022

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

MetaDoctorCoin.addLiquidity(uint256,uint256) (#1053-1066) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in MetaDoctorCoin._transfer(address,address,uint256) (#983-1010):
External calls:
- swapAndLiquify(contractTokenBalance) (#1005)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1044-1050)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1005)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1009)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#931)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurn) (#1122)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1157)
- _rOwned[devWallet] = _rOwned[devWallet].add(rdev) (#1150)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rMarketing) (#1136)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1168)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#872)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1159)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1169)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#874)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1106)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1107)
- _tokenTransfer(from,to,amount) (#1009)
- _rTotal = _rTotal.sub(rFee) (#886)
- _tokenTransfer(from,to,amount) (#1009)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#933)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#871)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1167)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1158)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#873)
Apply the check-effects-interactions pattern.

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.

MetaDoctorCoin.addLiquidity(uint256,uint256) (#1053-1066) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
Ensure that all the return values of the function calls are used.

Additional information: link

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

Additional information: link

MetaDoctorCoin.setmarketingWallet(address).newWallet (#1214) lacks a zero-check on :
- marketingWallet = newWallet (#1215)
MetaDoctorCoin.setdevWallet(address).newWallet (#1218) lacks a zero-check on :
- devWallet = newWallet (#1219)
Check that the address is not zero.

Additional information: link

MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256) (#1114-1125) performs a multiplication on the result of a division:
-tBurn = tAmount.div(100).mul(_burnFee) (#1118)
MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256) (#1128-1139) performs a multiplication on the result of a division:
-tMarketing = tAmount.div(100).mul(_marketingFee) (#1132)
MetaDoctorCoin.takeDev(address,uint256,uint256,uint256) (#1142-1153) performs a multiplication on the result of a division:
-tdev = tAmount.div(100).mul(_devFee) (#1146)
Consider ordering multiplication before division.

Additional information: link

MetaDoctorCoin.allowance(address,address).owner (#788) shadows:
- Ownable.owner() (#411-413) (function)
MetaDoctorCoin._approve(address,address,uint256).owner (#975) shadows:
- Ownable.owner() (#411-413) (function)
Rename the local variables that shadow another component.

Additional information: link

MetaDoctorCoin.setTaxFeePercent(uint256) (#1222-1224) should emit an event for:
- _taxFee = taxFee (#1223)
MetaDoctorCoin.setLiquidityFeePercent(uint256) (#1226-1228) should emit an event for:
- _liquidityFee = liquidityFee (#1227)
MetaDoctorCoin.setChartityFeePercent(uint256) (#1230-1232) should emit an event for:
- _marketingFee = marketingFee (#1231)
MetaDoctorCoin.setDevFeePercent(uint256) (#1234-1236) should emit an event for:
- _devFee = devFee (#1235)
MetaDoctorCoin.setBurnFeePercent(uint256) (#1237-1239) should emit an event for:
- _burnFee = burnFee (#1238)
MetaDoctorCoin.setNumTokensSellToAddToLiquidity(uint256,uint256) (#1241-1243) should emit an event for:
- numTokensSellToAddToLiquidity = newAmt * 10 ** decimal (#1242)
MetaDoctorCoin.setMaxTxAmount(uint256,uint256) (#1245-1248) should emit an event for:
- _maxTxAmount = maxTxAmount * 10 ** decimal (#1247)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in MetaDoctorCoin._transfer(address,address,uint256) (#983-1010):
External calls:
- swapAndLiquify(contractTokenBalance) (#1005)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1044-1050)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1005)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1009)
- _burnFee = _previousBurnFee (#966)
- _burnFee = 0 (#959)
- _tokenTransfer(from,to,amount) (#1009)
- _devFee = _previousDevFee (#968)
- _devFee = 0 (#960)
- _tokenTransfer(from,to,amount) (#1009)
- _liquidityFee = _previousLiquidityFee (#965)
- _liquidityFee = 0 (#957)
- _tokenTransfer(from,to,amount) (#1009)
- _marketingFee = _previousmarketingFee (#967)
- _marketingFee = 0 (#958)
- _tokenTransfer(from,to,amount) (#1009)
- _previousBurnFee = _burnFee (#953)
- _tokenTransfer(from,to,amount) (#1009)
- _previousDevFee = _devFee (#955)
- _tokenTransfer(from,to,amount) (#1009)
- _previousLiquidityFee = _liquidityFee (#952)
- _tokenTransfer(from,to,amount) (#1009)
- _previousTaxFee = _taxFee (#951)
- _tokenTransfer(from,to,amount) (#1009)
- _previousmarketingFee = _marketingFee (#954)
- _tokenTransfer(from,to,amount) (#1009)
- _tFeeTotal = _tFeeTotal.add(tFee) (#887)
- _tokenTransfer(from,to,amount) (#1009)
- _taxFee = _previousTaxFee (#964)
- _taxFee = 0 (#956)
Reentrancy in MetaDoctorCoin.constructor() (#742-760):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#749-750)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#756)
- _isExcludedFromFee[address(this)] = true (#757)
- uniswapV2Router = _uniswapV2Router (#753)
Reentrancy in MetaDoctorCoin.setRouterAddress(address) (#1252-1256):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1254)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#1255)
Reentrancy in MetaDoctorCoin.swapAndLiquify(uint256) (#1012-1033):
External calls:
- swapTokensForEth(half) (#1024)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1044-1050)
- addLiquidity(otherHalf,newBalance) (#1030)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1030)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1030)
- _allowances[owner][spender] = amount (#979)
Reentrancy in MetaDoctorCoin.transferFrom(address,address,uint256) (#797-801):
External calls:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1044-1050)
External calls sending eth:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#799)
- _allowances[owner][spender] = amount (#979)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MetaDoctorCoin._transfer(address,address,uint256) (#983-1010):
External calls:
- swapAndLiquify(contractTokenBalance) (#1005)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1044-1050)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1005)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
Event emitted after the call(s):
- Transfer(sender,devWallet,tdev) (#1151)
- _tokenTransfer(from,to,amount) (#1009)
- Transfer(sender,deadAddress,tBurn) (#1123)
- _tokenTransfer(from,to,amount) (#1009)
- Transfer(sender,marketingWallet,tMarketing) (#1137)
- _tokenTransfer(from,to,amount) (#1009)
- Transfer(sender,recipient,tTransferAmount) (#1172)
- _tokenTransfer(from,to,amount) (#1009)
- Transfer(sender,recipient,tTransferAmount) (#1162)
- _tokenTransfer(from,to,amount) (#1009)
- Transfer(sender,recipient,tTransferAmount) (#877)
- _tokenTransfer(from,to,amount) (#1009)
- Transfer(sender,recipient,tTransferAmount) (#1110)
- _tokenTransfer(from,to,amount) (#1009)
Reentrancy in MetaDoctorCoin.constructor() (#742-760):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#749-750)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#759)
Reentrancy in MetaDoctorCoin.swapAndLiquify(uint256) (#1012-1033):
External calls:
- swapTokensForEth(half) (#1024)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1044-1050)
- addLiquidity(otherHalf,newBalance) (#1030)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1030)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#980)
- addLiquidity(otherHalf,newBalance) (#1030)
- SwapAndLiquify(half,newBalance,otherHalf) (#1032)
Reentrancy in MetaDoctorCoin.transferFrom(address,address,uint256) (#797-801):
External calls:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1044-1050)
External calls sending eth:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1058-1065)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#980)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#799)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#263-272) uses assembly
- INLINE ASM (#270)
Address._functionCallWithValue(address,bytes,uint256,string) (#356-377) uses assembly
- INLINE ASM (#369-372)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#356-377) is never used and should be removed
Address.functionCall(address,bytes) (#316-318) is never used and should be removed
Address.functionCall(address,bytes,string) (#326-328) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#341-343) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#351-354) is never used and should be removed
Address.isContract(address) (#263-272) is never used and should be removed
Address.sendValue(address,uint256) (#290-296) is never used and should be removed
Context._msgData() (#235-238) is never used and should be removed
SafeMath.mod(uint256,uint256) (#208-210) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#224-227) is never used and should be removed
Remove unused functions.

Additional information: link

MetaDoctorCoin._rTotal (#693) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
MetaDoctorCoin._previousDevFee (#707) is set pre-construction with a non-constant function or state variable:
- _devFee
MetaDoctorCoin._previousTaxFee (#708) is set pre-construction with a non-constant function or state variable:
- _taxFee
MetaDoctorCoin._previousLiquidityFee (#709) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
MetaDoctorCoin._previousmarketingFee (#710) is set pre-construction with a non-constant function or state variable:
- _marketingFee
MetaDoctorCoin._previousBurnFee (#711) is set pre-construction with a non-constant function or state variable:
- _burnFee
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

Low level call in Address.sendValue(address,uint256) (#290-296):
- (success) = recipient.call{value: amount}() (#294)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#356-377):
- (success,returndata) = target.call{value: weiValue}(data) (#360)
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() (#502) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#503) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#519) is not in mixedCase
Function IUniswapV2Router01.WETH() (#540) is not in mixedCase
Parameter MetaDoctorCoin.calculateTaxFee(uint256)._amount (#936) is not in mixedCase
Parameter MetaDoctorCoin.calculateLiquidityFee(uint256)._amount (#942) is not in mixedCase
Parameter MetaDoctorCoin.setSwapAndLiquifyEnabled(bool)._enabled (#1258) is not in mixedCase
Variable MetaDoctorCoin._devFee (#701) is not in mixedCase
Variable MetaDoctorCoin._burnFee (#702) is not in mixedCase
Variable MetaDoctorCoin._taxFee (#703) is not in mixedCase
Variable MetaDoctorCoin._liquidityFee (#704) is not in mixedCase
Variable MetaDoctorCoin._marketingFee (#705) is not in mixedCase
Variable MetaDoctorCoin._maxTxAmount (#726) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#236)" inContext (#230-239)
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 (#545) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#546)
Variable MetaDoctorCoin.reflectionFromToken(uint256,bool).rTransferAmount (#836) is too similar to MetaDoctorCoin._getTValues(uint256).tTransferAmount (#899)
Variable MetaDoctorCoin.reflectionFromToken(uint256,bool).rTransferAmount (#836) is too similar to MetaDoctorCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#870)
Variable MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to MetaDoctorCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#870)
Variable MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1142) is too similar to MetaDoctorCoin._getTValues(uint256).tTransferAmount (#899)
Variable MetaDoctorCoin._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to MetaDoctorCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable MetaDoctorCoin._getValues(uint256).rTransferAmount (#892) is too similar to MetaDoctorCoin._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to MetaDoctorCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1142) is too similar to MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to MetaDoctorCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable MetaDoctorCoin._getValues(uint256).rTransferAmount (#892) is too similar to MetaDoctorCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable MetaDoctorCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to MetaDoctorCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable MetaDoctorCoin._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to MetaDoctorCoin._getTValues(uint256).tTransferAmount (#899)
Variable MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to MetaDoctorCoin._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable MetaDoctorCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#870) is too similar to MetaDoctorCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable MetaDoctorCoin._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to MetaDoctorCoin._getTValues(uint256).tTransferAmount (#899)
Variable MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1142) is too similar to MetaDoctorCoin._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable MetaDoctorCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to MetaDoctorCoin._getTValues(uint256).tTransferAmount (#899)
Variable MetaDoctorCoin.reflectionFromToken(uint256,bool).rTransferAmount (#836) is too similar to MetaDoctorCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1142) is too similar to MetaDoctorCoin._getValues(uint256).tTransferAmount (#891)
Variable MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1142) is too similar to MetaDoctorCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to MetaDoctorCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#870)
Variable MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1142) is too similar to MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable MetaDoctorCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#907) is too similar to MetaDoctorCoin._getTValues(uint256).tTransferAmount (#899)
Variable MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to MetaDoctorCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable MetaDoctorCoin._getValues(uint256).rTransferAmount (#892) is too similar to MetaDoctorCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#870)
Variable MetaDoctorCoin._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to MetaDoctorCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable MetaDoctorCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#870) is too similar to MetaDoctorCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#870)
Variable MetaDoctorCoin._getValues(uint256).rTransferAmount (#892) is too similar to MetaDoctorCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable MetaDoctorCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to MetaDoctorCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to MetaDoctorCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to MetaDoctorCoin._getTValues(uint256).tTransferAmount (#899)
Variable MetaDoctorCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to MetaDoctorCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable MetaDoctorCoin._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to MetaDoctorCoin._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable MetaDoctorCoin._getValues(uint256).rTransferAmount (#892) is too similar to MetaDoctorCoin._getTValues(uint256).tTransferAmount (#899)
Variable MetaDoctorCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to MetaDoctorCoin._getTValues(uint256).tTransferAmount (#899)
Variable MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1142) is too similar to MetaDoctorCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#870)
Variable MetaDoctorCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to MetaDoctorCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#870)
Variable MetaDoctorCoin._getValues(uint256).rTransferAmount (#892) is too similar to MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable MetaDoctorCoin.reflectionFromToken(uint256,bool).rTransferAmount (#836) is too similar to MetaDoctorCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable MetaDoctorCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#870) is too similar to MetaDoctorCoin._getTValues(uint256).tTransferAmount (#899)
Variable MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1142) is too similar to MetaDoctorCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable MetaDoctorCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#907) is too similar to MetaDoctorCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable MetaDoctorCoin._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to MetaDoctorCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#870)
Variable MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1142) is too similar to MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1142)
Variable MetaDoctorCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to MetaDoctorCoin._getValues(uint256).tTransferAmount (#891)
Variable MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable MetaDoctorCoin._getValues(uint256).rTransferAmount (#892) is too similar to MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable MetaDoctorCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1142)
Variable MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to MetaDoctorCoin._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable MetaDoctorCoin._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to MetaDoctorCoin._getValues(uint256).tTransferAmount (#891)
Variable MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to MetaDoctorCoin._getValues(uint256).tTransferAmount (#891)
Variable MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1142)
Variable MetaDoctorCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#907) is too similar to MetaDoctorCoin._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable MetaDoctorCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable MetaDoctorCoin._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable MetaDoctorCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#907) is too similar to MetaDoctorCoin._getValues(uint256).tTransferAmount (#891)
Variable MetaDoctorCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#870) is too similar to MetaDoctorCoin._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable MetaDoctorCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#907) is too similar to MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1142)
Variable MetaDoctorCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#870) is too similar to MetaDoctorCoin._getValues(uint256).tTransferAmount (#891)
Variable MetaDoctorCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#870) is too similar to MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1142)
Variable MetaDoctorCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable MetaDoctorCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to MetaDoctorCoin._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable MetaDoctorCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to MetaDoctorCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable MetaDoctorCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to MetaDoctorCoin._getValues(uint256).tTransferAmount (#891)
Variable MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable MetaDoctorCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1142)
Variable MetaDoctorCoin.reflectionFromToken(uint256,bool).rTransferAmount (#836) is too similar to MetaDoctorCoin._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable MetaDoctorCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#907) is too similar to MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable MetaDoctorCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to MetaDoctorCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#870)
Variable MetaDoctorCoin.reflectionFromToken(uint256,bool).rTransferAmount (#836) is too similar to MetaDoctorCoin._getValues(uint256).tTransferAmount (#891)
Variable MetaDoctorCoin.reflectionFromToken(uint256,bool).rTransferAmount (#836) is too similar to MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1142)
Variable MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to MetaDoctorCoin._getValues(uint256).tTransferAmount (#891)
Variable MetaDoctorCoin._getValues(uint256).rTransferAmount (#892) is too similar to MetaDoctorCoin._getValues(uint256).tTransferAmount (#891)
Variable MetaDoctorCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#870) is too similar to MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable MetaDoctorCoin._getValues(uint256).rTransferAmount (#892) is too similar to MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1142)
Variable MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1142)
Variable MetaDoctorCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#907) is too similar to MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable MetaDoctorCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable MetaDoctorCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#907) is too similar to MetaDoctorCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable MetaDoctorCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#870) is too similar to MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable MetaDoctorCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#870) is too similar to MetaDoctorCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable MetaDoctorCoin.reflectionFromToken(uint256,bool).rTransferAmount (#836) is too similar to MetaDoctorCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable MetaDoctorCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable MetaDoctorCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#907) is too similar to MetaDoctorCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#870)
Variable MetaDoctorCoin._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to MetaDoctorCoin.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1142)
Variable MetaDoctorCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to MetaDoctorCoin._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable MetaDoctorCoin.reflectionFromToken(uint256,bool).rTransferAmount (#836) is too similar to MetaDoctorCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Prevent variables from having similar names.

Additional information: link

MetaDoctorCoin.prepareFoePresale() (#1175-1186) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 12 (#1184)
MetaDoctorCoin.afterPresale() (#1188-1204) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 12 (#1202)
MetaDoctorCoin.slitherConstructorVariables() (#678-1264) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 12 (#692)
MetaDoctorCoin.slitherConstructorVariables() (#678-1264) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#713)
MetaDoctorCoin.slitherConstructorVariables() (#678-1264) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 50000000000 * 10 ** 12 (#725)
MetaDoctorCoin.slitherConstructorVariables() (#678-1264) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 12 (#726)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

MetaDoctorCoin._decimals (#698) should be constant
MetaDoctorCoin._name (#696) should be constant
MetaDoctorCoin._symbol (#697) should be constant
MetaDoctorCoin._tTotal (#692) should be constant
MetaDoctorCoin.deadAddress (#713) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#430-433)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#439-443)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#445-447)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#450-455)
unlock() should be declared external:
- Ownable.unlock() (#458-463)
name() should be declared external:
- MetaDoctorCoin.name() (#762-764)
symbol() should be declared external:
- MetaDoctorCoin.symbol() (#766-768)
decimals() should be declared external:
- MetaDoctorCoin.decimals() (#770-772)
totalSupply() should be declared external:
- MetaDoctorCoin.totalSupply() (#774-776)
transfer(address,uint256) should be declared external:
- MetaDoctorCoin.transfer(address,uint256) (#783-786)
allowance(address,address) should be declared external:
- MetaDoctorCoin.allowance(address,address) (#788-790)
approve(address,uint256) should be declared external:
- MetaDoctorCoin.approve(address,uint256) (#792-795)
transferFrom(address,address,uint256) should be declared external:
- MetaDoctorCoin.transferFrom(address,address,uint256) (#797-801)
increaseAllowance(address,uint256) should be declared external:
- MetaDoctorCoin.increaseAllowance(address,uint256) (#803-806)
decreaseAllowance(address,uint256) should be declared external:
- MetaDoctorCoin.decreaseAllowance(address,uint256) (#808-811)
isExcludedFromReward(address) should be declared external:
- MetaDoctorCoin.isExcludedFromReward(address) (#813-815)
totalFees() should be declared external:
- MetaDoctorCoin.totalFees() (#817-819)
deliver(uint256) should be declared external:
- MetaDoctorCoin.deliver(uint256) (#821-828)
reflectionFromToken(uint256,bool) should be declared external:
- MetaDoctorCoin.reflectionFromToken(uint256,bool) (#830-839)
excludeFromReward(address) should be declared external:
- MetaDoctorCoin.excludeFromReward(address) (#847-854)
isExcludedFromFee(address) should be declared external:
- MetaDoctorCoin.isExcludedFromFee(address) (#971-973)
excludeFromFee(address) should be declared external:
- MetaDoctorCoin.excludeFromFee(address) (#1206-1208)
includeInFee(address) should be declared external:
- MetaDoctorCoin.includeInFee(address) (#1210-1212)
setRouterAddress(address) should be declared external:
- MetaDoctorCoin.setRouterAddress(address) (#1252-1256)
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 number of PancakeSwap swaps is less than 1. Token is either dead or inactive.

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


Token is deployed only at one blockchain


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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


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 scam / price dump / death


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


Token has no active CoinGecko listing / rank

Price for MEDOC

News for MEDOC