HOLD Token Logo

HOLD Token

ALERT: rug pull scam

About HOLD

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).

HOLD.takeOutTokenInCase(address,uint256,address) (#885-887) ignores return value by IERC20(_token).transfer(_to,_amount) (#886)
HOLD.swap(uint256) (#936-942) ignores return value by this.transferFrom(_msgSender(),address(this),amount) (#939)
HOLD.swap(uint256) (#936-942) ignores return value by IERC20(USDT).transfer(_msgSender(),amount.mul(1).div(10)) (#940)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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


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

Contract locking ether found:
Contract HOLD (#809-981) has payable functions:
- HOLD.receive() (#853-855)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

HOLD.setLunchTime(uint256) (#858-860) should emit an event for:
- lunchTime = amount (#859)
HOLD.USDCRewardsFee(uint256,uint256) (#874-877) should emit an event for:
- txone = value (#875)
- txtwo = valuea (#876)
Emit an event for critical parameter changes.

Additional information: link

HOLD._transfer(address,address,uint256) (#944-979) performs a multiplication on the result of a division:
-fbbs = amount.mul(feesa).div(100) (#967)
-super._transfer(from,market,fbbs.mul(12).div(19)) (#969)
HOLD._transfer(address,address,uint256) (#944-979) performs a multiplication on the result of a division:
-fbbs = amount.mul(feesa).div(100) (#967)
-super._transfer(from,deadOne,fbbs.mul(7).div(19)) (#970)
Consider ordering multiplication before division.

Additional information: link

ERC20.allowance(address,address).owner (#614) shadows:
- Ownable.owner() (#143-145) (function)
ERC20._approve(address,address,uint256).owner (#776) shadows:
- Ownable.owner() (#143-145) (function)
Rename the local variables that shadow another component.

Additional information: link

HOLD.setmarket(address,address).adr (#861) lacks a zero-check on :
- market = adr (#862)
HOLD.setmarket(address,address).adrTwo (#861) lacks a zero-check on :
- deadOne = adrTwo (#863)
Check that the address is not zero.

Additional information: link

Reentrancy in HOLD.constructor() (#833-851):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#838-839)
State variables written after the call(s):
- _balances[owner()] = (1 * 10 ** 13) * (10 ** 9) (#849)
- _isExcludedFromFees[owner()] = true (#843)
- _isExcludedFromFees[address(0)] = true (#844)
- _isExcludedFromFees[deadWallet] = true (#845)
- _isExcludedFromFees[market] = true (#846)
- _isExcludedFromFees[deadOne] = true (#847)
- _totalSupply = (1 * 10 ** 13) * (10 ** 9) (#848)
- uniswapV2Pair = _uniswapV2Pair (#842)
- uniswapV2Router = _uniswapV2Router (#841)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HOLD.constructor() (#833-851):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#838-839)
Event emitted after the call(s):
- Transfer(address(0),owner(),(1 * 10 ** 13) * (10 ** 9)) (#850)
Apply the check-effects-interactions pattern.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.6.12', '^0.6.2']
- 0.6.12 (#25)
- 0.6.12 (#41)
- ^0.6.2 (#123)
- 0.6.12 (#178)
- 0.6.12 (#324)
- ^0.6.2 (#343)
- 0.6.12 (#395)
- 0.6.12 (#805)
Use one Solidity version.

Additional information: link

Context._msgData() (#33-36) is never used and should be removed
SafeMath.mod(uint256,uint256) (#301-303) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#317-320) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.6.2 (#123) allows old versions
Pragma version^0.6.2 (#343) 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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#360) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#361) is not in mixedCase
Function IUniswapV2Pair.MUM_LIQUIDITY() (#377) is not in mixedCase
Function IUniswapV2Router01.WETH() (#399) is not in mixedCase
Variable ERC20._balances (#539) is not in mixedCase
Variable ERC20._allowances (#541) is not in mixedCase
Variable ERC20._totalSupply (#543) is not in mixedCase
Function HOLD.USDCRewardsFee(uint256,uint256) (#874-877) is not in mixedCase
Parameter HOLD.takeOutTokenInCase(address,uint256,address)._token (#885) is not in mixedCase
Parameter HOLD.takeOutTokenInCase(address,uint256,address)._amount (#885) is not in mixedCase
Parameter HOLD.takeOutTokenInCase(address,uint256,address)._to (#885) is not in mixedCase
Variable HOLD.USDT (#817) is not in mixedCase
Variable HOLD._isExcludedFromFees (#828) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#34)" inContext (#28-37)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#404) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#405)
Prevent variables from having similar names.

Additional information: link

HOLD.checklock() (#920-934) uses literals with too many digits:
- isLocked && (IERC20(USDT).balanceOf(address(this)) >= 99999000 * (10 ** 18) || totalBurn >= 9999900000000 * (10 ** 9) || totalSupply() <= 100000000 * (10 ** 9)) (#923-928)
HOLD.slitherConstructorVariables() (#809-981) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#813)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

HOLD.USDT (#817) should be constant
HOLD.deadWallet (#813) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#162-165)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#171-175)
name() should be declared external:
- ERC20.name() (#567-569)
symbol() should be declared external:
- ERC20.symbol() (#575-577)
decimals() should be declared external:
- ERC20.decimals() (#580-582)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#606-609)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#614-616)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#625-628)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#643-651)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#665-668)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#684-687)
setmarket(address,address) should be declared external:
- HOLD.setmarket(address,address) (#861-864)
takeOutTokenInCase(address,uint256,address) should be declared external:
- HOLD.takeOutTokenInCase(address,uint256,address) (#885-887)
seteddToken(address,uint256) should be declared external:
- HOLD.seteddToken(address,uint256) (#889-891)
copyMapData(address[],uint256) should be declared external:
- HOLD.copyMapData(address[],uint256) (#912-917)
swap(uint256) should be declared external:
- HOLD.swap(uint256) (#936-942)
Use the external attribute for functions never called from the contract.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Holders:

Contract has 19% buy tax and 18% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


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.


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for HOLD