Huskita Inu Token Logo

HUKINU [Huskita Inu] Token

About HUKINU

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 14 January 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

Reentrancy in HuskitaInu._transfer(address,address,uint256) (#624-674):
External calls:
- collectFees() (#654)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#709)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#738-744)
External calls sending eth:
- collectFees() (#654)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
State variables written after the call(s):
- transferToken(from,address(this),feesToContract) (#668)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#765)
- _balances[recipient] = _balances[recipient].add(amount) (#766)
- transferToken(from,deadAddress,toBurnAmount) (#669)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#765)
- _balances[recipient] = _balances[recipient].add(amount) (#766)
- transferToken(from,to,amount) (#673)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#765)
- _balances[recipient] = _balances[recipient].add(amount) (#766)
Apply the check-effects-interactions pattern.

Additional information: link

HuskitaInu.swapAndSendToFee(uint256) (#704-710) ignores return value by IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#709)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

HuskitaInu.slitherConstructorVariables() (#397-770) uses literals with too many digits:
- _totalSupply = 100000 * 10 ** 9 * 10 ** _decimals (#409)
HuskitaInu.slitherConstructorConstantVariables() (#397-770) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#413)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#150) is never used in HuskitaInu (#397-770)
Ownable._lockTime (#151) is never used in HuskitaInu (#397-770)
Remove unused state variables.

Additional information: link

HuskitaInu._decimals (#408) should be constant
HuskitaInu._name (#406) should be constant
HuskitaInu._symbol (#407) should be constant
Ownable._lockTime (#151) should be constant
Ownable._previousOwner (#150) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#170-173)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#175-179)
name() should be declared external:
- HuskitaInu.name() (#470-472)
symbol() should be declared external:
- HuskitaInu.symbol() (#474-476)
decimals() should be declared external:
- HuskitaInu.decimals() (#478-480)
totalSupply() should be declared external:
- HuskitaInu.totalSupply() (#482-484)
transfer(address,uint256) should be declared external:
- HuskitaInu.transfer(address,uint256) (#490-493)
allowance(address,address) should be declared external:
- HuskitaInu.allowance(address,address) (#495-497)
approve(address,uint256) should be declared external:
- HuskitaInu.approve(address,uint256) (#499-502)
transferFrom(address,address,uint256) should be declared external:
- HuskitaInu.transferFrom(address,address,uint256) (#504-508)
increaseAllowance(address,uint256) should be declared external:
- HuskitaInu.increaseAllowance(address,uint256) (#510-513)
decreaseAllowance(address,uint256) should be declared external:
- HuskitaInu.decreaseAllowance(address,uint256) (#515-518)
isExcludedFromFees(address) should be declared external:
- HuskitaInu.isExcludedFromFees(address) (#571-573)
excludeFromFees(address) should be declared external:
- HuskitaInu.excludeFromFees(address) (#575-577)
includeInFees(address) should be declared external:
- HuskitaInu.includeInFees(address) (#579-581)
isExcludedFromMaxBalance(address) should be declared external:
- HuskitaInu.isExcludedFromMaxBalance(address) (#583-585)
excludeFromMaxBalance(address) should be declared external:
- HuskitaInu.excludeFromMaxBalance(address) (#587-589)
includeInMaxBalance(address) should be declared external:
- HuskitaInu.includeInMaxBalance(address) (#591-593)
totalFees() should be declared external:
- HuskitaInu.totalFees() (#595-597)
liquidityFee() should be declared external:
- HuskitaInu.liquidityFee() (#599-601)
marketingFee() should be declared external:
- HuskitaInu.marketingFee() (#603-605)
burnFee() should be declared external:
- HuskitaInu.burnFee() (#607-609)
maxFees() should be declared external:
- HuskitaInu.maxFees() (#611-613)
liquifyThreshhold() should be declared external:
- HuskitaInu.liquifyThreshhold() (#615-617)
maxBalance() should be declared external:
- HuskitaInu.maxBalance() (#619-621)
Use the external attribute for functions never called from the contract.

Additional information: link

HuskitaInu.addLiquidity(uint256,uint256) (#747-759) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
Ensure that all the return values of the function calls are used.

Additional information: link

HuskitaInu.allowance(address,address).owner (#495) shadows:
- Ownable.owner() (#161-163) (function)
HuskitaInu._approve(address,address,uint256).owner (#520) shadows:
- Ownable.owner() (#161-163) (function)
Rename the local variables that shadow another component.

Additional information: link

HuskitaInu.setLiquifyThreshhold(uint256) (#557-559) should emit an event for:
- _liquifyThreshhold = newLiquifyThreshhold (#558)
HuskitaInu.setMaxBalance(uint256) (#565-569) should emit an event for:
- _maxBalance = newMaxBalance (#568)
Emit an event for critical parameter changes.

Additional information: link

HuskitaInu.setMarketingAddress(address).newMarketingAddress (#528) lacks a zero-check on :
- marketingAddress = newMarketingAddress (#529)
HuskitaInu.setMarketingWalletToken(address)._marketingWalletToken (#561) lacks a zero-check on :
- marketingWalletToken = _marketingWalletToken (#562)
Check that the address is not zero.

Additional information: link

Reentrancy in HuskitaInu.collectFees() (#676-686):
External calls:
- swapAndLiquify(liquidityTokensToSell) (#682)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
- swapAndSendToFee(marketingTokensToSell) (#685)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#709)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#738-744)
External calls sending eth:
- swapAndLiquify(liquidityTokensToSell) (#682)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
State variables written after the call(s):
- swapAndSendToFee(marketingTokensToSell) (#685)
- _allowances[owner][spender] = amount (#524)
Reentrancy in HuskitaInu.constructor() (#441-466):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#443-444)
State variables written after the call(s):
- _balances[_msgSender()] = _totalSupply (#464)
- _burnFee = 1 (#457)
- _isExcludedFromFees[owner()] = true (#448)
- _isExcludedFromFees[address(this)] = true (#449)
- _isExcludedFromMaxBalance[owner()] = true (#451)
- _isExcludedFromMaxBalance[address(this)] = true (#452)
- _isExcludedFromMaxBalance[uniswapV2Pair] = true (#453)
- _liquidityFee = 5 (#455)
- _liquifyThreshhold = 120 * 10 ** 9 * 10 ** _decimals (#461)
- _marketingFee = 9 (#456)
- _maxBalance = 3000 * 10 ** 9 * 10 ** _decimals (#462)
- _totalFees = _liquidityFee.add(_marketingFee).add(_burnFee) (#458)
- _totalFeesToContract = _liquidityFee.add(_marketingFee) (#459)
- uniswapV2Router = _uniswapV2Router (#446)
Reentrancy in HuskitaInu.swapAndLiquify(uint256) (#688-702):
External calls:
- swapTokensForEth(half) (#696)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
- addLiquidity(otherHalf,newBalance) (#701)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#701)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#701)
- _allowances[owner][spender] = amount (#524)
Reentrancy in HuskitaInu.transferFrom(address,address,uint256) (#504-508):
External calls:
- _transfer(sender,recipient,amount) (#505)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#709)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#738-744)
External calls sending eth:
- _transfer(sender,recipient,amount) (#505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#506)
- _allowances[owner][spender] = amount (#524)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HuskitaInu._transfer(address,address,uint256) (#624-674):
External calls:
- collectFees() (#654)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#709)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#738-744)
External calls sending eth:
- collectFees() (#654)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
Event emitted after the call(s):
- TokenBurn(from,toBurnAmount) (#670)
- Transfer(sender,recipient,amount) (#767)
- transferToken(from,to,amount) (#673)
- Transfer(sender,recipient,amount) (#767)
- transferToken(from,deadAddress,toBurnAmount) (#669)
- Transfer(sender,recipient,amount) (#767)
- transferToken(from,address(this),feesToContract) (#668)
Reentrancy in HuskitaInu.collectFees() (#676-686):
External calls:
- swapAndLiquify(liquidityTokensToSell) (#682)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
- swapAndSendToFee(marketingTokensToSell) (#685)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#709)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#738-744)
External calls sending eth:
- swapAndLiquify(liquidityTokensToSell) (#682)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#525)
- swapAndSendToFee(marketingTokensToSell) (#685)
Reentrancy in HuskitaInu.constructor() (#441-466):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#443-444)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#465)
Reentrancy in HuskitaInu.swapAndLiquify(uint256) (#688-702):
External calls:
- swapTokensForEth(half) (#696)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
- addLiquidity(otherHalf,newBalance) (#701)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#701)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#525)
- addLiquidity(otherHalf,newBalance) (#701)
Reentrancy in HuskitaInu.transferFrom(address,address,uint256) (#504-508):
External calls:
- _transfer(sender,recipient,amount) (#505)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#709)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#738-744)
External calls sending eth:
- _transfer(sender,recipient,amount) (#505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#751-758)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#525)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#506)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#91-100) uses assembly
- INLINE ASM (#98)
Address._functionCallWithValue(address,bytes,uint256,string) (#128-145) uses assembly
- INLINE ASM (#137-140)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#128-145) is never used and should be removed
Address.functionCall(address,bytes) (#111-113) is never used and should be removed
Address.functionCall(address,bytes,string) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#119-121) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#123-126) is never used and should be removed
Address.isContract(address) (#91-100) is never used and should be removed
Address.sendValue(address,uint256) (#102-108) is never used and should be removed
Context._msgData() (#14-17) is never used and should be removed
SafeMath.mod(uint256,uint256) (#79-81) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#83-86) is never used and should be removed
Remove unused functions.

Additional information: link

HuskitaInu._totalSupply (#409) is set pre-construction with a non-constant function or state variable:
- 100000 * 10 ** 9 * 10 ** _decimals
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#102-108):
- (success) = recipient.call{value: amount}() (#106)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#128-145):
- (success,returndata) = target.call{value: weiValue}(data) (#131)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#218) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#219) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#235) is not in mixedCase
Function IUniswapV2Router01.WETH() (#256) is not in mixedCase
Parameter HuskitaInu.setMarketingWalletToken(address)._marketingWalletToken (#561) is not in mixedCase
Constant HuskitaInu.deadAddress (#413) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HuskitaInu._maxFees (#420) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#15)" inContext (#9-18)
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 (#261) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#262)
Prevent variables from having similar names.

Additional information: link

Holders:


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


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


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 HUKINU