Ideal of CO sponsors (developers): make decentralized autonomous organization (DAO) a reality, try to record everyone's efforts and services on the blockchain in an tamper proof way, and permanently save < br > the value and achievements contributed by everyone in the Dao, It is a new incentive method, a new decentralized and highly autonomous organizational form, and will also become an organizational model of new production relations to promote the development of society in the future
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
PCDToken (#113-316) should inherit from IERC20 (#11-18)
Inherit from the missing interface or contract.
Additional information: link
Struct PCDToken.user (#132-134) is not in CapWords
Parameter PCDToken.setSwapAndLiquifyEnabled(bool)._enabled (#157) is not in mixedCase
Parameter PCDToken.setFeeTo(address,address,address,address,uint256)._f (#161) is not in mixedCase
Parameter PCDToken.setFeeTo(address,address,address,address,uint256)._lp (#161) is not in mixedCase
Parameter PCDToken.setFeeTo(address,address,address,address,uint256)._PcdChain (#161) is not in mixedCase
Parameter PCDToken.setFeeTo(address,address,address,address,uint256)._pancakePair (#161) is not in mixedCase
Parameter PCDToken.setFeeTo(address,address,address,address,uint256)._code (#161) is not in mixedCase
Parameter PCDToken.setStart(uint256)._TIME (#216) is not in mixedCase
Function PCDToken._getValue(uint256) (#299-301) is not in mixedCase
Parameter PCDToken._getValue(uint256)._value (#299) is not in mixedCase
Variable PCDToken._balances (#116) is not in mixedCase
Variable PCDToken.Foundation (#124) is not in mixedCase
Variable PCDToken.LPtoken (#125) is not in mixedCase
Variable PCDToken.PcdChain (#126) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
PCDToken._transfer(address,address,uint256) (#234-256) uses literals with too many digits:
- _isExcludedFromFee[sender] || (totalSupply() - _balances[back]) <= 21000000000000000000000000 || _isExcludedFromFee[recipient] (#244)
PCDToken.slitherConstructorVariables() (#113-316) uses literals with too many digits:
- back = 0x000000000000000000000000000000000000dEaD (#122)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#33) is never used in PCDToken (#113-316)
Ownable._lockTime (#34) is never used in PCDToken (#113-316)
Remove unused state variables.
Additional information: link
PCDToken.distribution(address,uint256) (#257-298) performs a multiplication on the result of a division:
-v16 = a.div(100).mul(625).div(10000) (#267)
Consider ordering multiplication before division.
Additional information: link
PCDToken.constructor(string,string,uint256).name (#145) shadows:
- PCDToken.name() (#170-172) (function)
PCDToken.constructor(string,string,uint256).symbol (#145) shadows:
- PCDToken.symbol() (#173-175) (function)
PCDToken.constructor(string,string,uint256).totalSupply (#145) shadows:
- PCDToken.totalSupply() (#179-181) (function)
PCDToken.allowance(address,address).owner (#189) shadows:
- Ownable.owner() (#50-52) (function)
PCDToken._approve(address,address,uint256).owner (#309) shadows:
- Ownable.owner() (#50-52) (function)
Rename the local variables that shadow another component.
Additional information: link
PCDToken.setFeeTo(address,address,address,address,uint256) (#161-169) should emit an event for:
- code = _code (#168)
PCDToken.setStart(uint256) (#216-221) should emit an event for:
- startTransaction = _TIME (#219)
Emit an event for critical parameter changes.
Additional information: link
Ownable.constructor().msgSender (#42) lacks a zero-check on :
- _owner = msgSender (#43)
PCDToken.setFeeTo(address,address,address,address,uint256)._f (#161) lacks a zero-check on :
- Foundation = _f (#164)
PCDToken.setFeeTo(address,address,address,address,uint256)._lp (#161) lacks a zero-check on :
- LPtoken = _lp (#165)
PCDToken.setFeeTo(address,address,address,address,uint256)._PcdChain (#161) lacks a zero-check on :
- PcdChain = _PcdChain (#166)
PCDToken.setFeeTo(address,address,address,address,uint256)._pancakePair (#161) lacks a zero-check on :
- pancakePair = _pancakePair (#167)
PCDToken.setIDo(address).addr (#222) lacks a zero-check on :
- idoAdd = addr (#224)
Check that the address is not zero.
Additional information: link
PCDToken.setIDOWhiteList(address[]) (#226-233) has external calls inside a loop: IDO(idoAdd).upAddress(addr[i]) != address(0) (#229)
PCDToken.setIDOWhiteList(address[]) (#226-233) has external calls inside a loop: users[addr[i]].upAddress = IDO(idoAdd).upAddress(addr[i]) (#230)
Favor pull over push strategy for external calls.
Additional information: link
PCDToken.setFeeTo(address,address,address,address,uint256) (#161-169) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp < startTransaction) (#163)
PCDToken.setStart(uint256) (#216-221) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp < startTransaction (#218)
PCDToken._transfer(address,address,uint256) (#234-256) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > startTransaction || amount <= code || _isExcludedFromFee[sender],swap It hasn't started yet) (#237)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#358-364) uses assembly
- INLINE ASM (#362)
Do not use evm assembly.
Additional information: link
Address.isContract(address) (#358-364) is never used and should be removed
Context._msgData() (#27-29) is never used and should be removed
PCDToken._burn(address,uint256) (#302-308) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.6.8 (#9) 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
Ownable._lockTime (#34) should be constant
Ownable._previousOwner (#33) should be constant
PCDToken.back (#122) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
owner() should be declared external:
- Ownable.owner() (#50-52)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#69-72)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#78-82)
setSwapAndLiquifyEnabled(bool) should be declared external:
- PCDToken.setSwapAndLiquifyEnabled(bool) (#157-160)
setFeeTo(address,address,address,address,uint256) should be declared external:
- PCDToken.setFeeTo(address,address,address,address,uint256) (#161-169)
getTeam(address) should be declared external:
- PCDToken.getTeam(address) (#201-203)
setStart(uint256) should be declared external:
- PCDToken.setStart(uint256) (#216-221)
setIDo(address) should be declared external:
- PCDToken.setIDo(address) (#222-225)
setIDOWhiteList(address[]) should be declared external:
- PCDToken.setIDOWhiteList(address[]) (#226-233)
Use the external attribute for functions never called from the contract.
Additional information: link
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 token/project description on the website or on BscScan, CoinMarketCap
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to find KYC or doxxing proof
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
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Twitter account has less than 100 followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account