DaddyETH is a new token based in Ethereum, the official currency of Ether Blockchain, born in 2013. It’s a cryptocurrency that promises to reach high monetary levels, plus the experts indicate that in the near future it could even dethrone the famous Bitcoin, the currency par excellence in this decentralized world.
With DaddyETH you get great rewards in Ethereum thanks to our system, so we invite you to invest in our crypto in a 100% secure way. Buying DaddyETH we all win, will you join us? Let’s go to the moon together!
DaddyETH.swapBnbForEth(uint256) (DaddyETH.sol#526-539) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (DaddyETH.sol#533-538)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in DaddyETH._transfer(address,address,uint256) (DaddyETH.sol#328-394):
External calls:
- swapTokens(contractTokenBalance) (DaddyETH.sol#359)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (DaddyETH.sol#503-510)
- success = IERC20(ETH).transfer(address(dividendTracker),dividends) (DaddyETH.sol#518)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (DaddyETH.sol#533-538)
- dividendTracker.distributeETHDividends(dividends) (DaddyETH.sol#521)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (DaddyETH.sol#486-492)
External calls sending eth:
- swapTokens(contractTokenBalance) (DaddyETH.sol#359)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (DaddyETH.sol#503-510)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (DaddyETH.sol#533-538)
- marketingWalletAddress.transfer(bnbForFees) (DaddyETH.sol#415)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (DaddyETH.sol#377)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (DaddyETH.sol#380)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
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.
DaddyETH.swapTokensOnDemand(bool,bool,bool) (DaddyETH.sol#424-474) performs a multiplication on the result of a division:
-dividendTokens = contractTokenBalance.mul(dividendsFee).div(totalFees) (DaddyETH.sol#448)
-bnbAmount_scope_1 = bnbReceived.mul(dividendTokens).div(tokensToSwap) (DaddyETH.sol#468)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DaddyETH.updateDividendTracker(address) (DaddyETH.sol#132-148):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (DaddyETH.sol#139)
- newDividendTracker.excludeFromDividends(address(this)) (DaddyETH.sol#140)
- newDividendTracker.excludeFromDividends(owner()) (DaddyETH.sol#141)
- newDividendTracker.excludeFromDividends(deadWallet) (DaddyETH.sol#142)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (DaddyETH.sol#143)
State variables written after the call(s):
- dividendTracker = newDividendTracker (DaddyETH.sol#147)
Apply the check-effects-interactions pattern.
Additional information: link
DaddyETH._transfer(address,address,uint256).claims (DaddyETH.sol#388) 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
DaddyETH.addLiquidity(uint256,uint256) (DaddyETH.sol#497-513) ignores return value by uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (DaddyETH.sol#503-510)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#118) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.
Additional information: link
DaddyETHDividendTracker.setLastProcessedIndex(uint256) (DaddyETH.sol#592-594) should emit an event for:
- lastProcessedIndex = index (DaddyETH.sol#593)
Emit an event for critical parameter changes.
Additional information: link
DaddyETH.setAirdropAddress(address).wallet (DaddyETH.sol#186) lacks a zero-check on :
- airdropAddress = wallet (DaddyETH.sol#187)
Check that the address is not zero.
Additional information: link
Variable 'DaddyETH._transfer(address,address,uint256).lastProcessedIndex (DaddyETH.sol#388)' in DaddyETH._transfer(address,address,uint256) (DaddyETH.sol#328-394) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (DaddyETH.sol#389)
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 DaddyETH.updateUniswapV2Router(address) (DaddyETH.sol#150-157):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (DaddyETH.sol#154-155)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (DaddyETH.sol#156)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DaddyETH.updateDividendTracker(address) (DaddyETH.sol#132-148):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (DaddyETH.sol#139)
- newDividendTracker.excludeFromDividends(address(this)) (DaddyETH.sol#140)
- newDividendTracker.excludeFromDividends(owner()) (DaddyETH.sol#141)
- newDividendTracker.excludeFromDividends(deadWallet) (DaddyETH.sol#142)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (DaddyETH.sol#143)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (DaddyETH.sol#145)
Apply the check-effects-interactions pattern.
Additional information: link
DaddyETHDividendTracker.canAutoClaim(uint256) (DaddyETH.sol#670-676) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (DaddyETH.sol#671)
- block.timestamp.sub(lastClaimTime) >= claimWait (DaddyETH.sol#675)
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
DaddyETH.totalFees (DaddyETH.sol#46) is set pre-construction with a non-constant function or state variable:
- dividendsFee.add(marketingFee).add(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
Pragma version^0.6.2 (SafeMathUint.sol#3) allows old versions
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
Function IUniswapV2Router01.WETH() (IUniswapV2Router.sol#7) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-25)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in DaddyETH.swapTokensOnDemand(bool,bool,bool) (DaddyETH.sol#424-474):
External calls:
- marketingWalletAddress.transfer(bnbAmount_scope_0) (DaddyETH.sol#464)
External calls sending eth:
- addLiquidity(liquidityTokens.sub(half),bnbAmount) (DaddyETH.sol#459)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (DaddyETH.sol#503-510)
- marketingWalletAddress.transfer(bnbAmount_scope_0) (DaddyETH.sol#464)
- swapAndSendDividends(bnbAmount_scope_1) (DaddyETH.sol#469)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (DaddyETH.sol#533-538)
State variables written after the call(s):
- swapping = false (DaddyETH.sol#473)
Event emitted after the call(s):
- SendDividends(dividends) (DaddyETH.sol#522)
- swapAndSendDividends(bnbAmount_scope_1) (DaddyETH.sol#469)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (IUniswapV2Router.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (IUniswapV2Router.sol#13)
Prevent variables from having similar names.
Additional information: link
DaddyETHDividendTracker.getAccountAtIndex(uint256) (DaddyETH.sol#651-668) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (DaddyETH.sol#662)
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
DividendPayingToken.ETH (DividendPayingToken.sol#21) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
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 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 link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account