BabyUSDT Token Logo

BABYUSDT Token

ALERT: unclassified scam

About BABYUSDT

Listings

Token 2 years
CoinMarketCap 2 years
white paper

BabyUSDT is called to be the next giant in the crypto token space.

12% of every buy/sell is taken and redistributed to all Holders. Hold $BabyUSDT and earn USDT.

Social

Laser Scorebeta Last Audit: 5 February 2023

report
Token seems to be a scam (type: unclassified scam).

Anti-Scam

Links


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

BabyUSDT.swapAndSendToFee(uint256) (BabyUSDT.sol#394-400) ignores return value by IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (BabyUSDT.sol#399)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

BabyUSDT.addLiquidity(uint256,uint256) (BabyUSDT.sol#462-476) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BabyUSDT._transfer(address,address,uint256) (BabyUSDT.sol#322-392):
External calls:
- swapAndSendToFee(marketingTokens) (BabyUSDT.sol#349)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (BabyUSDT.sol#399)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#434-440)
- swapAndSendDividends(sellTokens) (BabyUSDT.sol#355)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (BabyUSDT.sol#481)
- dividendTracker.distributeUSDTDividends(dividends) (BabyUSDT.sol#484)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
External calls sending eth:
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (BabyUSDT.sol#374)
- _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) (BabyUSDT.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)
- swapping = false (BabyUSDT.sol#357)
Apply the check-effects-interactions pattern.

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


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.


Contract ownership is not renounced (belongs to a wallet)

DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#75-91) has external calls inside a loop: success = IERC20(USDT).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#80)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BabyUSDT.updateDividendTracker(address) (BabyUSDT.sol#127-143):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (BabyUSDT.sol#134)
- newDividendTracker.excludeFromDividends(address(this)) (BabyUSDT.sol#135)
- newDividendTracker.excludeFromDividends(owner()) (BabyUSDT.sol#136)
- newDividendTracker.excludeFromDividends(deadWallet) (BabyUSDT.sol#137)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (BabyUSDT.sol#138)
State variables written after the call(s):
- dividendTracker = newDividendTracker (BabyUSDT.sol#142)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#75-91):
External calls:
- success = IERC20(USDT).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#80)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (DividendPayingToken.sol#83)
Apply the check-effects-interactions pattern.

Additional information: link

BabyUSDT._transfer(address,address,uint256).iterations (BabyUSDT.sol#385) is a local variable never initialized
BabyUSDT._transfer(address,address,uint256).lastProcessedIndex (BabyUSDT.sol#385) is a local variable never initialized
BabyUSDT._transfer(address,address,uint256).claims (BabyUSDT.sol#385) 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

BabyUSDT.claim() (BabyUSDT.sol#302-304) ignores return value by dividendTracker.processAccount(msg.sender,false) (BabyUSDT.sol#303)
BabyUSDT._transfer(address,address,uint256) (BabyUSDT.sol#322-392) ignores return value by dividendTracker.process(gas) (BabyUSDT.sol#385-390)
BabyUSDT.addLiquidity(uint256,uint256) (BabyUSDT.sol#462-476) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
BabyUSDT.claimAddress(address) (BabyUSDT.sol#306-308) ignores return value by dividendTracker.processAccount(address(claimee),false) (BabyUSDT.sol#307)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (DividendPayingToken.sol#49) shadows:
- ERC20._name (ERC20.sol#43) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#121) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#104) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.constructor(string,string)._symbol (DividendPayingToken.sol#49) shadows:
- ERC20._symbol (ERC20.sol#44) (state variable)
DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#97) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#111) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.

Additional information: link

BabyUsdtDividendTracker.setLastProcessedIndex(uint256) (BabyUSDT.sol#540-542) should emit an event for:
- lastProcessedIndex = index (BabyUSDT.sol#541)
BabyUSDT.setMarketingFee(uint256) (BabyUSDT.sol#187-190) should emit an event for:
- marketingFee = value (BabyUSDT.sol#188)
- totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee) (BabyUSDT.sol#189)
BabyUSDT.setUSDTRewardsFee(uint256) (BabyUSDT.sol#177-180) should emit an event for:
- USDTRewardsFee = value (BabyUSDT.sol#178)
- totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee) (BabyUSDT.sol#179)
BabyUSDT.setLiquiditFee(uint256) (BabyUSDT.sol#182-185) should emit an event for:
- liquidityFee = value (BabyUSDT.sol#183)
- totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee) (BabyUSDT.sol#184)
BabyUSDT.setSwapTokensAtAmount(uint256) (BabyUSDT.sol#169-171) should emit an event for:
- swapTokensAtAmount = amount (BabyUSDT.sol#170)
Emit an event for critical parameter changes.

Additional information: link

BabyUSDT.setMarketingWallet(address).wallet (BabyUSDT.sol#173) lacks a zero-check on :
- _marketingWalletAddress = wallet (BabyUSDT.sol#174)
BabyUSDT.updateUniswapV2Router(address)._uniswapV2Pair (BabyUSDT.sol#149-150) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (BabyUSDT.sol#151)
Check that the address is not zero.

Additional information: link

Variable 'BabyUSDT._transfer(address,address,uint256).lastProcessedIndex (BabyUSDT.sol#385)' in BabyUSDT._transfer(address,address,uint256) (BabyUSDT.sol#322-392) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (BabyUSDT.sol#386)
Variable 'BabyUSDT._transfer(address,address,uint256).claims (BabyUSDT.sol#385)' in BabyUSDT._transfer(address,address,uint256) (BabyUSDT.sol#322-392) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (BabyUSDT.sol#386)
Variable 'BabyUSDT._transfer(address,address,uint256).iterations (BabyUSDT.sol#385)' in BabyUSDT._transfer(address,address,uint256) (BabyUSDT.sol#322-392) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (BabyUSDT.sol#386)
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 BabyUSDT.swapAndLiquify(uint256) (BabyUSDT.sol#402-423):
External calls:
- swapTokensForEth(half) (BabyUSDT.sol#414)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#434-440)
- addLiquidity(otherHalf,newBalance) (BabyUSDT.sol#420)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (BabyUSDT.sol#420)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (BabyUSDT.sol#420)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in BabyUSDT.updateUniswapV2Router(address) (BabyUSDT.sol#145-152):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (BabyUSDT.sol#149-150)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (BabyUSDT.sol#151)
Reentrancy in BabyUsdtDividendTracker.processAccount(address,bool) (BabyUSDT.sol#690-700):
External calls:
- amount = _withdrawDividendOfUser(account) (BabyUSDT.sol#691)
- success = IERC20(USDT).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#80)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (BabyUSDT.sol#694)
Reentrancy in BabyUSDT.swapOnDemand(bool,bool,bool) (BabyUSDT.sol#224-245):
External calls:
- swapAndSendToFee(marketingTokens) (BabyUSDT.sol#231)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (BabyUSDT.sol#399)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#236)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#434-440)
External calls sending eth:
- swapAndLiquify(swapTokens) (BabyUSDT.sol#236)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (BabyUSDT.sol#236)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in BabyUSDT._transfer(address,address,uint256) (BabyUSDT.sol#322-392):
External calls:
- swapAndSendToFee(marketingTokens) (BabyUSDT.sol#349)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (BabyUSDT.sol#399)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#434-440)
External calls sending eth:
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in BabyUSDT.swapOnDemand(bool,bool,bool) (BabyUSDT.sol#224-245):
External calls:
- swapAndSendToFee(marketingTokens) (BabyUSDT.sol#231)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (BabyUSDT.sol#399)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#236)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#434-440)
- swapAndSendDividends(sellTokens) (BabyUSDT.sol#241)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (BabyUSDT.sol#481)
- dividendTracker.distributeUSDTDividends(dividends) (BabyUSDT.sol#484)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
External calls sending eth:
- swapAndLiquify(swapTokens) (BabyUSDT.sol#236)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (BabyUSDT.sol#241)
- _allowances[owner][spender] = amount (ERC20.sol#287)
- swapping = false (BabyUSDT.sol#244)
Reentrancy in BabyUSDT._transfer(address,address,uint256) (BabyUSDT.sol#322-392):
External calls:
- swapAndSendToFee(marketingTokens) (BabyUSDT.sol#349)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (BabyUSDT.sol#399)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#434-440)
- swapAndSendDividends(sellTokens) (BabyUSDT.sol#355)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (BabyUSDT.sol#481)
- dividendTracker.distributeUSDTDividends(dividends) (BabyUSDT.sol#484)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
External calls sending eth:
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (BabyUSDT.sol#355)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BabyUSDT.swapAndSendDividends(uint256) (BabyUSDT.sol#478-487):
External calls:
- swapTokensForUsdt(tokens) (BabyUSDT.sol#479)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (BabyUSDT.sol#481)
- dividendTracker.distributeUSDTDividends(dividends) (BabyUSDT.sol#484)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (BabyUSDT.sol#485)
Reentrancy in BabyUSDT._transfer(address,address,uint256) (BabyUSDT.sol#322-392):
External calls:
- swapAndSendToFee(marketingTokens) (BabyUSDT.sol#349)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (BabyUSDT.sol#399)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#434-440)
- swapAndSendDividends(sellTokens) (BabyUSDT.sol#355)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (BabyUSDT.sol#481)
- dividendTracker.distributeUSDTDividends(dividends) (BabyUSDT.sol#484)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
- dividendTracker.setBalance(address(from),balanceOf(from)) (BabyUSDT.sol#379)
- dividendTracker.setBalance(address(to),balanceOf(to)) (BabyUSDT.sol#380)
- dividendTracker.process(gas) (BabyUSDT.sol#385-390)
External calls sending eth:
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (BabyUSDT.sol#386)
Reentrancy in BabyUSDT.updateDividendTracker(address) (BabyUSDT.sol#127-143):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (BabyUSDT.sol#134)
- newDividendTracker.excludeFromDividends(address(this)) (BabyUSDT.sol#135)
- newDividendTracker.excludeFromDividends(owner()) (BabyUSDT.sol#136)
- newDividendTracker.excludeFromDividends(deadWallet) (BabyUSDT.sol#137)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (BabyUSDT.sol#138)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (BabyUSDT.sol#140)
Reentrancy in BabyUSDT.processDividendTracker(uint256) (BabyUSDT.sol#297-300):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (BabyUSDT.sol#298)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (BabyUSDT.sol#299)
Reentrancy in BabyUSDT._setAutomatedMarketMakerPair(address,bool) (BabyUSDT.sol#202-211):
External calls:
- dividendTracker.excludeFromDividends(pair) (BabyUSDT.sol#207)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (BabyUSDT.sol#210)
Reentrancy in BabyUSDT.swapAndLiquify(uint256) (BabyUSDT.sol#402-423):
External calls:
- swapTokensForEth(half) (BabyUSDT.sol#414)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#434-440)
- addLiquidity(otherHalf,newBalance) (BabyUSDT.sol#420)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (BabyUSDT.sol#420)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- addLiquidity(otherHalf,newBalance) (BabyUSDT.sol#420)
- SwapAndLiquify(half,newBalance,otherHalf) (BabyUSDT.sol#422)
Reentrancy in BabyUSDT._transfer(address,address,uint256) (BabyUSDT.sol#322-392):
External calls:
- swapAndSendToFee(marketingTokens) (BabyUSDT.sol#349)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (BabyUSDT.sol#399)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#434-440)
- swapAndSendDividends(sellTokens) (BabyUSDT.sol#355)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (BabyUSDT.sol#481)
- dividendTracker.distributeUSDTDividends(dividends) (BabyUSDT.sol#484)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
External calls sending eth:
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndSendDividends(sellTokens) (BabyUSDT.sol#355)
- SendDividends(tokens,dividends) (BabyUSDT.sol#485)
- swapAndSendDividends(sellTokens) (BabyUSDT.sol#355)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,to,amount) (BabyUSDT.sol#377)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,address(this),fees) (BabyUSDT.sol#374)
Reentrancy in BabyUsdtDividendTracker.processAccount(address,bool) (BabyUSDT.sol#690-700):
External calls:
- amount = _withdrawDividendOfUser(account) (BabyUSDT.sol#691)
- success = IERC20(USDT).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#80)
Event emitted after the call(s):
- Claim(account,amount,automatic) (BabyUSDT.sol#695)
Reentrancy in BabyUSDT._transfer(address,address,uint256) (BabyUSDT.sol#322-392):
External calls:
- swapAndSendToFee(marketingTokens) (BabyUSDT.sol#349)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (BabyUSDT.sol#399)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#434-440)
External calls sending eth:
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
- SwapAndLiquify(half,newBalance,otherHalf) (BabyUSDT.sol#422)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#352)
Reentrancy in BabyUSDT.swapOnDemand(bool,bool,bool) (BabyUSDT.sol#224-245):
External calls:
- swapAndSendToFee(marketingTokens) (BabyUSDT.sol#231)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (BabyUSDT.sol#399)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#236)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#434-440)
- swapAndSendDividends(sellTokens) (BabyUSDT.sol#241)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (BabyUSDT.sol#481)
- dividendTracker.distributeUSDTDividends(dividends) (BabyUSDT.sol#484)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
External calls sending eth:
- swapAndLiquify(swapTokens) (BabyUSDT.sol#236)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndSendDividends(sellTokens) (BabyUSDT.sol#241)
- SendDividends(tokens,dividends) (BabyUSDT.sol#485)
- swapAndSendDividends(sellTokens) (BabyUSDT.sol#241)
Reentrancy in BabyUSDT.swapOnDemand(bool,bool,bool) (BabyUSDT.sol#224-245):
External calls:
- swapAndSendToFee(marketingTokens) (BabyUSDT.sol#231)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (BabyUSDT.sol#399)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#453-459)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#236)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BabyUSDT.sol#434-440)
External calls sending eth:
- swapAndLiquify(swapTokens) (BabyUSDT.sol#236)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (BabyUSDT.sol#468-475)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#236)
- SwapAndLiquify(half,newBalance,otherHalf) (BabyUSDT.sol#422)
- swapAndLiquify(swapTokens) (BabyUSDT.sol#236)
Apply the check-effects-interactions pattern.

Additional information: link

BabyUsdtDividendTracker.getAccount(address) (BabyUSDT.sol#554-597) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (BabyUSDT.sol#594-596)
BabyUsdtDividendTracker.canAutoClaim(uint256) (BabyUSDT.sol#618-624) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (BabyUSDT.sol#619)
- block.timestamp.sub(lastClaimTime) >= claimWait (BabyUSDT.sol#623)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.div(int256,int256) (SafeMathInt.sol#53-59) is never used and should be removed
SafeMathInt.abs(int256) (SafeMathInt.sol#82-85) is never used and should be removed
SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#142-145) is never used and should be removed
Context._msgData() (Context.sol#20-23) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#126-128) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (DividendPayingToken.sol#131-137) is never used and should be removed
Remove unused functions.

Additional information: link

BabyUSDT.totalFees (BabyUSDT.sol#41) is set pre-construction with a non-constant function or state variable:
- USDTRewardsFee.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

Pragma version^0.6.2 (IUniswapV2Factory.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingToken.sol#3) allows old versions
Pragma version^0.6.2 (IERC20Metadata.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Pair.sol#3) allows old versions
Pragma version^0.6.2 (SafeMathUint.sol#3) allows old versions
Pragma version^0.6.2 (SafeMathInt.sol#28) allows old versions
Pragma version^0.6.2 (Ownable.sol#3) allows old versions
Pragma version^0.6.2 (BabyUSDT.sol#10) allows old versions
Pragma version^0.6.2 (IERC20.sol#3) allows old versions
Pragma version^0.6.2 (ERC20.sol#3) allows old versions
Pragma version^0.6.2 (Context.sol#3) allows old versions
Pragma version^0.6.2 (SafeMath.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Router.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenInterface.sol#3) allows old versions
Pragma version^0.6.2 (IterableMapping.sol#2) allows old versions
Pragma version^0.6.2 (DividendPayingTokenOptionalInterface.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 IUniswapV2Pair.PERMIT_TYPEHASH() (IUniswapV2Pair.sol#21) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (IUniswapV2Pair.sol#38) is not in mixedCase
Constant DividendPayingToken.magnitude (DividendPayingToken.sol#29) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (IUniswapV2Pair.sol#20) is not in mixedCase
Variable BabyUSDT.USDTRewardsFee (BabyUSDT.sol#38) is not in mixedCase
Parameter BabyUsdtDividendTracker.getAccount(address)._account (BabyUSDT.sol#554) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#97) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#111) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#104) is not in mixedCase
Variable BabyUSDT.USDT (BabyUSDT.sol#32) is not in mixedCase
Variable DividendPayingToken.USDT (DividendPayingToken.sol#23) is not in mixedCase
Variable BabyUSDT._marketingWalletAddress (BabyUSDT.sol#43) is not in mixedCase
Function IUniswapV2Router01.WETH() (IUniswapV2Router.sol#7) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#121) is not in mixedCase
Variable BabyUSDT._isBlacklisted (BabyUSDT.sol#36) 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

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)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#76) is too similar to BabyUsdtDividendTracker.getAccount(address).withdrawableDividends (BabyUSDT.sol#559)
Prevent variables from having similar names.

Additional information: link

BabyUSDT.updateGasForProcessing(uint256) (BabyUSDT.sol#213-218) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,BabyUsdt: gasForProcessing must be between 200,000 and 500,000) (BabyUSDT.sol#214)
BabyUSDT.slitherConstructorVariables() (BabyUSDT.sol#20-488) uses literals with too many digits:
- gasForProcessing = 300000 (BabyUSDT.sol#47)
BabyUSDT.slitherConstructorVariables() (BabyUSDT.sol#20-488) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (BabyUSDT.sol#30)
BabyUSDT.constructor() (BabyUSDT.sol#90-121) uses literals with too many digits:
- _mint(owner(),100000000000 * (10 ** 18)) (BabyUSDT.sol#120)
BabyUsdtDividendTracker.getAccountAtIndex(uint256) (BabyUSDT.sol#599-616) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (BabyUSDT.sol#610)
BabyUSDT.slitherConstructorVariables() (BabyUSDT.sol#20-488) uses literals with too many digits:
- swapTokensAtAmount = 4000000 * (10 ** 18) (BabyUSDT.sol#34)
BabyUsdtDividendTracker.constructor() (BabyUSDT.sol#510-513) uses literals with too many digits:
- minimumTokenBalanceForDividends = 200000 * (10 ** 18) (BabyUSDT.sol#512)
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

BabyUSDT.deadWallet (BabyUSDT.sol#30) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (IterableMapping.sol#13-15)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#151-159)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (IterableMapping.sol#24-26)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#43-46)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- BabyUSDT.excludeMultipleAccountsFromFees(address[],bool) (BabyUSDT.sol#161-167)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#88-90)
distributeUSDTDividends(uint256) should be declared external:
- DividendPayingToken.distributeUSDTDividends(uint256) (DividendPayingToken.sol#54-65)
isExcludedFromFees(address) should be declared external:
- BabyUSDT.isExcludedFromFees(address) (BabyUSDT.sol#255-257)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (DividendPayingToken.sol#97-99)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (IterableMapping.sol#17-22)
dividendTokenBalanceOf(address) should be declared external:
- BabyUSDT.dividendTokenBalanceOf(address) (BabyUSDT.sol#263-265)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#192-195)
updateDividendTracker(address) should be declared external:
- BabyUSDT.updateDividendTracker(address) (BabyUSDT.sol#127-143)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#71-73)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#114-117)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#173-176)
updateGasForProcessing(uint256) should be declared external:
- BabyUSDT.updateGasForProcessing(uint256) (BabyUSDT.sol#213-218)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (IterableMapping.sol#30-32)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
withdrawDividend() should be declared external:
- BabyUsdtDividendTracker.withdrawDividend() (BabyUSDT.sol#519-521)
- DividendPayingToken.withdrawDividend() (DividendPayingToken.sol#69-71)
name() should be declared external:
- ERC20.name() (ERC20.sol#63-65)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#133-136)
withdrawableDividendOf(address) should be declared external:
- BabyUSDT.withdrawableDividendOf(address) (BabyUSDT.sol#259-261)
getAccountAtIndex(uint256) should be declared external:
- BabyUsdtDividendTracker.getAccountAtIndex(uint256) (BabyUSDT.sol#599-616)
process(uint256) should be declared external:
- BabyUsdtDividendTracker.process(uint256) (BabyUSDT.sol#643-688)
updateUniswapV2Router(address) should be declared external:
- BabyUSDT.updateUniswapV2Router(address) (BabyUSDT.sol#145-152)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (DividendPayingToken.sol#111-113)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- BabyUSDT.setAutomatedMarketMakerPair(address,bool) (BabyUSDT.sol#192-196)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#122-124)
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.

Contract has 19% buy tax and 25% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Token has only one trading pair


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


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 seems to be suspended

Additional information: link


Unable to find Youtube account


Unable to find Discord account


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Token was delisted from CoinGecko

Additional information: link


Unable to find token contract audit


Token was delisted from CoinHunt

Additional information: link


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find code repository for the project


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has no active CoinGecko listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for BABYUSDT