JADU Token Logo

JADU Token

ALERT: honeypot scam

About JADU

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 9 May 2022

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

JADU._owner (#233) shadows:
- Ownable._owner (#180)
Remove the state variable shadowing.

Additional information: link


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

JADU.transfer(address,uint256).owner (#320) shadows:
- Ownable.owner() (#187-189) (function)
JADU.allowance(address,address).owner (#324) shadows:
- Ownable.owner() (#187-189) (function)
JADU.approve(address,uint256).owner (#328) shadows:
- Ownable.owner() (#187-189) (function)
JADU.increaseAllowance(address,uint256).owner (#343) shadows:
- Ownable.owner() (#187-189) (function)
JADU.decreaseAllowance(address,uint256).owner (#348) shadows:
- Ownable.owner() (#187-189) (function)
JADU._approve(address,address,uint256).owner (#408) shadows:
- Ownable.owner() (#187-189) (function)
JADU._spendAllowance(address,address,uint256).owner (#418) shadows:
- Ownable.owner() (#187-189) (function)
Rename the local variables that shadow another component.

Additional information: link

JADU.setCurrPrice(uint256) (#273-276) should emit an event for:
- _defaultPrice = price (#274)
Emit an event for critical parameter changes.

Additional information: link

JADU.constructor(string,string,uint256,address,uint256).airTokenAddr_ (#251) lacks a zero-check on :
- _airTokenAddr = airTokenAddr_ (#255)
JADU.SwapContract(address).swap_ (#292) lacks a zero-check on :
- _swap = swap_ (#293)
Check that the address is not zero.

Additional information: link

Address.verifyCallResult(bool,bytes,string) (#71-89) uses assembly
- INLINE ASM (#81-84)
Do not use evm assembly.

Additional information: link

JADU.Bonous() (#277-284) compares to a boolean constant:
-isStatus[user] == false && user != deadwallet (#281)
Remove the equality to the boolean constant.

Additional information: link

Address.functionCall(address,bytes) (#14-16) is never used and should be removed
Address.functionCall(address,bytes,string) (#17-23) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#24-30) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#31-42) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#58-60) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#61-70) is never used and should be removed
Address.functionStaticCall(address,bytes) (#44-46) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#47-56) is never used and should be removed
Address.isContract(address) (#5-7) is never used and should be removed
Address.sendValue(address,uint256) (#8-13) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#71-89) is never used and should be removed
Context._msgData() (#175-177) is never used and should be removed
JADU._burn(address,uint256) (#397-406) is never used and should be removed
SafeMath.div(uint256,uint256) (#134-136) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#150-159) is never used and should be removed
SafeMath.mod(uint256,uint256) (#137-139) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#160-169) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#140-149) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#92-98) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#113-118) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#119-124) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#105-112) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#99-104) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#2) allows old versions
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 Address.sendValue(address,uint256) (#8-13):
- (success) = recipient.call{value: amount}() (#11)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#31-42):
- (success,returndata) = target.call{value: value}(data) (#40)
Low level call in Address.functionStaticCall(address,bytes,string) (#47-56):
- (success,returndata) = target.staticcall(data) (#54)
Low level call in Address.functionDelegateCall(address,bytes,string) (#61-70):
- (success,returndata) = target.delegatecall(data) (#68)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function JADU.AirDropGift(address) (#259-262) is not in mixedCase
Function JADU.AirDrop(address) (#263-266) is not in mixedCase
Function JADU.Bonous() (#277-284) is not in mixedCase
Function JADU.SwapContract(address) (#292-295) is not in mixedCase
Function JADU.WithdrawalTransfer() (#296-299) is not in mixedCase
Function JADU.DepositTransfer() (#300-303) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable JADU._airTokenAddr (#241) is too similar to JADU.constructor(string,string,uint256,address,uint256).airTokenAddr_ (#251)
Variable JADU._defaultPrice (#247) is too similar to JADU.constructor(string,string,uint256,address,uint256).defaultPrice_ (#251)
Variable JADU._totalSupply (#234) is too similar to JADU.constructor(string,string,uint256,address,uint256).totalSupply_ (#251)
Prevent variables from having similar names.

Additional information: link

JADU.slitherConstructorVariables() (#227-431) uses literals with too many digits:
- deadwallet = 0x0000000000000000000000000000000000000000 (#249)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

JADU.isMadness (#248) is never used in JADU (#227-431)
Remove unused state variables.

Additional information: link

JADU.deadwallet (#249) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#194-196)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#197-200)
AirDrop(address) should be declared external:
- JADU.AirDrop(address) (#263-266)
getAirStauts(address) should be declared external:
- JADU.getAirStauts(address) (#267-269)
getCurrPrice() should be declared external:
- JADU.getCurrPrice() (#270-272)
setCurrPrice(uint256) should be declared external:
- JADU.setCurrPrice(uint256) (#273-276)
Bonous() should be declared external:
- JADU.Bonous() (#277-284)
SwapContract(address) should be declared external:
- JADU.SwapContract(address) (#292-295)
WithdrawalTransfer() should be declared external:
- JADU.WithdrawalTransfer() (#296-299)
DepositTransfer() should be declared external:
- JADU.DepositTransfer() (#300-303)
name() should be declared external:
- JADU.name() (#304-306)
symbol() should be declared external:
- JADU.symbol() (#307-309)
totalSupply() should be declared external:
- JADU.totalSupply() (#313-315)
balanceOf(address) should be declared external:
- JADU.balanceOf(address) (#316-318)
transfer(address,uint256) should be declared external:
- JADU.transfer(address,uint256) (#319-323)
approve(address,uint256) should be declared external:
- JADU.approve(address,uint256) (#327-331)
transferFrom(address,address,uint256) should be declared external:
- JADU.transferFrom(address,address,uint256) (#332-341)
increaseAllowance(address,uint256) should be declared external:
- JADU.increaseAllowance(address,uint256) (#342-346)
decreaseAllowance(address,uint256) should be declared external:
- JADU.decreaseAllowance(address,uint256) (#347-355)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d PancakeSwap liquidity is low.


Average 30d number of PancakeSwap swaps is low.


Number of Binance Smart Chain (BSC) token holders is low.


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


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 JADU