Phoswap Token Logo

PHO [Phoswap] Token

About PHO

Listings

Token 3 years
CoinGecko 3 years
CoinMarketCap 3 years

Website

DeFi Exchange on Binance Smart Chain

Social

Laser Scorebeta Last Audit: 20 July 2022

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

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)


Contract ownership is not renounced (belongs to a wallet)

FreezableToken.toKey(address,uint256) (#519-526) is declared view but contains assembly code
Ensure the attributes of contracts compiled prior to Solidity 0.5.0 are correct.

Additional information: link

FreezableToken.releaseOnce() (#480-502) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(uint64(block.timestamp) > head) (#484)
FreezableToken.releaseAll() (#508-517) uses timestamp for comparisons
Dangerous comparisons:
- release != 0 && block.timestamp > release (#512)
FreezableToken.freeze(address,uint64) (#528-559) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_until > block.timestamp) (#529)
Avoid relying on block.timestamp.

Additional information: link

FreezableToken.toKey(address,uint256) (#519-526) uses assembly
- INLINE ASM (#522-526)
Do not use evm assembly.

Additional information: link

FreezableToken.releaseOnce() (#480-502) has costly operations inside a loop:
- delete freezings[currentKey] (#490)
FreezableToken.releaseOnce() (#480-502) has costly operations inside a loop:
- delete chains[headKey] (#496)
FreezableToken.releaseOnce() (#480-502) has costly operations inside a loop:
- delete chains[currentKey] (#499)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMath.div(uint256,uint256) (#61-66) is never used and should be removed
SafeMath.mul(uint256,uint256) (#45-56) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.4.23 (#19) allows old versions
solc-0.4.24 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 BasicToken.transfer(address,uint256)._to (#111) is not in mixedCase
Parameter BasicToken.transfer(address,uint256)._value (#111) is not in mixedCase
Parameter BasicToken.balanceOf(address)._owner (#126) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._from (#172) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._to (#173) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._value (#174) is not in mixedCase
Parameter StandardToken.approve(address,uint256)._spender (#200) is not in mixedCase
Parameter StandardToken.approve(address,uint256)._value (#200) is not in mixedCase
Parameter StandardToken.allowance(address,address)._owner (#213) is not in mixedCase
Parameter StandardToken.allowance(address,address)._spender (#214) is not in mixedCase
Parameter StandardToken.increaseApproval(address,uint256)._spender (#234) is not in mixedCase
Parameter StandardToken.increaseApproval(address,uint256)._addedValue (#235) is not in mixedCase
Parameter StandardToken.decreaseApproval(address,uint256)._spender (#257) is not in mixedCase
Parameter StandardToken.decreaseApproval(address,uint256)._subtractedValue (#258) is not in mixedCase
Parameter Ownable.transferOwnership(address)._newOwner (#321) is not in mixedCase
Parameter MintableToken.mint(address,uint256)._to (#367) is not in mixedCase
Parameter MintableToken.mint(address,uint256)._amount (#368) is not in mixedCase
Parameter FreezableToken.balanceOf(address)._owner (#410) is not in mixedCase
Parameter FreezableToken.actualBalanceOf(address)._owner (#419) is not in mixedCase
Parameter FreezableToken.freezingBalanceOf(address)._owner (#423) is not in mixedCase
Parameter FreezableToken.freezingCount(address)._addr (#431) is not in mixedCase
Parameter FreezableToken.getFreezing(address,uint256)._addr (#444) is not in mixedCase
Parameter FreezableToken.getFreezing(address,uint256)._index (#444) is not in mixedCase
Parameter FreezableToken.freezeTo(address,uint256,uint64)._to (#462) is not in mixedCase
Parameter FreezableToken.freezeTo(address,uint256,uint64)._amount (#462) is not in mixedCase
Parameter FreezableToken.freezeTo(address,uint256,uint64)._until (#462) is not in mixedCase
Parameter FreezableToken.freeze(address,uint64)._to (#528) is not in mixedCase
Parameter FreezableToken.freeze(address,uint64)._until (#528) is not in mixedCase
Parameter BurnableToken.burn(uint256)._value (#575) is not in mixedCase
Parameter FreezableMintableToken.mintAndFreeze(address,uint256,uint64)._to (#648) is not in mixedCase
Parameter FreezableMintableToken.mintAndFreeze(address,uint256,uint64)._amount (#648) is not in mixedCase
Parameter FreezableMintableToken.mintAndFreeze(address,uint256,uint64)._until (#648) is not in mixedCase
Parameter MainToken.transferFrom(address,address,uint256)._from (#706) is not in mixedCase
Parameter MainToken.transferFrom(address,address,uint256)._to (#706) is not in mixedCase
Parameter MainToken.transferFrom(address,address,uint256)._value (#706) is not in mixedCase
Parameter MainToken.transfer(address,uint256)._to (#711) is not in mixedCase
Parameter MainToken.transfer(address,uint256)._value (#711) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

FreezableToken.toKey(address,uint256) (#519-526) uses literals with too many digits:
- result = 0x5749534800000000000000000000000000000000000000000000000000000000 (#521)
MainToken.init() (#717-744) uses literals with too many digits:
- amounts = (uint256(1000000000000000)) (#727)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

totalSupply() should be declared external:
- BasicToken.totalSupply() (#102-104)
- ERC20Basic.totalSupply() (#28)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#138-139)
- StandardToken.allowance(address,address) (#212-221)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#144)
- StandardToken.approve(address,uint256) (#200-204)
increaseApproval(address,uint256) should be declared external:
- StandardToken.increaseApproval(address,uint256) (#233-244)
decreaseApproval(address,uint256) should be declared external:
- StandardToken.decreaseApproval(address,uint256) (#256-271)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#312-315)
actualBalanceOf(address) should be declared external:
- FreezableToken.actualBalanceOf(address) (#419-421)
freezingBalanceOf(address) should be declared external:
- FreezableToken.freezingBalanceOf(address) (#423-425)
freezingCount(address) should be declared external:
- FreezableToken.freezingCount(address) (#431-437)
freezeTo(address,uint256,uint64) should be declared external:
- FreezableToken.freezeTo(address,uint256,uint64) (#462-475)
releaseAll() should be declared external:
- FreezableToken.releaseAll() (#508-517)
burn(uint256) should be declared external:
- BurnableToken.burn(uint256) (#575-577)
unpause() should be declared external:
- Pausable.unpause() (#631-634)
name() should be declared external:
- MainToken.name() (#694-696)
symbol() should be declared external:
- MainToken.symbol() (#698-700)
decimals() should be declared external:
- MainToken.decimals() (#702-704)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Token is deployed only at one blockchain


Average 30d number of PancakeSwap swaps is low.


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Token is not listed at Mobula.Finance

Additional information: link


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for PHO

News for PHO