CloudZ inspired by an anime called Dragon Ball Z and following the trend of CloudCHat that reach 77M. The project is aiming to. The project is a community driven token, means the community owns it. Also it aims to build a Web 3 anime streaming app for community to benefit it.
Reentrancy in CloudZ._transfer(address,address,uint256) (#806-842):
External calls:
- swapAndSendToFee(sellTokens) (#828)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#876-882)
External calls sending eth:
- swapAndSendToFee(sellTokens) (#828)
- address(_marketingWallet).transfer(ethToSend) (#849)
State variables written after the call(s):
- _tOwned[from] -= amount (#832)
- transferAmount = _getValues(amount,from) (#837)
- _tOwned[address(this)] += marketingFee + liquidityFee (#788)
- _tOwned[to] += transferAmount (#840)
- swapping = false (#829)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in CloudZ.constructor() (#704-720):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#709)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#715)
- _isExcludedFromFee[address(this)] = true (#716)
- _isExcludedFromFee[_marketingWallet] = true (#717)
- uniswapV2Pair = _uniswapV2Pair (#712)
- uniswapV2Router = _uniswapV2Router (#711)
Reentrancy in CloudZ.swapAndLiquify() (#852-864):
External calls:
- newBalance = swapTokensForEth(half) (#857)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#876-882)
- addLiquidity(otherHalf,newBalance) (#861)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#891-898)
- (success) = recipient.call{value: amount}() (#311)
- address(_marketingWallet).sendValue(ethAmount - ethFromLiquidity) (#901)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#861)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#891-898)
- (success) = recipient.call{value: amount}() (#311)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#861)
- _allowances[owner][spender] = amount (#802)
Reentrancy in CloudZ.transferFrom(address,address,uint256) (#756-760):
External calls:
- _transfer(sender,recipient,amount) (#757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#876-882)
External calls sending eth:
- _transfer(sender,recipient,amount) (#757)
- address(_marketingWallet).transfer(ethToSend) (#849)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#758)
- _allowances[owner][spender] = amount (#802)
Apply the check-effects-interactions pattern.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#307-313):
- (success) = recipient.call{value: amount}() (#311)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#373-394):
- (success,returndata) = target.call{value: weiValue}(data) (#377)
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() (#497) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#498) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#515) is not in mixedCase
Function IUniswapV2Router01.WETH() (#537) is not in mixedCase
Variable CloudZ._maxTxAmount (#687) is not in mixedCase
Constant CloudZ._name (#689) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CloudZ._symbol (#690) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CloudZ._decimals (#691) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CloudZ._marketingFee (#693) is not in mixedCase
Variable CloudZ._liquidityFee (#694) is not in mixedCase
Variable CloudZ._marketingWallet (#695) is not in mixedCase
Variable CloudZ._buyCooldown (#697) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#253)" inContext (#247-256)
Remove redundant statements if they congest code but offer no value.
Additional information: link
CloudZ.allowance(address,address).owner (#747) shadows:
- Ownable.owner() (#426-428) (function)
CloudZ._approve(address,address,uint256).owner (#798) shadows:
- Ownable.owner() (#426-428) (function)
Rename the local variables that shadow another component.
Additional information: link
Reentrancy in CloudZ._transfer(address,address,uint256) (#806-842):
External calls:
- swapAndSendToFee(sellTokens) (#828)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#876-882)
External calls sending eth:
- swapAndSendToFee(sellTokens) (#828)
- address(_marketingWallet).transfer(ethToSend) (#849)
Event emitted after the call(s):
- Transfer(from,address(this),marketingFee + liquidityFee) (#789)
- transferAmount = _getValues(amount,from) (#837)
- Transfer(from,to,transferAmount) (#841)
Reentrancy in CloudZ.constructor() (#704-720):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#709)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#719)
Reentrancy in CloudZ.swapAndLiquify() (#852-864):
External calls:
- newBalance = swapTokensForEth(half) (#857)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#876-882)
- addLiquidity(otherHalf,newBalance) (#861)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#891-898)
- (success) = recipient.call{value: amount}() (#311)
- address(_marketingWallet).sendValue(ethAmount - ethFromLiquidity) (#901)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#861)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#891-898)
- (success) = recipient.call{value: amount}() (#311)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#803)
- addLiquidity(otherHalf,newBalance) (#861)
- SwapAndLiquify(half,newBalance,otherHalf) (#862)
Reentrancy in CloudZ.transferFrom(address,address,uint256) (#756-760):
External calls:
- _transfer(sender,recipient,amount) (#757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#876-882)
External calls sending eth:
- _transfer(sender,recipient,amount) (#757)
- address(_marketingWallet).transfer(ethToSend) (#849)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#803)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#758)
Apply the check-effects-interactions pattern.
Additional information: link
CloudZ._transfer(address,address,uint256) (#806-842) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_lastBuy[to] + _buyCooldown < block.timestamp,Must wait til after coooldown to buy) (#820)
CloudZ.addLiquidity(uint256,uint256) (#886-902) uses timestamp for comparisons
Dangerous comparisons:
- ethAmount - ethFromLiquidity > 0 (#900)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#280-289) uses assembly
- INLINE ASM (#287)
Address._functionCallWithValue(address,bytes,uint256,string) (#373-394) uses assembly
- INLINE ASM (#386-389)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#373-394) is never used and should be removed
Address.functionCall(address,bytes) (#333-335) is never used and should be removed
Address.functionCall(address,bytes,string) (#343-345) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#358-360) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#368-371) is never used and should be removed
Address.isContract(address) (#280-289) is never used and should be removed
Address.sendValue(address,uint256) (#307-313) is never used and should be removed
CloudZ.addLiquidity(uint256,uint256) (#886-902) is never used and should be removed
CloudZ.swapAndLiquify() (#852-864) is never used and should be removed
Context._msgData() (#252-255) is never used and should be removed
SafeMath.add(uint256,uint256) (#115-120) is never used and should be removed
SafeMath.div(uint256,uint256) (#189-191) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#205-211) is never used and should be removed
SafeMath.mod(uint256,uint256) (#225-227) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#241-244) is never used and should be removed
SafeMath.mul(uint256,uint256) (#163-175) is never used and should be removed
SafeMath.sub(uint256,uint256) (#132-134) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#146-151) is never used and should be removed
Remove unused functions.
Additional information: link
Reentrancy in CloudZ._transfer(address,address,uint256) (#806-842):
External calls:
- swapAndSendToFee(sellTokens) (#828)
- address(_marketingWallet).transfer(ethToSend) (#849)
State variables written after the call(s):
- _tOwned[from] -= amount (#832)
- transferAmount = _getValues(amount,from) (#837)
- _tOwned[address(this)] += marketingFee + liquidityFee (#788)
- _tOwned[to] += transferAmount (#840)
- swapping = false (#829)
Event emitted after the call(s):
- Transfer(from,address(this),marketingFee + liquidityFee) (#789)
- transferAmount = _getValues(amount,from) (#837)
- Transfer(from,to,transferAmount) (#841)
Reentrancy in CloudZ.transferFrom(address,address,uint256) (#756-760):
External calls:
- _transfer(sender,recipient,amount) (#757)
- address(_marketingWallet).transfer(ethToSend) (#849)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#758)
- _allowances[owner][spender] = amount (#802)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#803)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#758)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#542) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#543)
Prevent variables from having similar names.
Additional information: link
Address.sendValue(address,uint256) (#307-313) uses literals with too many digits:
- recipient = address(0x000000000000000000000000000000000000dEaD) (#309)
CloudZ.slitherConstructorVariables() (#674-904) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 9 (#686)
CloudZ.slitherConstructorVariables() (#674-904) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 9 (#687)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CloudZ._buyCooldown (#697) should be constant
CloudZ._liquidityFee (#694) should be constant
CloudZ._marketingFee (#693) should be constant
CloudZ._marketingWallet (#695) should be constant
CloudZ._maxTxAmount (#687) should be constant
CloudZ._tTotal (#686) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#445-448)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#454-458)
name() should be declared external:
- CloudZ.name() (#722-724)
symbol() should be declared external:
- CloudZ.symbol() (#726-728)
decimals() should be declared external:
- CloudZ.decimals() (#730-732)
totalSupply() should be declared external:
- CloudZ.totalSupply() (#734-736)
transfer(address,uint256) should be declared external:
- CloudZ.transfer(address,uint256) (#742-745)
allowance(address,address) should be declared external:
- CloudZ.allowance(address,address) (#747-749)
approve(address,uint256) should be declared external:
- CloudZ.approve(address,uint256) (#751-754)
transferFrom(address,address,uint256) should be declared external:
- CloudZ.transferFrom(address,address,uint256) (#756-760)
increaseAllowance(address,uint256) should be declared external:
- CloudZ.increaseAllowance(address,uint256) (#762-765)
decreaseAllowance(address,uint256) should be declared external:
- CloudZ.decreaseAllowance(address,uint256) (#767-770)
excludeFromFee(address) should be declared external:
- CloudZ.excludeFromFee(address) (#772-774)
includeInFee(address) should be declared external:
- CloudZ.includeInFee(address) (#776-778)
isExcludedFromFee(address) should be declared external:
- CloudZ.isExcludedFromFee(address) (#794-796)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average 30d PancakeSwap volume is low.
Token is deployed only at one blockchain
Token has only one trading pair
Contract has 6% buy tax and 6% sell tax.
Taxes are low and contract ownership is renounced.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to find audit link on the website
Token is not listed at Mobula.Finance
Additional information: link
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
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
Token has no active CoinMarketCap listing / rank
Twitter account has less than 100 followers
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account