CITY OF DREAM Token Logo

COD [CITY OF DREAM] Token

About COD

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years

Website

[CoinGecko] alert: The smart-contract owner can mint new tokens, please proceed with caution.
white paper

As a Metaverse that perfectly integrates SocialFi and GameFi, City Of Dream strives to realize the Nasdaq of the meta-universe world. This platform embraces the web3.0 concept and effectively provides every individual with an opportunity to show their self-value and build their Self-brand.

City of Dream will launch five sections, including MarkBoss, Glory Badge, Global Lottery Pool, Global Broadcasting, and Fictitious Life. Each section of COD is closely interconnected and finally forms a closed loop that will redefine human resources in the blockchain industry. In addition, City of Dream expects to build a private network for the public, in which each individual will have his or her own cryptographic identity, which will reveal the user's experience, skills, and all behaviors that take place in the ecosystem of City of Dream, thus helping them tokenize and financialize their self-value.

Laser Scorebeta Last Audit: 21 April 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.


Contract ownership is not renounced (belongs to a wallet)

Reentrancy in COD.transferFrom(address,address,uint256) (#590-605):
External calls:
- _transfer(sender,recipient,amount,_needFee(sender,recipient)) (#596)
- IBind(_bind).bindRelationshipExternal(to,address(0)) (#679)
- IBind(_bind).bindRelationshipExternal(to,from) (#681)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#601)
- _allowances[owner][spender] = amount (#725)
Apply the check-effects-interactions pattern.

Additional information: link

Pragma version^0.8.0 (#4) allows old versions
Pragma version^0.8.1 (#25) allows old versions
Pragma version^0.8.0 (#250) allows old versions
Pragma version^0.8.0 (#277) allows old versions
Pragma version^0.8.0 (#355) allows old versions
Pragma version^0.8.0 (#440) allows old versions
Pragma version>=0.8.0 (#467) allows old versions
solc-0.8.1 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 Address.sendValue(address,uint256) (#81-86):
- (success) = recipient.call{value: amount}() (#84)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#149-160):
- (success,returndata) = target.call{value: value}(data) (#158)
Low level call in Address.functionStaticCall(address,bytes,string) (#178-187):
- (success,returndata) = target.staticcall(data) (#185)
Low level call in Address.functionDelegateCall(address,bytes,string) (#205-214):
- (success,returndata) = target.delegatecall(data) (#212)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function COD.__bind(address,address) (#672-684) is not in mixedCase
Variable COD._pool (#496) is not in mixedCase
Variable COD._pay (#497) is not in mixedCase
Variable COD._bind (#498) is not in mixedCase
Variable COD._whitelistFrom (#499) is not in mixedCase
Variable COD._whitelistTo (#500) is not in mixedCase
Variable COD._inviter (#501) is not in mixedCase
Variable COD._markets (#503) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in COD._transfer(address,address,uint256,bool) (#624-663):
External calls:
- __bind(sender,recipient) (#630)
- IBind(_bind).bindRelationshipExternal(to,address(0)) (#679)
- IBind(_bind).bindRelationshipExternal(to,from) (#681)
State variables written after the call(s):
- _balances[sender] = senderBalance - amount (#639)
- _balances[recipient] += amount (#642)
- _balances[recipient] += actualAmount (#646)
- _balances[_pool] = _balances[_pool] + bonusFee (#649)
- _balances[referrer] = _balances[referrer] + feeAmount - bonusFee (#654)
Apply the check-effects-interactions pattern.

Additional information: link

COD.allowance(address,address).owner (#579) shadows:
- Ownable.owner() (#307-309) (function)
COD._approve(address,address,uint256).owner (#718) shadows:
- Ownable.owner() (#307-309) (function)
Rename the local variables that shadow another component.

Additional information: link

COD.setPay(address).addr (#517) lacks a zero-check on :
- _pay = addr (#518)
COD.setPool(address).addr (#521) lacks a zero-check on :
- _pool = addr (#522)
COD.setBind(address).bind (#526) lacks a zero-check on :
- _bind = bind (#527)
Check that the address is not zero.

Additional information: link

Address.verifyCallResult(bool,bytes,string) (#222-242) uses assembly
- INLINE ASM (#234-237)
Do not use evm assembly.

Additional information: link

Reentrancy in COD._transfer(address,address,uint256,bool) (#624-663):
External calls:
- __bind(sender,recipient) (#630)
- IBind(_bind).bindRelationshipExternal(to,address(0)) (#679)
- IBind(_bind).bindRelationshipExternal(to,from) (#681)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#643)
- Transfer(sender,recipient,actualAmount) (#655)
- Transfer(sender,_pool,bonusFee) (#656)
- Transfer(sender,referrer,feeAmount - bonusFee) (#657)
Reentrancy in COD.transferFrom(address,address,uint256) (#590-605):
External calls:
- _transfer(sender,recipient,amount,_needFee(sender,recipient)) (#596)
- IBind(_bind).bindRelationshipExternal(to,address(0)) (#679)
- IBind(_bind).bindRelationshipExternal(to,from) (#681)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#726)
- _approve(sender,_msgSender(),currentAllowance - amount) (#601)
Apply the check-effects-interactions pattern.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.8.0', '^0.8.0', '^0.8.1']
- ^0.8.0 (#4)
- ^0.8.1 (#25)
- ^0.8.0 (#250)
- ^0.8.0 (#277)
- ^0.8.0 (#355)
- ^0.8.0 (#440)
- >=0.8.0 (#467)
Use one Solidity version.

Additional information: link

Address.functionCall(address,bytes) (#106-108) is never used and should be removed
Address.functionCall(address,bytes,string) (#116-122) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#135-141) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#149-160) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#195-197) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#205-214) is never used and should be removed
Address.functionStaticCall(address,bytes) (#168-170) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#178-187) is never used and should be removed
Address.sendValue(address,uint256) (#81-86) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#222-242) is never used and should be removed
COD._burn(address,uint256) (#699-714) is never used and should be removed
Context._msgData() (#267-269) is never used and should be removed
Remove unused functions.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#326-328)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#334-337)
setMarket(address[],bool) should be declared external:
- COD.setMarket(address[],bool) (#511-515)
setPay(address) should be declared external:
- COD.setPay(address) (#517-519)
setPool(address) should be declared external:
- COD.setPool(address) (#521-523)
setBind(address) should be declared external:
- COD.setBind(address) (#526-528)
setWhitelistFrom(address,bool) should be declared external:
- COD.setWhitelistFrom(address,bool) (#530-532)
setWhitelistTo(address,bool) should be declared external:
- COD.setWhitelistTo(address,bool) (#534-536)
setBidirectionWhitelist(address,bool) should be declared external:
- COD.setBidirectionWhitelist(address,bool) (#538-541)
setBatchBidirectionWhitelist(address[],bool) should be declared external:
- COD.setBatchBidirectionWhitelist(address[],bool) (#543-548)
name() should be declared external:
- COD.name() (#550-552)
symbol() should be declared external:
- COD.symbol() (#554-556)
decimals() should be declared external:
- COD.decimals() (#558-560)
totalSupply() should be declared external:
- COD.totalSupply() (#563-565)
transfer(address,uint256) should be declared external:
- COD.transfer(address,uint256) (#573-576)
allowance(address,address) should be declared external:
- COD.allowance(address,address) (#579-581)
approve(address,uint256) should be declared external:
- COD.approve(address,uint256) (#584-587)
transferFrom(address,address,uint256) should be declared external:
- COD.transferFrom(address,address,uint256) (#590-605)
increaseAllowance(address,uint256) should be declared external:
- COD.increaseAllowance(address,uint256) (#607-610)
decreaseAllowance(address,uint256) should be declared external:
- COD.decreaseAllowance(address,uint256) (#613-621)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

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


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Youtube account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of scam / price dump / death


Alexa traffic rank is very low

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 price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for COD

News for COD