In this project , Phloxcoin try to work in the field of expanding the treatment of human beings through sports, so that by providing applications, we can guide patients in using authorized sports.Phloxcoin (PLX) aims to offer automated market maker (AMM) - a popular tool among cryptocurrency users.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
Phloxcoin.withdrawMoney().to (#267) lacks a zero-check on :
- to.transfer(getBalance()) (#268)
Phloxcoin.withdrawMoneyTo(address)._to (#270) lacks a zero-check on :
- _to.transfer(getBalance()) (#271)
Phloxcoin.clear(uint256)._owner (#288) lacks a zero-check on :
- _owner.transfer(amount) (#289)
Check that the address is not zero.
Additional information: link
Context._msgData() (#43) is never used and should be removed
Pausable._pause() (#156-159) is never used and should be removed
Pausable._unpause() (#160-163) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.9 (#22) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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
Parameter Phloxcoin.getAirdrop(address)._refer (#213) is not in mixedCase
Parameter Phloxcoin.tokenSale(address)._refer (#223) is not in mixedCase
Parameter Phloxcoin.startAirdrop(uint256,uint256,uint256,uint256)._aSBlock (#243) is not in mixedCase
Parameter Phloxcoin.startAirdrop(uint256,uint256,uint256,uint256)._aEBlock (#243) is not in mixedCase
Parameter Phloxcoin.startAirdrop(uint256,uint256,uint256,uint256)._aAmt (#243) is not in mixedCase
Parameter Phloxcoin.startAirdrop(uint256,uint256,uint256,uint256)._aCap (#243) is not in mixedCase
Parameter Phloxcoin.startSale(uint256,uint256,uint256,uint256,uint256)._sSBlock (#250) is not in mixedCase
Parameter Phloxcoin.startSale(uint256,uint256,uint256,uint256,uint256)._sEBlock (#250) is not in mixedCase
Parameter Phloxcoin.startSale(uint256,uint256,uint256,uint256,uint256)._sChunk (#250) is not in mixedCase
Parameter Phloxcoin.startSale(uint256,uint256,uint256,uint256,uint256)._sPrice (#250) is not in mixedCase
Parameter Phloxcoin.startSale(uint256,uint256,uint256,uint256,uint256)._sCap (#250) is not in mixedCase
Parameter Phloxcoin.withdrawMoneyTo(address)._to (#270) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Phloxcoin.constructor() (#204-209) uses literals with too many digits:
- startSale(block.number,99999999999,0,6398000 * 10 ** decimals(),2000000000000) (#207)
Phloxcoin.constructor() (#204-209) uses literals with too many digits:
- startAirdrop(block.number,99999999999,25000 * 10 ** decimals(),2000000000000) (#208)
Phloxcoin.getAirdrop(address) (#213-222) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#217)
Phloxcoin.tokenSale(address) (#223-236) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#230)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Phloxcoin.clear(uint256)._owner (#288) shadows:
- Ownable._owner (#167) (state variable)
Rename the local variables that shadow another component.
Additional information: link
Phloxcoin.startAirdrop(uint256,uint256,uint256,uint256) (#243-249) should emit an event for:
- aSBlock = _aSBlock (#244)
- aEBlock = _aEBlock (#245)
- aAmt = _aAmt (#246)
- aCap = _aCap (#247)
Phloxcoin.startSale(uint256,uint256,uint256,uint256,uint256) (#250-257) should emit an event for:
- sSBlock = _sSBlock (#251)
- sEBlock = _sEBlock (#252)
- sChunk = _sChunk (#253)
- sPrice = _sPrice (#254)
- sCap = _sCap (#255)
Emit an event for critical parameter changes.
Additional information: link
Redundant expression "this (#43)" inContext (#41-44)
Remove redundant statements if they congest code but offer no value.
Additional information: link
name() should be declared external:
- ERC20.name() (#56-58)
symbol() should be declared external:
- ERC20.symbol() (#59-61)
totalSupply() should be declared external:
- ERC20.totalSupply() (#66-68)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#72-75)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#79-82)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#83-90)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#91-94)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#95-100)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#181-184)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#185-189)
getAirdrop(address) should be declared external:
- Phloxcoin.getAirdrop(address) (#213-222)
tokenSale(address) should be declared external:
- Phloxcoin.tokenSale(address) (#223-236)
viewAirdrop() should be declared external:
- Phloxcoin.viewAirdrop() (#237-239)
viewSale() should be declared external:
- Phloxcoin.viewSale() (#240-242)
receiveMoney() should be declared external:
- Phloxcoin.receiveMoney() (#260-262)
withdrawMoney() should be declared external:
- Phloxcoin.withdrawMoney() (#266-269)
withdrawMoneyTo(address) should be declared external:
- Phloxcoin.withdrawMoneyTo(address) (#270-272)
burn(uint256) should be declared external:
- Phloxcoin.burn(uint256) (#275-277)
burnFrom(address,uint256) should be declared external:
- Phloxcoin.burnFrom(address,uint256) (#278-283)
clear(uint256) should be declared external:
- Phloxcoin.clear(uint256) (#287-290)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find KYC or doxxing proof
Unable to find token contract audit
Unable to find audit link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Unable to find Discord account