Doctor Monkey Token Logo

DMONKEY [Doctor Monkey] Token

About DMONKEY

Listings

Token 23 months
white paper

✋ Welcome to Doctor Monkey Token - The new GEM on BSC 💎

📃 Doctor Monkey ($DMONKEY) is a hyper-deflationary decentralized buyback token, a project that aims to be the most known and most used cryptocurrency in the world.

🔹 Seed Sale on June 1, 2022 🤑
🔹 Presale and launch on PCS in June, 2022 🔥
🔹 Best Charitable Community Coin 👩‍⚕️
🔹 Our mission is to contribute to charities, for people, especially children.

✅ NFT Collection
✅ Long term plan
✅ Huge Marketing Campaign
✅ Burn and buyback token
✅ Liquidity will be locked via PinkSale

🌎 Website: https://doctormonkey.org/
📃 Docs: https://docs.doctormonkey.org/
🔊 Channel TG: https://t.me/DoctorMonkeyChannel
👥 Main TG: https://t.me/DoctorMonkeyOfficial
💪 TG Army Group: https://t.me/DoctorMonkeyArmy
🐦 Twitter: https://twitter.com/DoctorMonkey22
▶️ Youtube: https://www.youtube.com/c/DoctorMonkeyOfficial
👥 Discord: https://discord.gg/GYTYVvvnHT

Social

Laser Scorebeta Last Audit: 24 June 2022

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

