Hippie Inu Token Logo

HIPPIE [Hippie Inu] Token

About HIPPIE

Listings

Token 2 years
white paper

We believe that there is a newly emerging modern day hippie taking shape in our world. One who believes in decentralisation, saving wildlife, and freedom-centric marketing efforts designed to turn heads. The Hippie Inu community is meant to be a safehaven for those digital hippies. A way for us to achieve financial freedom, while donating to noble hippie causes along the way.

We believe in fairness, and equality, which is why Hippie Inu was stealth launched with no presale investors. We're an experienced team of developers, marketers, and designers, and we will not stop until $HIPPIE has spread peace across the world.

Social

Laser Scorebeta Last Audit: 11 January 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...)

Reentrancy in HippieInu._transfer(address,address,uint256) (#1027-1075):
External calls:
- swapAndLiquify(contractTokenBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1112-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,developer,block.timestamp) (#1130-1136)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1074)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#983)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1177)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1186)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1197)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1178)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#899)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1188)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1198)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#901)
- _tokenTransfer(from,to,amount,takeFee) (#1074)
- _rTotal = _rTotal.sub(rFee) (#938)
- _tokenTransfer(from,to,amount,takeFee) (#1074)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#985)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#898)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1196)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1187)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#900)
Apply the check-effects-interactions pattern.

Additional information: link

HippieInu.setDeveloper(address)._developer (#766) lacks a zero-check on :
- developer = _developer (#767)
Check that the address is not zero.

Additional information: link

Address.isContract(address) (#273-282) uses assembly
- INLINE ASM (#280)
Address._functionCallWithValue(address,bytes,uint256,string) (#366-387) uses assembly
- INLINE ASM (#379-382)
Do not use evm assembly.

Additional information: link

HippieInu.includeInReward(address) (#883-894) has costly operations inside a loop:
- _excluded.pop() (#890)
Use a local variable to hold the loop computation result.

Additional information: link

HippieInu.swapAndLiquify(uint256) (#1077-1101) performs a multiplication on the result of a division:
-half = contractTokenBalance.mul(liquidityShare).div(10000) (#1079)
-rest = contractTokenBalance.sub(half.mul(2)) (#1081)
Consider ordering multiplication before division.

Additional information: link

HippieInu.addLiquidity(uint256,uint256) (#1139-1152) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
Ensure that all the return values of the function calls are used.

Additional information: link

HippieInu.allowance(address,address).owner (#814) shadows:
- Ownable.owner() (#421-423) (function)
HippieInu._approve(address,address,uint256).owner (#1019) shadows:
- Ownable.owner() (#421-423) (function)
Rename the local variables that shadow another component.

Additional information: link

HippieInu.setLiquidityShare(uint256) (#770-772) should emit an event for:
- liquidityShare = _liquidityShare (#771)
HippieInu.setNumTokensSoldForLiquidity(uint256) (#774-776) should emit an event for:
- numTokensSellToAddToLiquidity = _num (#775)
HippieInu.setTaxFeePercent(uint256) (#915-917) should emit an event for:
- _taxFee = taxFee (#916)
HippieInu.setLiquidityFeePercent(uint256) (#919-921) should emit an event for:
- _liquidityFee = liquidityFee (#920)
HippieInu.setMaxTxPercent(uint256) (#923-927) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 4) (#924-926)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in HippieInu._transfer(address,address,uint256) (#1027-1075):
External calls:
- swapAndLiquify(contractTokenBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1112-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,developer,block.timestamp) (#1130-1136)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1074)
- _liquidityFee = _previousLiquidityFee (#1012)
- _liquidityFee = 0 (#1007)
- _tokenTransfer(from,to,amount,takeFee) (#1074)
- _previousLiquidityFee = _liquidityFee (#1004)
- _tokenTransfer(from,to,amount,takeFee) (#1074)
- _previousTaxFee = _taxFee (#1003)
- _tokenTransfer(from,to,amount,takeFee) (#1074)
- _tFeeTotal = _tFeeTotal.add(tFee) (#939)
- _tokenTransfer(from,to,amount,takeFee) (#1074)
- _taxFee = _previousTaxFee (#1011)
- _taxFee = 0 (#1006)
Reentrancy in HippieInu.constructor() (#747-764):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#753-754)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#760)
- _isExcludedFromFee[address(this)] = true (#761)
- uniswapV2Router = _uniswapV2Router (#757)
Reentrancy in HippieInu.swapAndLiquify(uint256) (#1077-1101):
External calls:
- swapTokensForDev(rest) (#1083)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,developer,block.timestamp) (#1130-1136)
- swapTokensForEth(half) (#1092)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1112-1118)
State variables written after the call(s):
- swapTokensForEth(half) (#1092)
- _allowances[owner][spender] = amount (#1023)
Reentrancy in HippieInu.swapAndLiquify(uint256) (#1077-1101):
External calls:
- swapTokensForDev(rest) (#1083)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,developer,block.timestamp) (#1130-1136)
- swapTokensForEth(half) (#1092)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1112-1118)
- addLiquidity(otherHalf,newBalance) (#1098)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1098)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1098)
- _allowances[owner][spender] = amount (#1023)
Reentrancy in HippieInu.transferFrom(address,address,uint256) (#823-827):
External calls:
- _transfer(sender,recipient,amount) (#824)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1112-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,developer,block.timestamp) (#1130-1136)
External calls sending eth:
- _transfer(sender,recipient,amount) (#824)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#825)
- _allowances[owner][spender] = amount (#1023)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HippieInu._transfer(address,address,uint256) (#1027-1075):
External calls:
- swapAndLiquify(contractTokenBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1112-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,developer,block.timestamp) (#1130-1136)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1181)
- _tokenTransfer(from,to,amount,takeFee) (#1074)
- Transfer(sender,recipient,tTransferAmount) (#1201)
- _tokenTransfer(from,to,amount,takeFee) (#1074)
- Transfer(sender,recipient,tTransferAmount) (#1191)
- _tokenTransfer(from,to,amount,takeFee) (#1074)
- Transfer(sender,recipient,tTransferAmount) (#904)
- _tokenTransfer(from,to,amount,takeFee) (#1074)
Reentrancy in HippieInu.constructor() (#747-764):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#753-754)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#763)
Reentrancy in HippieInu.swapAndLiquify(uint256) (#1077-1101):
External calls:
- swapTokensForDev(rest) (#1083)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,developer,block.timestamp) (#1130-1136)
- swapTokensForEth(half) (#1092)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1112-1118)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1024)
- swapTokensForEth(half) (#1092)
Reentrancy in HippieInu.swapAndLiquify(uint256) (#1077-1101):
External calls:
- swapTokensForDev(rest) (#1083)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,developer,block.timestamp) (#1130-1136)
- swapTokensForEth(half) (#1092)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1112-1118)
- addLiquidity(otherHalf,newBalance) (#1098)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1098)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1024)
- addLiquidity(otherHalf,newBalance) (#1098)
- SwapAndLiquify(half,newBalance,otherHalf) (#1100)
Reentrancy in HippieInu.transferFrom(address,address,uint256) (#823-827):
External calls:
- _transfer(sender,recipient,amount) (#824)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1112-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,developer,block.timestamp) (#1130-1136)
External calls sending eth:
- _transfer(sender,recipient,amount) (#824)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1024)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#825)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#468-473) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#470)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#366-387) is never used and should be removed
Address.functionCall(address,bytes) (#326-328) is never used and should be removed
Address.functionCall(address,bytes,string) (#336-338) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#351-353) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#361-364) is never used and should be removed
Address.isContract(address) (#273-282) is never used and should be removed
Address.sendValue(address,uint256) (#300-306) is never used and should be removed
Context._msgData() (#245-248) is never used and should be removed
SafeMath.mod(uint256,uint256) (#218-220) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#234-237) is never used and should be removed
Remove unused functions.

Additional information: link

HippieInu._rTotal (#705) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
HippieInu._previousTaxFee (#713) is set pre-construction with a non-constant function or state variable:
- _taxFee
HippieInu._previousLiquidityFee (#716) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#300-306):
- (success) = recipient.call{value: amount}() (#304)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#366-387):
- (success,returndata) = target.call{value: weiValue}(data) (#370)
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() (#512) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#513) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#530) is not in mixedCase
Function IUniswapV2Router01.WETH() (#552) is not in mixedCase
Parameter HippieInu.setDeveloper(address)._developer (#766) is not in mixedCase
Parameter HippieInu.setLiquidityShare(uint256)._liquidityShare (#770) is not in mixedCase
Parameter HippieInu.setNumTokensSoldForLiquidity(uint256)._num (#774) is not in mixedCase
Parameter HippieInu.setWhitelistStatus(address[],bool)._addresses (#778) is not in mixedCase
Parameter HippieInu.setWhitelistStatus(address[],bool)._status (#778) is not in mixedCase
Parameter HippieInu.setOnlyWhitelistAllowed(bool)._onlyWhitelistAllowed (#784) is not in mixedCase
Parameter HippieInu.setSwapAndLiquifyEnabled(bool)._enabled (#929) is not in mixedCase
Parameter HippieInu.calculateTaxFee(uint256)._amount (#988) is not in mixedCase
Parameter HippieInu.calculateLiquidityFee(uint256)._amount (#994) is not in mixedCase
Variable HippieInu._taxFee (#712) is not in mixedCase
Variable HippieInu._liquidityFee (#715) is not in mixedCase
Variable HippieInu._maxTxAmount (#728) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#246)" inContext (#240-249)
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 (#557) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#558)
Variable HippieInu.reflectionFromToken(uint256,bool).rTransferAmount (#862) is too similar to HippieInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1195)
Variable HippieInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1195) is too similar to HippieInu._getValues(uint256).tTransferAmount (#943)
Variable HippieInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to HippieInu._getValues(uint256).tTransferAmount (#943)
Variable HippieInu._transferBothExcluded(address,address,uint256).rTransferAmount (#897) is too similar to HippieInu._transferBothExcluded(address,address,uint256).tTransferAmount (#897)
Variable HippieInu._transferToExcluded(address,address,uint256).rTransferAmount (#1185) is too similar to HippieInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1195)
Variable HippieInu.reflectionFromToken(uint256,bool).rTransferAmount (#862) is too similar to HippieInu._getValues(uint256).tTransferAmount (#943)
Variable HippieInu._transferToExcluded(address,address,uint256).rTransferAmount (#1185) is too similar to HippieInu._getValues(uint256).tTransferAmount (#943)
Variable HippieInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to HippieInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable HippieInu._transferBothExcluded(address,address,uint256).rTransferAmount (#897) is too similar to HippieInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1195)
Variable HippieInu._transferBothExcluded(address,address,uint256).rTransferAmount (#897) is too similar to HippieInu._getValues(uint256).tTransferAmount (#943)
Variable HippieInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to HippieInu._getTValues(uint256).tTransferAmount (#951)
Variable HippieInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to HippieInu._transferBothExcluded(address,address,uint256).tTransferAmount (#897)
Variable HippieInu.reflectionFromToken(uint256,bool).rTransferAmount (#862) is too similar to HippieInu._transferBothExcluded(address,address,uint256).tTransferAmount (#897)
Variable HippieInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1195) is too similar to HippieInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1195)
Variable HippieInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to HippieInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1195)
Variable HippieInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to HippieInu._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable HippieInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to HippieInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable HippieInu._getValues(uint256).rTransferAmount (#944) is too similar to HippieInu._transferBothExcluded(address,address,uint256).tTransferAmount (#897)
Variable HippieInu._transferToExcluded(address,address,uint256).rTransferAmount (#1185) is too similar to HippieInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable HippieInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to HippieInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1195)
Variable HippieInu.reflectionFromToken(uint256,bool).rTransferAmount (#862) is too similar to HippieInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable HippieInu._transferBothExcluded(address,address,uint256).rTransferAmount (#897) is too similar to HippieInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable HippieInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to HippieInu._transferBothExcluded(address,address,uint256).tTransferAmount (#897)
Variable HippieInu._transferToExcluded(address,address,uint256).rTransferAmount (#1185) is too similar to HippieInu._transferBothExcluded(address,address,uint256).tTransferAmount (#897)
Variable HippieInu._getValues(uint256).rTransferAmount (#944) is too similar to HippieInu._getTValues(uint256).tTransferAmount (#951)
Variable HippieInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1195) is too similar to HippieInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable HippieInu._getValues(uint256).rTransferAmount (#944) is too similar to HippieInu._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable HippieInu._getValues(uint256).rTransferAmount (#944) is too similar to HippieInu._getValues(uint256).tTransferAmount (#943)
Variable HippieInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to HippieInu._getTValues(uint256).tTransferAmount (#951)
Variable HippieInu._transferToExcluded(address,address,uint256).rTransferAmount (#1185) is too similar to HippieInu._getTValues(uint256).tTransferAmount (#951)
Variable HippieInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1195) is too similar to HippieInu._transferBothExcluded(address,address,uint256).tTransferAmount (#897)
Variable HippieInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to HippieInu._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable HippieInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to HippieInu._getValues(uint256).tTransferAmount (#943)
Variable HippieInu.reflectionFromToken(uint256,bool).rTransferAmount (#862) is too similar to HippieInu._getTValues(uint256).tTransferAmount (#951)
Variable HippieInu._transferToExcluded(address,address,uint256).rTransferAmount (#1185) is too similar to HippieInu._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable HippieInu._transferBothExcluded(address,address,uint256).rTransferAmount (#897) is too similar to HippieInu._getTValues(uint256).tTransferAmount (#951)
Variable HippieInu.reflectionFromToken(uint256,bool).rTransferAmount (#862) is too similar to HippieInu._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable HippieInu._transferBothExcluded(address,address,uint256).rTransferAmount (#897) is too similar to HippieInu._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable HippieInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1195) is too similar to HippieInu._getTValues(uint256).tTransferAmount (#951)
Variable HippieInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1195) is too similar to HippieInu._transferToExcluded(address,address,uint256).tTransferAmount (#1185)
Variable HippieInu._getValues(uint256).rTransferAmount (#944) is too similar to HippieInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1195)
Variable HippieInu._getValues(uint256).rTransferAmount (#944) is too similar to HippieInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Prevent variables from having similar names.

Additional information: link

HippieInu.slitherConstructorVariables() (#690-1208) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 6 * 10 ** 9 (#704)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

HippieInu._decimals (#710) should be constant
HippieInu._name (#708) should be constant
HippieInu._symbol (#709) should be constant
HippieInu._tTotal (#704) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#440-443)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#449-453)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#455-457)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#460-465)
unlock() should be declared external:
- Ownable.unlock() (#468-473)
name() should be declared external:
- HippieInu.name() (#788-790)
symbol() should be declared external:
- HippieInu.symbol() (#792-794)
decimals() should be declared external:
- HippieInu.decimals() (#796-798)
totalSupply() should be declared external:
- HippieInu.totalSupply() (#800-802)
transfer(address,uint256) should be declared external:
- HippieInu.transfer(address,uint256) (#809-812)
allowance(address,address) should be declared external:
- HippieInu.allowance(address,address) (#814-816)
approve(address,uint256) should be declared external:
- HippieInu.approve(address,uint256) (#818-821)
transferFrom(address,address,uint256) should be declared external:
- HippieInu.transferFrom(address,address,uint256) (#823-827)
increaseAllowance(address,uint256) should be declared external:
- HippieInu.increaseAllowance(address,uint256) (#829-832)
decreaseAllowance(address,uint256) should be declared external:
- HippieInu.decreaseAllowance(address,uint256) (#834-837)
isExcludedFromReward(address) should be declared external:
- HippieInu.isExcludedFromReward(address) (#839-841)
totalFees() should be declared external:
- HippieInu.totalFees() (#843-845)
deliver(uint256) should be declared external:
- HippieInu.deliver(uint256) (#847-854)
reflectionFromToken(uint256,bool) should be declared external:
- HippieInu.reflectionFromToken(uint256,bool) (#856-865)
excludeFromReward(address) should be declared external:
- HippieInu.excludeFromReward(address) (#873-881)
excludeFromFee(address) should be declared external:
- HippieInu.excludeFromFee(address) (#907-909)
includeInFee(address) should be declared external:
- HippieInu.includeInFee(address) (#911-913)
setSwapAndLiquifyEnabled(bool) should be declared external:
- HippieInu.setSwapAndLiquifyEnabled(bool) (#929-932)
isExcludedFromFee(address) should be declared external:
- HippieInu.isExcludedFromFee(address) (#1015-1017)
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.


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.


Twitter account link seems to be invalid


Telegram account has less than 100 subscribers


Unable to find Youtube account


Unable to find Discord account


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

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


Unable to find Twitter link on the website


Young tokens have high risks of price dump / death


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for HIPPIE