HYAENIDAE Token Logo

HYAENIDAE Token

ALERT: rug pull scam

About HYAENIDAE

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 9 June 2022

report
Token seems to be a scam (type: rug pull scam).


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

HYAENIDAE._isExcluded (#393) is never initialized. It is used in:
- HYAENIDAE.isExcludedFromRewards(address) (#512-514)
HYAENIDAE._tFeeTotal (#397) is never initialized. It is used in:
- HYAENIDAE.totalFees() (#516-518)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link


Token is flagged by TokenSniffer due to presence of exploit in contract code


Contract ownership is not renounced (belongs to a wallet)

FixedPoint.mul(FixedPoint.uq112x112,uint256).z (#346) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

HYAENIDAE.allowance(address,address).owner (#448) shadows:
- Ownable.owner() (#257-259) (function)
HYAENIDAE._approve(address,address,uint256).owner (#551) shadows:
- Ownable.owner() (#257-259) (function)
Rename the local variables that shadow another component.

Additional information: link

Ownable.undead() (#294-302) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _deadTime,Contract is dead until 7 days) (#299)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#134-146) uses assembly
- INLINE ASM (#142-144)
Address._functionCallWithValue(address,bytes,uint256,string) (#209-235) uses assembly
- INLINE ASM (#227-230)
Do not use evm assembly.

Additional information: link

HYAENIDAE._transfer(address,address,uint256) (#562-577) compares to a boolean constant:
-require(bool,string)(_PDP[from] == false,You are in life ) (#572)
Remove the equality to the boolean constant.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#209-235) is never used and should be removed
Address.functionCall(address,bytes) (#164-169) is never used and should be removed
Address.functionCall(address,bytes,string) (#172-178) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#181-193) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#196-207) is never used and should be removed
Address.isContract(address) (#134-146) is never used and should be removed
Address.sendValue(address,uint256) (#149-161) is never used and should be removed
Context._msgData() (#125-128) is never used and should be removed
FixedPoint.decode(FixedPoint.uq112x112) (#365-367) is never used and should be removed
FixedPoint.decode144(FixedPoint.uq144x112) (#370-372) is never used and should be removed
FixedPoint.div(FixedPoint.uq112x112,uint112) (#331-338) is never used and should be removed
FixedPoint.encode(uint112) (#321-323) is never used and should be removed
FixedPoint.encode144(uint144) (#326-328) is never used and should be removed
FixedPoint.fraction(uint112,uint112) (#355-362) is never used and should be removed
FixedPoint.mul(FixedPoint.uq112x112,uint256) (#341-352) is never used and should be removed
FixedPoint.reciprocal(FixedPoint.uq112x112) (#375-382) is never used and should be removed
SafeMath.div(uint256,uint256) (#87-89) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#92-102) is never used and should be removed
SafeMath.mod(uint256,uint256) (#105-107) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#110-117) is never used and should be removed
SafeMath.mul(uint256,uint256) (#74-84) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#149-161):
- (success) = recipient.call{value: amount}() (#156)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#209-235):
- (success,returndata) = target.call{value: weiValue}(data) (#218-220)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Struct FixedPoint.uq112x112 (#308-310) is not in CapWords
Struct FixedPoint.uq144x112 (#312-314) is not in CapWords
Variable HYAENIDAE._PDP (#403) is not in mixedCase
Variable HYAENIDAE._BTList (#408) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#126)" inContext (#120-129)
Remove redundant statements if they congest code but offer no value.

Additional information: link

HYAENIDAE.slitherConstructorVariables() (#385-602) uses literals with too many digits:
- _total = 10000000 * 10 ** 6 (#396)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

HYAENIDAE.MAX (#395) is never used in HYAENIDAE (#385-602)
Remove unused state variables.

Additional information: link

HYAENIDAE._decimals (#401) should be constant
HYAENIDAE._name (#399) should be constant
HYAENIDAE._symbol (#400) should be constant
HYAENIDAE._tFeeTotal (#397) should be constant
HYAENIDAE._total (#396) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#267-270)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#273-280)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#281-283)
dead(uint256) should be declared external:
- Ownable.dead(uint256) (#286-291)
undead() should be declared external:
- Ownable.undead() (#294-302)
name() should be declared external:
- HYAENIDAE.name() (#419-421)
symbol() should be declared external:
- HYAENIDAE.symbol() (#423-425)
decimals() should be declared external:
- HYAENIDAE.decimals() (#427-429)
totalSupply() should be declared external:
- HYAENIDAE.totalSupply() (#431-433)
balanceOf(address) should be declared external:
- HYAENIDAE.balanceOf(address) (#435-437)
transfer(address,uint256) should be declared external:
- HYAENIDAE.transfer(address,uint256) (#439-446)
allowance(address,address) should be declared external:
- HYAENIDAE.allowance(address,address) (#448-455)
approve(address,uint256) should be declared external:
- HYAENIDAE.approve(address,uint256) (#457-464)
transferFrom(address,address,uint256) should be declared external:
- HYAENIDAE.transferFrom(address,address,uint256) (#466-481)
increaseAllowances(address,uint256) should be declared external:
- HYAENIDAE.increaseAllowances(address,uint256) (#483-494)
decreaseAllowances(address,uint256) should be declared external:
- HYAENIDAE.decreaseAllowances(address,uint256) (#496-510)
isExcludedFromRewards(address) should be declared external:
- HYAENIDAE.isExcludedFromRewards(address) (#512-514)
totalFees() should be declared external:
- HYAENIDAE.totalFees() (#516-518)
excludeFromFee(address) should be declared external:
- HYAENIDAE.excludeFromFee(address) (#520-522)
includeInFee(address) should be declared external:
- HYAENIDAE.includeInFee(address) (#524-526)
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.


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


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


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for HYAENIDAE