DEMY GAMES Token Logo

DEMY [DEMY GAMES] Token

ALERT: honeypot scam

About DEMY

Listings

Token 2 years
CoinGecko 6 months
CoinMarketCap 5 months
white paper

The token symbols $burnedFi (shortened as $burn) and $burnBuild (shortened as $build) are used in the following references.
Convert your $burn tokens into an equivalent amount of $BNB and mint $build tokens as proof.
Assumption:
Burning 1000 $burn tokens worth 1 $BNB will mint 1 $build token as your proof.
Simultaneously, an additional 1 $build token will be minted and distributed to all $build holders [based on $build holdings].
If you are the first to burn $burn tokens worth 1 $BNB, you will receive 1 $build and 1 $build reflection, totaling 2 tokens.
When the second burn, with tokens worth 2 $BNB, occurs, the participant will receive 2 $build proofs and 1 $build reflection. You will also receive 1 $build (as you occupy 50% of the share).
And so on!
-
Claim Rewards:
Reward calculation: Your holdings of $build - Your proof (build) = BNB reward you can claim.
Assuming your initial burn value was 1 $build (proof), when you accumulate 10 $build, you can claim a reward of 9 $BNB!
Regardless of the quantity of your $build proofs, they will be reset to zero when you claim the reward.
Don't claim rewards too easily; leave them for community development.
-
Invite Rewards:
When a burner uses your link to burn $burn tokens, you can receive a 10% reward in $burn tokens.
If you were also invited, the person who invited you can also receive a 5% reward in $burn tokens.
The remaining $burn tokens will be transferred to the black hole (0xdead) address, at least 85%.

Social

Laser Scorebeta Last Audit: 31 January 2024

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

Anti-Scam

Links

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

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


Contract ownership is not renounced (belongs to a wallet)


Token is flagged by TokenSniffer due to previous scams commited by owner (blacklist)

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

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

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

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
SafeBEP20.safeTransferFrom(IBEP20,address,address,uint256) (#159-161) is never used and should be removed
SafeBEP20.callOptionalReturn(IBEP20,bytes) (#169-180) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#44-50) is never used and should be removed
SafeBEP20.safeTransfer(IBEP20,address,uint256) (#155-157) is never used and should be removed
SafeMath.div(uint256,uint256) (#41-43) is never used and should be removed
SafeBEP20.safeApprove(IBEP20,address,uint256) (#163-168) is never used and should be removed
Address.isContract(address) (#142-148) 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

Variable DEMYGAMES._totalSupply (#405) is not in mixedCase
Parameter DEMYGAMES.press(uint256)._time (#459) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#216) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#233) is not in mixedCase
Parameter DEMYGAMES.checkExitsAddress(address)._pairAdd (#479) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#215) 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
Variable DEMYGAMES._balances (#400) is not in mixedCase
Variable DEMYGAMES._allowances (#401) is not in mixedCase
Function DEMYGAMES._lastSellTime(address) (#464-467) is not in mixedCase
Function IUniswapV2Router01.WETH() (#255) is not in mixedCase
Variable DEMYGAMES._pairs (#404) is not in mixedCase
Parameter DEMYGAMES.Remit(address,uint256,address)._wallet (#544) is not in mixedCase
Variable DEMYGAMES._owner (#409) 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

increaseAllowance(address,uint256) should be declared external:
- DEMYGAMES.increaseAllowance(address,uint256) (#450-453)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#98-101)
transfer(address,uint256) should be declared external:
- DEMYGAMES.transfer(address,uint256) (#434-437)
owner() should be declared external:
- Ownable.owner() (#79-81)
balanceOf(address) should be declared external:
- DEMYGAMES.balanceOf(address) (#431-433)
allowance(address,address) should be declared external:
- DEMYGAMES.allowance(address,address) (#438-440)
transferFrom(address,address,uint256) should be declared external:
- DEMYGAMES.transferFrom(address,address,uint256) (#445-449)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#107-111)
approve(address,uint256) should be declared external:
- DEMYGAMES.approve(address,uint256) (#441-444)
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)
decreaseAllowance(address,uint256) should be declared external:
- DEMYGAMES.decreaseAllowance(address,uint256) (#454-457)
addPairs(address) should be declared external:
- DEMYGAMES.addPairs(address) (#539-542)
name() should be declared external:
- BEP20Detailed.name() (#128-130)
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

Contract has 0% buy tax and 100% sell tax.
Taxes are extremely high (over 30%)

Additional information: link


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


Average 30d PancakeSwap volume 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.


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


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


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account link seems to be invalid


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


Unable to find code repository for the project


Unable to verify token contract address on the website


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


Token has no active CoinGecko listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low

Price for DEMY