Cryptohounds is a bonus fighting game that combines upgrading and breeding, creating a farm of dog warriors for combat.
Cryptohounds are operated on the Binance Smart Chain Network.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in CTHToken._transfer(address,address,uint256) (contracts/CTHToken.sol#608-635):
External calls:
- swapTokens(contractTokenBalance) (contracts/CTHToken.sol#623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CTHToken.sol#657-663)
External calls sending eth:
- swapTokens(contractTokenBalance) (contracts/CTHToken.sol#623)
- recipient.transfer(amount) (contracts/CTHToken.sol#870)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/CTHToken.sol#634)
- _liquidityFee = _previousLiquidityFee (contracts/CTHToken.sol#816)
- _liquidityFee = 0 (contracts/CTHToken.sol#811)
- _tokenTransfer(from,to,amount,takeFee) (contracts/CTHToken.sol#634)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/CTHToken.sol#787)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/CTHToken.sol#712)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/CTHToken.sol#703)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/CTHToken.sol#704)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/CTHToken.sol#723)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/CTHToken.sol#733)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/CTHToken.sol#714)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/CTHToken.sol#724)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/CTHToken.sol#735)
- _tokenTransfer(from,to,amount,takeFee) (contracts/CTHToken.sol#634)
- _rTotal = _rTotal.sub(rFee) (contracts/CTHToken.sol#742)
- _tokenTransfer(from,to,amount,takeFee) (contracts/CTHToken.sol#634)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/CTHToken.sol#789)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/CTHToken.sol#722)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/CTHToken.sol#732)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/CTHToken.sol#713)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/CTHToken.sol#734)
Apply the check-effects-interactions pattern.
Additional information: link
CTHToken.swapTokens(uint256) (contracts/CTHToken.sol#637-646) performs a multiplication on the result of a division:
-transferToAddressETH(gamePoolAddress,transferredBalance.div(_liquidityFee).mul(gamePoolDivisor)) (contracts/CTHToken.sol#644)
Consider ordering multiplication before division.
Additional information: link
CTHToken.addLiquidity(uint256,uint256) (contracts/CTHToken.sol#668-681) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/CTHToken.sol#673-680)
Ensure that all the return values of the function calls are used.
Additional information: link
CTHToken._approve(address,address,uint256).owner (contracts/CTHToken.sol#600) shadows:
- Ownable.owner() (contracts/CTHToken.sol#157-159) (function)
Rename the local variables that shadow another component.
Additional information: link
CTHToken.setNumTokensSellToAddToLiquidity(uint256) (contracts/CTHToken.sol#843-845) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (contracts/CTHToken.sol#844)
Emit an event for critical parameter changes.
Additional information: link
CTHToken.setGamePoolAddress(address)._gamePoolAddress (contracts/CTHToken.sol#848) lacks a zero-check on :
- gamePoolAddress = address(_gamePoolAddress) (contracts/CTHToken.sol#849)
Check that the address is not zero.
Additional information: link
Reentrancy in CTHToken.transferFrom(address,address,uint256) (contracts/CTHToken.sol#522-526):
External calls:
- _transfer(sender,recipient,amount) (contracts/CTHToken.sol#523)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CTHToken.sol#657-663)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/CTHToken.sol#523)
- recipient.transfer(amount) (contracts/CTHToken.sol#870)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/CTHToken.sol#524)
- _allowances[owner][spender] = amount (contracts/CTHToken.sol#604)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CTHToken.transferFrom(address,address,uint256) (contracts/CTHToken.sol#522-526):
External calls:
- _transfer(sender,recipient,amount) (contracts/CTHToken.sol#523)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/CTHToken.sol#657-663)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/CTHToken.sol#523)
- recipient.transfer(amount) (contracts/CTHToken.sol#870)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/CTHToken.sol#605)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/CTHToken.sol#524)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (contracts/CTHToken.sol#192-197) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (contracts/CTHToken.sol#194)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (contracts/CTHToken.sol#124-141) uses assembly
- INLINE ASM (contracts/CTHToken.sol#133-136)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (contracts/CTHToken.sol#79-82) is never used and should be removed
Remove unused functions.
Additional information: link
CTHToken._previousLiquidityFee (contracts/CTHToken.sol#440) 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
solc-0.8.7 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (contracts/CTHToken.sol#124-141):
- (success,returndata) = target.call{value: weiValue}(data) (contracts/CTHToken.sol#127)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable CTHToken._liquidityFee (contracts/CTHToken.sol#439) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (contracts/CTHToken.sol#11)" inContext (contracts/CTHToken.sol#5-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in CTHToken.transferFrom(address,address,uint256) (contracts/CTHToken.sol#522-526):
External calls:
- _transfer(sender,recipient,amount) (contracts/CTHToken.sol#523)
- recipient.transfer(amount) (contracts/CTHToken.sol#870)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/CTHToken.sol#524)
- _allowances[owner][spender] = amount (contracts/CTHToken.sol#604)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/CTHToken.sol#605)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/CTHToken.sol#524)
Apply the check-effects-interactions pattern.
Additional information: link
Variable CTHToken._transferStandard(address,address,uint256).rTransferAmount (contracts/CTHToken.sol#702) is too similar to CTHToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/CTHToken.sol#711)
Prevent variables from having similar names.
Additional information: link
CTHToken.slitherConstructorVariables() (contracts/CTHToken.sol#411-876) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (contracts/CTHToken.sol#416)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CTHToken.deadAddress (contracts/CTHToken.sol#416) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
includeInFee(address) should be declared external:
- CTHToken.includeInFee(address) (contracts/CTHToken.sol#827-829)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to find website, listings and other project-related information
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account