Bulls World 2.0 Token Logo

BULLS2.0 [Bulls World 2.0] Token

About BULLS2.0

Listings

Not Found
Token 3 years
white paper

Community-driven token that rewards holders in Bitcoin (BTCB) but also building a platform for $BULLS2.0 holders to utilize our custom dApp contract scanning tool.

Social

Laser Scorebeta Last Audit: 19 October 2025

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

Anti-Scam

Links

BullsWorld.swapBack() (#738-781) sends eth to arbitrary user
Dangerous calls:
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#765)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


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

Reentrancy in BullsWorld._transferFrom(address,address,uint256) (#540-591):
External calls:
- swapBack() (#570)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#749-755)
- distributor.deposit{value: amountBNBReflection}() (#764)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#765)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#766)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#771-778)
External calls sending eth:
- swapBack() (#570)
- distributor.deposit{value: amountBNBReflection}() (#764)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#765)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#766)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#771-778)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#573)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#576)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#575)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#695)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#317-328) ignores return value by BTCB.transfer(shareholder,amount) (#323)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


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


Contract ownership is not renounced (belongs to a wallet)

BullsWorld._maxBuyTxAmount (#385) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 200 / 10000
BullsWorld._maxSellTxAmount (#386) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 100 / 10000
BullsWorld._maxWalletToken (#387) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 200) / 10000
BullsWorld.swapThreshold (#431) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 50 / 10000
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Low level call in BullsWorld.swapBack() (#738-781):
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#765)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#766)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#144) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#145)
Prevent variables from having similar names.

Additional information: link

BullsWorld.slitherConstructorVariables() (#362-984) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#368)
BullsWorld.slitherConstructorVariables() (#362-984) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#369)
BullsWorld.slitherConstructorVariables() (#362-984) uses literals with too many digits:
- _totalSupply = 10000000000 * (10 ** _decimals) (#382)
BullsWorld.slitherConstructorVariables() (#362-984) uses literals with too many digits:
- distributorGas = 500000 (#452)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BullsWorld.BTCB (#366) is never used in BullsWorld (#362-984)
Remove unused state variables.

Additional information: link

BullsWorld.BTCB (#366) should be constant
BullsWorld.DEAD (#368) should be constant
BullsWorld.DEV (#370) should be constant
BullsWorld.WBNB (#367) should be constant
BullsWorld.ZERO (#369) should be constant
BullsWorld._totalSupply (#382) should be constant
BullsWorld.deadBlocks (#428) should be constant
DividendDistributor.WBNB (#207) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#220) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#94-96)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#101-103)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#122-126)
getTotalFee(bool) should be declared external:
- BullsWorld.getTotalFee(bool) (#665-669)
tradingStatus(bool) should be declared external:
- BullsWorld.tradingStatus(bool) (#710-713)
enableGREED(uint256) should be declared external:
- BullsWorld.enableGREED(uint256) (#716-719)
cooldownEnabled(bool,uint8) should be declared external:
- BullsWorld.cooldownEnabled(bool,uint8) (#727-730)
blacklistAddress(address,bool) should be declared external:
- BullsWorld.blacklistAddress(address,bool) (#733-735)
getUnpaidEarnings(address) should be declared external:
- BullsWorld.getUnpaidEarnings(address) (#956-958)
Use the external attribute for functions never called from the contract.

Additional information: link

Contract name (Bulls World 2.0) 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.

Contract ticker (BULLS2.0) 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.

Function IDEXRouter.WETH() (#139) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#245) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#245) is not in mixedCase
Variable DividendDistributor._token (#197) is not in mixedCase
Variable DividendDistributor.BTCB (#206) is not in mixedCase
Variable DividendDistributor.WBNB (#207) is not in mixedCase
Parameter BullsWorld.takeFee(address,uint256,bool,bool).GREEDMode (#679) is not in mixedCase
Parameter BullsWorld.tradingStatus(bool)._status (#710) is not in mixedCase
Parameter BullsWorld.enableGREED(uint256)._seconds (#716) is not in mixedCase
Parameter BullsWorld.cooldownEnabled(bool,uint8)._status (#727) is not in mixedCase
Parameter BullsWorld.cooldownEnabled(bool,uint8)._interval (#727) is not in mixedCase
Parameter BullsWorld.blacklistAddress(address,bool)._address (#733) is not in mixedCase
Parameter BullsWorld.blacklistAddress(address,bool)._value (#733) is not in mixedCase
Parameter BullsWorld.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#835) is not in mixedCase
Parameter BullsWorld.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#835) is not in mixedCase
Parameter BullsWorld.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#835) is not in mixedCase
Parameter BullsWorld.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#835) is not in mixedCase
Parameter BullsWorld.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#835) is not in mixedCase
Parameter BullsWorld.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeBuy (#900) is not in mixedCase
Parameter BullsWorld.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeBuy (#900) is not in mixedCase
Parameter BullsWorld.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeBuy (#900) is not in mixedCase
Parameter BullsWorld.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeBuy (#900) is not in mixedCase
Parameter BullsWorld.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeBuy (#900) is not in mixedCase
Parameter BullsWorld.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#900) is not in mixedCase
Parameter BullsWorld.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeSell (#911) is not in mixedCase
Parameter BullsWorld.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeSell (#911) is not in mixedCase
Parameter BullsWorld.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeSell (#911) is not in mixedCase
Parameter BullsWorld.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeSell (#911) is not in mixedCase
Parameter BullsWorld.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeSell (#911) is not in mixedCase
Parameter BullsWorld.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#911) is not in mixedCase
Parameter BullsWorld.setFeeReceivers(address,address)._autoLiquidityReceiver (#922) is not in mixedCase
Parameter BullsWorld.setFeeReceivers(address,address)._marketingFeeReceiver (#922) is not in mixedCase
Parameter BullsWorld.setSwapBackSettings(bool,uint256)._enabled (#928) is not in mixedCase
Parameter BullsWorld.setSwapBackSettings(bool,uint256)._amount (#928) is not in mixedCase
Parameter BullsWorld.setTargetLiquidity(uint256,uint256)._target (#934) is not in mixedCase
Parameter BullsWorld.setTargetLiquidity(uint256,uint256)._denominator (#934) is not in mixedCase
Parameter BullsWorld.setDistributionCriteria(uint256,uint256)._minPeriod (#946) is not in mixedCase
Parameter BullsWorld.setDistributionCriteria(uint256,uint256)._minDistribution (#946) is not in mixedCase
Variable BullsWorld.BTCB (#366) is not in mixedCase
Variable BullsWorld.WBNB (#367) is not in mixedCase
Variable BullsWorld.DEAD (#368) is not in mixedCase
Variable BullsWorld.ZERO (#369) is not in mixedCase
Variable BullsWorld.DEV (#370) is not in mixedCase
Constant BullsWorld._name (#377) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BullsWorld._symbol (#378) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BullsWorld._decimals (#379) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BullsWorld._totalSupply (#382) is not in mixedCase
Variable BullsWorld._maxBuyTxAmount (#385) is not in mixedCase
Variable BullsWorld._maxSellTxAmount (#386) is not in mixedCase
Variable BullsWorld._maxWalletToken (#387) is not in mixedCase
Variable BullsWorld._balances (#390) is not in mixedCase
Variable BullsWorld._allowances (#391) is not in mixedCase
Variable BullsWorld.GREEDTriggeredAt (#424) is not in mixedCase
Variable BullsWorld.GREEDDuration (#425) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#317-328):
External calls:
- BTCB.transfer(shareholder,amount) (#323)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#325)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#326)
Reentrancy in DividendDistributor.process(uint256) (#286-310):
External calls:
- distributeDividend(shareholders[currentIndex]) (#302)
- BTCB.transfer(shareholder,amount) (#323)
State variables written after the call(s):
- currentIndex ++ (#307)
Reentrancy in DividendDistributor.setShare(address,uint256) (#250-264):
External calls:
- distributeDividend(shareholder) (#252)
- BTCB.transfer(shareholder,amount) (#323)
State variables written after the call(s):
- shares[shareholder].amount = amount (#262)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#263)
Apply the check-effects-interactions pattern.

Additional information: link

BullsWorld.swapBack() (#738-781) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#771-778)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#245-248) should emit an event for:
- minPeriod = _minPeriod (#246)
- minDistribution = _minDistribution (#247)
BullsWorld.setMaxWalletPercent(uint256) (#534-537) should emit an event for:
- _maxWalletToken = _totalSupply.mul(maxWallPercent).div(10000) (#535)
BullsWorld.enableGREED(uint256) (#716-719) should emit an event for:
- GREEDDuration = _seconds (#718)
BullsWorld.cooldownEnabled(bool,uint8) (#727-730) should emit an event for:
- cooldownTimerInterval = _interval (#729)
BullsWorld.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#835-843) should emit an event for:
- autoBuybackCap = _cap (#837)
- autoBuybackAmount = _amount (#839)
BullsWorld.setBuybackMultiplierSettings(uint256,uint256,uint256) (#846-851) should emit an event for:
- buybackMultiplierNumerator = numerator (#848)
- buybackMultiplierDenominator = denominator (#849)
- buybackMultiplierLength = length (#850)
BullsWorld.setBuyTxLimitInPercent(uint256) (#864-866) should emit an event for:
- _maxBuyTxAmount = _totalSupply.mul(maxBuyTxPercent).div(10000) (#865)
BullsWorld.setSellTxLimitInPercent(uint256) (#869-871) should emit an event for:
- _maxSellTxAmount = _totalSupply.mul(maxSellTxPercent).div(10000) (#870)
BullsWorld.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256) (#900-908) should emit an event for:
- liquidityFeeBuy = _liquidityFeeBuy (#901)
- buybackFeeBuy = _buybackFeeBuy (#902)
- reflectionFeeBuy = _reflectionFeeBuy (#903)
- marketingFeeBuy = _marketingFeeBuy (#904)
- devFeeBuy = _devFeeBuy (#905)
- totalFeeBuy = _liquidityFeeBuy.add(_buybackFeeBuy).add(_reflectionFeeBuy).add(_marketingFeeBuy).add(_devFeeBuy) (#906)
- feeDenominator = _feeDenominator (#907)
BullsWorld.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256) (#911-919) should emit an event for:
- liquidityFeeSell = _liquidityFeeSell (#912)
- buybackFeeSell = _buybackFeeSell (#913)
- reflectionFeeSell = _reflectionFeeSell (#914)
- marketingFeeSell = _marketingFeeSell (#915)
- devFeeSell = _devFeeSell (#916)
- totalFeeSell = _liquidityFeeSell.add(_buybackFeeSell).add(_reflectionFeeSell).add(_marketingFeeSell).add(_devFeeSell) (#917)
- feeDenominator = _feeDenominator (#918)
BullsWorld.setSwapBackSettings(bool,uint256) (#928-931) should emit an event for:
- swapThreshold = _totalSupply * _amount / 10000 (#930)
BullsWorld.setTargetLiquidity(uint256,uint256) (#934-937) should emit an event for:
- targetLiquidity = _target (#935)
- targetLiquidityDenominator = _denominator (#936)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).account (#122) lacks a zero-check on :
- owner = account (#123)
BullsWorld.setFeeReceivers(address,address)._autoLiquidityReceiver (#922) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#923)
BullsWorld.setFeeReceivers(address,address)._marketingFeeReceiver (#922) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#924)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#317-328) has external calls inside a loop: BTCB.transfer(shareholder,amount) (#323)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BullsWorld.constructor() (#469-499):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#472)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#473)
- _balances[_presaler] = _totalSupply (#497)
- autoLiquidityReceiver = msg.sender (#494)
- distributor = new DividendDistributor(address(router)) (#475)
- isDividendExempt[pair] = true (#489)
- isDividendExempt[address(this)] = true (#490)
- isDividendExempt[DEAD] = true (#491)
- isFeeExempt[_presaler] = true (#479)
- isTimelockExempt[msg.sender] = true (#483)
- isTimelockExempt[DEAD] = true (#484)
- isTimelockExempt[address(this)] = true (#485)
- isTimelockExempt[DEV] = true (#486)
- isTxLimitExempt[_presaler] = true (#480)
- marketingFeeReceiver = msg.sender (#495)
Reentrancy in DividendDistributor.deposit() (#266-284):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#273-278)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#283)
- totalDividends = totalDividends.add(amount) (#282)
Reentrancy in DividendDistributor.distributeDividend(address) (#317-328):
External calls:
- BTCB.transfer(shareholder,amount) (#323)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#324)
Reentrancy in DividendDistributor.setShare(address,uint256) (#250-264):
External calls:
- distributeDividend(shareholder) (#252)
- BTCB.transfer(shareholder,amount) (#323)
State variables written after the call(s):
- addShareholder(shareholder) (#256)
- shareholderIndexes[shareholder] = shareholders.length (#350)
- removeShareholder(shareholder) (#258)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#356)
- addShareholder(shareholder) (#256)
- shareholders.push(shareholder) (#351)
- removeShareholder(shareholder) (#258)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#355)
- shareholders.pop() (#357)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#261)
Reentrancy in BullsWorld.triggerAutoBuyback() (#809-818):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#810)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#826-831)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#816)
- autoBuybackBlockLast = block.number (#815)
- autoBuybackEnabled = false (#817)
- buybackMultiplierTriggeredAt = block.timestamp (#812)
Reentrancy in BullsWorld.triggerManualBuyback(uint256,bool) (#793-801):
External calls:
- buyTokens(amountToBuy,DEAD) (#796)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#826-831)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#798)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BullsWorld._transferFrom(address,address,uint256) (#540-591):
External calls:
- swapBack() (#570)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#749-755)
- distributor.deposit{value: amountBNBReflection}() (#764)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#765)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#766)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#771-778)
- distributor.setShare(sender,_balances[sender]) (#580)
- distributor.setShare(recipient,_balances[recipient]) (#584)
- distributor.process(distributorGas) (#587)
External calls sending eth:
- swapBack() (#570)
- distributor.deposit{value: amountBNBReflection}() (#764)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#765)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#766)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#771-778)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#589)
Reentrancy in BullsWorld._transferFrom(address,address,uint256) (#540-591):
External calls:
- swapBack() (#570)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#749-755)
- distributor.deposit{value: amountBNBReflection}() (#764)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#765)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#766)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#771-778)
External calls sending eth:
- swapBack() (#570)
- distributor.deposit{value: amountBNBReflection}() (#764)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#765)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#766)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#771-778)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#696)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#575)
Reentrancy in BullsWorld.constructor() (#469-499):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#472)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#498)
Reentrancy in BullsWorld.swapBack() (#738-781):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#749-755)
- distributor.deposit{value: amountBNBReflection}() (#764)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#765)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#766)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#771-778)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#764)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#765)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#766)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#771-778)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#779)
Reentrancy in BullsWorld.triggerAutoBuyback() (#809-818):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#810)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#826-831)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#813)
Reentrancy in BullsWorld.triggerManualBuyback(uint256,bool) (#793-801):
External calls:
- buyTokens(amountToBuy,DEAD) (#796)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#826-831)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#799)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#312-315) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#313-314)
BullsWorld.inGREEDTime() (#621-627) uses timestamp for comparisons
Dangerous comparisons:
- GREEDTriggeredAt.add(GREEDDuration) > block.timestamp (#622)
BullsWorld.checkBuyCooldown(address,address) (#642-649) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait between two buys) (#646)
BullsWorld.getTotalFee(bool) (#665-669) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#667)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#286-310) has costly operations inside a loop:
- currentIndex = 0 (#298)
DividendDistributor.distributeDividend(address) (#317-328) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#322)
DividendDistributor.process(uint256) (#286-310) has costly operations inside a loop:
- currentIndex ++ (#307)
Use a local variable to hold the loop computation result.

Additional information: link

BullsWorld.launched() (#854-856) is never used and should be removed
BullsWorld.shouldAutoBuyback() (#784-790) is never used and should be removed
BullsWorld.triggerAutoBuyback() (#809-818) is never used and should be removed
Remove unused functions.

Additional information: link

Holders:

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


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


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account has relatively few followers


Telegram account has relatively few subscribers


Unable to find Youtube account


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find KYC or doxxing proof


Unable to find token contract audit


Unable to find code repository for the project


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of scam / price dump / death


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

Price for BULLS2.0

News for BULLS2.0