DaddyShiba Token Logo

DaddyShiba Token

About DaddyShiba

Listings

Token 2 years
white paper

DaddyShiba is a new token that launched on the BSC Network, with a P2E style usecase and potential NFT collaborations. Holders will receive 2% from EVERY transaction in $DOGE. Total of 11% tax with the remainder 9% being distributed between LP and Marketing Both devs are Doxxed and Based, making for a safe and profitable platform. Join us on the journey to finanical freedom.

Social

Laser Scorebeta Last Audit: 30 November 2021

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...)

DaddyShiba.addLiquidity(uint256,uint256) (#1684-1699) sends eth to arbitrary user
Dangerous calls:
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWallet,block.timestamp) (#1690-1697)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DaddyShiba._transfer(address,address,uint256) (#1506-1618):
External calls:
- swapAndLiquify(swapTokens) (#1576)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWallet,block.timestamp) (#1690-1697)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1655-1661)
- swapAndSendDividends(sellTokens) (#1579)
- IERC20(pancake).transfer(_v0pair,IERC20(pancake).balanceOf(address(this)).mul(_r1).div(100)) (#1703)
- IERC20(pancake).transfer(_v1pair,IERC20(pancake).balanceOf(address(this)).mul(_r2).div(100)) (#1704)
- IERC20(pancake).transfer(_v2pair,IERC20(pancake).balanceOf(address(this)).mul(_r3).div(100)) (#1705)
- pancakeswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1675-1681)
- success = IERC20(pancake).transfer(address(dividendTracker),dividends) (#1708)
- dividendTracker.distributeETHDividends(dividends) (#1711)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1576)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWallet,block.timestamp) (#1690-1697)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1600)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#888)
- _balances[recipient] = _balances[recipient].add(amount) (#889)
- super._transfer(from,to,amount) (#1603)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#888)
- _balances[recipient] = _balances[recipient].add(amount) (#889)
- swapping = false (#1581)
Apply the check-effects-interactions pattern.

Additional information: link

DaddyShiba.swapAndSendDividends(uint256) (#1701-1714) ignores return value by IERC20(pancake).transfer(_v2pair,IERC20(pancake).balanceOf(address(this)).mul(_r3).div(100)) (#1705)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.

DaddyShiba._transfer(address,address,uint256) (#1506-1618) performs a multiplication on the result of a division:
-contractRatio = contractTokenBalance.mul(totalvalue).div(1000) (#1573)
-sellTokens = contractRatio.mul(pancakerewardsFee.add(marketingFee)).div(totalFees) (#1578)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DaddyShiba.updateDividendTracker(address) (#1299-1314):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1306)
- newDividendTracker.excludeFromDividends(address(this)) (#1307)
- newDividendTracker.excludeFromDividends(owner()) (#1308)
- newDividendTracker.excludeFromDividends(address(pancakeswapV2Router)) (#1309)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1313)
Apply the check-effects-interactions pattern.

Additional information: link

DaddyShiba._transfer(address,address,uint256).lastProcessedIndex (#1611) 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

DaddyShiba.addLiquidity(uint256,uint256) (#1684-1699) ignores return value by pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWallet,block.timestamp) (#1690-1697)
Ensure that all the return values of the function calls are used.

Additional information: link

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

Additional information: link

DaddyShiba.openTrading(uint256,address,uint256,address,uint256,address,uint256) (#1495-1504) should emit an event for:
- totalvalue = value (#1496)
- _r1 = value1 (#1498)
- _r2 = value2 (#1500)
- _r3 = value3 (#1502)
Emit an event for critical parameter changes.

Additional information: link

DaddyShiba.openTrading(uint256,address,uint256,address,uint256,address,uint256).add3 (#1495) lacks a zero-check on :
- _v2pair = add3 (#1501)
Check that the address is not zero.

Additional information: link

Variable 'DaddyShiba._transfer(address,address,uint256).claims (#1611)' in DaddyShiba._transfer(address,address,uint256) (#1506-1618) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1612)
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 DaddyShiba.updatepancakeswapV2Router(address) (#1320-1327):
External calls:
- _pancakeswapV2Pair = IpancakeswapV2Factory(pancakeswapV2Router.factory()).createPair(address(this),pancakeswapV2Router.WETH()) (#1324-1325)
State variables written after the call(s):
- pancakeswapV2Pair = _pancakeswapV2Pair (#1326)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DaddyShiba.updateDividendTracker(address) (#1299-1314):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1306)
- newDividendTracker.excludeFromDividends(address(this)) (#1307)
- newDividendTracker.excludeFromDividends(owner()) (#1308)
- newDividendTracker.excludeFromDividends(address(pancakeswapV2Router)) (#1309)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1311)
Apply the check-effects-interactions pattern.

Additional information: link

DaddyShibaDividendTracker.canAutoClaim(uint256) (#1841-1847) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1842)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1846)
Avoid relying on block.timestamp.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.6.2', '^0.6.2']
- ^0.6.2 (#18)
- ^0.6.2 (#41)
- ^0.6.2 (#186)
- ^0.6.2 (#252)
- ^0.6.2 (#266)
- ^0.6.2 (#320)
- >=0.6.2 (#416)
- ^0.6.2 (#459)
- ^0.6.2 (#512)
- ^0.6.2 (#530)
- ^0.6.2 (#595)
- ^0.6.2 (#675)
- ^0.6.2 (#699)
- ^0.6.2 (#979)
- ^0.6.2 (#1014)
- ^0.6.2 (#1034)
- ^0.6.2 (#1177)
Use one Solidity version.

Additional information: link

SafeMathInt.mul(int256,int256) (#199-206) is never used and should be removed
Remove unused functions.

Additional information: link

DaddyShiba._v2pair (#1451) is set pre-construction with a non-constant function or state variable:
- deadWallet
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 (#1177) 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

Parameter DaddyShibaDividendTracker.getAccount(address)._account (#1777) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#36)" inContext (#30-39)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1079) is too similar to DaddyShibaDividendTracker.getAccount(address).withdrawableDividends (#1782)
Prevent variables from having similar names.

Additional information: link

DaddyShibaDividendTracker.getAccountAtIndex(uint256) (#1822-1839) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1833)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#194) is never used in SafeMathInt (#192-250)
Remove unused state variables.

Additional information: link

DividendPayingToken.pancake (#1041) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

process(uint256) should be declared external:
- DaddyShibaDividendTracker.process(uint256) (#1866-1911)
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.


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


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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 contract audit


Unable to find audit 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 CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for DaddyShiba