PhantaBearDAO Token Logo

PhantaBD [PhantaBearDAO] Token

About PhantaBD

Listings

Not Found
Token 2 years

PhantaBearDAO aims to empower PhantaBear's ecological development. It is built by #jaychou iron powder. NFTs will be airdropped.
https://t.co/yaKuQ9DK8T

Social

Laser Scorebeta Last Audit: 15 January 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address).tokenOwner (#304) lacks a zero-check on :
- owner = tokenOwner (#310)
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address)._FeeAddress (#304) lacks a zero-check on :
- FeeAddress = _FeeAddress (#313)
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address).service (#304) lacks a zero-check on :
- success = service.call.value(msg.value)() (#315)
CoinToken.updateFee(uint256,uint256,address)._FeeAddress (#324) lacks a zero-check on :
- FeeAddress = _FeeAddress (#327)
Check that the address is not zero.

Additional information: link

Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#304-318):
External calls:
- success = service.call.value(msg.value)() (#315)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,totalSupply) (#317)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#75-80) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked Time is not up) (#77)
Avoid relying on block.timestamp.

Additional information: link

StandardToken.transfer(address,uint256) (#162-189) compares to a boolean constant:
-require(bool)(tokenBlacklist[msg.sender] == false) (#163)
StandardToken.transfer(address,uint256) (#162-189) compares to a boolean constant:
-require(bool)(tokenBlacklist[_to] == false) (#164)
StandardToken.transferFrom(address,address,uint256) (#196-223) compares to a boolean constant:
-require(bool)(tokenBlacklist[msg.sender] == false) (#197)
StandardToken.transferFrom(address,address,uint256) (#196-223) compares to a boolean constant:
-require(bool)(tokenBlacklist[_from] == false) (#198)
StandardToken.transferFrom(address,address,uint256) (#196-223) compares to a boolean constant:
-require(bool)(tokenBlacklist[_to] == false) (#199)
Remove the equality to the boolean constant.

Additional information: link

SafeMath.mul(uint256,uint256) (#10-17) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.4.24 (#7) 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

Low level call in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#304-318):
- success = service.call.value(msg.value)() (#315)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter StandardToken.transfer(address,uint256)._to (#162) is not in mixedCase
Parameter StandardToken.transfer(address,uint256)._value (#162) is not in mixedCase
Parameter StandardToken.balanceOf(address)._owner (#192) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._from (#196) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._to (#196) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._value (#196) is not in mixedCase
Parameter StandardToken.approve(address,uint256)._spender (#226) is not in mixedCase
Parameter StandardToken.approve(address,uint256)._value (#226) is not in mixedCase
Parameter StandardToken.allowance(address,address)._owner (#233) is not in mixedCase
Parameter StandardToken.allowance(address,address)._spender (#233) is not in mixedCase
Parameter StandardToken.increaseApproval(address,uint256)._spender (#238) is not in mixedCase
Parameter StandardToken.increaseApproval(address,uint256)._addedValue (#238) is not in mixedCase
Parameter StandardToken.decreaseApproval(address,uint256)._spender (#244) is not in mixedCase
Parameter StandardToken.decreaseApproval(address,uint256)._subtractedValue (#244) is not in mixedCase
Variable StandardToken.FeeAddress (#152) is not in mixedCase
Parameter PausableToken.transfer(address,uint256)._to (#270) is not in mixedCase
Parameter PausableToken.transfer(address,uint256)._value (#270) is not in mixedCase
Parameter PausableToken.transferFrom(address,address,uint256)._from (#274) is not in mixedCase
Parameter PausableToken.transferFrom(address,address,uint256)._to (#274) is not in mixedCase
Parameter PausableToken.transferFrom(address,address,uint256)._value (#274) is not in mixedCase
Parameter PausableToken.approve(address,uint256)._spender (#278) is not in mixedCase
Parameter PausableToken.approve(address,uint256)._value (#278) is not in mixedCase
Parameter PausableToken.increaseApproval(address,uint256)._spender (#282) is not in mixedCase
Parameter PausableToken.increaseApproval(address,uint256)._addedValue (#282) is not in mixedCase
Parameter PausableToken.decreaseApproval(address,uint256)._spender (#286) is not in mixedCase
Parameter PausableToken.decreaseApproval(address,uint256)._subtractedValue (#286) is not in mixedCase
Parameter CoinToken.burn(uint256)._value (#320) is not in mixedCase
Parameter CoinToken.updateFee(uint256,uint256,address)._txFee (#324) is not in mixedCase
Parameter CoinToken.updateFee(uint256,uint256,address)._burnFee (#324) is not in mixedCase
Parameter CoinToken.updateFee(uint256,uint256,address)._FeeAddress (#324) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#54-57)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#59-61)
getTime() should be declared external:
- Ownable.getTime() (#63-65)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#68-73)
unlock() should be declared external:
- Ownable.unlock() (#75-80)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#85-89)
pause() should be declared external:
- Pausable.pause() (#119-122)
unpause() should be declared external:
- Pausable.unpause() (#127-130)
balanceOf(address) should be declared external:
- ERC20Basic.balanceOf(address) (#135)
- StandardToken.balanceOf(address) (#192-194)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#141)
- StandardToken.allowance(address,address) (#233-235)
blackListAddress(address,bool) should be declared external:
- PausableToken.blackListAddress(address,bool) (#290-292)
burn(uint256) should be declared external:
- CoinToken.burn(uint256) (#320-322)
updateFee(uint256,uint256,address) should be declared external:
- CoinToken.updateFee(uint256,uint256,address) (#324-328)
mint(address,uint256) should be declared external:
- CoinToken.mint(address,uint256) (#339-345)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


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 Discord account


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 find token contract audit


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


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 Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for PhantaBD

News for PhantaBD