HunterDoge Token Logo

$HD [HunterDoge] Token

About $HD

Listings

Token 2 years
white paper

The first Research Platform of its Kind - fully free of any bots/manipulations!

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Contract ticker ($HD) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Pragma version^0.6.2 (SafeMathUint.sol#3) 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

SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

Reentrancy in HunterDoge.updateDividendTracker(address) (HunterDoge.sol#108-124):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (HunterDoge.sol#115)
- newDividendTracker.excludeFromDividends(address(this)) (HunterDoge.sol#116)
- newDividendTracker.excludeFromDividends(owner()) (HunterDoge.sol#117)
- newDividendTracker.excludeFromDividends(deadWallet) (HunterDoge.sol#118)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (HunterDoge.sol#119)
State variables written after the call(s):
- dividendTracker = newDividendTracker (HunterDoge.sol#123)
Apply the check-effects-interactions pattern.

Additional information: link

HunterDoge._transfer(address,address,uint256).lastProcessedIndex (HunterDoge.sol#313) 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

HunterDoge._transfer(address,address,uint256) (HunterDoge.sol#259-320) ignores return value by dividendTracker.process(gas) (HunterDoge.sol#313-318)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#121) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.

Additional information: link

CustomUsdtDividendTracker.setLastProcessedIndex(uint256) (HunterDoge.sol#407-409) should emit an event for:
- lastProcessedIndex = index (HunterDoge.sol#408)
Emit an event for critical parameter changes.

Additional information: link

HunterDoge.updateUniswapV2Router(address)._uniswapV2Pair (HunterDoge.sol#130-131) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (HunterDoge.sol#132)
Check that the address is not zero.

Additional information: link

Variable 'HunterDoge._transfer(address,address,uint256).claims (HunterDoge.sol#313)' in HunterDoge._transfer(address,address,uint256) (HunterDoge.sol#259-320) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (HunterDoge.sol#314)
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 HunterDoge.updateUniswapV2Router(address) (HunterDoge.sol#126-133):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (HunterDoge.sol#130-131)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (HunterDoge.sol#132)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HunterDoge.updateDividendTracker(address) (HunterDoge.sol#108-124):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (HunterDoge.sol#115)
- newDividendTracker.excludeFromDividends(address(this)) (HunterDoge.sol#116)
- newDividendTracker.excludeFromDividends(owner()) (HunterDoge.sol#117)
- newDividendTracker.excludeFromDividends(deadWallet) (HunterDoge.sol#118)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (HunterDoge.sol#119)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (HunterDoge.sol#121)
Apply the check-effects-interactions pattern.

Additional information: link

CustomUsdtDividendTracker.canAutoClaim(uint256) (HunterDoge.sol#485-491) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (HunterDoge.sol#486)
- block.timestamp.sub(lastClaimTime) >= claimWait (HunterDoge.sol#490)
Avoid relying on block.timestamp.

Additional information: link

Function IUniswapV2Router01.WETH() (IUniswapV2Router.sol#7) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-25)
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 (IUniswapV2Router.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (IUniswapV2Router.sol#13)
Prevent variables from having similar names.

Additional information: link

CustomUsdtDividendTracker.getAccountAtIndex(uint256) (HunterDoge.sol#466-483) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (HunterDoge.sol#477)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-92)
Remove unused state variables.

Additional information: link

HunterDoge.deadWallet (HunterDoge.sol#25) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Twitter account link seems to be invalid


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


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


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


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for $HD