We are a community driven token, that is developing an anonymous escrow service. We give BUSD rewards for holding.
BABYTOKEN.addLiquidity(uint256,uint256) (contracts/tokens/BabyToken.sol#494-507) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/tokens/BabyToken.sol#499-506)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in BABYTOKEN._transfer(address,address,uint256) (contracts/tokens/BabyToken.sol#346-425):
External calls:
- swapAndSendToFee(marketingTokens) (contracts/tokens/BabyToken.sol#374)
- IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (contracts/tokens/BabyToken.sol#432)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/tokens/BabyToken.sol#485-491)
- swapAndLiquify(swapTokens) (contracts/tokens/BabyToken.sol#377)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/tokens/BabyToken.sol#499-506)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/tokens/BabyToken.sol#467-473)
- swapAndSendDividends(sellTokens) (contracts/tokens/BabyToken.sol#380)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (contracts/tokens/BabyToken.sol#512)
- dividendTracker.distributeCAKEDividends(dividends) (contracts/tokens/BabyToken.sol#515)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/tokens/BabyToken.sol#485-491)
External calls sending eth:
- swapAndLiquify(swapTokens) (contracts/tokens/BabyToken.sol#377)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/tokens/BabyToken.sol#499-506)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (contracts/tokens/BabyToken.sol#399)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol#220)
- _balances[recipient] = _balances[recipient].add(amount) (@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol#221)
- super._transfer(from,to,amount) (contracts/tokens/BabyToken.sol#402)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol#220)
- _balances[recipient] = _balances[recipient].add(amount) (@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol#221)
- swapping = false (contracts/tokens/BabyToken.sol#382)
Apply the check-effects-interactions pattern.
Additional information: link
ERC20Upgradeable.__gap (@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol#312) shadows:
- ContextUpgradeable.__gap (@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol#31)
Remove the state variable shadowing.
Additional information: link
BABYTOKEN.swapAndSendToFee(uint256) (contracts/tokens/BabyToken.sol#427-433) ignores return value by IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (contracts/tokens/BabyToken.sol#432)
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...)
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
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.
Redundant expression "this (@openzeppelin/contracts/utils/Context.sol#21)" inContext (@openzeppelin/contracts/utils/Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Low level call in AddressUpgradeable.functionStaticCall(address,bytes,string) (@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol#139-145):
- (success,returndata) = target.staticcall(data) (@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol#143)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter BABYTOKENDividendTracker.getAccount(address)._account (contracts/tokens/BabyTokenDividendTracker.sol#324) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in BABYTOKEN.updateDividendTracker(address) (contracts/tokens/BabyToken.sol#141-162):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (contracts/tokens/BabyToken.sol#154)
- newDividendTracker.excludeFromDividends(address(this)) (contracts/tokens/BabyToken.sol#155)
- newDividendTracker.excludeFromDividends(owner()) (contracts/tokens/BabyToken.sol#156)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (contracts/tokens/BabyToken.sol#157)
State variables written after the call(s):
- dividendTracker = newDividendTracker (contracts/tokens/BabyToken.sol#161)
Apply the check-effects-interactions pattern.
Additional information: link
BABYTOKEN._transfer(address,address,uint256).lastProcessedIndex (contracts/tokens/BabyToken.sol#413) 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
BABYTOKEN.addLiquidity(uint256,uint256) (contracts/tokens/BabyToken.sol#494-507) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (contracts/tokens/BabyToken.sol#499-506)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.accumulativeDividendOf(address)._owner (contracts/tokens/BabyTokenDividendTracker.sol#182) shadows:
- OwnableUpgradeable._owner (@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol#20) (state variable)
Rename the local variables that shadow another component.
Additional information: link
BABYTOKEN.setMarketingFee(uint256) (contracts/tokens/BabyToken.sol#213-216) should emit an event for:
- marketingFee = value (contracts/tokens/BabyToken.sol#214)
- totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee) (contracts/tokens/BabyToken.sol#215)
Emit an event for critical parameter changes.
Additional information: link
BABYTOKEN.setMarketingWallet(address).wallet (contracts/tokens/BabyToken.sol#199) lacks a zero-check on :
- _marketingWalletAddress = wallet (contracts/tokens/BabyToken.sol#200)
Check that the address is not zero.
Additional information: link
Variable 'BABYTOKEN._transfer(address,address,uint256).lastProcessedIndex (contracts/tokens/BabyToken.sol#413)' in BABYTOKEN._transfer(address,address,uint256) (contracts/tokens/BabyToken.sol#346-425) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (contracts/tokens/BabyToken.sol#415-422)
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 BABYTOKEN.updateUniswapV2Router(address) (contracts/tokens/BabyToken.sol#164-176):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (contracts/tokens/BabyToken.sol#171-174)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (contracts/tokens/BabyToken.sol#175)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BABYTOKEN.updateDividendTracker(address) (contracts/tokens/BabyToken.sol#141-162):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (contracts/tokens/BabyToken.sol#154)
- newDividendTracker.excludeFromDividends(address(this)) (contracts/tokens/BabyToken.sol#155)
- newDividendTracker.excludeFromDividends(owner()) (contracts/tokens/BabyToken.sol#156)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (contracts/tokens/BabyToken.sol#157)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (contracts/tokens/BabyToken.sol#159)
Apply the check-effects-interactions pattern.
Additional information: link
BABYTOKENDividendTracker.canAutoClaim(uint256) (contracts/tokens/BabyTokenDividendTracker.sol#391-397) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (contracts/tokens/BabyTokenDividendTracker.sol#392)
- block.timestamp.sub(lastClaimTime) >= claimWait (contracts/tokens/BabyTokenDividendTracker.sol#396)
Avoid relying on block.timestamp.
Additional information: link
Clones.predictDeterministicAddress(address,bytes32,address) (@openzeppelin/contracts/proxy/Clones.sol#58-70) uses assembly
- INLINE ASM (@openzeppelin/contracts/proxy/Clones.sol#60-69)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['>=0.4.24<0.8.0', '>=0.5.0', '>=0.6.0<0.8.0', '>=0.6.2', '>=0.6.2<0.8.0', '^0.7.0', '^0.7.6']
- >=0.6.0<0.8.0 (@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts-upgradeable/math/SafeMathUpgradeable.sol#3)
- >=0.4.24<0.8.0 (@openzeppelin/contracts-upgradeable/proxy/Initializable.sol#4)
- >=0.6.0<0.8.0 (@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol#3)
- >=0.6.2<0.8.0 (@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol#3)
- ^0.7.0 (@openzeppelin/contracts/access/Ownable.sol#3)
- ^0.7.0 (@openzeppelin/contracts/math/SafeMath.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/proxy/Clones.sol#3)
- ^0.7.0 (@openzeppelin/contracts/token/ERC20/ERC20.sol#3)
- ^0.7.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/utils/Context.sol#3)
- >=0.5.0 (contracts/antibot/IPinkAntiBot.sol#2)
- >=0.5.0 (contracts/interfaces/IAntiBotBabyToken.sol#2)
- >=0.5.0 (contracts/interfaces/IBabyToken.sol#2)
- >=0.5.0 (contracts/interfaces/IUniswapV2Factory.sol#2)
- >=0.5.0 (contracts/interfaces/IUniswapV2Pair.sol#2)
- >=0.6.2 (contracts/interfaces/IUniswapV2Router02.sol#2)
- ^0.7.6 (contracts/libs/IterableMapping.sol#3)
- ^0.7.6 (contracts/libs/SafeMathInt.sol#2)
- ^0.7.6 (contracts/libs/SafeMathUint.sol#2)
- ^0.7.6 (contracts/tokens/BabyToken.sol#3)
- ^0.7.6 (contracts/tokens/BabyTokenDividendTracker.sol#3)
Use one Solidity version.
Additional information: link
SafeMathUpgradeable.trySub(uint256,uint256) (@openzeppelin/contracts-upgradeable/math/SafeMathUpgradeable.sol#35-38) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.6.2 (contracts/interfaces/IUniswapV2Router02.sol#2) 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
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (contracts/tokens/BabyTokenDividendTracker.sol#139) is too similar to BABYTOKENDividendTracker.getAccount(address).withdrawableDividends (contracts/tokens/BabyTokenDividendTracker.sol#331)
Prevent variables from having similar names.
Additional information: link
BABYTOKEN.updateGasForProcessing(uint256) (contracts/tokens/BabyToken.sol#245-256) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,BABYTOKEN: gasForProcessing must be between 200,000 and 500,000) (contracts/tokens/BabyToken.sol#246-249)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
OwnableUpgradeable.__gap (@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol#74) is never used in BABYTOKENDividendTracker (contracts/tokens/BabyTokenDividendTracker.sol#245-482)
Remove unused state variables.
Additional information: link
process(uint256) should be declared external:
- BABYTOKENDividendTracker.process(uint256) (contracts/tokens/BabyTokenDividendTracker.sol#413-465)
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.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
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.
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
Telegram account link seems to be invalid
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