Baby Space Floki always dreamed of being the first dog to step foot on Mars. And we are here to help him achieve his goals!
Floki spent thousands of hours training with NASA, SpaceX, and Mr. Elon himself to prepare for his epic journey. Baby Space Floki is ready for whatever obstacles space travel might throw his way💥
💫The team, Baby Space Floki’s fearless Ground Control, are excited for Floki’s journey and can’t wait to help him arrive at his location.
📝There is massive marketing plans including; an NFT Marketplace, PooCoin and other paid ads, Influencers, Give-Aways, and much more!
⚔️The community, like the Roman God Mars, are battled hardened degens committed to helping Baby Space Floki realize his dreams. 🎙 The Telegram Voice Chat is always poppin off with daily DJing! Join the VC, and you might win a STEALTH GIVEAWAY!
Contracted AUDITED!
👇Tokenomic Features 👇
10% TAX
💦 5% Auto Liquidity
🤲 5% Marketing, Giveaways, Buybacks & Burns
Total Supply: 1,000,000,000,000,000 💎
45% burn 🔥
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Liquifier._addLiquidity(uint256,uint256) (#896-925) sends eth to arbitrary user
Dangerous calls:
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,manager(),block.timestamp) (#901-913)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Ownable._lockTime (#118) is never initialized. It is used in:
- Ownable.getUnlockTime() (#141-143)
Presaleable.isInPresale (#379) is never initialized. It is used in:
- SafeToken._beforeTokenTransfer(address,address,uint256,bool) (#992-997)
- SafeToken._takeTransactionFees(uint256,uint256) (#999-1025)
- BaseRfiToken._transfer(address,address,uint256) (#602-641)
- BaseRfiToken._takeFees(uint256,uint256,uint256) (#675-679)
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
Tokenomics._getFeeStruct(uint256) (#358-361) contains a tautology or contradiction:
- require(bool,string)(index >= 0 && index < fees.length,FeesSettings._getFeeStruct: Fee index out of bounds) (#359)
Fix the incorrect comparison by changing the value type or the comparison.
Additional information: link
BaseRfiToken.includeInReward(address) (#563-574) has costly operations inside a loop:
- _excluded.pop() (#570)
Use a local variable to hold the loop computation result.
Additional information: link
BaseRfiToken._getValues(uint256,uint256) (#681-691) performs a multiplication on the result of a division:
-tTotalFees = tAmount.mul(feesSum).div(FEES_DIVISOR) (#683)
-rTotalFees = tTotalFees.mul(currentRate) (#687)
BaseRfiToken._redistribute(uint256,uint256,uint256,uint256) (#745-751) performs a multiplication on the result of a division:
-tFee = amount.mul(fee).div(FEES_DIVISOR) (#746)
-rFee = tFee.mul(currentRate) (#747)
SafeToken._burn(uint256,uint256,uint256,uint256) (#1027-1033) performs a multiplication on the result of a division:
-tBurn = amount.mul(fee).div(FEES_DIVISOR) (#1028)
-rBurn = tBurn.mul(currentRate) (#1029)
SafeToken._takeFee(uint256,uint256,uint256,address,uint256) (#1035-1045) performs a multiplication on the result of a division:
-tAmount = amount.mul(fee).div(FEES_DIVISOR) (#1037)
-rAmount = tAmount.mul(currentRate) (#1038)
Consider ordering multiplication before division.
Additional information: link
BaseRfiToken.allowance(address,address).owner (#435) shadows:
- Ownable.owner() (#125-127) (function)
BaseRfiToken._approve(address,address,uint256).owner (#579) shadows:
- Ownable.owner() (#125-127) (function)
BaseRfiToken._transferTokens(address,address,uint256,bool).sumOfFees (#653) shadows:
- Tokenomics.sumOfFees (#322) (state variable)
BaseRfiToken._takeFees(uint256,uint256,uint256).sumOfFees (#675) shadows:
- Tokenomics.sumOfFees (#322) (state variable)
Liquifier._approveDelegate(address,address,uint256).owner (#947) shadows:
- Ownable.owner() (#125-127) (function)
SafeToken.constructor(Liquifier.Env)._env (#973) shadows:
- Liquifier._env (#766) (state variable)
SafeToken._takeTransactionFees(uint256,uint256).name (#1005) shadows:
- BaseRfiToken.name() (#415) (function)
- IERC20Metadata.name() (#25) (function)
SafeToken._approveDelegate(address,address,uint256).owner (#1057) shadows:
- Ownable.owner() (#125-127) (function)
Rename the local variables that shadow another component.
Additional information: link
Manageable.transferManagement(address).newManager (#158) lacks a zero-check on :
- _manager = newManager (#160)
Check that the address is not zero.
Additional information: link
Reentrancy in Liquifier._addLiquidity(uint256,uint256) (#896-925):
External calls:
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,manager(),block.timestamp) (#901-913)
State variables written after the call(s):
- withdrawableBalance = address(this).balance (#923)
Reentrancy in Liquifier._setRouterAddress(address) (#839-844):
External calls:
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#841)
State variables written after the call(s):
- _router = _newPancakeRouter (#842)
Reentrancy in Liquifier._swapAndLiquify(uint256) (#846-873):
External calls:
- _swapTokensForEth(threeQuarters) (#859)
- _router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#885-893)
- _addLiquidity(oneQuarter,oneQuarterAsETH) (#867)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,manager(),block.timestamp) (#901-913)
External calls sending eth:
- _addLiquidity(oneQuarter,oneQuarterAsETH) (#867)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,manager(),block.timestamp) (#901-913)
State variables written after the call(s):
- _addLiquidity(oneQuarter,oneQuarterAsETH) (#867)
- withdrawableBalance = address(this).balance (#923)
Reentrancy in SafeToken.constructor(Liquifier.Env) (#973-981):
External calls:
- initializeLiquiditySwapper(_env,maxTransactionAmount,numberOfTokensToSwapToLiquidity) (#975)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#841)
State variables written after the call(s):
- _exclude(_pair) (#979)
- _balances[account] = tokenFromReflection(_reflectedBalances[account]) (#557)
- _exclude(burnAddress) (#980)
- _balances[account] = tokenFromReflection(_reflectedBalances[account]) (#557)
- _exclude(_pair) (#979)
- _excluded.push(account) (#560)
- _exclude(burnAddress) (#980)
- _excluded.push(account) (#560)
- _exclude(_pair) (#979)
- _isExcludedFromRewards[account] = true (#559)
- _exclude(burnAddress) (#980)
- _isExcludedFromRewards[account] = true (#559)
Reentrancy in BABYSPACEFLOKI.constructor() (#1064-1067):
External calls:
- SafeToken(Env.MainnetV2) (#1064)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#841)
State variables written after the call(s):
- _approve(owner(),address(_router),~ uint256(0)) (#1066)
- _allowances[owner][spender] = amount (#583)
Reentrancy in Liquifier.initializeLiquiditySwapper(Liquifier.Env,uint256,uint256) (#801-810):
External calls:
- _setRouterAddress(_mainnetRouterV1Address) (#803)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#841)
- _setRouterAddress(_mainnetRouterV2Address) (#804)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#841)
- _setRouterAddress(_testnetRouterAddress) (#805)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#841)
State variables written after the call(s):
- maxTransactionAmount = maxTx (#807)
- numberOfTokensToSwapToLiquidity = liquifyAmount (#808)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Liquifier._addLiquidity(uint256,uint256) (#896-925):
External calls:
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,manager(),block.timestamp) (#901-913)
Event emitted after the call(s):
- LiquidityAdded(tokenAmountSent,ethAmountSent,liquidity) (#924)
Reentrancy in Liquifier._setRouterAddress(address) (#839-844):
External calls:
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#841)
Event emitted after the call(s):
- RouterSet(router) (#843)
Reentrancy in Liquifier._swapAndLiquify(uint256) (#846-873):
External calls:
- _swapTokensForEth(threeQuarters) (#859)
- _router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#885-893)
- _addLiquidity(oneQuarter,oneQuarterAsETH) (#867)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,manager(),block.timestamp) (#901-913)
External calls sending eth:
- _addLiquidity(oneQuarter,oneQuarterAsETH) (#867)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,manager(),block.timestamp) (#901-913)
Event emitted after the call(s):
- LiquidityAdded(tokenAmountSent,ethAmountSent,liquidity) (#924)
- _addLiquidity(oneQuarter,oneQuarterAsETH) (#867)
Reentrancy in Liquifier._swapAndLiquify(uint256) (#846-873):
External calls:
- _swapTokensForEth(threeQuarters) (#859)
- _router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#885-893)
- _addLiquidity(oneQuarter,oneQuarterAsETH) (#867)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,manager(),block.timestamp) (#901-913)
External calls sending eth:
- _addLiquidity(oneQuarter,oneQuarterAsETH) (#867)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,manager(),block.timestamp) (#901-913)
- address(marketingAddress).transfer(address(this).balance) (#870)
Event emitted after the call(s):
- SwapAndLiquify(threeQuarters,newBalance,oneQuarter) (#872)
Reentrancy in BABYSPACEFLOKI.constructor() (#1064-1067):
External calls:
- SafeToken(Env.MainnetV2) (#1064)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#841)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#584)
- _approve(owner(),address(_router),~ uint256(0)) (#1066)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#74) uses assembly
- INLINE ASM (#74)
Address._verifyCallResult(bool,bytes,string) (#104-113) uses assembly
- INLINE ASM (#107-110)
Do not use evm assembly.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#104-113) is never used and should be removed
Address.functionCall(address,bytes) (#79) is never used and should be removed
Address.functionCall(address,bytes,string) (#80) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#81) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#82-87) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#96-98) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#99-103) is never used and should be removed
Address.functionStaticCall(address,bytes) (#88-90) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#91-95) is never used and should be removed
Address.isContract(address) (#74) is never used and should be removed
Address.sendValue(address,uint256) (#75-78) is never used and should be removed
BaseRfiToken._beforeTokenTransfer(address,address,uint256,bool) (#719) is never used and should be removed
BaseRfiToken._getSumOfFees(address,uint256) (#729) is never used and should be removed
BaseRfiToken._isV2Pair(address) (#734) is never used and should be removed
BaseRfiToken._takeTransactionFees(uint256,uint256) (#756) is never used and should be removed
Context._msgData() (#31) is never used and should be removed
Liquifier._approveDelegate(address,address,uint256) (#947) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#51-60) is never used and should be removed
SafeMath.mod(uint256,uint256) (#38) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#62-71) is never used and should be removed
Tokenomics._addFee(Tokenomics.FeeType,uint256,address) (#328-331) is never used and should be removed
Tokenomics._addFees() (#333-354) is never used and should be removed
Tokenomics.getCollectedFeeTotal(uint256) (#372-375) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#75-78):
- (success) = recipient.call{value: amount}() (#76)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#82-87):
- (success,returndata) = target.call{value: value}(data) (#85)
Low level call in Address.functionStaticCall(address,bytes,string) (#91-95):
- (success,returndata) = target.staticcall(data) (#93)
Low level call in Address.functionDelegateCall(address,bytes,string) (#99-103):
- (success,returndata) = target.delegatecall(data) (#101)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeV2Router.WETH() (#169) is not in mixedCase
Variable Tokenomics._reflectedSupply (#230) is not in mixedCase
Constant Tokenomics.maxTransactionAmount (#240) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Tokenomics.maxWalletBalance (#252) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Tokenomics.numberOfTokensToSwapToLiquidity (#267) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BaseRfiToken._reflectedBalances (#390) is not in mixedCase
Variable BaseRfiToken._balances (#391) is not in mixedCase
Variable BaseRfiToken._allowances (#392) is not in mixedCase
Variable BaseRfiToken._isExcludedFromFee (#394) is not in mixedCase
Variable BaseRfiToken._isExcludedFromRewards (#395) is not in mixedCase
Variable Liquifier._router (#779) is not in mixedCase
Variable Liquifier._pair (#780) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#31)" inContext (#29-32)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in Liquifier._swapAndLiquify(uint256) (#846-873):
External calls:
- address(marketingAddress).transfer(address(this).balance) (#870)
External calls sending eth:
- _addLiquidity(oneQuarter,oneQuarterAsETH) (#867)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,manager(),block.timestamp) (#901-913)
- address(marketingAddress).transfer(address(this).balance) (#870)
Event emitted after the call(s):
- SwapAndLiquify(threeQuarters,newBalance,oneQuarter) (#872)
Apply the check-effects-interactions pattern.
Additional information: link
Variable BaseRfiToken.reflectionFromToken(uint256,bool).rTransferAmount (#536) is too similar to BaseRfiToken._transferTokens(address,address,uint256,bool).tTransferAmount (#656)
Variable BaseRfiToken._transferTokens(address,address,uint256,bool).rTransferAmount (#656) is too similar to BaseRfiToken._transferTokens(address,address,uint256,bool).tTransferAmount (#656)
Variable BaseRfiToken._getValues(uint256,uint256).rTransferAmount (#688) is too similar to BaseRfiToken._transferTokens(address,address,uint256,bool).tTransferAmount (#656)
Variable BaseRfiToken._getValues(uint256,uint256).rTransferAmount (#688) is too similar to BaseRfiToken._getValues(uint256,uint256).tTransferAmount (#684)
Variable BaseRfiToken._transferTokens(address,address,uint256,bool).rTransferAmount (#656) is too similar to BaseRfiToken._getValues(uint256,uint256).tTransferAmount (#684)
Variable BaseRfiToken.reflectionFromToken(uint256,bool).rTransferAmount (#536) is too similar to BaseRfiToken._getValues(uint256,uint256).tTransferAmount (#684)
Variable Liquifier._mainnetRouterV1Address (#769) is too similar to Liquifier._mainnetRouterV2Address (#771)
Prevent variables from having similar names.
Additional information: link
BABYSPACEFLOKI.slitherConstructorVariables() (#1062-1069) uses literals with too many digits:
- charityAddress = 0x000000000000000000000000000000000000dEaD (#275)
BABYSPACEFLOKI.slitherConstructorVariables() (#1062-1069) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#310)
BABYSPACEFLOKI.slitherConstructorConstantVariables() (#1062-1069) uses literals with too many digits:
- TOTAL_SUPPLY = 1000000000 * 10 ** 6 * 10 ** 9 (#229)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#117) is never used in BABYSPACEFLOKI (#1062-1069)
Tokenomics.ZEROES (#226) is never used in BABYSPACEFLOKI (#1062-1069)
Remove unused state variables.
Additional information: link
Liquifier._mainnetRouterV1Address (#769) should be constant
Liquifier._mainnetRouterV2Address (#771) should be constant
Liquifier._testnetRouterAddress (#775) should be constant
Liquifier.marketingAddress (#777) should be constant
Ownable._lockTime (#118) should be constant
Ownable._previousOwner (#117) should be constant
Presaleable.isInPresale (#379) should be constant
Tokenomics.burnAddress (#310) should be constant
Tokenomics.charityAddress (#275) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#132-135)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#136-140)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#141-143)
increaseAllowance(address,uint256) should be declared external:
- BaseRfiToken.increaseAllowance(address,uint256) (#512-515)
decreaseAllowance(address,uint256) should be declared external:
- BaseRfiToken.decreaseAllowance(address,uint256) (#517-520)
isExcludedFromFee(address) should be declared external:
- BaseRfiToken.isExcludedFromFee(address) (#577)
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
Unable to find token on CoinGecko
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 token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Last post in Twitter was more than 30 days ago
Unable to find Youtube account