Hideout Token Token Logo

HIDE [Hideout] Token

About HIDE

Listings

Not Found
Token 4 years
white paper

Hideout Wallet is a P2P non-custodial exchange of different cryptocurrencies, utility tokens, and security tokens. Our vision is to solve the problems of over-centralization, the excessive participation of third parties in exchanges, the abuse of KYC-AML procedures to only one network.

Social

Laser Scorebeta Last Audit: 29 June 2022

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

HideoutToken.adminEmergency(address,address,uint256) (#999-1005) ignores return value by IBEP20(addr).transfer(account,amount) (#1003)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

Reentrancy in HideoutToken.claimInternal(HideoutToken.claimParams) (#978-997):
External calls:
- require(bool,string)(signCheck(ECDSA.toEthSignedMessageHash(hash_),store.signature),Sign Error) (#992)
- signerAddress.isValidSignatureNow(hash,signature) (#1008)
- (success,result) = signer.staticcall(abi.encodeWithSelector(IBEP1271.isValidSignature.selector,hash,signature)) (#896-898)
State variables written after the call(s):
- signStatus[store.signature] = true (#993)
Apply the check-effects-interactions pattern.

Additional information: link

HideoutToken.constructor(address)._signerAddress (#915) lacks a zero-check on :
- signerAddress = _signerAddress (#916)
HideoutToken.signerAddressUpdate(address).account (#934) lacks a zero-check on :
- signerAddress = account (#935)
HideoutToken.adminEmergency(address,address,uint256).account (#999) lacks a zero-check on :
- address(account).transfer(amount) (#1001)
Check that the address is not zero.

Additional information: link

Variable 'ECDSA.tryRecover(bytes32,bytes).r (#692)' in ECDSA.tryRecover(bytes32,bytes) (#687-716) potentially used before declaration: r = mload(uint256)(signature + 0x20) (#709)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in HideoutToken.claimInternal(HideoutToken.claimParams) (#978-997):
External calls:
- require(bool,string)(signCheck(ECDSA.toEthSignedMessageHash(hash_),store.signature),Sign Error) (#992)
- signerAddress.isValidSignatureNow(hash,signature) (#1008)
- (success,result) = signer.staticcall(abi.encodeWithSelector(IBEP1271.isValidSignature.selector,hash,signature)) (#896-898)
State variables written after the call(s):
- _mint(store.user,store.amount) (#994)
- _balances[account] += amount (#379)
- _mint(store.user,store.amount) (#994)
- _totalSupply += amount (#378)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HideoutToken.claimInternal(HideoutToken.claimParams) (#978-997):
External calls:
- require(bool,string)(signCheck(ECDSA.toEthSignedMessageHash(hash_),store.signature),Sign Error) (#992)
- signerAddress.isValidSignatureNow(hash,signature) (#1008)
- (success,result) = signer.staticcall(abi.encodeWithSelector(IBEP1271.isValidSignature.selector,hash,signature)) (#896-898)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#380)
- _mint(store.user,store.amount) (#994)
- claimEvent(store.user,store.amount,block.timestamp) (#996)
Apply the check-effects-interactions pattern.

Additional information: link

HideoutToken.claimInternal(HideoutToken.claimParams) (#978-997) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp < store.deadline,Time Expired) (#981)
Avoid relying on block.timestamp.

Additional information: link

ECDSA.tryRecover(bytes32,bytes) (#687-716) uses assembly
- INLINE ASM (#697-701)
- INLINE ASM (#708-711)
ECDSA.tryRecover(bytes32,bytes32,bytes32) (#745-757) uses assembly
- INLINE ASM (#752-755)
Do not use evm assembly.

Additional information: link

BEP20._burn(address,uint256) (#396-411) is never used and should be removed
Context._msgData() (#19-21) is never used and should be removed
ECDSA._throwError(ECDSA.RecoverError) (#653-665) is never used and should be removed
ECDSA.recover(bytes32,bytes) (#732-736) is never used and should be removed
ECDSA.recover(bytes32,bytes32,bytes32) (#764-772) is never used and should be removed
ECDSA.recover(bytes32,uint8,bytes32,bytes32) (#815-824) is never used and should be removed
ECDSA.toTypedDataHash(bytes32,bytes32) (#849-851) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#2) allows old versions
Pragma version^0.8.0 (#25) allows old versions
Pragma version^0.8.0 (#105) allows old versions
Pragma version^0.8.0 (#129) allows old versions
Pragma version^0.8.0 (#481) allows old versions
Pragma version^0.8.0 (#549) allows old versions
Pragma version^0.8.0 (#636) allows old versions
Pragma version^0.8.0 (#855) allows old versions
Pragma version^0.8.0 (#873) allows old versions
Pragma version^0.8.0 (#903) allows old versions
solc-0.8.0 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 SignatureChecker.isValidSignatureNow(address,bytes32,bytes) (#886-900):
- (success,result) = signer.staticcall(abi.encodeWithSelector(IBEP1271.isValidSignature.selector,hash,signature)) (#896-898)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Struct HideoutToken.claimParams (#942-948) is not in CapWords
Event HideoutTokenclaimEvent(address,uint256,uint256) (#920) is not in CapWords
Follow the Solidity naming convention.

Additional information: link

HideoutToken.constructor(address) (#915-918) uses literals with too many digits:
- _mint(msg.sender,500000000e18) (#917)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

name() should be declared external:
- BEP20.name() (#183-185)
symbol() should be declared external:
- BEP20.symbol() (#191-193)
decimals() should be declared external:
- BEP20.decimals() (#208-210)
totalSupply() should be declared external:
- BEP20.totalSupply() (#215-217)
balanceOf(address) should be declared external:
- BEP20.balanceOf(address) (#222-224)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (#234-237)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (#242-244)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#253-256)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#271-285)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (#299-302)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (#318-326)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#529-531)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#537-540)
pause() should be declared external:
- HideoutToken.pause() (#922-924)
unpause() should be declared external:
- HideoutToken.unpause() (#926-928)
mint(address,uint256) should be declared external:
- HideoutToken.mint(address,uint256) (#930-932)
signerAddressUpdate(address) should be declared external:
- HideoutToken.signerAddressUpdate(address) (#934-936)
claimStateUpdate(bool) should be declared external:
- HideoutToken.claimStateUpdate(bool) (#938-940)
claim(bytes) should be declared external:
- HideoutToken.claim(bytes) (#973-976)
adminEmergency(address,address,uint256) should be declared external:
- HideoutToken.adminEmergency(address,address,uint256) (#999-1005)
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.


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.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


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


Token is deployed only at one blockchain


Token has only one trading pair


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find KYC or doxxing proof


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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

Price for HIDE

News for HIDE