HELL HOUNDS Token Logo

SOUL [HELL HOUNDS] Token

About SOUL

Listings

Token 2 years
CoinGecko 21 months
CoinMarketCap 21 months
white paper

Hell Hounds is a static rewards token by being the first lifestyle platform token that incorporates the redistribution and LP acquisition mechanics commonly seen in finance tokens and applies them to the wide variety of applications, including games on the platform.
Hell Hounds, was created to serve a real purpose and to fill an unrealized niche. Hell Hounds crypto is an alternative culture token with multiple use case applications such as Gaming, Shopping, Movies, Entertainment and Traveling.
Gaming: The first use case in which Hell Hounds will be utilized is in gaming and the release of our first title, Cassian’s Quest, shows just that. It is a fun, simple, tower defense game with a linear story. It is our first foray into gaming and the first of many titles to come. The target platform is Webgl and the technology being used is Unity. The cryptocurrency used in this game is simply to purchase it. It is not play-to-win, no one will charge the users X amount of crypto to buy towers and such. It is straightforward and a classic approach to games wherein you buy said game and it’s all yours.
Cassian’s Quest will be followed up in the 1st quarter of 2022 with a massively multiplayer party PVP P2E mobile and pc game. This game is currently under development. In this game player enjoyment takes priority and cryptocurrency as well as NFTs take a backseat just to enhance the overall experience instead of being the centerpiece. There are too many games which push the cryptocurrency ahead of actual gameplay. This means that development will take a bit longer to with this game but we expect a larger player base because of the actual fun factor.
Entertainment: Entertainment is a broad subject encompassing a whole myriad of different genres. Though videogames are considered entertainment, for specification sake this will be utilized for Film and Music. We will be hosting independent alternative culture such as horror, cyberpunk, steampunk films as well as indie bands on our site and will be charging our users to view said films and performances at the Hell Hounds Online Cinema where you can share and watch together with your friends, for a limited time only. Proceeds of which go directly to the film makers and musicians with Hell hounds receiving a minimal percentage to offset operational expenses. NFT tickets will be batch minted and sold per screening. Each NFT pass will be valid for 24 hours upon purchase.
Travelling: Hell Hounds seeks to support the currently downed tourism industry by partnering up with all kinds of horror attractions around the world as a frictionless, safe, and secure payment system while simultaneously opening them up to a new set of customers. We envision Souls being used to transact with our partnered merchants to deliver an unprecedented level of service and speed without the international fees. Hell Hounds, will have a dedicated section with verified ratings of customers to share their experiences and to entice more people to visit the attraction. “Real reviews by really scared customers” is a fun and entertaining concept. Our reviewers will also be rewarded in our currency for each verified review, giving a new meaning to play-to-earn.
Shopping: Hell Hounds seeks not just to partner with horror and counter-culture related e-commerce businesses as a safe and secure payment method but to create the first horror cryptocurrency/ecommerce collaboration as well. We envision ourselves tying up with smoke shops, clothing stores, voodoo/occult supplies and many more.
Static Rewards: A static reward payout mechanism has been chosen to alleviate some of the downward sell pressure caused by early adopters dumping their tokens. The reflect mechanism encourages users to hold their tokens in exchange for the rewards which are based on the proportion of tokens held by each user.
whıtepaper: https://hellhounds.io/wp-content/uploads/2021/12/whitepaperv10.pdf
audit: https://certik-public-assets.s3.amazonaws.com/REP-HellHounds-2021-12-08.pdf

Social

Laser Scorebeta Last Audit: 3 July 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

