horgi Token Logo

HORGI Token

About HORGI

Listings

Token 2 years
CoinMarketCap 2 years
white paper

ABOUT HORGI

The HORGI is a mixed breed dog which even though small, it is full of energy and playful. Therefore, the HORGI token is a meme coin based on the horgi dog which is a mixed breed of dog. It is not just a memecoin, but provides a real world use case that brings a long overdue solution to crypto. The HORGI utility is an escrow payment service that provides a platform through which cryptocurrency service providers and their clients can transact with confidence and trust. HORGI is 100% community-driven and also has NFTs collection with staking feature. NFT stakers earn passive income generated from a percentage of the transaction taxes and the service fee charged for the escrow service.

HORGI VISION & MISSION
Our mission is to create a widely accepted, popular and valuable tokenized asset; we aim to offer a new and reliable cryptocurrency in the form of the HORGI token. We also aim to provide a platform where investors enjoy the benefits of NFTs staking and locked liquidity. With transparent and secure transactions, a vibrant and active community that creates value, we aim to build a brand through which the investors enjoy a lot of returns. HORGI token is a meme coin that has a revolutionary ecosystem
of dog-themed NFTs. Our token ensures the maintenance of privacy, security, power, and autonomy.

Social

Laser Scorebeta Last Audit: 2 March 2022

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

