Official twitter of PopCoin ($POP)
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
PopCoin.constructor() (PopCoin.sol#20-23) uses literals with too many digits:
- _totalSupply = 150000000 * (10 ** uint256(18)) (PopCoin.sol#21)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Owned.newOwner (imports.sol#63) is never used in PopCoin (PopCoin.sol#15-26)
Remove unused state variables.
Additional information: link
Owned.transferOwnership(address).newOwner (imports.sol#92) shadows:
- Owned.newOwner (imports.sol#63) (state variable)
ERC20.allowance(address,address).owner (imports.sol#162) shadows:
- Owned.owner (imports.sol#62) (state variable)
ERC20._approve(address,address,uint256).owner (imports.sol#212) shadows:
- Owned.owner (imports.sol#62) (state variable)
ERC20Detailed.constructor(string,string,uint8).name (imports.sol#249) shadows:
- ERC20Detailed.name() (imports.sol#255-257) (function)
ERC20Detailed.constructor(string,string,uint8).symbol (imports.sol#249) shadows:
- ERC20Detailed.symbol() (imports.sol#258-260) (function)
ERC20Detailed.constructor(string,string,uint8).decimals (imports.sol#249) shadows:
- ERC20Detailed.decimals() (imports.sol#261-263) (function)
Rename the local variables that shadow another component.
Additional information: link
Address.isContract(address) (imports.sol#271-277) uses assembly
- INLINE ASM (imports.sol#275)
Do not use evm assembly.
Additional information: link
Address.isContract(address) (imports.sol#271-277) is never used and should be removed
SafeERC20.callOptionalReturn(IERC20,bytes) (imports.sol#298-309) is never used and should be removed
SafeERC20.safeApprove(IERC20,address,uint256) (imports.sol#292-297) is never used and should be removed
SafeERC20.safeTransfer(IERC20,address,uint256) (imports.sol#284-286) is never used and should be removed
SafeERC20.safeTransferFrom(IERC20,address,address,uint256) (imports.sol#288-290) is never used and should be removed
SafeMath.div(uint256,uint256) (imports.sol#39-41) is never used and should be removed
SafeMath.div(uint256,uint256,string) (imports.sol#42-48) is never used and should be removed
SafeMath.mul(uint256,uint256) (imports.sol#29-38) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (PopCoin.sol#11) allows old versions
Pragma version^0.8.0 (imports.sol#1) allows old versions
solc-0.8.0 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 SafeERC20.callOptionalReturn(IERC20,bytes) (imports.sol#298-309):
- (success,returndata) = address(token).call(data) (imports.sol#302)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter ERC20.setTaxFreeWallet(address)._wallet (imports.sol#114) is not in mixedCase
Parameter ERC20.containsTaxFree(address)._wallet (imports.sol#119) is not in mixedCase
Parameter ERC20.removeTaxFreeWallet(address)._wallet (imports.sol#123) is not in mixedCase
Parameter ERC20.unlockFunction(ERC20.Functions)._fn (imports.sol#140) is not in mixedCase
Parameter ERC20.lockFunction(ERC20.Functions)._fn (imports.sol#144) is not in mixedCase
Parameter ERC20.findTaxPercentage(uint256)._amount (imports.sol#200) is not in mixedCase
Parameter ERC20.transferToMasterWallet(address,address,uint256)._masterWallet (imports.sol#205) is not in mixedCase
Parameter ERC20.transferToMasterWallet(address,address,uint256)._taxPercentage (imports.sol#205) is not in mixedCase
Parameter ERC20.changeTaxPercentage(uint256)._taxPercentage (imports.sol#232) is not in mixedCase
Parameter ERC20.changeMasterWalletAddress(address)._masterWallet (imports.sol#237) is not in mixedCase
Variable ERC20._balances (imports.sol#103) is not in mixedCase
Variable ERC20._allowances (imports.sol#105) is not in mixedCase
Variable ERC20.TaxFreeWallets (imports.sol#111) is not in mixedCase
Variable ERC20._totalSupply (imports.sol#148) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Owned.newOwner (imports.sol#63) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Owned.renounceOwnership() (imports.sol#83-86)
transferOwnership(address) should be declared external:
- Owned.transferOwnership(address) (imports.sol#92-96)
setTaxFreeWallet(address) should be declared external:
- ERC20.setTaxFreeWallet(address) (imports.sol#114-117)
removeTaxFreeWallet(address) should be declared external:
- ERC20.removeTaxFreeWallet(address) (imports.sol#123-125)
unlockFunction(ERC20.Functions) should be declared external:
- ERC20.unlockFunction(ERC20.Functions) (imports.sol#140-142)
lockFunction(ERC20.Functions) should be declared external:
- ERC20.lockFunction(ERC20.Functions) (imports.sol#144-146)
totalSupply() should be declared external:
- ERC20.totalSupply() (imports.sol#152-154)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (imports.sol#155-157)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (imports.sol#158-161)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (imports.sol#162-164)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (imports.sol#165-168)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (imports.sol#169-173)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (imports.sol#174-177)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (imports.sol#178-181)
burn(uint256) should be declared external:
- ERC20.burn(uint256) (imports.sol#220-222)
changeTaxPercentage(uint256) should be declared external:
- ERC20.changeTaxPercentage(uint256) (imports.sol#232-235)
changeMasterWalletAddress(address) should be declared external:
- ERC20.changeMasterWalletAddress(address) (imports.sol#237-241)
name() should be declared external:
- ERC20Detailed.name() (imports.sol#255-257)
symbol() should be declared external:
- ERC20Detailed.symbol() (imports.sol#258-260)
decimals() should be declared external:
- ERC20Detailed.decimals() (imports.sol#261-263)
Use the external attribute for functions never called from the contract.
Additional information: link
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to find website, listings and other project-related information
Token has a considerable age, but we're still unable to find its website
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap 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
Twitter account has less than 100 followers
Telegram account has relatively few subscribers
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts