MegaDoge Token Logo

MegaDoge Token

About MegaDoge

Listings

Token 2 years
CoinMarketCap 2 years
white paper

MegaDoge is an ecosystem where investors can have variable making money choices through staking and gaming.

Social

Laser Scorebeta Last Audit: 9 August 2022

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

Reentrancy in MegaDoge._transfer(address,address,uint256) (#674-711):
External calls:
- swapTokens(contractTokenBalance) (#692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
- buyBackTokens(balance.div(10)) (#700)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
External calls sending eth:
- swapTokens(contractTokenBalance) (#692)
- recipient.transfer(amount) (#968)
- buyBackTokens(balance.div(10)) (#700)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _liquidityFee = _previousLiquidityFee (#906)
- _liquidityFee = 0 (#901)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#877)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#802)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#793)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#794)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#813)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#823)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#814)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#804)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#825)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _rTotal = _rTotal.sub(rFee) (#832)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#879)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#812)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#822)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#803)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#824)
- buyBackTokens(balance.div(10)) (#700)
- inSwapAndLiquify = true (#533)
- inSwapAndLiquify = false (#535)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

MegaDoge.swapTokens(uint256) (#713-719) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#718)
Consider ordering multiplication before division.

Additional information: link

MegaDoge.addLiquidity(uint256,uint256) (#760-771) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#763-770)
Ensure that all the return values of the function calls are used.

Additional information: link

MegaDoge.allowance(address,address).owner (#579) shadows:
- Ownable.owner() (#227-229) (function)
MegaDoge._approve(address,address,uint256).owner (#666) shadows:
- Ownable.owner() (#227-229) (function)
Rename the local variables that shadow another component.

Additional information: link

MegaDoge.setMaxTxAmount(uint256) (#922-925) should emit an event for:
- _maxTxAmount = maxTxAmount (#924)
MegaDoge.setMarketingDivisor(uint256) (#927-929) should emit an event for:
- marketingDivisor = divisor (#928)
MegaDoge.setMinimumTokensBeforeSwap(uint256) (#931-933) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#932)
MegaDoge.setBuybackLimit(uint256) (#935-937) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 17 (#936)
Emit an event for critical parameter changes.

Additional information: link

MegaDoge.setMarketingAddress(address)._marketingAddress (#939) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#940)
Check that the address is not zero.

Additional information: link

Reentrancy in MegaDoge._transfer(address,address,uint256) (#674-711):
External calls:
- swapTokens(contractTokenBalance) (#692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
- buyBackTokens(balance.div(10)) (#700)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
External calls sending eth:
- swapTokens(contractTokenBalance) (#692)
- recipient.transfer(amount) (#968)
- buyBackTokens(balance.div(10)) (#700)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _previousLiquidityFee = _liquidityFee (#898)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _previousTaxFee = _taxFee (#897)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _tFeeTotal = _tFeeTotal.add(tFee) (#833)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _taxFee = _previousTaxFee (#905)
- _taxFee = 0 (#900)
Reentrancy in MegaDoge.constructor() (#538-551):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#542-543)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#547)
- _isExcludedFromFee[address(this)] = true (#548)
- uniswapV2Router = _uniswapV2Router (#545)
Reentrancy in MegaDoge.transferFrom(address,address,uint256) (#588-592):
External calls:
- _transfer(sender,recipient,amount) (#589)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- _transfer(sender,recipient,amount) (#589)
- recipient.transfer(amount) (#968)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#590)
- _allowances[owner][spender] = amount (#670)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MegaDoge._transfer(address,address,uint256) (#674-711):
External calls:
- swapTokens(contractTokenBalance) (#692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
- buyBackTokens(balance.div(10)) (#700)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
External calls sending eth:
- swapTokens(contractTokenBalance) (#692)
- recipient.transfer(amount) (#968)
- buyBackTokens(balance.div(10)) (#700)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#757)
- buyBackTokens(balance.div(10)) (#700)
- Transfer(sender,recipient,tTransferAmount) (#797)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- Transfer(sender,recipient,tTransferAmount) (#817)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- Transfer(sender,recipient,tTransferAmount) (#807)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- Transfer(sender,recipient,tTransferAmount) (#828)
- _tokenTransfer(from,to,amount,takeFee) (#710)
Reentrancy in MegaDoge.constructor() (#538-551):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#542-543)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#550)
Reentrancy in MegaDoge.swapETHForTokens(uint256) (#745-758):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#757)
Reentrancy in MegaDoge.swapTokensForEth(uint256) (#727-743):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#742)
Reentrancy in MegaDoge.transferFrom(address,address,uint256) (#588-592):
External calls:
- _transfer(sender,recipient,amount) (#589)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- _transfer(sender,recipient,amount) (#589)
- recipient.transfer(amount) (#968)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#671)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#590)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#140-149) uses assembly
- INLINE ASM (#147)
Address._functionCallWithValue(address,bytes,uint256,string) (#175-192) uses assembly
- INLINE ASM (#184-187)
Do not use evm assembly.

Additional information: link

MegaDoge.includeInReward(address) (#653-664) has costly operations inside a loop:
- _excluded.pop() (#660)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#175-192) is never used and should be removed
Address.functionCall(address,bytes) (#158-160) is never used and should be removed
Address.functionCall(address,bytes,string) (#162-164) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#166-168) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#170-173) is never used and should be removed
Address.isContract(address) (#140-149) is never used and should be removed
Address.sendValue(address,uint256) (#151-155) is never used and should be removed
Context._msgData() (#9-12) is never used and should be removed
MegaDoge.addLiquidity(uint256,uint256) (#760-771) is never used and should be removed
MegaDoge.reflectionFromToken(uint256,bool) (#625-634) is never used and should be removed
SafeMath.mod(uint256,uint256) (#128-130) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#132-135) is never used and should be removed
Remove unused functions.

Additional information: link

MegaDoge._rTotal (#487) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
MegaDoge._previousTaxFee (#499) is set pre-construction with a non-constant function or state variable:
- _taxFee
MegaDoge._previousLiquidityFee (#502) 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

Low level call in Address.sendValue(address,uint256) (#151-155):
- (success) = recipient.call{value: amount}() (#153)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#175-192):
- (success,returndata) = target.call{value: weiValue}(data) (#178)
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() (#297) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#298) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#314) is not in mixedCase
Function IUniswapV2Router01.WETH() (#335) is not in mixedCase
Parameter MegaDoge.calculateTaxFee(uint256)._amount (#882) is not in mixedCase
Parameter MegaDoge.calculateLiquidityFee(uint256)._amount (#888) is not in mixedCase
Parameter MegaDoge.setMinimumTokensBeforeSwap(uint256)._minimumTokensBeforeSwap (#931) is not in mixedCase
Parameter MegaDoge.setMarketingAddress(address)._marketingAddress (#939) is not in mixedCase
Parameter MegaDoge.setSwapAndLiquifyEnabled(bool)._enabled (#943) is not in mixedCase
Parameter MegaDoge.setBuyBackEnabled(bool)._enabled (#948) is not in mixedCase
Variable MegaDoge._maxTxAmount (#494) is not in mixedCase
Variable MegaDoge._taxFee (#498) is not in mixedCase
Variable MegaDoge._liquidityFee (#501) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in MegaDoge._transfer(address,address,uint256) (#674-711):
External calls:
- swapTokens(contractTokenBalance) (#692)
- recipient.transfer(amount) (#968)
External calls sending eth:
- swapTokens(contractTokenBalance) (#692)
- recipient.transfer(amount) (#968)
- buyBackTokens(balance.div(10)) (#700)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _liquidityFee = _previousLiquidityFee (#906)
- _liquidityFee = 0 (#901)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _previousLiquidityFee = _liquidityFee (#898)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _previousTaxFee = _taxFee (#897)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#877)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#802)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#793)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#794)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#813)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#823)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#814)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#804)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#825)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _rTotal = _rTotal.sub(rFee) (#832)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _tFeeTotal = _tFeeTotal.add(tFee) (#833)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#879)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#812)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#822)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#803)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#824)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _taxFee = _previousTaxFee (#905)
- _taxFee = 0 (#900)
- buyBackTokens(balance.div(10)) (#700)
- inSwapAndLiquify = true (#533)
- inSwapAndLiquify = false (#535)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#757)
- buyBackTokens(balance.div(10)) (#700)
- Transfer(sender,recipient,tTransferAmount) (#797)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- Transfer(sender,recipient,tTransferAmount) (#817)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- Transfer(sender,recipient,tTransferAmount) (#807)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- Transfer(sender,recipient,tTransferAmount) (#828)
- _tokenTransfer(from,to,amount,takeFee) (#710)
Reentrancy in MegaDoge.transferFrom(address,address,uint256) (#588-592):
External calls:
- _transfer(sender,recipient,amount) (#589)
- recipient.transfer(amount) (#968)
External calls sending eth:
- _transfer(sender,recipient,amount) (#589)
- recipient.transfer(amount) (#968)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#590)
- _allowances[owner][spender] = amount (#670)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#671)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#590)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#340) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#341)
Variable MegaDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#821) is too similar to MegaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#801)
Variable MegaDoge._getValues(uint256).rTransferAmount (#838) is too similar to MegaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#811)
Variable MegaDoge._transferStandard(address,address,uint256).rTransferAmount (#792) is too similar to MegaDoge._getValues(uint256).tTransferAmount (#837)
Variable MegaDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#821) is too similar to MegaDoge._getTValues(uint256).tTransferAmount (#845)
Variable MegaDoge._transferStandard(address,address,uint256).rTransferAmount (#792) is too similar to MegaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#801)
Variable MegaDoge.reflectionFromToken(uint256,bool).rTransferAmount (#631) is too similar to MegaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#811)
Variable MegaDoge.reflectionFromToken(uint256,bool).rTransferAmount (#631) is too similar to MegaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#821)
Variable MegaDoge._transferToExcluded(address,address,uint256).rTransferAmount (#801) is too similar to MegaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#811)
Variable MegaDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#853) is too similar to MegaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#811)
Variable MegaDoge._transferStandard(address,address,uint256).rTransferAmount (#792) is too similar to MegaDoge._getTValues(uint256).tTransferAmount (#845)
Variable MegaDoge._transferStandard(address,address,uint256).rTransferAmount (#792) is too similar to MegaDoge._transferStandard(address,address,uint256).tTransferAmount (#792)
Variable MegaDoge.reflectionFromToken(uint256,bool).rTransferAmount (#631) is too similar to MegaDoge._getValues(uint256).tTransferAmount (#837)
Variable MegaDoge._transferToExcluded(address,address,uint256).rTransferAmount (#801) is too similar to MegaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#801)
Variable MegaDoge.reflectionFromToken(uint256,bool).rTransferAmount (#631) is too similar to MegaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#801)
Variable MegaDoge._transferToExcluded(address,address,uint256).rTransferAmount (#801) is too similar to MegaDoge._getValues(uint256).tTransferAmount (#837)
Variable MegaDoge._getValues(uint256).rTransferAmount (#838) is too similar to MegaDoge._getTValues(uint256).tTransferAmount (#845)
Variable MegaDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#853) is too similar to MegaDoge._getTValues(uint256).tTransferAmount (#845)
Variable MegaDoge.reflectionFromToken(uint256,bool).rTransferAmount (#631) is too similar to MegaDoge._getTValues(uint256).tTransferAmount (#845)
Variable MegaDoge._transferToExcluded(address,address,uint256).rTransferAmount (#801) is too similar to MegaDoge._getTValues(uint256).tTransferAmount (#845)
Variable MegaDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#821) is too similar to MegaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#821)
Variable MegaDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#821) is too similar to MegaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#811)
Variable MegaDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#811) is too similar to MegaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#811)
Variable MegaDoge._transferStandard(address,address,uint256).rTransferAmount (#792) is too similar to MegaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#821)
Variable MegaDoge._transferStandard(address,address,uint256).rTransferAmount (#792) is too similar to MegaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#811)
Variable MegaDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#821) is too similar to MegaDoge._getValues(uint256).tTransferAmount (#837)
Variable MegaDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#821) is too similar to MegaDoge._transferStandard(address,address,uint256).tTransferAmount (#792)
Variable MegaDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#811) is too similar to MegaDoge._transferStandard(address,address,uint256).tTransferAmount (#792)
Variable MegaDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#811) is too similar to MegaDoge._getValues(uint256).tTransferAmount (#837)
Variable MegaDoge._transferToExcluded(address,address,uint256).rTransferAmount (#801) is too similar to MegaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#821)
Variable MegaDoge._getValues(uint256).rTransferAmount (#838) is too similar to MegaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#801)
Variable MegaDoge._transferToExcluded(address,address,uint256).rTransferAmount (#801) is too similar to MegaDoge._transferStandard(address,address,uint256).tTransferAmount (#792)
Variable MegaDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#811) is too similar to MegaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#801)
Variable MegaDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#853) is too similar to MegaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#801)
Variable MegaDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#853) is too similar to MegaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#821)
Variable MegaDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#853) is too similar to MegaDoge._transferStandard(address,address,uint256).tTransferAmount (#792)
Variable MegaDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#853) is too similar to MegaDoge._getValues(uint256).tTransferAmount (#837)
Variable MegaDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#811) is too similar to MegaDoge._getTValues(uint256).tTransferAmount (#845)
Variable MegaDoge._getValues(uint256).rTransferAmount (#838) is too similar to MegaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#821)
Variable MegaDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#811) is too similar to MegaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#821)
Variable MegaDoge._getValues(uint256).rTransferAmount (#838) is too similar to MegaDoge._transferStandard(address,address,uint256).tTransferAmount (#792)
Variable MegaDoge._getValues(uint256).rTransferAmount (#838) is too similar to MegaDoge._getValues(uint256).tTransferAmount (#837)
Variable MegaDoge.reflectionFromToken(uint256,bool).rTransferAmount (#631) is too similar to MegaDoge._transferStandard(address,address,uint256).tTransferAmount (#792)
Prevent variables from having similar names.

Additional information: link

MegaDoge.setMaxTxAmount(uint256) (#922-925) uses literals with too many digits:
- require(bool,string)(maxTxAmount >= 10000000000000,MegaDoge: MaxtxAmount >= 10000000000000 ) (#923)
MegaDoge.slitherConstructorVariables() (#470-973) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#475)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#210) is never used in MegaDoge (#470-973)
Ownable._lockTime (#211) is never used in MegaDoge (#470-973)
Remove unused state variables.

Additional information: link

MegaDoge._decimals (#492) should be constant
MegaDoge._name (#490) should be constant
MegaDoge._symbol (#491) should be constant
MegaDoge._tTotal (#486) should be constant
Ownable._lockTime (#211) should be constant
Ownable._previousOwner (#210) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#246-249)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#255-259)
name() should be declared external:
- MegaDoge.name() (#553-555)
symbol() should be declared external:
- MegaDoge.symbol() (#557-559)
decimals() should be declared external:
- MegaDoge.decimals() (#561-563)
totalSupply() should be declared external:
- MegaDoge.totalSupply() (#565-567)
transfer(address,uint256) should be declared external:
- MegaDoge.transfer(address,uint256) (#574-577)
allowance(address,address) should be declared external:
- MegaDoge.allowance(address,address) (#579-581)
approve(address,uint256) should be declared external:
- MegaDoge.approve(address,uint256) (#583-586)
transferFrom(address,address,uint256) should be declared external:
- MegaDoge.transferFrom(address,address,uint256) (#588-592)
increaseAllowance(address,uint256) should be declared external:
- MegaDoge.increaseAllowance(address,uint256) (#594-597)
decreaseAllowance(address,uint256) should be declared external:
- MegaDoge.decreaseAllowance(address,uint256) (#599-602)
isExcludedFromReward(address) should be declared external:
- MegaDoge.isExcludedFromReward(address) (#604-606)
minimumTokensBeforeSwapAmount() should be declared external:
- MegaDoge.minimumTokensBeforeSwapAmount() (#608-610)
buyBackUpperLimitAmount() should be declared external:
- MegaDoge.buyBackUpperLimitAmount() (#612-614)
deliver(uint256) should be declared external:
- MegaDoge.deliver(uint256) (#616-623)
excludeFromReward(address) should be declared external:
- MegaDoge.excludeFromReward(address) (#643-651)
isExcludedFromFee(address) should be declared external:
- MegaDoge.isExcludedFromFee(address) (#909-911)
excludeFromFee(address) should be declared external:
- MegaDoge.excludeFromFee(address) (#913-915)
includeInFee(address) should be declared external:
- MegaDoge.includeInFee(address) (#917-919)
setBuyBackEnabled(bool) should be declared external:
- MegaDoge.setBuyBackEnabled(bool) (#948-951)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Token has only one trading pair

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


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinGecko

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for MegaDoge

News for MegaDoge