ZillaDot Token Logo

ZillaDot Token

About ZillaDot

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 November 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

ZillaDot.addLiquidity(uint256,uint256) (ZillaDot.sol#424-439) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ZillaDot.sol#430-437)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ZillaDot._transfer(address,address,uint256) (ZillaDot.sol#268-343):
External calls:
- swapAndSendToFee(marketingTokens) (ZillaDot.sol#299)
- IERC20(DividendToken).transfer(_marketingWalletAddress,newBalance) (ZillaDot.sol#351)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ZillaDot.sol#413-419)
- swapAndLiquify(swapTokens) (ZillaDot.sol#302)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ZillaDot.sol#430-437)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ZillaDot.sol#393-399)
- swapAndSendDividends(sellTokens) (ZillaDot.sol#305)
- success = IERC20(DividendToken).transfer(address(dividendTracker),dividends) (ZillaDot.sol#444)
- dividendTracker.distributeDividends(dividends) (ZillaDot.sol#447)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ZillaDot.sol#413-419)
External calls sending eth:
- swapAndLiquify(swapTokens) (ZillaDot.sol#302)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ZillaDot.sol#430-437)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (ZillaDot.sol#325)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#220)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#221)
- super._transfer(from,to,amount) (ZillaDot.sol#328)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#220)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#221)
- swapping = false (ZillaDot.sol#307)
Apply the check-effects-interactions pattern.

Additional information: link

ZillaDot.swapAndSendToFee(uint256) (ZillaDot.sol#345-352) ignores return value by IERC20(DividendToken).transfer(_marketingWalletAddress,newBalance) (ZillaDot.sol#351)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

ZillaDot._transfer(address,address,uint256) (ZillaDot.sol#268-343) uses a dangerous strict equality:
- from == uniswapV2Pair && liqAddBlock == 0 (ZillaDot.sol#276)
Don't use strict equality to determine if an account has enough Ether or tokens.

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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

ZillaDot.setAirdropAddress(address).airdropAddress (ZillaDot.sol#421) lacks a zero-check on :
- _airdropAddress = airdropAddress (ZillaDot.sol#422)
Check that the address is not zero.

Additional information: link

Reentrancy in ZillaDot.updateDividendTracker(address) (ZillaDot.sol#113-127):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (ZillaDot.sol#120)
- newDividendTracker.excludeFromDividends(address(this)) (ZillaDot.sol#121)
- newDividendTracker.excludeFromDividends(owner()) (ZillaDot.sol#122)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (ZillaDot.sol#123)
State variables written after the call(s):
- dividendTracker = newDividendTracker (ZillaDot.sol#126)
Apply the check-effects-interactions pattern.

Additional information: link

ZillaDot._transfer(address,address,uint256).claims (ZillaDot.sol#336) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

ZillaDot.addLiquidity(uint256,uint256) (ZillaDot.sol#424-439) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (ZillaDot.sol#430-437)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.

Additional information: link

ZillaDot.setSwapTokensAtAmount(uint256) (ZillaDot.sol#168-170) should emit an event for:
- swapTokensAtAmount = amount (ZillaDot.sol#169)
Emit an event for critical parameter changes.

Additional information: link

Variable 'ZillaDot._transfer(address,address,uint256).lastProcessedIndex (ZillaDot.sol#336)' in ZillaDot._transfer(address,address,uint256) (ZillaDot.sol#268-343) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (ZillaDot.sol#337)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in ZillaDot.updateUniswapV2Router(address) (ZillaDot.sol#135-142):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (ZillaDot.sol#139-140)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (ZillaDot.sol#141)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ZillaDot.updateDividendTracker(address) (ZillaDot.sol#113-127):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (ZillaDot.sol#120)
- newDividendTracker.excludeFromDividends(address(this)) (ZillaDot.sol#121)
- newDividendTracker.excludeFromDividends(owner()) (ZillaDot.sol#122)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (ZillaDot.sol#123)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (ZillaDot.sol#124)
Apply the check-effects-interactions pattern.

Additional information: link

BABYDividendTracker.canAutoClaim(uint256) (ZillaDot.sol#577-583) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (ZillaDot.sol#578)
- block.timestamp.sub(lastClaimTime) >= claimWait (ZillaDot.sol#582)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

ZillaDot.totalFees (ZillaDot.sol#35) is set pre-construction with a non-constant function or state variable:
- TokenRewardsFee.add(liquidityFee).add(marketingFee)
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.6.2 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

Parameter BABYDividendTracker.getAccount(address)._account (ZillaDot.sol#513) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#77) is too similar to BABYDividendTracker.getAccount(address).withdrawableDividends (ZillaDot.sol#518)
Prevent variables from having similar names.

Additional information: link

BABYDividendTracker.getAccountAtIndex(uint256) (ZillaDot.sol#558-575) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (ZillaDot.sol#569)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-92)
Remove unused state variables.

Additional information: link

ZillaDot.snipeBlockAmount (ZillaDot.sol#37) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

process(uint256) should be declared external:
- BABYDividendTracker.process(uint256) (ZillaDot.sol#603-648)
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.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for ZillaDot