Bull Force Token Logo

$BFRC [Bull Force] Token

About $BFRC

Listings

Token 2 years
white paper

Bull Force is a Stake2Earn DApp where sports lovers, through proof of stake, support their team in every match in order to earn rewards while supporting their favorite team.
The DApp is ready and holders will be able to stake on the day of the launch. Fans don't lose a token for supporting their team, instead they earn more tokens through the unique staking DApp.

Social

Laser Scorebeta Last Audit: 10 June 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Reentrancy in BullForce._transferFrom(address,address,uint256) (BullForce.sol#361-414):
External calls:
- swapBackInBnb() (BullForce.sol#388)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#696-702)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
- IBEP20(REWARD).transfer(address(dividendTracker),swappedTokensAmount) (BullForce.sol#636)
- dividendTracker.deposit(swappedTokensAmount) (BullForce.sol#637)
External calls sending eth:
- swapBackInBnb() (BullForce.sol#388)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Fund) (BullForce.sol#392)
- _balances[recipient] = _balances[recipient].add(amountReceived) (BullForce.sol#396)
- amountReceived = takeFee(sender,amount,recipient) (BullForce.sol#394)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (BullForce.sol#505)
Apply the check-effects-interactions pattern.

Additional information: link

BullForce.swapBackInBnb() (BullForce.sol#596-647) ignores return value by IBEP20(REWARD).transfer(address(dividendTracker),swappedTokensAmount) (BullForce.sol#636)
DividendDistributor.purge(address) (DividendDistributor.sol#87-90) ignores return value by REWARD.transfer(receiver,balance) (DividendDistributor.sol#89)
DividendDistributor.distributeDividend(address) (DividendDistributor.sol#159-176) ignores return value by REWARD.transfer(shareholder,amount) (DividendDistributor.sol#167)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Contract locking ether found:
Contract DividendDistributor (DividendDistributor.sol#25-257) has payable functions:
- DividendDistributor.receive() (DividendDistributor.sol#77)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

BullForce.swapBackInBnb().marketingSuccess (BullForce.sol#610) is written in both
(marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
marketingSuccess = false (BullForce.sol#614)
BullForce.swapBackInBnb().devSuccess (BullForce.sol#622) is written in both
(devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
devSuccess = false (BullForce.sol#625)
Fix or remove the writes.

Additional information: link


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.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

Reentrancy in DividendDistributor.distributeDividend(address) (DividendDistributor.sol#159-176):
External calls:
- REWARD.transfer(shareholder,amount) (DividendDistributor.sol#167)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (DividendDistributor.sol#169-171)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (DividendDistributor.sol#172-174)
Reentrancy in DividendDistributor.process(uint256) (DividendDistributor.sol#121-147):
External calls:
- distributeDividend(shareholders[currentIndex]) (DividendDistributor.sol#139)
- REWARD.transfer(shareholder,amount) (DividendDistributor.sol#167)
State variables written after the call(s):
- currentIndex ++ (DividendDistributor.sol#144)
Reentrancy in DividendDistributor.setShare(address,uint256) (DividendDistributor.sol#92-112):
External calls:
- distributeDividend(shareholder) (DividendDistributor.sol#98)
- REWARD.transfer(shareholder,amount) (DividendDistributor.sol#167)
State variables written after the call(s):
- shares[shareholder].amount = amount (DividendDistributor.sol#108)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (DividendDistributor.sol#109-111)
Apply the check-effects-interactions pattern.

Additional information: link

BullForce.addLiquidity(uint256,uint256) (BullForce.sol#705-717) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
Ensure that all the return values of the function calls are used.

Additional information: link

BullForce._approve(address,address,uint256).owner (BullForce.sol#335) shadows:
- Ownable.owner() (Ownable.sol#24-26) (function)
Rename the local variables that shadow another component.

Additional information: link

BullForce.setDailySellLimitAmountTax(uint256,uint256) (BullForce.sol#483-486) should emit an event for:
- _maxTax = maxTax (BullForce.sol#485)
BullForce.updateBuyFees(uint256,uint256,uint256,uint256) (BullForce.sol#537-543) should emit an event for:
- buyTotalFees = reward.add(marketing).add(liquidity).add(dev) (BullForce.sol#542)
BullForce.updateSellFees(uint256,uint256,uint256,uint256) (BullForce.sol#552-558) should emit an event for:
- sellTotalFees = reward.add(marketing).add(liquidity).add(dev) (BullForce.sol#557)
BullForce.updateSwapPercentages(uint256,uint256,uint256,uint256) (BullForce.sol#561-567) should emit an event for:
- rewardSwap = reward (BullForce.sol#562)
- marketingSwap = marketing (BullForce.sol#563)
- liquiditySwap = liquidity (BullForce.sol#564)
- devSwap = dev (BullForce.sol#565)
- totalSwap = reward.add(marketing).add(liquidity).add(devSwap) (BullForce.sol#566)
BullForce.setSwapBackSettings(bool,uint256) (BullForce.sol#767-773) should emit an event for:
- swapThreshold = _amount (BullForce.sol#772)
BullForce.setDistributorGas(uint256) (BullForce.sol#782-785) should emit an event for:
- distributorGas = gas (BullForce.sol#784)
BullForce.setHalvingParameters(uint256,uint256,uint256) (BullForce.sol#983-989) should emit an event for:
- maxTxInBlock = _maxTxInBlock (BullForce.sol#984)
- _time = time (BullForce.sol#985)
- _halvingDivider = halvingDivider (BullForce.sol#986)
DividendDistributor.setDistributionCriteria(uint256,uint256) (DividendDistributor.sol#79-85) should emit an event for:
- minPeriod = _minPeriod (DividendDistributor.sol#83)
- minDistribution = _minDistribution (DividendDistributor.sol#84)
DividendDistributor.deposit(uint256) (DividendDistributor.sol#114-119) should emit an event for:
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (DividendDistributor.sol#116-118)
Emit an event for critical parameter changes.

Additional information: link

BullForce.setRewardingToken(address).token (BullForce.sol#301) lacks a zero-check on :
- REWARD = token (BullForce.sol#302)
BullForce.setFeeReceivers(address)._marketingFeeReceiver (BullForce.sol#758) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (BullForce.sol#759)
BullForce.setDevFeeReceiver(address)._devFeeReceiver (BullForce.sol#762) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (BullForce.sol#763)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (DividendDistributor.sol#159-176) has external calls inside a loop: REWARD.transfer(shareholder,amount) (DividendDistributor.sol#167)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BullForce._transferFrom(address,address,uint256) (BullForce.sol#361-414):
External calls:
- swapBackInBnb() (BullForce.sol#388)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#696-702)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
- IBEP20(REWARD).transfer(address(dividendTracker),swappedTokensAmount) (BullForce.sol#636)
- dividendTracker.deposit(swappedTokensAmount) (BullForce.sol#637)
External calls sending eth:
- swapBackInBnb() (BullForce.sol#388)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
State variables written after the call(s):
- amountReceived = takeFee(sender,amount,recipient) (BullForce.sol#394)
- transferLimit[sender].dailyLimit = transferLimit[sender].dailyLimit.add(amount) (BullForce.sol#442)
- transferLimit[sender].dailyLimit = 0 (BullForce.sol#468)
- transferLimit[sender].timestamp = block.timestamp (BullForce.sol#473)
Reentrancy in BullForce.constructor() (BullForce.sol#163-222):
External calls:
- pair = IUniswapV2Factory(router.factory()).createPair(router.WETH(),address(this)) (BullForce.sol#169)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (BullForce.sol#171)
- _mint(_msgSender(),_privateSaleAmt,_presaleAmt,_liquidityAmt,_teamTokenAmt,_initialMarketingAmt,_maxSupply,_halvingDiv) (BullForce.sol#203-210)
- _balances[account] = _balances[account].add(totalSupply_) (BullForce.sol#288)
- _mint(_msgSender(),_privateSaleAmt,_presaleAmt,_liquidityAmt,_teamTokenAmt,_initialMarketingAmt,_maxSupply,_halvingDiv) (BullForce.sol#203-210)
- _halvingDivider = halivingDivider_ (BullForce.sol#290)
- _mint(_msgSender(),_privateSaleAmt,_presaleAmt,_liquidityAmt,_teamTokenAmt,_initialMarketingAmt,_maxSupply,_halvingDiv) (BullForce.sol#203-210)
- _initialMarketingAmount = initialMarketingAmount (BullForce.sol#278)
- _mint(_msgSender(),_privateSaleAmt,_presaleAmt,_liquidityAmt,_teamTokenAmt,_initialMarketingAmt,_maxSupply,_halvingDiv) (BullForce.sol#203-210)
- _liquidityAmount = liquidityAmount (BullForce.sol#276)
- _mint(_msgSender(),_privateSaleAmt,_presaleAmt,_liquidityAmt,_teamTokenAmt,_initialMarketingAmt,_maxSupply,_halvingDiv) (BullForce.sol#203-210)
- _maximumSupply = _maximumSupply.add(maximumSupply_) (BullForce.sol#286)
- _mint(_msgSender(),_privateSaleAmt,_presaleAmt,_liquidityAmt,_teamTokenAmt,_initialMarketingAmt,_maxSupply,_halvingDiv) (BullForce.sol#203-210)
- _presaleAmount = presaleAmount (BullForce.sol#275)
- _mint(_msgSender(),_privateSaleAmt,_presaleAmt,_liquidityAmt,_teamTokenAmt,_initialMarketingAmt,_maxSupply,_halvingDiv) (BullForce.sol#203-210)
- _privateSaleAmount = privateSaleAmount (BullForce.sol#274)
- _mint(_msgSender(),_privateSaleAmt,_presaleAmt,_liquidityAmt,_teamTokenAmt,_initialMarketingAmt,_maxSupply,_halvingDiv) (BullForce.sol#203-210)
- _teamTokenAmount = teamTokenAmount (BullForce.sol#277)
- _mint(_msgSender(),_privateSaleAmt,_presaleAmt,_liquidityAmt,_teamTokenAmt,_initialMarketingAmt,_maxSupply,_halvingDiv) (BullForce.sol#203-210)
- _totalSupply = _totalSupply.add(totalSupply_) (BullForce.sol#289)
- whitelistPreSale(address(router)) (BullForce.sol#191)
- blackListed[_preSale] = false (BullForce.sol#579)
- whitelistPreSale(owner()) (BullForce.sol#192)
- blackListed[_preSale] = false (BullForce.sol#579)
- dividendTracker = new DividendDistributor(address(router),REWARD) (BullForce.sol#173)
- _mint(_msgSender(),_privateSaleAmt,_presaleAmt,_liquidityAmt,_teamTokenAmt,_initialMarketingAmt,_maxSupply,_halvingDiv) (BullForce.sol#203-210)
- halvingBlock.push(hb) (BullForce.sol#292)
- whitelistPreSale(address(router)) (BullForce.sol#191)
- isAuthorized[_preSale] = true (BullForce.sol#577)
- whitelistPreSale(owner()) (BullForce.sol#192)
- isAuthorized[_preSale] = true (BullForce.sol#577)
- isDividendExempt[pair] = true (BullForce.sol#182)
- isDividendExempt[address(this)] = true (BullForce.sol#183)
- isDividendExempt[DEAD] = true (BullForce.sol#184)
- isDividendExempt[marketingFeeReceiver] = true (BullForce.sol#185)
- isDividendExempt[devFeeReceiver] = true (BullForce.sol#186)
- whitelistPreSale(address(router)) (BullForce.sol#191)
- isDividendExempt[_preSale] = true (BullForce.sol#576)
- whitelistPreSale(owner()) (BullForce.sol#192)
- isDividendExempt[_preSale] = true (BullForce.sol#576)
- isFeeExempt[marketingFeeReceiver] = true (BullForce.sol#177)
- isFeeExempt[devFeeReceiver] = true (BullForce.sol#178)
- whitelistPreSale(address(router)) (BullForce.sol#191)
- isFeeExempt[_preSale] = true (BullForce.sol#575)
- whitelistPreSale(owner()) (BullForce.sol#192)
- isFeeExempt[_preSale] = true (BullForce.sol#575)
- isMaxWalletExempt[pair] = true (BullForce.sol#188)
- isMaxWalletExempt[address(this)] = true (BullForce.sol#189)
- whitelistPreSale(address(router)) (BullForce.sol#191)
- isMaxWalletExempt[_preSale] = true (BullForce.sol#578)
- whitelistPreSale(owner()) (BullForce.sol#192)
- isMaxWalletExempt[_preSale] = true (BullForce.sol#578)
- swapThreshold = 3000 (BullForce.sol#213)
Reentrancy in DividendDistributor.distributeDividend(address) (DividendDistributor.sol#159-176):
External calls:
- REWARD.transfer(shareholder,amount) (DividendDistributor.sol#167)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (DividendDistributor.sol#168)
Reentrancy in DividendDistributor.setShare(address,uint256) (DividendDistributor.sol#92-112):
External calls:
- distributeDividend(shareholder) (DividendDistributor.sol#98)
- REWARD.transfer(shareholder,amount) (DividendDistributor.sol#167)
State variables written after the call(s):
- addShareholder(shareholder) (DividendDistributor.sol#102)
- shareholderIndexes[shareholder] = shareholders.length (DividendDistributor.sol#243)
- removeShareholder(shareholder) (DividendDistributor.sol#104)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (DividendDistributor.sol#251-253)
- addShareholder(shareholder) (DividendDistributor.sol#102)
- shareholders.push(shareholder) (DividendDistributor.sol#244)
- removeShareholder(shareholder) (DividendDistributor.sol#104)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (DividendDistributor.sol#248-250)
- shareholders.pop() (DividendDistributor.sol#254)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (DividendDistributor.sol#107)
Reentrancy in BullForce.swapAndLiquify(uint256) (BullForce.sol#649-670):
External calls:
- swapTokensForEth(half) (BullForce.sol#661)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- addLiquidity(otherHalf,newBalance) (BullForce.sol#667)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (BullForce.sol#667)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (BullForce.sol#667)
- _allowances[owner][spender] = amount (BullForce.sol#339)
Reentrancy in BullForce.swapBackInBnb() (BullForce.sol#596-647):
External calls:
- swapTokensForEth(tokensToMarketing) (BullForce.sol#606)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- swapTokensForEth(tokensToDev) (BullForce.sol#619)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
External calls sending eth:
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
State variables written after the call(s):
- swapTokensForEth(tokensToDev) (BullForce.sol#619)
- _allowances[owner][spender] = amount (BullForce.sol#339)
Reentrancy in BullForce.swapBackInBnb() (BullForce.sol#596-647):
External calls:
- swapTokensForEth(tokensToMarketing) (BullForce.sol#606)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- swapTokensForEth(tokensToDev) (BullForce.sol#619)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
- swapTokensForTokens(tokensToReward,REWARD) (BullForce.sol#633)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#696-702)
External calls sending eth:
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
State variables written after the call(s):
- swapTokensForTokens(tokensToReward,REWARD) (BullForce.sol#633)
- _allowances[owner][spender] = amount (BullForce.sol#339)
Reentrancy in BullForce.swapBackInBnb() (BullForce.sol#596-647):
External calls:
- swapTokensForEth(tokensToMarketing) (BullForce.sol#606)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- swapTokensForEth(tokensToDev) (BullForce.sol#619)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
- swapTokensForTokens(tokensToReward,REWARD) (BullForce.sol#633)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#696-702)
- IBEP20(REWARD).transfer(address(dividendTracker),swappedTokensAmount) (BullForce.sol#636)
- dividendTracker.deposit(swappedTokensAmount) (BullForce.sol#637)
- swapAndLiquify(tokensToLiquidity) (BullForce.sol#645)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
External calls sending eth:
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
- swapAndLiquify(tokensToLiquidity) (BullForce.sol#645)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
State variables written after the call(s):
- swapAndLiquify(tokensToLiquidity) (BullForce.sol#645)
- _allowances[owner][spender] = amount (BullForce.sol#339)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BullForce._transferFrom(address,address,uint256) (BullForce.sol#361-414):
External calls:
- swapBackInBnb() (BullForce.sol#388)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#696-702)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
- IBEP20(REWARD).transfer(address(dividendTracker),swappedTokensAmount) (BullForce.sol#636)
- dividendTracker.deposit(swappedTokensAmount) (BullForce.sol#637)
- dividendTracker.setShare(sender,_balances[sender].add(_stakebalances[sender])) (BullForce.sol#400-401)
- dividendTracker.setShare(recipient,_balances[recipient].add(_stakebalances[recipient])) (BullForce.sol#405-407)
- dividendTracker.process(distributorGas) (BullForce.sol#410)
External calls sending eth:
- swapBackInBnb() (BullForce.sol#388)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (BullForce.sol#412)
Reentrancy in BullForce._transferFrom(address,address,uint256) (BullForce.sol#361-414):
External calls:
- swapBackInBnb() (BullForce.sol#388)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#696-702)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
- IBEP20(REWARD).transfer(address(dividendTracker),swappedTokensAmount) (BullForce.sol#636)
- dividendTracker.deposit(swappedTokensAmount) (BullForce.sol#637)
External calls sending eth:
- swapBackInBnb() (BullForce.sol#388)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (BullForce.sol#507)
- amountReceived = takeFee(sender,amount,recipient) (BullForce.sol#394)
Reentrancy in BullForce.constructor() (BullForce.sol#163-222):
External calls:
- pair = IUniswapV2Factory(router.factory()).createPair(router.WETH(),address(this)) (BullForce.sol#169)
Event emitted after the call(s):
- Transfer(address(0),account,_totalSupply) (BullForce.sol#294)
- _mint(_msgSender(),_privateSaleAmt,_presaleAmt,_liquidityAmt,_teamTokenAmt,_initialMarketingAmt,_maxSupply,_halvingDiv) (BullForce.sol#203-210)
Reentrancy in BullForce.swapAndLiquify(uint256) (BullForce.sol#649-670):
External calls:
- swapTokensForEth(half) (BullForce.sol#661)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- addLiquidity(otherHalf,newBalance) (BullForce.sol#667)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (BullForce.sol#667)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
Event emitted after the call(s):
- Approval(owner,spender,amount) (BullForce.sol#340)
- addLiquidity(otherHalf,newBalance) (BullForce.sol#667)
- AutoLiquify(newBalance,otherHalf) (BullForce.sol#669)
Reentrancy in BullForce.swapBackInBnb() (BullForce.sol#596-647):
External calls:
- swapTokensForEth(tokensToMarketing) (BullForce.sol#606)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- swapTokensForEth(tokensToDev) (BullForce.sol#619)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
External calls sending eth:
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
Event emitted after the call(s):
- Approval(owner,spender,amount) (BullForce.sol#340)
- swapTokensForEth(tokensToDev) (BullForce.sol#619)
Reentrancy in BullForce.swapBackInBnb() (BullForce.sol#596-647):
External calls:
- swapTokensForEth(tokensToMarketing) (BullForce.sol#606)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- swapTokensForEth(tokensToDev) (BullForce.sol#619)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
- swapTokensForTokens(tokensToReward,REWARD) (BullForce.sol#633)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#696-702)
External calls sending eth:
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
Event emitted after the call(s):
- Approval(owner,spender,amount) (BullForce.sol#340)
- swapTokensForTokens(tokensToReward,REWARD) (BullForce.sol#633)
Reentrancy in BullForce.swapBackInBnb() (BullForce.sol#596-647):
External calls:
- swapTokensForEth(tokensToMarketing) (BullForce.sol#606)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- swapTokensForEth(tokensToDev) (BullForce.sol#619)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
- swapTokensForTokens(tokensToReward,REWARD) (BullForce.sol#633)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#696-702)
- IBEP20(REWARD).transfer(address(dividendTracker),swappedTokensAmount) (BullForce.sol#636)
- dividendTracker.deposit(swappedTokensAmount) (BullForce.sol#637)
- swapAndLiquify(tokensToLiquidity) (BullForce.sol#645)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (BullForce.sol#679-685)
External calls sending eth:
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
- swapAndLiquify(tokensToLiquidity) (BullForce.sol#645)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (BullForce.sol#709-716)
Event emitted after the call(s):
- Approval(owner,spender,amount) (BullForce.sol#340)
- swapAndLiquify(tokensToLiquidity) (BullForce.sol#645)
- AutoLiquify(newBalance,otherHalf) (BullForce.sol#669)
- swapAndLiquify(tokensToLiquidity) (BullForce.sol#645)
Apply the check-effects-interactions pattern.

Additional information: link

BullForce.maximumDailyTransfer(address,uint256) (BullForce.sol#440-480) uses timestamp for comparisons
Dangerous comparisons:
- transferLimit[sender].timestamp.add(86400) > block.timestamp (BullForce.sol#446)
BullForce.voteExternalContractToUsePin(bool) (BullForce.sol#872-884) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > voteStartTime, Voting not Started) (BullForce.sol#873)
- require(bool,string)(block.timestamp < voteEndTime, Voting Ended) (BullForce.sol#875)
BullForce.countVoteForExternalContract() (BullForce.sol#894-920) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > voteEndTime,Voting is in process) (BullForce.sol#895)
BullForce.formHalvingBlock() (BullForce.sol#993-1020) uses timestamp for comparisons
Dangerous comparisons:
- tx_count > maxTxInBlock || next_block_formation_time < block.timestamp (BullForce.sol#1002)
DividendDistributor.shouldDistribute(address) (DividendDistributor.sol#149-157) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (DividendDistributor.sol#154-156)
Avoid relying on block.timestamp.

Additional information: link

BullForce.countVoteForExternalContract() (BullForce.sol#894-920) compares to a boolean constant:
-vote[x] == true (BullForce.sol#901)
BullForce.ownerVetoFirstExternalContractToUsePin(address) (BullForce.sol#923-937) compares to a boolean constant:
-require(bool,string)(firstExternalContract != true,firstExternalContract already set) (BullForce.sol#926)
Remove the equality to the boolean constant.

Additional information: link

Different versions of Solidity is used:
- Version used: ['^0.8.4', '^0.8.7']
- ^0.8.7 (BullForce.sol#2)
- ^0.8.7 (Context.sol#4)
- ^0.8.7 (DividendDistributor.sol#3)
- ^0.8.7 (IBEP20.sol#2)
- ^0.8.7 (ICanMint.sol#2)
- ^0.8.4 (Ownable.sol#4)
- ^0.8.7 (SafeMath.sol#3)
- ^0.8.7 (uniswapV02.sol#2)
Use one Solidity version.

Additional information: link

DividendDistributor.process(uint256) (DividendDistributor.sol#121-147) has costly operations inside a loop:
- currentIndex = 0 (DividendDistributor.sol#135)
DividendDistributor.distributeDividend(address) (DividendDistributor.sol#159-176) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (DividendDistributor.sol#166)
DividendDistributor.process(uint256) (DividendDistributor.sol#121-147) has costly operations inside a loop:
- currentIndex ++ (DividendDistributor.sol#144)
Use a local variable to hold the loop computation result.

Additional information: link

BullForce.burnTax(address,uint256) (BullForce.sol#545-550) is never used and should be removed
Context._msgData() (Context.sol#14-17) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#129-131) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#145-148) is never used and should be removed
SafeMathInt.abs(int256) (SafeMath.sol#213-216) is never used and should be removed
SafeMathInt.add(int256,int256) (SafeMath.sol#204-208) is never used and should be removed
SafeMathInt.div(int256,int256) (SafeMath.sol#184-190) is never used and should be removed
SafeMathInt.mul(int256,int256) (SafeMath.sol#172-179) is never used and should be removed
SafeMathInt.sub(int256,int256) (SafeMath.sol#195-199) is never used and should be removed
SafeMathInt.toUint256Safe(int256) (SafeMath.sol#219-222) is never used and should be removed
SafeMathUint.toInt256Safe(uint256) (SafeMath.sol#152-156) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in BullForce.swapBackInBnb() (BullForce.sol#596-647):
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: swappedBnbAmount}() (BullForce.sol#610-613)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: swappedBnbAmount_scope_0}() (BullForce.sol#622)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function BullForce.BFRC(uint256) (BullForce.sol#155-157) is not in mixedCase
Parameter BullForce.burnTax(address,uint256)._burnAmount (BullForce.sol#545) is not in mixedCase
Parameter BullForce.openTrading(bool)._status (BullForce.sol#570) is not in mixedCase
Parameter BullForce.whitelistPreSale(address)._preSale (BullForce.sol#574) is not in mixedCase
Function BullForce.___claimRewards(bool) (BullForce.sol#584-589) is not in mixedCase
Parameter BullForce.setFeeReceivers(address)._marketingFeeReceiver (BullForce.sol#758) is not in mixedCase
Parameter BullForce.setDevFeeReceiver(address)._devFeeReceiver (BullForce.sol#762) is not in mixedCase
Parameter BullForce.setSwapBackSettings(bool,uint256)._enabled (BullForce.sol#767) is not in mixedCase
Parameter BullForce.setSwapBackSettings(bool,uint256)._amount (BullForce.sol#767) is not in mixedCase
Parameter BullForce.setDistributionCriteria(uint256,uint256)._minPeriod (BullForce.sol#776) is not in mixedCase
Parameter BullForce.setDistributionCriteria(uint256,uint256)._minDistribution (BullForce.sol#777) is not in mixedCase
Parameter BullForce.transferWithoutFees(address,address,uint256,uint8)._switch (BullForce.sol#791) is not in mixedCase
Parameter BullForce.startConsensus(address,address[10])._contractToVote (BullForce.sol#826) is not in mixedCase
Parameter BullForce.iSVoted(address,address)._votedUser (BullForce.sol#853) is not in mixedCase
Parameter BullForce.disableExternalContractToUsePin(address)._externalC (BullForce.sol#865) is not in mixedCase
Parameter BullForce.voteExternalContractToUsePin(bool)._vote (BullForce.sol#872) is not in mixedCase
Parameter BullForce.setHalvingParameters(uint256,uint256,uint256)._maxTxInBlock (BullForce.sol#983) is not in mixedCase
Variable BullForce.WBNB (BullForce.sol#15) is not in mixedCase
Variable BullForce.DEAD (BullForce.sol#16) is not in mixedCase
Variable BullForce.ZERO (BullForce.sol#17) is not in mixedCase
Variable BullForce.REWARD (BullForce.sol#22) is not in mixedCase
Constant BullForce._name (BullForce.sol#28) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BullForce._symbol (BullForce.sol#29) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BullForce._decimals (BullForce.sol#30) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BullForce._totalSupply (BullForce.sol#33) is not in mixedCase
Variable BullForce._maximumSupply (BullForce.sol#34) is not in mixedCase
Variable BullForce._halving (BullForce.sol#35) is not in mixedCase
Variable BullForce._privateSaleAmount (BullForce.sol#36) is not in mixedCase
Variable BullForce._presaleAmount (BullForce.sol#37) is not in mixedCase
Variable BullForce._liquidityAmount (BullForce.sol#38) is not in mixedCase
Variable BullForce._teamTokenAmount (BullForce.sol#39) is not in mixedCase
Variable BullForce._initialMarketingAmount (BullForce.sol#40) is not in mixedCase
Variable BullForce._halvingDivider (BullForce.sol#41) is not in mixedCase
Variable BullForce._balances (BullForce.sol#48) is not in mixedCase
Variable BullForce._stakebalances (BullForce.sol#50) is not in mixedCase
Variable BullForce._allowances (BullForce.sol#51) is not in mixedCase
Variable BullForce._dailyLimit (BullForce.sol#79) is not in mixedCase
Variable BullForce._maxTax (BullForce.sol#80) is not in mixedCase
Variable BullForce.NewContract (BullForce.sol#101) is not in mixedCase
Variable BullForce.Voter (BullForce.sol#106) is not in mixedCase
Variable BullForce.PermmitedContracts (BullForce.sol#112) is not in mixedCase
Variable BullForce.PVTShare (BullForce.sol#113) is not in mixedCase
Variable BullForce._totalStakedAmount (BullForce.sol#134) is not in mixedCase
Variable BullForce.tx_count (BullForce.sol#152) is not in mixedCase
Variable BullForce._time (BullForce.sol#981) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (DividendDistributor.sol#80) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (DividendDistributor.sol#81) is not in mixedCase
Variable DividendDistributor._token (DividendDistributor.sol#28) is not in mixedCase
Variable DividendDistributor.REWARD (DividendDistributor.sol#36) is not in mixedCase
Variable DividendDistributor.WBNB (DividendDistributor.sol#37) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (uniswapV02.sol#19) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (uniswapV02.sol#20) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (uniswapV02.sol#37) is not in mixedCase
Function IUniswapV2Router01.WETH() (uniswapV02.sol#74) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#15)" inContext (Context.sol#5-19)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable BullForce._maximumSupply (BullForce.sol#34) is too similar to BullForce._mint(address,uint256,uint256,uint256,uint256,uint256,uint256,uint256).maximumSupply_ (BullForce.sol#269)
Variable BullForce._totalSupply (BullForce.sol#33) is too similar to BullForce._mint(address,uint256,uint256,uint256,uint256,uint256,uint256,uint256).totalSupply_ (BullForce.sol#280-284)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (uniswapV02.sol#79) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (uniswapV02.sol#80)
Prevent variables from having similar names.

Additional information: link

BullForce.constructor() (BullForce.sol#163-222) uses literals with too many digits:
- _maxSupply = BFRC(1000000000) (BullForce.sol#194)
BullForce.constructor() (BullForce.sol#163-222) uses literals with too many digits:
- _presaleAmt = BFRC(300000) (BullForce.sol#199)
BullForce.slitherConstructorVariables() (BullForce.sol#12-1022) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (BullForce.sol#16)
BullForce.slitherConstructorVariables() (BullForce.sol#12-1022) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (BullForce.sol#17)
BullForce.slitherConstructorVariables() (BullForce.sol#12-1022) uses literals with too many digits:
- distributorGas = 700000 (BullForce.sol#89)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BullForce.WBNB (BullForce.sol#15) is never used in BullForce (BullForce.sol#12-1022)
BullForce.ZERO (BullForce.sol#17) is never used in BullForce (BullForce.sol#12-1022)
SafeMathInt.MAX_INT256 (SafeMath.sol#167) is never used in SafeMathInt (SafeMath.sol#165-223)
Remove unused state variables.

Additional information: link

BullForce.DEAD (BullForce.sol#16) should be constant
BullForce.WBNB (BullForce.sol#15) should be constant
BullForce.ZERO (BullForce.sol#17) should be constant
DividendDistributor.WBNB (DividendDistributor.sol#37) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (DividendDistributor.sol#50) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

getHalvingBlockLength() should be declared external:
- BullForce.getHalvingBlockLength() (BullForce.sol#159-161)
name() should be declared external:
- BullForce.name() (BullForce.sol#236-238)
symbol() should be declared external:
- BullForce.symbol() (BullForce.sol#240-242)
decimals() should be declared external:
- BullForce.decimals() (BullForce.sol#244-246)
halving() should be declared external:
- BullForce.halving() (BullForce.sol#247-249)
stakeBalanceOf(address) should be declared external:
- BullForce.stakeBalanceOf(address) (BullForce.sol#255-257)
setRewardingToken(address) should be declared external:
- BullForce.setRewardingToken(address) (BullForce.sol#301-303)
getHolderDetails(address) should be declared external:
- BullForce.getHolderDetails(address) (BullForce.sol#304-306)
getLastProcessedIndex() should be declared external:
- BullForce.getLastProcessedIndex() (BullForce.sol#308-310)
getNumberOfTokenHolders() should be declared external:
- BullForce.getNumberOfTokenHolders() (BullForce.sol#312-314)
totalDistributedRewards() should be declared external:
- BullForce.totalDistributedRewards() (BullForce.sol#316-318)
updateBuyFees(uint256,uint256,uint256,uint256) should be declared external:
- BullForce.updateBuyFees(uint256,uint256,uint256,uint256) (BullForce.sol#537-543)
updateSellFees(uint256,uint256,uint256,uint256) should be declared external:
- BullForce.updateSellFees(uint256,uint256,uint256,uint256) (BullForce.sol#552-558)
updateSwapPercentages(uint256,uint256,uint256,uint256) should be declared external:
- BullForce.updateSwapPercentages(uint256,uint256,uint256,uint256) (BullForce.sol#561-567)
openTrading(bool) should be declared external:
- BullForce.openTrading(bool) (BullForce.sol#570-572)
___claimRewards(bool) should be declared external:
- BullForce.___claimRewards(bool) (BullForce.sol#584-589)
claimProcess() should be declared external:
- BullForce.claimProcess() (BullForce.sol#592-594)
transferWithoutFees(address,address,uint256,uint8) should be declared external:
- BullForce.transferWithoutFees(address,address,uint256,uint8) (BullForce.sol#791-819)
startConsensus(address,address[10]) should be declared external:
- BullForce.startConsensus(address,address[10]) (BullForce.sol#826-849)
iSVoted(address,address) should be declared external:
- BullForce.iSVoted(address,address) (BullForce.sol#853-861)
disableExternalContractToUsePin(address) should be declared external:
- BullForce.disableExternalContractToUsePin(address) (BullForce.sol#865-870)
voteExternalContractToUsePin(bool) should be declared external:
- BullForce.voteExternalContractToUsePin(bool) (BullForce.sol#872-884)
checkForNewContract() should be declared external:
- BullForce.checkForNewContract() (BullForce.sol#889-892)
countVoteForExternalContract() should be declared external:
- BullForce.countVoteForExternalContract() (BullForce.sol#894-920)
ownerVetoFirstExternalContractToUsePin(address) should be declared external:
- BullForce.ownerVetoFirstExternalContractToUsePin(address) (BullForce.sol#923-937)
mineReward(address,uint256,bool) should be declared external:
- BullForce.mineReward(address,uint256,bool) (BullForce.sol#967-979)
formHalvingBlock() should be declared external:
- BullForce.formHalvingBlock() (BullForce.sol#993-1020)
getHolderDetails(address) should be declared external:
- DividendDistributor.getHolderDetails(address) (DividendDistributor.sol#203-217)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#43-46)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-54)
Use the external attribute for functions never called from the contract.

Additional information: link

Contract ticker ($BFRC) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Twitter account has relatively few followers


Unable to find Blog account (Reddit or Medium)


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


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 CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for $BFRC

News for $BFRC