Reentrancy in DMONKEY._transfer(address,address,uint256) (#618-760):
External calls:
- swapTokens(tokensToSwap) (#675)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#603-609)
- (success) = address(marketingAddress).call{value: marketingTokens}() (#696-698)
- (success) = address(teamAddress).call{value: teamTokens}() (#707-709)
- (success) = address(buybackAddress).call{value: buybackTokens}() (#718-720)
External calls sending eth:
- (success) = address(marketingAddress).call{value: marketingTokens}() (#696-698)
- (success) = address(teamAddress).call{value: teamTokens}() (#707-709)
- (success) = address(buybackAddress).call{value: buybackTokens}() (#718-720)
State variables written after the call(s):
- super._transfer(from,address(this),txFees) (#745)
- _balances[sender] = senderBalance - amount (#251)
- _balances[recipient] += amount (#252)
- super._transfer(from,address(this),txFees_scope_2) (#753)
- _balances[sender] = senderBalance - amount (#251)
- _balances[recipient] += amount (#252)
- super._transfer(from,to,amount) (#759)
- _balances[sender] = senderBalance - amount (#251)
- _balances[recipient] += amount (#252)
Apply the check-effects-interactions pattern.

Additional information: link


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


Contract ownership is not renounced (belongs to a wallet)

DMONKEY._transfer(address,address,uint256).success_scope_0 (#707) is a local variable never initialized
DMONKEY._transfer(address,address,uint256).success_scope_1 (#718) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

DMONKEY.setminimumWeiForTokenomics(uint256) (#450-452) should emit an event for:
- minimumWeiForTokenomics = _value (#451)
DMONKEY.setMaxSellTxAmount(uint256) (#467-473) should emit an event for:
- maxSellTxAmount = _value * 10 ** decimals() (#472)
DMONKEY.setMaxBuyTxAmount(uint256) (#475-481) should emit an event for:
- maxBuyTxAmount = _value * 10 ** decimals() (#480)
DMONKEY.setMaxWallet(bool,uint256) (#483-490) should emit an event for:
- maxWallet = max * 10 ** decimals() (#489)
DMONKEY.setFee(bool,uint256,uint256,uint256) (#492-509) should emit an event for:
- buyTeamFee = team (#499)
- buyMarketingFee = marketing (#500)
- buyBuybackFee = buyback (#501)
- totalBuyFee = buyMarketingFee + buyTeamFee + buyBuybackFee (#502)
- sellTeamFee = team (#504)
- sellMarketingFee = marketing (#505)
- sellBuybackFee = buyback (#506)
- totalSellFee = sellMarketingFee + sellTeamFee + sellBuybackFee (#507)
DMONKEY.setSwapAndLiquify(bool,uint256,uint256,uint256) (#521-531) should emit an event for:
- intervalSecondsForSwap = _intervalSecondsForSwap (#528)
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap * 10 ** decimals() (#529)
- tokensToSwap = _tokensToSwap * 10 ** decimals() (#530)
DMONKEY.setLimitz(uint256,uint256,uint256) (#556-573) should emit an event for:
- maxBuyTxAmount = maxbuy * 10 ** decimals() (#570)
- maxSellTxAmount = maxsell * 10 ** decimals() (#571)
- maxWallet = maxWall * 10 ** decimals() (#572)
Emit an event for critical parameter changes.

Additional information: link

DMONKEY.updateUniswapV2Router(address,bool,address)._uniswapV2Pair (#394-396) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#397)
DMONKEY.updateUniswapV2Router(address,bool,address).pair (#386) lacks a zero-check on :
- uniswapV2Pair = pair (#399)
DMONKEY.setFeesAddress(address,address,address).marketing (#455) lacks a zero-check on :
- marketingAddress = marketing (#459)
DMONKEY.setFeesAddress(address,address,address).team (#456) lacks a zero-check on :
- teamAddress = team (#460)
DMONKEY.setFeesAddress(address,address,address).buyback (#457) lacks a zero-check on :
- buybackAddress = buyback (#461)
Check that the address is not zero.

Additional information: link

Variable 'DMONKEY._transfer(address,address,uint256).success (#696)' in DMONKEY._transfer(address,address,uint256) (#618-760) potentially used before declaration: (success) = address(teamAddress).call{value: teamTokens}() (#707-709)
Variable 'DMONKEY._transfer(address,address,uint256).success (#696)' in DMONKEY._transfer(address,address,uint256) (#618-760) potentially used before declaration: (success) = address(buybackAddress).call{value: buybackTokens}() (#718-720)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in DMONKEY.constructor() (#350-366):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#358-359)
State variables written after the call(s):
- _mint(msg.sender,total_supply) (#365)
- _balances[account] += amount (#260)
- _mint(msg.sender,total_supply) (#365)
- _totalSupply += amount (#259)
- automatedMarketMakerPairs[uniswapV2Pair] = true (#364)
- excludedFromFees[address(this)] = true (#361)
- excludedFromFees[owner()] = true (#362)
- premarketUser[owner()] = true (#363)
Reentrancy in DMONKEY.swapTokens(uint256) (#612-616):
External calls:
- swapTokensForEth(contractTokenBalance) (#614)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#603-609)
State variables written after the call(s):
- isInternalTransaction = false (#615)
Reentrancy in DMONKEY.updateUniswapV2Router(address,bool,address) (#383-401):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#394-396)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#397)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DMONKEY._transfer(address,address,uint256) (#618-760):
External calls:
- swapTokens(tokensToSwap) (#675)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#603-609)
- (success) = address(marketingAddress).call{value: marketingTokens}() (#696-698)
External calls sending eth:
- (success) = address(marketingAddress).call{value: marketingTokens}() (#696-698)
Event emitted after the call(s):
- MarketingCollected(marketingTokens) (#700)
Reentrancy in DMONKEY._transfer(address,address,uint256) (#618-760):
External calls:
- swapTokens(tokensToSwap) (#675)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#603-609)
- (success) = address(marketingAddress).call{value: marketingTokens}() (#696-698)
- (success) = address(teamAddress).call{value: teamTokens}() (#707-709)
External calls sending eth:
- (success) = address(marketingAddress).call{value: marketingTokens}() (#696-698)
- (success) = address(teamAddress).call{value: teamTokens}() (#707-709)
Event emitted after the call(s):
- TeamCollected(teamTokens) (#711)
Reentrancy in DMONKEY._transfer(address,address,uint256) (#618-760):
External calls:
- swapTokens(tokensToSwap) (#675)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#603-609)
- (success) = address(marketingAddress).call{value: marketingTokens}() (#696-698)
- (success) = address(teamAddress).call{value: teamTokens}() (#707-709)
- (success) = address(buybackAddress).call{value: buybackTokens}() (#718-720)
External calls sending eth:
- (success) = address(marketingAddress).call{value: marketingTokens}() (#696-698)
- (success) = address(teamAddress).call{value: teamTokens}() (#707-709)
- (success) = address(buybackAddress).call{value: buybackTokens}() (#718-720)
Event emitted after the call(s):
- BuybackCollected(buybackTokens) (#722)
- Transfer(sender,recipient,amount) (#253)
- super._transfer(from,address(this),txFees_scope_2) (#753)
- Transfer(sender,recipient,amount) (#253)
- super._transfer(from,to,amount) (#759)
- Transfer(sender,recipient,amount) (#253)
- super._transfer(from,address(this),txFees) (#745)
Reentrancy in DMONKEY.constructor() (#350-366):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#358-359)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#261)
- _mint(msg.sender,total_supply) (#365)
Apply the check-effects-interactions pattern.

Additional information: link

DMONKEY._transfer(address,address,uint256) (#618-760) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(marketActiveAt + 3 < block.timestamp,Launch delay protection revert.) (#650-653)
- require(bool,string)(userLastTradeData[to].lastBuyTime + 3 <= block.timestamp,Multi-buy orders disabled.) (#654-658)
- overMinimumTokenBalance && startTimeForSwap + intervalSecondsForSwap <= block.timestamp (#669-671)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#81-84) is never used and should be removed
ERC20._burn(address,uint256) (#264-272) is never used and should be removed
Remove unused functions.

Additional information: link

DMONKEY.totalBuyFee (#323) is set pre-construction with a non-constant function or state variable:
- buyMarketingFee + buyTeamFee + buyBuybackFee
DMONKEY.totalSellFee (#324-325) is set pre-construction with a non-constant function or state variable:
- sellMarketingFee + sellTeamFee + sellBuybackFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version0.8.3 (#14) allows old versions
solc-0.8.3 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in DMONKEY._transfer(address,address,uint256) (#618-760):
- (success) = address(marketingAddress).call{value: marketingTokens}() (#696-698)
- (success) = address(teamAddress).call{value: teamTokens}() (#707-709)
- (success) = address(buybackAddress).call{value: buybackTokens}() (#718-720)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router02.WETH() (#26) is not in mixedCase
Struct DMONKEY.userData (#336-338) is not in CapWords
Function DMONKEY.MultipleTransfer(address[],uint256[]) (#372-381) is not in mixedCase
Parameter DMONKEY.MultipleTransfer(address[],uint256[])._address (#373) is not in mixedCase
Parameter DMONKEY.MultipleTransfer(address[],uint256[])._amount (#374) is not in mixedCase
Parameter DMONKEY.transferForeignToken(address,address,uint256)._token (#404) is not in mixedCase
Parameter DMONKEY.transferForeignToken(address,address,uint256)._to (#405) is not in mixedCase
Parameter DMONKEY.transferForeignToken(address,address,uint256)._value (#406) is not in mixedCase
Parameter DMONKEY.switchMarketActive(bool)._state (#420) is not in mixedCase
Parameter DMONKEY.switchBlockMultiBuys(bool)._state (#427) is not in mixedCase
Parameter DMONKEY.switchLimitSells(bool)._state (#431) is not in mixedCase
Parameter DMONKEY.switchLimitBuys(bool)._state (#435) is not in mixedCase
Parameter DMONKEY.setminimumWeiForTokenomics(uint256)._value (#450) is not in mixedCase
Parameter DMONKEY.setMaxSellTxAmount(uint256)._value (#467) is not in mixedCase
Parameter DMONKEY.setMaxBuyTxAmount(uint256)._value (#475) is not in mixedCase
Parameter DMONKEY.setFee(bool,uint256,uint256,uint256).is_buy (#493) is not in mixedCase
Parameter DMONKEY.setFeeStatus(bool,bool,bool)._state (#514) is not in mixedCase
Parameter DMONKEY.setSwapAndLiquify(bool,uint256,uint256,uint256)._state (#522) is not in mixedCase
Parameter DMONKEY.setSwapAndLiquify(bool,uint256,uint256,uint256)._intervalSecondsForSwap (#523) is not in mixedCase
Parameter DMONKEY.setSwapAndLiquify(bool,uint256,uint256,uint256)._minimumTokensBeforeSwap (#524) is not in mixedCase
Parameter DMONKEY.setSwapAndLiquify(bool,uint256,uint256,uint256)._tokensToSwap (#525) is not in mixedCase
Function DMONKEY.set_baseContractSettings(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address,address,address) (#533-554) is not in mixedCase
Parameter DMONKEY.editPremarketUser(address,bool)._target (#576) is not in mixedCase
Parameter DMONKEY.editPremarketUser(address,bool)._status (#576) is not in mixedCase
Parameter DMONKEY.editExcludedFromFees(address,bool)._target (#583) is not in mixedCase
Parameter DMONKEY.editExcludedFromFees(address,bool)._status (#583) is not in mixedCase
Parameter DMONKEY.editAutomatedMarketMakerPairs(address,bool)._target (#590) is not in mixedCase
Parameter DMONKEY.editAutomatedMarketMakerPairs(address,bool)._status (#590) is not in mixedCase
Variable DMONKEY.total_supply (#315) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#82)" inContext (#76-85)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable ERC20._totalSupply (#131) is too similar to DMONKEY.total_supply (#315)
Variable DMONKEY._transfer(address,address,uint256).success_scope_0 (#707) is too similar to DMONKEY._transfer(address,address,uint256).success_scope_1 (#718)
Prevent variables from having similar names.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#109-112)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#114-121)
getTime() should be declared external:
- Ownable.getTime() (#123-125)
name() should be declared external:
- ERC20.name() (#140-142)
symbol() should be declared external:
- ERC20.symbol() (#144-146)
totalSupply() should be declared external:
- ERC20.totalSupply() (#152-154)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#166-174)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#176-184)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#186-194)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#196-209)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#211-222)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#224-236)
set_baseContractSettings(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address,address,address) should be declared external:
- DMONKEY.set_baseContractSettings(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address,address,address) (#533-554)
setLimitz(uint256,uint256,uint256) should be declared external:
- DMONKEY.setLimitz(uint256,uint256,uint256) (#556-573)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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

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


Average 30d PancakeSwap liquidity is low.


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Blog account (Reddit or Medium)


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 KYC or doxxing proof


Unable to find whitepaper link on the website


Token is not listed at Mobula.Finance

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


Young tokens have high risks of price dump / death

Price for DMONKEY

News for DMONKEY