LittleBabyWhale Token Logo

BabyWhale [LittleBabyWhale] Token

About BabyWhale

Listings

Not Found
Token 2 years

Website

Not Found

Little Baby Whale is a brand new token launching on Binance Smart Chain.

Its built to go to the moon!

Cake Rewards:

7% of each sale will be converted into CAKE and will be sent to your wallet, proving you with free CAKE! The longer you hold the more you get!

Liquidity:

4% of every transaction will be added to liquidity. This helps keep the floor price of the token high and lessens the effects of big sells. Protecting you and the token from whale manipulation.

Marketing:

The 3% marketing fee of each transaction ensures the capability of having funds to pay for marketing, listings, donations etc. If needed the Marketing wallet can also burn tokens for an increase in value or add liquidity to pancakeswap.

Social

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.

LittleBabyWhale.swapBack() (#615-667) sends eth to arbitrary user
Dangerous calls:
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#666)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in LittleBabyWhale._transferFrom(address,address,uint256) (#555-576):
External calls:
- swapBack() (#562)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#637-643)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidity,block.timestamp) (#651-658)
- dividendTracker.deposit{value: amountBNBReflection}() (#663)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#666)
External calls sending eth:
- swapBack() (#562)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidity,block.timestamp) (#651-658)
- dividendTracker.deposit{value: amountBNBReflection}() (#663)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#666)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#565)
- amountReceived = takeFee(sender,recipient,amount) (#566)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#602)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#567)
Apply the check-effects-interactions pattern.

Additional information: link

CakeCrewDividendTracker.distributeDividend(address) (#364-375) ignores return value by Cake.transfer(shareholder,amount) (#370)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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


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.

LittleBabyWhale.swapBack() (#615-667) performs a multiplication on the result of a division:
-swapAmount = balanceOf(pair).mul(priceImpact).div(1000) (#616)
-amountToLiquify = swapAmount.mul(dynamicLiquidityFee).div(totalFee).div(2) (#628)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in CakeCrewDividendTracker.setShare(address,uint256) (#297-311):
External calls:
- distributeDividend(shareholder) (#299)
- Cake.transfer(shareholder,amount) (#370)
State variables written after the call(s):
- shares[shareholder].amount = amount (#309)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#310)
Apply the check-effects-interactions pattern.

Additional information: link

LittleBabyWhale.swapBack() (#615-667) ignores return value by address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#666)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

LittleBabyWhale.swapBack() (#615-667) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidity,block.timestamp) (#651-658)
Ensure that all the return values of the function calls are used.

Additional information: link

LittleBabyWhale.setTxLimit(uint256) (#719-722) should emit an event for:
- _maxTxAmount = amount (#721)
Emit an event for critical parameter changes.

Additional information: link

LittleBabyWhale.setReceiver(address,address)._liquidity (#697) lacks a zero-check on :
- liquidity = _liquidity (#699)
Check that the address is not zero.

Additional information: link

Reentrancy in CakeCrewDividendTracker.setShare(address,uint256) (#297-311):
External calls:
- distributeDividend(shareholder) (#299)
- Cake.transfer(shareholder,amount) (#370)
State variables written after the call(s):
- addShareholder(shareholder) (#303)
- shareholderIndexes[shareholder] = shareholders.length (#393)
- removeShareholder(shareholder) (#305)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#399)
- addShareholder(shareholder) (#303)
- shareholders.push(shareholder) (#394)
- removeShareholder(shareholder) (#305)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#398)
- shareholders.pop() (#400)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#308)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LittleBabyWhale.swapBack() (#615-667):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#637-643)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidity,block.timestamp) (#651-658)
External calls sending eth:
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidity,block.timestamp) (#651-658)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#659)
Apply the check-effects-interactions pattern.

Additional information: link

LittleBabyWhale._transferFrom(address,address,uint256) (#555-576) uses timestamp for comparisons
Dangerous comparisons:
- lastSwap + interval <= block.timestamp (#560)
Avoid relying on block.timestamp.

Additional information: link

CakeCrewDividendTracker.process(uint256) (#333-357) has costly operations inside a loop:
- currentIndex ++ (#354)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#60-63) is never used and should be removed
Remove unused functions.

Additional information: link

LittleBabyWhale.swapThreshold (#476) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 5000
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 LittleBabyWhale.swapBack() (#615-667):
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#666)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable LittleBabyWhale._maxTxAmount (#451) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#61)" inContext (#55-64)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#170) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#171)
Prevent variables from having similar names.

Additional information: link

LittleBabyWhale.slitherConstructorVariables() (#429-760) uses literals with too many digits:
- distributorGas = 500000 (#469)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

LittleBabyWhale.ZERO (#441) is never used in LittleBabyWhale (#429-760)
Remove unused state variables.

Additional information: link

LittleBabyWhale.feeDenominator (#460) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

claim() should be declared external:
- LittleBabyWhale.claim() (#736-738)
Use the external attribute for functions never called from the contract.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

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.


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


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 BabyWhale