Baby Bonfire Token Logo

FIRE [Baby Bonfire] Token

About FIRE

Listings

Token 2 years

Baby Bonfire, a unique token that will provide its users with double reflection rewards, the ratio of 80% rewards will be distributed via BNB, which will provide immediate benefits to the user short term, and 20% provided in Ethereum. These two tokens have been carefully chosen to greatly benefit the community for holding, to provide both immediate and long term financial applications. After careful consideration we have selected both BNB and Ethereum to be the two tokens most likely to provide our users with instant funds, both in the form of passive income, and also give them the best opportunity to profit long term, in the form of an increase in value of these reflection tokens.

Baby Bonfire is a hyper-deflationary token that benefits you with tangible rewards. Tokenomics that simply reward itself within its self-same reflections become useless in scenarios where volume and market-cap are less than desirable: inherently damaging the project. Simply hold Baby Bonfire, and every 60 minutes you will receive reflections in both BNB and Ethereum. The BNB will increase in value and can be staked for passive income. The Ethereum will solidify this concept with an additional pool of revenue for users. Passive income or even Bonfire can be staked in the future to receive passive Ethereum and a THIRD token, depending on the pool. We hope that this satisfies your needs as a holder. We have catered to each requirement by providing great reflections, hourly auto compounding, passive income in stable platforms, and a gateway into two great projects, one which has the potential to 3x-5x and the other which the potential to 100x.

Baby Bonfire ($FIRE) is a limited supply token with many inherent utilities, with a total supply hard-capped at 1 quadrillion. 80% (800 trillion) of the tokens have been initially burned

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

