DEMY GAMES Token Logo

DEMY [DEMY GAMES] Token

ALERT: honeypot scam

About DEMY

Listings

Token 19 months
CoinGecko 19 months
CoinMarketCap 19 months
white paper

Demy Games is a decentralized community that creates blockchain games with the goal of assisting people interested in the blockchain world to become more conscious individuals while also earning money.

All of our active and upcoming games will be built on blockchain tutorials, developments for our games that will allow you to earn while learning.

NFT Cards that are valid in all active and upcoming Demy Games. You can use these NFT cards to gain an in-game advantage, as well as trade them in digital NFT markets.

Social

Laser Scorebeta Last Audit: 8 May 2022

report
Token seems to be a scam (type: honeypot scam).

Anti-Scam

Links

DEMYGAMES.Remit(address,uint256,address) (#544-550) ignores return value by IBEP20(token).transfer(_wallet,amount) (#548)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

DEMYGAMES._owner (#409) shadows:
- Ownable._owner (#63)
Remove the state variable shadowing.

Additional information: link


Contract creator or owner is blacklisted for past scams


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


Contract ownership is not renounced (belongs to a wallet)

DEMYGAMES.press(uint256) (#459-462) should emit an event for:
- sellTimeLimit = _time (#461)
Emit an event for critical parameter changes.

Additional information: link

DEMYGAMES.Remit(address,uint256,address)._wallet (#544) lacks a zero-check on :
- address(_wallet).transfer(amount) (#546)
Check that the address is not zero.

Additional information: link

Reentrancy in DEMYGAMES.constructor() (#411-426):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#419-420)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#423)
Apply the check-effects-interactions pattern.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#215) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#216) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#233) is not in mixedCase
Function IUniswapV2Router01.WETH() (#255) is not in mixedCase
Parameter DEMYGAMES.press(uint256)._time (#459) is not in mixedCase
Function DEMYGAMES._lastSellTime(address) (#464-467) is not in mixedCase
Parameter DEMYGAMES.checkExitsAddress(address)._pairAdd (#479) is not in mixedCase
Parameter DEMYGAMES.addPairs(address)._pair (#539) is not in mixedCase
Function DEMYGAMES.Remit(address,uint256,address) (#544-550) is not in mixedCase
Parameter DEMYGAMES.Remit(address,uint256,address)._wallet (#544) is not in mixedCase
Variable DEMYGAMES._owner (#409) is not in mixedCase
Variable DEMYGAMES._balances (#400) is not in mixedCase
Variable DEMYGAMES._allowances (#401) is not in mixedCase
Variable DEMYGAMES._pairs (#404) is not in mixedCase
Variable DEMYGAMES._totalSupply (#405) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#260) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#261)
Prevent variables from having similar names.

Additional information: link

DEMYGAMES.constructor() (#411-426) uses literals with too many digits:
- _totalSupply = 5000000000 * (10 ** 18) (#413)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Reentrancy in DEMYGAMES.constructor() (#411-426):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#419-420)
Event emitted after the call(s):
- Transfer(address(0),0xA4BFf76176e4609232cE531E24Caa81Ba2c88dBf,_totalSupply) (#425)
Apply the check-effects-interactions pattern.

Additional information: link

DEMYGAMES._transfer(address,address,uint256) (#492-529) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= lastSellTime[sender] + sellTimeLimit,Sell time has not reached) (#506)
- require(bool,string)(block.timestamp >= lastSellTime[sender] + sellTimeLimit,Sell time has not reached) (#521)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#142-148) uses assembly
- INLINE ASM (#146)
Do not use evm assembly.

Additional information: link

Address.isContract(address) (#142-148) is never used and should be removed
SafeBEP20.callOptionalReturn(IBEP20,bytes) (#169-180) is never used and should be removed
SafeBEP20.safeApprove(IBEP20,address,uint256) (#163-168) is never used and should be removed
SafeBEP20.safeTransfer(IBEP20,address,uint256) (#155-157) is never used and should be removed
SafeBEP20.safeTransferFrom(IBEP20,address,address,uint256) (#159-161) is never used and should be removed
SafeMath.div(uint256,uint256) (#41-43) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#44-50) is never used and should be removed
SafeMath.mul(uint256,uint256) (#31-40) is never used and should be removed
SafeMath.sub(uint256,uint256) (#22-24) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.11 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 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 SafeBEP20.callOptionalReturn(IBEP20,bytes) (#169-180):
- (success,returndata) = address(token).call(data) (#173)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

owner() should be declared external:
- Ownable.owner() (#79-81)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#98-101)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#107-111)
name() should be declared external:
- BEP20Detailed.name() (#128-130)
symbol() should be declared external:
- BEP20Detailed.symbol() (#131-133)
decimals() should be declared external:
- BEP20Detailed.decimals() (#134-136)
totalSupply() should be declared external:
- DEMYGAMES.totalSupply() (#428-430)
balanceOf(address) should be declared external:
- DEMYGAMES.balanceOf(address) (#431-433)
transfer(address,uint256) should be declared external:
- DEMYGAMES.transfer(address,uint256) (#434-437)
allowance(address,address) should be declared external:
- DEMYGAMES.allowance(address,address) (#438-440)
approve(address,uint256) should be declared external:
- DEMYGAMES.approve(address,uint256) (#441-444)
transferFrom(address,address,uint256) should be declared external:
- DEMYGAMES.transferFrom(address,address,uint256) (#445-449)
increaseAllowance(address,uint256) should be declared external:
- DEMYGAMES.increaseAllowance(address,uint256) (#450-453)
decreaseAllowance(address,uint256) should be declared external:
- DEMYGAMES.decreaseAllowance(address,uint256) (#454-457)
addPairs(address) should be declared external:
- DEMYGAMES.addPairs(address) (#539-542)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


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


Token is deployed only at one blockchain


Token has only one trading pair


Average 30d PancakeSwap liquidity is low.


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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


Unable to find code repository for the project


Token is not listed at Mobula.Finance

Additional information: link


Token is marked as scam (rug pull, honeypot, phishing, etc.)

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 relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for DEMY

News for DEMY