Meme Doge Coin Token Logo

MemeDoge [Meme Doge Coin] Token

About MemeDoge

Listings

Token 4 years
white paper

A meme coin cultural ambassador aims to spread the meme culture throughout the universe.

Laser Scorebeta Last Audit: 18 January 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...)

MemeDoge.withdrawStuckTokens(address,uint256) (#1061-1063) ignores return value by IERC20(_token).transfer(msg.sender,_amount) (#1062)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Reentrancy in MemeDoge._transfer(address,address,uint256) (#999-1041):
External calls:
- swapTokensForBnB(swapTokensAtAmount) (#1020)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketAddress,block.timestamp + 360) (#1052-1058)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#362)
- super._transfer(from,burnAddress,forBurn) (#1035)
- Transfer(sender,recipient,amount) (#362)
- super._transfer(from,address(this),forMarket) (#1032)
- Transfer(sender,recipient,amount) (#362)
- super._transfer(from,to,amount) (#1040)
Reentrancy in MemeDoge.constructor() (#922-937):
External calls:
- updatePancakeRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#925)
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#941-942)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#383)
- _mint(owner(),100 * 10 ** 9 * (10 ** decimals())) (#935)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MemeDoge._transfer(address,address,uint256) (#999-1041):
External calls:
- swapTokensForBnB(swapTokensAtAmount) (#1020)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketAddress,block.timestamp + 360) (#1052-1058)
State variables written after the call(s):
- super._transfer(from,address(this),forMarket) (#1032)
- _balances[sender] = senderBalance - amount (#358)
- _balances[recipient] += amount (#360)
- super._transfer(from,burnAddress,forBurn) (#1035)
- _balances[sender] = senderBalance - amount (#358)
- _balances[recipient] += amount (#360)
- super._transfer(from,to,amount) (#1040)
- _balances[sender] = senderBalance - amount (#358)
- _balances[recipient] += amount (#360)
- swapping = false (#1021)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MemeDoge.constructor() (#922-937):
External calls:
- updatePancakeRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#925)
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#941-942)
State variables written after the call(s):
- _mint(owner(),100 * 10 ** 9 * (10 ** decimals())) (#935)
- _balances[account] += amount (#382)
- excludeFromAllLimits(owner(),true) (#927)
- _isExcludedFromFees[account] = status (#946)
- excludeFromAllLimits(address(this),true) (#928)
- _isExcludedFromFees[account] = status (#946)
- excludeFromAllLimits(burnAddress,true) (#929)
- _isExcludedFromFees[account] = status (#946)
- excludeFromAllLimits(owner(),true) (#927)
- _isExcludedFromMaxTxLimit[account] = status (#947)
- excludeFromAllLimits(address(this),true) (#928)
- _isExcludedFromMaxTxLimit[account] = status (#947)
- excludeFromAllLimits(burnAddress,true) (#929)
- _isExcludedFromMaxTxLimit[account] = status (#947)
- _mint(owner(),100 * 10 ** 9 * (10 ** decimals())) (#935)
- _totalSupply += amount (#381)
- maxTransactionAmount = totalSupply().div(100) (#936)
Apply the check-effects-interactions pattern.

Additional information: link

Context._msgData() (#10-12) is never used and should be removed
ERC20._burn(address,uint256) (#399-414) is never used and should be removed
SafeMath.add(uint256,uint256) (#559-561) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#657-666) is never used and should be removed
SafeMath.mod(uint256,uint256) (#617-619) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#683-692) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#634-643) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#488-494) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#530-535) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#542-547) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#513-523) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#501-506) is never used and should be removed
Remove unused functions.

Additional information: link

MemeDoge.swapTokensAtAmount (#907) is set pre-construction with a non-constant function or state variable:
- 100000 * (10 ** decimals())
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version^0.8.0 (#3) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Function IPancakePair.DOMAIN_SEPARATOR() (#726) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#727) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#744) is not in mixedCase
Function IPancakeRouter01.WETH() (#764) is not in mixedCase
Parameter MemeDoge.withdrawStuckTokens(address,uint256)._token (#1061) is not in mixedCase
Parameter MemeDoge.withdrawStuckTokens(address,uint256)._amount (#1061) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#769) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#770)
Prevent variables from having similar names.

Additional information: link

MemeDoge.slitherConstructorVariables() (#897-1065) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#903)
MemeDoge.slitherConstructorVariables() (#897-1065) uses literals with too many digits:
- swapTokensAtAmount = 100000 * (10 ** decimals()) (#907)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#17) is never used in MemeDoge (#897-1065)
Remove unused state variables.

Additional information: link

MemeDoge.burnAddress (#903) should be constant
MemeDoge.burnFee (#905) should be constant
MemeDoge.marketFee (#904) should be constant
Ownable._previousOwner (#17) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#52-55)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#61-65)
name() should be declared external:
- ERC20.name() (#186-188)
symbol() should be declared external:
- ERC20.symbol() (#194-196)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#237-240)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#245-247)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#256-259)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#274-288)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#302-305)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#321-329)
setSwapTokensAtAmount(uint256) should be declared external:
- MemeDoge.setSwapTokensAtAmount(uint256) (#950-953)
setMarketAddress(address) should be declared external:
- MemeDoge.setMarketAddress(address) (#955-959)
excludeFromFees(address,bool) should be declared external:
- MemeDoge.excludeFromFees(address,bool) (#961-966)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- MemeDoge.excludeMultipleAccountsFromFees(address[],bool) (#968-974)
excludeFromMaxTxLimit(address,bool) should be declared external:
- MemeDoge.excludeFromMaxTxLimit(address,bool) (#976-981)
excludeMultipleAccountsFromMaxTxLimit(address[],bool) should be declared external:
- MemeDoge.excludeMultipleAccountsFromMaxTxLimit(address[],bool) (#983-989)
isExcludedFromFees(address) should be declared external:
- MemeDoge.isExcludedFromFees(address) (#991-993)
isExcludedFromMaxTxLimit(address) should be declared external:
- MemeDoge.isExcludedFromMaxTxLimit(address) (#995-997)
withdrawStuckTokens(address,uint256) should be declared external:
- MemeDoge.withdrawStuckTokens(address,uint256) (#1061-1063)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find token contract audit


Unable to find audit link on the website


Unable to find Telegram link on the website


Unable to find Twitter 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


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

Price for MemeDoge

News for MemeDoge