BabyBonfire.buyBackAndBurn(uint256) (#2015-2028) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#2022-2027)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BabyBonfire._transfer(address,address,uint256) (#1806-1956):
External calls:
- swapTokensForBNB(swapTokens) (#1845)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#2051-2057)
- swapTokensForBNB(contractTokenBalance.mul(buyBackAndLiquidityFee).div(totalFees)) (#1858)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#2051-2057)
- swapAndLiquify(contractTokenBalance.mul(buyBackAndLiquidityFee).div(totalFees)) (#1860)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp.add(300)) (#2005-2012)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#2051-2057)
- swapAndSendA80Dividends(sellTokens.sub(1300)) (#1866)
- a80DividendTracker.distributeDividends(a80Dividends) (#2095)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp.add(300)) (#2078-2084)
- swapAndSendB20Dividends(sellTokens_scope_0.sub(1300)) (#1871)
- b20DividendTracker.distributeDividends(b20Dividends) (#2108)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp.add(300)) (#2078-2084)
- buyBackAndBurn(buyBackBalanceBnb.div(10 ** 2)) (#1887)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#2022-2027)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (#1851)
- recipient.transfer(amount) (#2114)
- transferToWallet(address(contractWallet),teamPortion) (#1852)
- recipient.transfer(amount) (#2114)
- swapAndLiquify(contractTokenBalance.mul(buyBackAndLiquidityFee).div(totalFees)) (#1860)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp.add(300)) (#2005-2012)
- buyBackAndBurn(buyBackBalanceBnb.div(10 ** 2)) (#1887)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#2022-2027)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1904)
- _balances[sender] = _balances[sender].sub(amount,exceeds balance) (#377)
- _balances[recipient] = _balances[recipient].add(amount) (#378)
- super._transfer(from,to,amount) (#1907)
- _balances[sender] = _balances[sender].sub(amount,exceeds balance) (#377)
- _balances[recipient] = _balances[recipient].add(amount) (#378)
- swapping = false (#1889)
Apply the check-effects-interactions pattern.

Additional information: link

BabyBonfire.rand() (#1767-1783) uses a dangerous strict equality:
- randNumber == 0 (#1777)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

Contract locking ether found:
Contract B20DividendTracker (#2331-2543) has payable functions:
- DividendPayingToken.receive() (#577-578)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

BabyBonfire.setMinimumBalanceRequired(uint256) (#1499-1502) contains a tautology or contradiction:
- require(bool,string)(_newAmount >= 0,newAmount error) (#1500)
Fix the incorrect comparison by changing the value type or the comparison.

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.

BabyBonfire._transfer(address,address,uint256) (#1806-1956) performs a multiplication on the result of a division:
-fees = amount.mul(totalFees).div(100) (#1895)
-fees = fees.mul(sellFeeIncreaseFactor).div(100) (#1899)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#617-633):
External calls:
- success = IERC20(dividendToken).transfer(user,_withdrawableDividend) (#622)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#625)
Apply the check-effects-interactions pattern.

Additional information: link

BabyBonfire._transfer(address,address,uint256) (#1806-1956) uses tx.origin for authorization: require(bool,string)(! isBlacklisted(tx.origin),Baby Bonfire: sender blacklisted) (#1816)
Do not use tx.origin for authorization.

Additional information: link

BabyBonfire._transfer(address,address,uint256).claims_scope_5 (#1938) 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

BabyBonfire.addLiquidity(uint256,uint256) (#1999-2013) ignores return value by uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp.add(300)) (#2005-2012)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string,address)._symbol (#573) shadows:
- ERC20._symbol (#206) (state variable)
Rename the local variables that shadow another component.

Additional information: link

B20DividendTracker.updateClaimWait(uint256) (#2381-2384) should emit an event for:
- claimWait = newClaimWait (#2383)
Emit an event for critical parameter changes.

Additional information: link

B20DividendTracker.setDividendTokenAddress(address).newToken (#2363) lacks a zero-check on :
- dividendToken = newToken (#2364)
Check that the address is not zero.

Additional information: link

Variable 'BabyBonfire._transfer(address,address,uint256).lastProcessedIndex_scope_9 (#1947)' in BabyBonfire._transfer(address,address,uint256) (#1806-1956) potentially used before declaration: ProcessedA80DividendTracker(iterations_scope_7,claims_scope_8,lastProcessedIndex_scope_9,true,gas,tx.origin) (#1948)
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 BabyBonfire.updateB20DividendTracker(address) (#1587-1598):
External calls:
- newB20DividendTracker.excludeFromDividends(address(newB20DividendTracker)) (#1592)
- newB20DividendTracker.excludeFromDividends(address(this)) (#1593)
- newB20DividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1594)
- newB20DividendTracker.excludeFromDividends(address(deadAddress)) (#1595)
State variables written after the call(s):
- b20DividendTracker = newB20DividendTracker (#1597)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BabyBonfire.swapAndSendB20Dividends(uint256) (#2100-2111):
External calls:
- swapTokensForDividendToken(tokens,address(b20DividendTracker),b20DividendToken) (#2103)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp.add(300)) (#2078-2084)
- b20DividendTracker.distributeDividends(b20Dividends) (#2108)
Event emitted after the call(s):
- SendDividends(b20Dividends) (#2109)
Apply the check-effects-interactions pattern.

Additional information: link

B20DividendTracker.canAutoClaim(uint256) (#2459-2465) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#2460)
- block.timestamp.sub(lastClaimTime) >= claimWait (#2464)
Avoid relying on block.timestamp.

Additional information: link

BabyBonfire.setMarketingEnabled(bool) (#1560-1572) compares to a boolean constant:
-_enabled == false (#1563)
Remove the equality to the boolean constant.

Additional information: link

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

Additional information: link

solc-0.8.4 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

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

Additional information: link

Redundant expression "this (#21)" inContext (#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in BabyBonfire._transfer(address,address,uint256) (#1806-1956):
External calls:
- transferToWallet(address(marketingWallet),marketingPortion) (#1851)
- recipient.transfer(amount) (#2114)
- transferToWallet(address(contractWallet),teamPortion) (#1852)
- recipient.transfer(amount) (#2114)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (#1851)
- recipient.transfer(amount) (#2114)
- transferToWallet(address(contractWallet),teamPortion) (#1852)
- recipient.transfer(amount) (#2114)
- swapAndLiquify(contractTokenBalance.mul(buyBackAndLiquidityFee).div(totalFees)) (#1860)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp.add(300)) (#2005-2012)
- buyBackAndBurn(buyBackBalanceBnb.div(10 ** 2)) (#1887)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#2022-2027)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1904)
- _balances[sender] = _balances[sender].sub(amount,exceeds balance) (#377)
- _balances[recipient] = _balances[recipient].add(amount) (#378)
- super._transfer(from,to,amount) (#1907)
- _balances[sender] = _balances[sender].sub(amount,exceeds balance) (#377)
- _balances[recipient] = _balances[recipient].add(amount) (#378)
- swapping = false (#1889)
Event emitted after the call(s):
- ProcessedA80DividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1921)
- ProcessedA80DividendTracker(iterations_scope_7,claims_scope_8,lastProcessedIndex_scope_9,true,gas,tx.origin) (#1948)
- ProcessedB20DividendTracker(iterations_scope_1,claims_scope_2,lastProcessedIndex_scope_3,true,gas,tx.origin) (#1930)
- ProcessedB20DividendTracker(iterations_scope_4,claims_scope_5,lastProcessedIndex_scope_6,true,gas,tx.origin) (#1939)
- Transfer(sender,recipient,amount) (#379)
- super._transfer(from,address(this),fees) (#1904)
- Transfer(sender,recipient,amount) (#379)
- super._transfer(from,to,amount) (#1907)
Apply the check-effects-interactions pattern.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#618) is too similar to B20DividendTracker.getAccount(address).withdrawableDividends (#2400)
Prevent variables from having similar names.

Additional information: link

B20DividendTracker.getAccountAtIndex(uint256) (#2440-2457) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#2451)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendPayingToken.lastAmount (#549) is never used in B20DividendTracker (#2331-2543)
Remove unused state variables.

Additional information: link

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

Additional information: link

process(uint256) should be declared external:
- B20DividendTracker.process(uint256) (#2484-2529)
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.


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


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/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find code repository for the project


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


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for FIRE