Horgi.sendBNBToFee(uint256) (#428-438) sends eth to arbitrary user
Dangerous calls:
- (sent1) = _marketingAddress.call{value: markettingAmount}() (#433)
- (sent2) = _teamAddress.call{value: teamAmount}() (#434)
- (sent3) = _stakingPoolAddress.call{value: stakingPoolAmount}() (#435)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Horgi._transfer(address,address,uint256) (#344-381):
External calls:
- swapAndLiquify(contractTokenBalance) (#365)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#388)
- sendBNBToFee(address(this).balance) (#370)
- (sent1) = _marketingAddress.call{value: markettingAmount}() (#433)
- (sent2) = _teamAddress.call{value: teamAmount}() (#434)
- (sent3) = _stakingPoolAddress.call{value: stakingPoolAmount}() (#435)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#365)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
- sendBNBToFee(address(this).balance) (#370)
- (sent1) = _marketingAddress.call{value: markettingAmount}() (#433)
- (sent2) = _teamAddress.call{value: teamAmount}() (#434)
- (sent3) = _stakingPoolAddress.call{value: stakingPoolAmount}() (#435)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#379)
- _balances[sender] = _balances[sender].sub(amount) (#468)
- _balances[recipient] = _balances[recipient].add(tAmount) (#469)
- _balances[address(this)] = _balances[address(this)].add(tMarketing.add(tLiquidity).add(tTeam).add(tStakingPool)) (#470)
- _tokenTransfer(from,to,amount,takeFee) (#379)
- _liquidityFee = _previousLiquidityFee (#331)
- _liquidityFee = 0 (#324)
- restoreAllFee() (#380)
- _liquidityFee = _previousLiquidityFee (#331)
- _tokenTransfer(from,to,amount,takeFee) (#379)
- _marketingFee = _previousMarketingFee (#330)
- _marketingFee = 0 (#323)
- restoreAllFee() (#380)
- _marketingFee = _previousMarketingFee (#330)
- _tokenTransfer(from,to,amount,takeFee) (#379)
- _stakingPoolFee = _previousStakingPoolFee (#333)
- _stakingPoolFee = 0 (#326)
- restoreAllFee() (#380)
- _stakingPoolFee = _previousStakingPoolFee (#333)
- _tokenTransfer(from,to,amount,takeFee) (#379)
- _teamFee = _previousTeamFee (#332)
- _teamFee = 0 (#325)
- restoreAllFee() (#380)
- _teamFee = _previousTeamFee (#332)
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.

Horgi.swapAndLiquify(uint256) (#405-426) performs a multiplication on the result of a division:
-half = autoLPamount.div(2) (#409)
-newBalance = ((address(this).balance.sub(initialBalance)).mul(half)).div(otherHalf) (#422)
Consider ordering multiplication before division.

Additional information: link

Horgi.constructor() (#260-274) ignores return value by IERC20(pancakePair).approve(address(pancakeRouter),type()(uint256).max) (#265)
Horgi.addLiquidity(uint256,uint256) (#391-403) ignores return value by pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
Ensure that all the return values of the function calls are used.

Additional information: link

Horgi.allowance(address,address).owner (#301) shadows:
- Ownable.owner() (#77-79) (function)
Horgi._approve(address,address,uint256).owner (#336) shadows:
- Ownable.owner() (#77-79) (function)
Rename the local variables that shadow another component.

Additional information: link

Horgi.updatestakingPoolAddress(address).stakingPoolAddress (#536) lacks a zero-check on :
- _stakingPoolAddress = stakingPoolAddress (#537)
Horgi.updateMarketingAddress(address).marketingAddress (#541) lacks a zero-check on :
- _marketingAddress = marketingAddress (#542)
Horgi.updateTeamAddress(address).teamAddress (#546) lacks a zero-check on :
- _teamAddress = teamAddress (#547)
Check that the address is not zero.

Additional information: link

Reentrancy in Horgi._transfer(address,address,uint256) (#344-381):
External calls:
- swapAndLiquify(contractTokenBalance) (#365)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#388)
- sendBNBToFee(address(this).balance) (#370)
- (sent1) = _marketingAddress.call{value: markettingAmount}() (#433)
- (sent2) = _teamAddress.call{value: teamAmount}() (#434)
- (sent3) = _stakingPoolAddress.call{value: stakingPoolAmount}() (#435)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#365)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
- sendBNBToFee(address(this).balance) (#370)
- (sent1) = _marketingAddress.call{value: markettingAmount}() (#433)
- (sent2) = _teamAddress.call{value: teamAmount}() (#434)
- (sent3) = _stakingPoolAddress.call{value: stakingPoolAmount}() (#435)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#379)
- _previousLiquidityFee = _liquidityFee (#319)
- _tokenTransfer(from,to,amount,takeFee) (#379)
- _previousMarketingFee = _marketingFee (#318)
- _tokenTransfer(from,to,amount,takeFee) (#379)
- _previousStakingPoolFee = _stakingPoolFee (#321)
- _tokenTransfer(from,to,amount,takeFee) (#379)
- _previousTeamFee = _teamFee (#320)
Reentrancy in Horgi.constructor() (#260-274):
External calls:
- pancakePair = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#264)
- IERC20(pancakePair).approve(address(pancakeRouter),type()(uint256).max) (#265)
State variables written after the call(s):
- _balances[_msgSender()] = _tTotal (#270)
- _isExcludedFromFee[owner()] = true (#271)
- _isExcludedFromFee[address(this)] = true (#272)
- _maxTxAmount = _tTotal.div(100) (#267)
- _maxWalletAmount = _tTotal.mul(3).div(100) (#268)
Reentrancy in Horgi.swapAndLiquify(uint256) (#405-426):
External calls:
- swapTokensForBNB(otherHalf) (#419)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#388)
- addLiquidity(half,newBalance) (#425)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
External calls sending eth:
- addLiquidity(half,newBalance) (#425)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
State variables written after the call(s):
- addLiquidity(half,newBalance) (#425)
- _allowances[owner][spender] = amount (#339)
Reentrancy in Horgi.transferFrom(address,address,uint256) (#310-314):
External calls:
- _transfer(sender,recipient,amount) (#311)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#388)
- (sent1) = _marketingAddress.call{value: markettingAmount}() (#433)
- (sent2) = _teamAddress.call{value: teamAmount}() (#434)
- (sent3) = _stakingPoolAddress.call{value: stakingPoolAmount}() (#435)
External calls sending eth:
- _transfer(sender,recipient,amount) (#311)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
- (sent1) = _marketingAddress.call{value: markettingAmount}() (#433)
- (sent2) = _teamAddress.call{value: teamAmount}() (#434)
- (sent3) = _stakingPoolAddress.call{value: stakingPoolAmount}() (#435)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#312)
- _allowances[owner][spender] = amount (#339)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Horgi._transfer(address,address,uint256) (#344-381):
External calls:
- swapAndLiquify(contractTokenBalance) (#365)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#388)
- sendBNBToFee(address(this).balance) (#370)
- (sent1) = _marketingAddress.call{value: markettingAmount}() (#433)
- (sent2) = _teamAddress.call{value: teamAmount}() (#434)
- (sent3) = _stakingPoolAddress.call{value: stakingPoolAmount}() (#435)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#365)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
- sendBNBToFee(address(this).balance) (#370)
- (sent1) = _marketingAddress.call{value: markettingAmount}() (#433)
- (sent2) = _teamAddress.call{value: teamAmount}() (#434)
- (sent3) = _stakingPoolAddress.call{value: stakingPoolAmount}() (#435)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#472)
- _tokenTransfer(from,to,amount,takeFee) (#379)
- Transfer(sender,address(this),tMarketing.add(tLiquidity).add(tTeam).add(tStakingPool)) (#473)
- _tokenTransfer(from,to,amount,takeFee) (#379)
Reentrancy in Horgi.constructor() (#260-274):
External calls:
- pancakePair = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#264)
- IERC20(pancakePair).approve(address(pancakeRouter),type()(uint256).max) (#265)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#273)
Reentrancy in Horgi.swapAndLiquify(uint256) (#405-426):
External calls:
- swapTokensForBNB(otherHalf) (#419)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#388)
- addLiquidity(half,newBalance) (#425)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
External calls sending eth:
- addLiquidity(half,newBalance) (#425)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#340)
- addLiquidity(half,newBalance) (#425)
Reentrancy in Horgi.transferFrom(address,address,uint256) (#310-314):
External calls:
- _transfer(sender,recipient,amount) (#311)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#388)
- (sent1) = _marketingAddress.call{value: markettingAmount}() (#433)
- (sent2) = _teamAddress.call{value: teamAmount}() (#434)
- (sent3) = _stakingPoolAddress.call{value: stakingPoolAmount}() (#435)
External calls sending eth:
- _transfer(sender,recipient,amount) (#311)
- pancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#395-402)
- (sent1) = _marketingAddress.call{value: markettingAmount}() (#433)
- (sent2) = _teamAddress.call{value: teamAmount}() (#434)
- (sent3) = _stakingPoolAddress.call{value: stakingPoolAmount}() (#435)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#340)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#312)
Apply the check-effects-interactions pattern.

Additional information: link

Horgi._previousLiquidityFee (#218) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Horgi._previousMarketingFee (#220) is set pre-construction with a non-constant function or state variable:
- _marketingFee
Horgi._previousTeamFee (#222) is set pre-construction with a non-constant function or state variable:
- _teamFee
Horgi._previousStakingPoolFee (#224) is set pre-construction with a non-constant function or state variable:
- _stakingPoolFee
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 Horgi.sendBNBToFee(uint256) (#428-438):
- (sent1) = _marketingAddress.call{value: markettingAmount}() (#433)
- (sent2) = _teamAddress.call{value: teamAmount}() (#434)
- (sent3) = _stakingPoolAddress.call{value: stakingPoolAmount}() (#435)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakePair.DOMAIN_SEPARATOR() (#125) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#126) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#143) is not in mixedCase
Function IPancakeRouter02.WETH() (#181) is not in mixedCase
Parameter Horgi.setSwapAndLiquifyEnabled(bool)._enabled (#476) is not in mixedCase
Constant Horgi._name (#205) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Horgi._symbol (#206) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Horgi._decimals (#207) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Horgi._tTotal (#212) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Horgi._maxWalletAmount (#213) is not in mixedCase
Variable Horgi._liquidityFee (#217) is not in mixedCase
Variable Horgi._marketingFee (#219) is not in mixedCase
Variable Horgi._teamFee (#221) is not in mixedCase
Variable Horgi._stakingPoolFee (#223) is not in mixedCase
Variable Horgi._marketingAddress (#231) is not in mixedCase
Variable Horgi._teamAddress (#232) is not in mixedCase
Variable Horgi._stakingPoolAddress (#233) is not in mixedCase
Variable Horgi._maxTxAmount (#236) is not in mixedCase
Variable Horgi._minTokenBeforeSwap (#238) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Horgi.slitherConstructorConstantVariables() (#203-551) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 18 (#212)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#68) is never used in Horgi (#203-551)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#68) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#86-88)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#94-97)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Horgi.setSwapAndLiquifyEnabled(bool) (#476-480)
excludeFromFee(address) should be declared external:
- Horgi.excludeFromFee(address) (#485-487)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 10% buy tax and 10% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Blog account (Reddit or Medium)


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 find audit link on the website


Unable to find whitepaper 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 scam / price dump / death


Alexa traffic rank is very low

Additional information: link


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for HORGI

News for HORGI