HELLHOUNDS.addLiquidity(uint256,uint256) (#1185-1199) sends eth to arbitrary user
Dangerous calls:
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in HELLHOUNDS._transfer(address,address,uint256) (#1095-1139):
External calls:
- swapAndLiquify(contractTokenBalance) (#1126)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1176-1182)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1126)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- address(TREASURY_ADDRESS).transfer(address(this).balance) (#1162)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1034)
- _rOwned[TREASURY_ADDRESS] = _rOwned[TREASURY_ADDRESS].add(rTreasury) (#1042)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1234)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1224)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1246)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#939)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1225)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1236)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1247)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#941)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _rTotal = _rTotal.sub(rFee) (#987)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1036)
- _tOwned[TREASURY_ADDRESS] = _tOwned[TREASURY_ADDRESS].add(tTreasury) (#1044)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1245)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#938)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1235)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#940)
Apply the check-effects-interactions pattern.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)

HELLHOUNDS.addLiquidity(uint256,uint256) (#1185-1199) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(liquidity > 0) (#1198)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#352-361) uses assembly
- INLINE ASM (#359)
Address._functionCallWithValue(address,bytes,uint256,string) (#445-466) uses assembly
- INLINE ASM (#458-461)
Do not use evm assembly.

Additional information: link

Redundant expression "this (#325)" inContext (#319-328)
Remove redundant statements if they congest code but offer no value.

Additional information: link

HELLHOUNDS.slitherConstructorVariables() (#747-1258) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 18 (#785)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

HELLHOUNDS.includeInReward(address) (#923-935) has costly operations inside a loop:
- _excluded.pop() (#931)
Use a local variable to hold the loop computation result.

Additional information: link

HELLHOUNDS.allowance(address,address).owner (#852) shadows:
- Ownable.owner() (#498-500) (function)
HELLHOUNDS._approve(address,address,uint256).owner (#1087) shadows:
- Ownable.owner() (#498-500) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in HELLHOUNDS._transfer(address,address,uint256) (#1095-1139):
External calls:
- swapAndLiquify(contractTokenBalance) (#1126)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1176-1182)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1126)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- address(TREASURY_ADDRESS).transfer(address(this).balance) (#1162)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _liquidityFee = _previousLiquidityFee (#1079)
- _liquidityFee = 0 (#1073)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _previousLiquidityFee = _liquidityFee (#1069)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _previousTaxFee = _taxFee (#1068)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _previousTreasuryFee = _treasuryFee (#1070)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _tFeeTotal = _tFeeTotal.add(tFee) (#988)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _taxFee = _previousTaxFee (#1078)
- _taxFee = 0 (#1072)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _treasuryFee = _previousTreasuryFee (#1080)
- _treasuryFee = 0 (#1074)
Reentrancy in HELLHOUNDS.constructor(address) (#807-824):
External calls:
- pancakeV2Pair = IPancakeV2Factory(_pancakeV2Router.factory()).createPair(address(this),_pancakeV2Router.WETH()) (#813-814)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#820)
- _isExcludedFromFee[address(this)] = true (#821)
- pancakeV2Router = _pancakeV2Router (#817)
Reentrancy in HELLHOUNDS.swapAndLiquify(uint256) (#1141-1165):
External calls:
- swapTokensForEth(half) (#1153)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1176-1182)
- addLiquidity(otherHalf,newBalance) (#1159)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1159)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1159)
- _allowances[owner][spender] = amount (#1091)
Reentrancy in HELLHOUNDS.transferFrom(address,address,uint256) (#861-865):
External calls:
- _transfer(sender,recipient,amount) (#862)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1176-1182)
External calls sending eth:
- _transfer(sender,recipient,amount) (#862)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- address(TREASURY_ADDRESS).transfer(address(this).balance) (#1162)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#863)
- _allowances[owner][spender] = amount (#1091)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HELLHOUNDS._transfer(address,address,uint256) (#1095-1139):
External calls:
- swapAndLiquify(contractTokenBalance) (#1126)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1176-1182)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1126)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- address(TREASURY_ADDRESS).transfer(address(this).balance) (#1162)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1229)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- Transfer(sender,recipient,tTransferAmount) (#1251)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- Transfer(sender,recipient,tTransferAmount) (#1240)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- Transfer(sender,recipient,tTransferAmount) (#945)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
Reentrancy in HELLHOUNDS.constructor(address) (#807-824):
External calls:
- pancakeV2Pair = IPancakeV2Factory(_pancakeV2Router.factory()).createPair(address(this),_pancakeV2Router.WETH()) (#813-814)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#823)
Reentrancy in HELLHOUNDS.swapAndLiquify(uint256) (#1141-1165):
External calls:
- swapTokensForEth(half) (#1153)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1176-1182)
- addLiquidity(otherHalf,newBalance) (#1159)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1159)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1092)
- addLiquidity(otherHalf,newBalance) (#1159)
Reentrancy in HELLHOUNDS.swapAndLiquify(uint256) (#1141-1165):
External calls:
- swapTokensForEth(half) (#1153)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1176-1182)
- addLiquidity(otherHalf,newBalance) (#1159)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1159)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- address(TREASURY_ADDRESS).transfer(address(this).balance) (#1162)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance,otherHalf) (#1164)
Reentrancy in HELLHOUNDS.transferFrom(address,address,uint256) (#861-865):
External calls:
- _transfer(sender,recipient,amount) (#862)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- pancakeV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1176-1182)
External calls sending eth:
- _transfer(sender,recipient,amount) (#862)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- address(TREASURY_ADDRESS).transfer(address(this).balance) (#1162)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1092)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#863)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#445-466) is never used and should be removed
Address.functionCall(address,bytes) (#405-407) is never used and should be removed
Address.functionCall(address,bytes,string) (#415-417) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#430-432) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#440-443) is never used and should be removed
Address.isContract(address) (#352-361) is never used and should be removed
Address.sendValue(address,uint256) (#379-385) is never used and should be removed
Context._msgData() (#324-327) is never used and should be removed
SafeMath.mod(uint256,uint256) (#297-299) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#313-316) is never used and should be removed
Remove unused functions.

Additional information: link

HELLHOUNDS._previousTaxFee (#770) is set pre-construction with a non-constant function or state variable:
- _taxFee
HELLHOUNDS._previousLiquidityFee (#773) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
HELLHOUNDS._previousTreasuryFee (#776) is set pre-construction with a non-constant function or state variable:
- _treasuryFee
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) (#379-385):
- (success) = recipient.call{value: amount}() (#383)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#445-466):
- (success,returndata) = target.call{value: weiValue}(data) (#449)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeV2Pair.DOMAIN_SEPARATOR() (#569) is not in mixedCase
Function IPancakeV2Pair.PERMIT_TYPEHASH() (#570) is not in mixedCase
Function IPancakeV2Pair.MINIMUM_LIQUIDITY() (#587) is not in mixedCase
Function IPancakeV2Router01.WETH() (#609) is not in mixedCase
Parameter HELLHOUNDS.setSwapAndLiquifyEnabled(bool)._enabled (#978) is not in mixedCase
Parameter HELLHOUNDS.calculateTaxFee(uint256)._amount (#1047) is not in mixedCase
Parameter HELLHOUNDS.calculateLiquidityFee(uint256)._amount (#1053) is not in mixedCase
Parameter HELLHOUNDS.calculateTreasuryFee(uint256)._amount (#1059) is not in mixedCase
Constant HELLHOUNDS._tTotal (#761) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HELLHOUNDS._name (#765) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HELLHOUNDS._symbol (#766) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HELLHOUNDS._decimals (#767) is not in UPPER_CASE_WITH_UNDERSCORES
Variable HELLHOUNDS._taxFee (#769) is not in mixedCase
Variable HELLHOUNDS._liquidityFee (#772) is not in mixedCase
Variable HELLHOUNDS._treasuryFee (#775) is not in mixedCase
Variable HELLHOUNDS._maxTxAmount (#785) is not in mixedCase
Constant HELLHOUNDS.numTokensSellToAddToLiquidity (#786) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Reentrancy in HELLHOUNDS._transfer(address,address,uint256) (#1095-1139):
External calls:
- swapAndLiquify(contractTokenBalance) (#1126)
- address(TREASURY_ADDRESS).transfer(address(this).balance) (#1162)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1126)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- address(TREASURY_ADDRESS).transfer(address(this).balance) (#1162)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _liquidityFee = _previousLiquidityFee (#1079)
- _liquidityFee = 0 (#1073)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _previousLiquidityFee = _liquidityFee (#1069)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _previousTaxFee = _taxFee (#1068)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _previousTreasuryFee = _treasuryFee (#1070)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1034)
- _rOwned[TREASURY_ADDRESS] = _rOwned[TREASURY_ADDRESS].add(rTreasury) (#1042)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1234)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1224)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1246)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#939)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1225)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1236)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1247)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#941)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _rTotal = _rTotal.sub(rFee) (#987)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _tFeeTotal = _tFeeTotal.add(tFee) (#988)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1036)
- _tOwned[TREASURY_ADDRESS] = _tOwned[TREASURY_ADDRESS].add(tTreasury) (#1044)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1245)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#938)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1235)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#940)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _taxFee = _previousTaxFee (#1078)
- _taxFee = 0 (#1072)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _treasuryFee = _previousTreasuryFee (#1080)
- _treasuryFee = 0 (#1074)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1229)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- Transfer(sender,recipient,tTransferAmount) (#1251)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- Transfer(sender,recipient,tTransferAmount) (#1240)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- Transfer(sender,recipient,tTransferAmount) (#945)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
Reentrancy in HELLHOUNDS.swapAndLiquify(uint256) (#1141-1165):
External calls:
- address(TREASURY_ADDRESS).transfer(address(this).balance) (#1162)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1159)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- address(TREASURY_ADDRESS).transfer(address(this).balance) (#1162)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance,otherHalf) (#1164)
Reentrancy in HELLHOUNDS.transferFrom(address,address,uint256) (#861-865):
External calls:
- _transfer(sender,recipient,amount) (#862)
- address(TREASURY_ADDRESS).transfer(address(this).balance) (#1162)
External calls sending eth:
- _transfer(sender,recipient,amount) (#862)
- (liquidity) = pancakeV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1190-1197)
- address(TREASURY_ADDRESS).transfer(address(this).balance) (#1162)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#863)
- _allowances[owner][spender] = amount (#1091)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1092)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#863)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IPancakeV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#614) is too similar to IPancakeV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#615)
Variable HELLHOUNDS._transferToExcluded(address,address,uint256).rTransferAmount (#1233) is too similar to HELLHOUNDS._getValues(uint256).tTransferAmount (#992)
Variable HELLHOUNDS._transferStandard(address,address,uint256).rTransferAmount (#1223) is too similar to HELLHOUNDS._getValues(uint256).tTransferAmount (#992)
Variable HELLHOUNDS._transferToExcluded(address,address,uint256).rTransferAmount (#1233) is too similar to HELLHOUNDS._transferStandard(address,address,uint256).tTransferAmount (#1223)
Variable HELLHOUNDS._transferToExcluded(address,address,uint256).rTransferAmount (#1233) is too similar to HELLHOUNDS._transferBothExcluded(address,address,uint256).tTransferAmount (#937)
Variable HELLHOUNDS.reflectionFromToken(uint256,bool).rTransferAmount (#902) is too similar to HELLHOUNDS._getValues(uint256).tTransferAmount (#992)
Variable HELLHOUNDS.reflectionFromToken(uint256,bool).rTransferAmount (#902) is too similar to HELLHOUNDS._transferStandard(address,address,uint256).tTransferAmount (#1223)
Variable HELLHOUNDS._transferStandard(address,address,uint256).rTransferAmount (#1223) is too similar to HELLHOUNDS._transferStandard(address,address,uint256).tTransferAmount (#1223)
Variable HELLHOUNDS.reflectionFromToken(uint256,bool).rTransferAmount (#902) is too similar to HELLHOUNDS._transferBothExcluded(address,address,uint256).tTransferAmount (#937)
Variable HELLHOUNDS._transferStandard(address,address,uint256).rTransferAmount (#1223) is too similar to HELLHOUNDS._transferBothExcluded(address,address,uint256).tTransferAmount (#937)
Variable HELLHOUNDS._transferToExcluded(address,address,uint256).rTransferAmount (#1233) is too similar to HELLHOUNDS._transferToExcluded(address,address,uint256).tTransferAmount (#1233)
Variable HELLHOUNDS._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1010) is too similar to HELLHOUNDS._getValues(uint256).tTransferAmount (#992)
Variable HELLHOUNDS._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1010) is too similar to HELLHOUNDS._transferStandard(address,address,uint256).tTransferAmount (#1223)
Variable HELLHOUNDS._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1010) is too similar to HELLHOUNDS._transferBothExcluded(address,address,uint256).tTransferAmount (#937)
Variable HELLHOUNDS._getValues(uint256).rTransferAmount (#993) is too similar to HELLHOUNDS._getValues(uint256).tTransferAmount (#992)
Variable HELLHOUNDS.reflectionFromToken(uint256,bool).rTransferAmount (#902) is too similar to HELLHOUNDS._getTValues(uint256).tTransferAmount (#1001)
Variable HELLHOUNDS.reflectionFromToken(uint256,bool).rTransferAmount (#902) is too similar to HELLHOUNDS._transferToExcluded(address,address,uint256).tTransferAmount (#1233)
Variable HELLHOUNDS._transferFromExcluded(address,address,uint256).rTransferAmount (#1244) is too similar to HELLHOUNDS._getValues(uint256).tTransferAmount (#992)
Variable HELLHOUNDS._getValues(uint256).rTransferAmount (#993) is too similar to HELLHOUNDS._transferStandard(address,address,uint256).tTransferAmount (#1223)
Variable HELLHOUNDS.reflectionFromToken(uint256,bool).rTransferAmount (#902) is too similar to HELLHOUNDS._transferFromExcluded(address,address,uint256).tTransferAmount (#1244)
Variable HELLHOUNDS._transferBothExcluded(address,address,uint256).rTransferAmount (#937) is too similar to HELLHOUNDS._getValues(uint256).tTransferAmount (#992)
Variable HELLHOUNDS._getValues(uint256).rTransferAmount (#993) is too similar to HELLHOUNDS._transferBothExcluded(address,address,uint256).tTransferAmount (#937)
Variable HELLHOUNDS._transferFromExcluded(address,address,uint256).rTransferAmount (#1244) is too similar to HELLHOUNDS._transferStandard(address,address,uint256).tTransferAmount (#1223)
Variable HELLHOUNDS._transferFromExcluded(address,address,uint256).rTransferAmount (#1244) is too similar to HELLHOUNDS._transferBothExcluded(address,address,uint256).tTransferAmount (#937)
Variable HELLHOUNDS._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1010) is too similar to HELLHOUNDS._transferToExcluded(address,address,uint256).tTransferAmount (#1233)
Variable HELLHOUNDS._transferBothExcluded(address,address,uint256).rTransferAmount (#937) is too similar to HELLHOUNDS._transferStandard(address,address,uint256).tTransferAmount (#1223)
Variable HELLHOUNDS._transferBothExcluded(address,address,uint256).rTransferAmount (#937) is too similar to HELLHOUNDS._transferBothExcluded(address,address,uint256).tTransferAmount (#937)
Variable HELLHOUNDS._getValues(uint256).rTransferAmount (#993) is too similar to HELLHOUNDS._getTValues(uint256).tTransferAmount (#1001)
Variable HELLHOUNDS._getValues(uint256).rTransferAmount (#993) is too similar to HELLHOUNDS._transferToExcluded(address,address,uint256).tTransferAmount (#1233)
Variable HELLHOUNDS._getValues(uint256).rTransferAmount (#993) is too similar to HELLHOUNDS._transferFromExcluded(address,address,uint256).tTransferAmount (#1244)
Variable HELLHOUNDS._transferFromExcluded(address,address,uint256).rTransferAmount (#1244) is too similar to HELLHOUNDS._transferToExcluded(address,address,uint256).tTransferAmount (#1233)
Variable HELLHOUNDS._transferFromExcluded(address,address,uint256).rTransferAmount (#1244) is too similar to HELLHOUNDS._transferFromExcluded(address,address,uint256).tTransferAmount (#1244)
Variable HELLHOUNDS._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1010) is too similar to HELLHOUNDS._transferFromExcluded(address,address,uint256).tTransferAmount (#1244)
Variable HELLHOUNDS._transferToExcluded(address,address,uint256).rTransferAmount (#1233) is too similar to HELLHOUNDS._transferFromExcluded(address,address,uint256).tTransferAmount (#1244)
Variable HELLHOUNDS._transferStandard(address,address,uint256).rTransferAmount (#1223) is too similar to HELLHOUNDS._getTValues(uint256).tTransferAmount (#1001)
Variable HELLHOUNDS._transferBothExcluded(address,address,uint256).rTransferAmount (#937) is too similar to HELLHOUNDS._getTValues(uint256).tTransferAmount (#1001)
Variable HELLHOUNDS._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1010) is too similar to HELLHOUNDS._getTValues(uint256).tTransferAmount (#1001)
Variable HELLHOUNDS._transferToExcluded(address,address,uint256).rTransferAmount (#1233) is too similar to HELLHOUNDS._getTValues(uint256).tTransferAmount (#1001)
Variable HELLHOUNDS._transferFromExcluded(address,address,uint256).rTransferAmount (#1244) is too similar to HELLHOUNDS._getTValues(uint256).tTransferAmount (#1001)
Variable HELLHOUNDS._transferStandard(address,address,uint256).rTransferAmount (#1223) is too similar to HELLHOUNDS._transferToExcluded(address,address,uint256).tTransferAmount (#1233)
Variable HELLHOUNDS._transferBothExcluded(address,address,uint256).rTransferAmount (#937) is too similar to HELLHOUNDS._transferToExcluded(address,address,uint256).tTransferAmount (#1233)
Variable HELLHOUNDS._transferStandard(address,address,uint256).rTransferAmount (#1223) is too similar to HELLHOUNDS._transferFromExcluded(address,address,uint256).tTransferAmount (#1244)
Variable HELLHOUNDS._transferBothExcluded(address,address,uint256).rTransferAmount (#937) is too similar to HELLHOUNDS._transferFromExcluded(address,address,uint256).tTransferAmount (#1244)
Prevent variables from having similar names.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#517-520)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#526-530)
transfer(address,uint256) should be declared external:
- HELLHOUNDS.transfer(address,uint256) (#847-850)
allowance(address,address) should be declared external:
- HELLHOUNDS.allowance(address,address) (#852-854)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


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


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 6% buy tax and 5% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


Unable to find Youtube account


Unable to find Discord account


Token is not listed at Mobula.Finance

Additional information: link


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


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for SOUL

News for SOUL